/* Root Variables */
:root {
    --orange-primary: #FF6B35;
    --orange-light: #FF8C42;
    --orange-dark: #E55A2B;
    --gold: #FFD700;
    --gold-dark: #FFC107;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-light: #F5F5F5;
    --gray-medium: #E0E0E0;
    --gray-dark: #666666;
    --black: #222222;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.2);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

.section-title {
    font-size: 3rem;
    color: var(--orange-primary);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-dark);
    text-align: center;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--orange-primary);
    border: 2px solid var(--orange-primary);
}

.btn-secondary:hover {
    background: var(--orange-primary);
    color: var(--white);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--orange-primary);
    margin: 0;
}

.logo p {
    font-size: 0.9rem;
    color: var(--gold);
    margin: 0;
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--orange-primary);
}

.btn-download-nav {
    background: var(--orange-primary);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-download-nav:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--orange-primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-light) 50%, var(--gold) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%23ffffff" fill-opacity="0.1" d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.hero-dates {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Bebas Neue', cursive;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-qr {
    display: flex;
    align-items: center;
}

.qr-card {
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.qr-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--orange-primary);
    margin-bottom: 15px;
}

.qr-code-small {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.qr-subtitle {
    font-size: 0.9rem;
    color: var(--gray-dark);
    font-weight: 500;
}

/* App Download Section */
.app-download {
    padding: 80px 0;
    background: var(--off-white);
}

.app-download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow);
}

.feature i {
    font-size: 1.5rem;
    color: var(--orange-primary);
}

.feature span {
    font-size: 0.95rem;
    font-weight: 500;
}

.app-note {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    color: var(--white);
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
}

.app-qr-section {
    display: flex;
    justify-content: center;
}

.qr-container-large {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-strong);
    border: 3px solid var(--orange-primary);
}

.qr-heading {
    font-size: 1.8rem;
    color: var(--orange-primary);
    margin-bottom: 25px;
}

.qr-box {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 5px 15px var(--shadow);
}

.qr-code-large {
    width: 300px;
    height: 300px;
    border-radius: 10px;
}

.qr-platform {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin: 20px 0;
    font-weight: 600;
}

.store-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    background: var(--black);
    color: var(--white);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-btn:hover {
    background: var(--orange-primary);
    transform: translateY(-2px);
}

.store-btn i {
    font-size: 2rem;
}

.store-btn span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-btn small {
    font-size: 0.75rem;
}

.store-btn strong {
    font-size: 1.1rem;
}

/* Trails Section */
.trails {
    padding: 80px 0;
    background: var(--white);
}

.trails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.trail-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    border: 3px solid var(--orange-primary);
}

.trail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-strong);
}

.trail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.trail-number {
    background: var(--orange-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
}

.trail-difficulty {
    background: var(--gray-light);
    color: var(--gray-dark);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.trail-card.trail-4 .trail-difficulty {
    background: var(--gold);
    color: var(--black);
    font-weight: 800;
}

.trail-card h3 {
    font-size: 1.8rem;
    color: var(--orange-primary);
    margin-bottom: 10px;
}

.trail-description {
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.trail-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.trail-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--black);
}

.trail-stat i {
    color: var(--orange-primary);
}

.trail-route {
    background: var(--off-white);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.trail-route strong {
    color: var(--orange-primary);
}

.trail-prize {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.trail-prize i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.prize-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Bebas Neue', cursive;
    color: var(--gold);
}

.prize-label {
    display: block;
    font-size: 0.95rem;
    margin-top: 5px;
}

.trail-prize-ultimate {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
}

.trail-prize-ultimate .prize-amount {
    color: var(--orange-primary);
}

/* Voting Section */
.voting {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
}

.voting-content {
    max-width: 1000px;
    margin: 0 auto;
}

.voting-header {
    text-align: center;
    margin-bottom: 50px;
}

.trophy-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px var(--shadow);
}

.voting-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.voting-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border-top: 4px solid var(--orange-primary);
}

.voting-box h3 {
    font-size: 1.8rem;
    color: var(--orange-primary);
    margin-bottom: 20px;
}

.voting-steps {
    list-style: none;
}

.voting-steps li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
}

.voting-steps li:last-child {
    border-bottom: none;
}

.voting-steps i {
    color: var(--orange-primary);
    font-size: 1.2rem;
}

.voting-criteria {
    border-top-color: var(--gold);
}

.criteria {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.criteria-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--off-white);
    border-radius: 8px;
}

.criteria-weight {
    font-weight: 700;
    color: var(--orange-primary);
}

.voting-prize {
    border-top-color: var(--gold);
}

.winner-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--off-white);
    border-radius: 8px;
}

.benefit i {
    font-size: 1.5rem;
    color: var(--gold);
}

.voting-timeline {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.timeline-item {
    text-align: center;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--orange-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 1.5rem;
}

.timeline-item:nth-child(2) .timeline-icon {
    background: var(--gold);
    color: var(--black);
}

.timeline-item:nth-child(3) .timeline-icon {
    background: var(--gold-dark);
    color: var(--black);
}

.timeline-content h4 {
    font-size: 1.3rem;
    color: var(--orange-primary);
    margin-bottom: 5px;
}

.voting-cta {
    text-align: center;
}

/* Participate Section */
.participate {
    padding: 80px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.step-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--orange-primary);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-strong);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 20px;
    font-family: 'Bebas Neue', cursive;
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--orange-primary);
    margin-bottom: 15px;
}

.step-qr-container {
    margin: 20px 0;
    padding: 20px;
    background: var(--off-white);
    border-radius: 10px;
}

.qr-code-medium {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.qr-label {
    font-weight: 700;
    color: var(--orange-primary);
    font-size: 1.1rem;
}

/* Prizes Section */
.prizes {
    padding: 80px 0;
    background: var(--off-white);
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.prize-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--orange-primary);
}

.prize-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-strong);
}

.prize-ultimate {
    border-top-color: var(--gold);
    background: linear-gradient(135deg, var(--white) 0%, #FFF9E6 100%);
}

.prize-icon {
    font-size: 3rem;
    color: var(--orange-primary);
    margin-bottom: 20px;
}

.prize-ultimate .prize-icon {
    color: var(--gold);
}

.prize-card h3 {
    font-size: 1.8rem;
    color: var(--orange-primary);
    margin-bottom: 15px;
}

.prize-amount-large {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Bebas Neue', cursive;
    margin: 20px 0;
    text-shadow: 2px 2px 4px var(--shadow);
}

.prize-note {
    color: var(--gray-dark);
    font-size: 0.9rem;
    margin: 10px 0;
}

.prize-benefits {
    list-style: none;
    margin-top: 20px;
}

.prize-benefits li {
    padding: 10px;
    background: var(--off-white);
    margin-bottom: 8px;
    border-radius: 8px;
    font-weight: 500;
}

/* Venues Section */
.venues {
    padding: 80px 0;
    background: var(--white);
}

.venue-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid var(--orange-primary);
    background: var(--white);
    color: var(--orange-primary);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--orange-primary);
    color: var(--white);
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.venue-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid var(--orange-primary);
}

.venue-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-strong);
}

.venue-card.hidden {
    display: none;
}

.venue-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 10px;
}

.venue-header h3 {
    font-size: 1.3rem;
    color: var(--orange-primary);
    flex: 1;
}

.venue-trail {
    background: var(--orange-primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.venue-new {
    background: var(--gold);
    color: var(--black);
}

.venue-location {
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.venue-location i {
    color: var(--orange-primary);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.footer-section p {
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--orange-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-qr {
    text-align: center;
}

.footer-qr-box {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    display: inline-block;
}

.qr-code-footer {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.footer-qr-box p {
    color: var(--orange-primary);
    font-weight: 600;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hashtags {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--gold);
}

/* Trail Map Section */
.trail-map {
    padding: 80px 0;
    background: var(--off-white);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-visual {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow);
}

.map-legend {
    background: var(--gray-light);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.map-legend h3 {
    font-size: 1.5rem;
    color: var(--orange-primary);
    margin-bottom: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.legend-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
}

.trail-1-marker {
    background: var(--orange-primary);
}

.trail-2-marker {
    background: #4CAF50;
}

.trail-3-marker {
    background: #2196F3;
}

.trail-4-marker {
    background: var(--gold);
}

.bangalore-map {
    position: relative;
    padding: 30px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
    border-radius: 15px;
    border: 3px solid var(--orange-primary);
}

.map-title {
    text-align: center;
    font-size: 2rem;
    color: var(--orange-primary);
    margin-bottom: 30px;
}

.map-region {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.region-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-light);
}

.region-header {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: var(--white);
}

.region-header h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.region-header p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

.trail-1-bg {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
}

.trail-2-bg {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.trail-3-bg {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
}

.trail-4-bg {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
}

.central-region {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 30px;
    background: var(--white);
}

.sub-region {
    background: var(--off-white);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid var(--gray-light);
}

.venue-markers {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.venue-marker {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid;
    box-shadow: 0 2px 8px var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.venue-marker:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px var(--shadow-strong);
}

.venue-marker.trail-1-marker {
    border-left-color: var(--orange-primary);
}

.venue-marker.trail-2-marker {
    border-left-color: #4CAF50;
}

.venue-marker.trail-3-marker {
    border-left-color: #2196F3;
}

.venue-marker.trail-4-marker {
    border-left-color: var(--gold);
}

.venue-marker i {
    font-size: 1.2rem;
}

.venue-marker.trail-1-marker i {
    color: var(--orange-primary);
}

.venue-marker.trail-2-marker i {
    color: #4CAF50;
}

.venue-marker.trail-3-marker i {
    color: #2196F3;
}

.venue-marker.trail-4-marker i {
    color: var(--gold);
}

.venue-marker span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--black);
}

.venue-clusters {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cluster {
    background: var(--gray-light);
    padding: 15px;
    border-radius: 10px;
}

.cluster h5 {
    font-size: 1.1rem;
    color: var(--orange-primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--orange-primary);
}

.cluster .venue-marker {
    margin-bottom: 8px;
}

.cluster .venue-marker:last-child {
    margin-bottom: 0;
}

.trail-stats-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 3px solid;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-strong);
}

.trail-1-border {
    border-color: var(--orange-primary);
}

.trail-2-border {
    border-color: #4CAF50;
}

.trail-3-border {
    border-color: #2196F3;
}

.trail-4-border {
    border-color: var(--gold);
}

.stat-card .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--orange-primary);
    font-family: 'Bebas Neue', cursive;
}

.trail-2-border .stat-number {
    color: #4CAF50;
}

.trail-3-border .stat-number {
    color: #2196F3;
}

.trail-4-border .stat-number {
    color: var(--gold);
}

.stat-card .stat-label {
    font-size: 1rem;
    color: var(--gray-dark);
    margin: 10px 0;
    font-weight: 600;
}

.stat-card .stat-prize {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.map-note {
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    color: var(--white);
    border-radius: 15px;
    text-align: center;
}

.map-note p {
    font-size: 1.05rem;
    margin: 10px 0;
}

.map-note i {
    margin-right: 8px;
}

.map-note strong {
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px var(--shadow);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-qr {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .app-download-content {
        grid-template-columns: 1fr;
    }
    
    .app-features {
        grid-template-columns: 1fr;
    }
    
    .qr-code-large {
        width: 250px;
        height: 250px;
    }
    
    .voting-timeline {
        flex-direction: column;
        gap: 30px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .qr-code-medium {
        width: 180px;
        height: 180px;
    }
    
    .map-visual {
        padding: 20px;
    }
    
    .central-region {
        grid-template-columns: 1fr;
    }
    
    .venue-markers {
        grid-template-columns: 1fr;
    }
    
    .trail-stats-summary {
        grid-template-columns: 1fr 1fr;
    }
    
    .map-note {
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animation */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}