:root {
    --primary: #1a1a1a;
    --accent-gold: #d4a574;
    --accent-terracotta: #c75b39;
    --accent-teal: #2d5f5d;
    --accent-ochre: #d49d42;
    --bg-cream: #f8f5f0;
    --text-dark: #2a2a2a;
    --text-light: #6a6a6a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Crimson Pro', serif;
    color: var(--text-dark);
    background: var(--bg-cream);
    overflow-x: hidden;
    line-height: 1.7;
}

.hidden {
    display: none !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(45, 95, 93, 0.6) 100%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    animation: subtleMove 20s linear infinite;
    z-index: 1;
}

@keyframes subtleMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--accent-gold);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease-out 0.3s backwards;
}

.hero-description {
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 300;
    animation: fadeInUp 1.2s ease-out 0.6s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.scroll-indicator:hover {
    color: rgba(255, 255, 255, 1);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-indicator span {
    display: block;
    width: 25px;
}

.carousel-indicators {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot.active {
    background: var(--accent-gold);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* States Section */
.states-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem;
}

.section-intro {
    text-align: center;
    margin-bottom: 6rem;
}

.section-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.state-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 8rem;
    align-items: start;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.state-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.state-card:nth-child(even) {
    direction: rtl;
}

.state-card:nth-child(even)>* {
    direction: ltr;
}

.state-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.state-card:hover::before {
    opacity: 1;
}

.state-images {
    position: sticky;
    top: 90px;
    height: auto;
    perspective: 1000px;
}

.state-image {
    position: absolute;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.state-image:hover {
    transform: scale(1.08) rotate(2deg) translateZ(20px);
    z-index: 10;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.state-image img,
.state-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.state-image:hover img,
.state-image:hover video {
    transform: scale(1.1);
}

.state-image video {
    object-fit: cover;
    background: #1a1a1a;
}

.state-image.main {
    width: 60%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.state-image.secondary {
    width: 40%;
    height: 48%;
    top: 0;
    right: 0;
    z-index: 1;
}

.state-image.accent {
    width: 40%;
    height: 48%;
    bottom: 0;
    right: 0;
    z-index: 1;
    opacity: 1;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 95, 93, 0.8) 100%);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.state-image:hover .image-overlay {
    opacity: 1;
}

/* New Gallery Container Layout */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    display: block;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

/* Gallery Images - Two on top */
.gallery-item.gallery-image {
    aspect-ratio: 4/3;
}

.gallery-item.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item.gallery-image:hover img {
    transform: scale(1.1);
}

/* Gallery Video - Full width below */
.gallery-item.gallery-video {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
}

.gallery-item.gallery-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Image Overlay */
.gallery-item .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: 'Crimson Pro', serif;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.gallery-item.gallery-video .image-overlay {
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    font-size: 1rem;
}

/* Video Play Icon */
.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 116, 0.9);
    color: white;
    font-size: 2rem;
    border-radius: 50%;
    opacity: 0.9;
    transition: all 0.3s ease;
    pointer-events: none;
    padding: 20px;
}

.gallery-item.gallery-video:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(212, 165, 116, 1);
    opacity: 1;
}

.state-content {
    padding: 2rem;
}

.state-header {
    position: relative;
    margin-bottom: 2rem;
}

.state-tag {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.state-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.2rem;
    height: 2px;
    background: currentColor;
}

.state-card:nth-child(1) .state-tag {
    color: var(--accent-terracotta);
}

.state-card:nth-child(2) .state-tag {
    color: var(--accent-teal);
}

.state-card:nth-child(3) .state-tag {
    color: var(--accent-ochre);
}

.state-card:nth-child(4) .state-tag {
    color: var(--accent-gold);
}

.state-card:nth-child(5) .state-tag {
    color: var(--accent-terracotta);
}

.state-card:nth-child(6) .state-tag {
    color: var(--accent-teal);
}

.state-card:nth-child(7) .state-tag {
    color: var(--accent-ochre);
}

.state-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.state-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.state-description {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.state-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    background: rgba(212, 165, 116, 0.1);
    padding: 0.7rem 1.4rem;
    border-radius: 30px;
    font-size: 0.95rem;
    color: var(--text-dark);
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '✦';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
    opacity: 0;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(212, 165, 116, 0.2);
    padding-left: 2rem;
    border-color: var(--accent-gold);
}

.highlight-item:hover::before {
    left: 0.8rem;
    opacity: 1;
}

.explore-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.explore-btn::after {
    content: '→';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%) translateX(0);
    opacity: 0;
    transition: all 0.3s ease;
}

.explore-btn:hover::before {
    left: 100%;
}

.explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding-right: 3.5rem;
}

.explore-btn:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(5px);
}

.explore-btn:active {
    transform: translateY(0);
}

/* Region Tabs */
.region-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(212, 165, 116, 0.2);
}

.region-tab {
    padding: 0.8rem 1.5rem;
    background: none;
    border: none;
    font-family: 'Crimson Pro', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.region-tab:hover {
    color: var(--accent-gold);
}

.region-tab.active {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dev-badge {
    display: inline-block;
    background: rgba(45, 95, 93, 0.1);
    color: var(--accent-teal);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 1rem;
    letter-spacing: 1px;
}

/* Footer */
footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 2rem 2rem;
    text-align: center;
}

footer h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

footer p {
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 18px;
}

.footer-links a:hover {
    color: #fff;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.scroll-top::before {
    content: '↑';
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    /* backdrop-filter: blur(10px); */
    padding: 1rem 2rem;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.transparent {
    background: transparent;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo:hover {
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-menu li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-menu li a:hover {
    color: var(--accent-gold);
}

.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    min-width: 200px;
    padding: 1rem 0;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 0;
}

.nav-menu .dropdown:hover .dropdown-content {
    display: block;
}

.nav-menu .dropdown-content a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-menu .dropdown-content a::after {
    display: none;
}

.nav-menu .dropdown-content a:hover {
    background: rgba(212, 165, 116, 0.1);
    padding-left: 2rem;
}

.nav-menu .dropdown-category {
    padding: 1rem 1.5rem 0.5rem 1.5rem;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
}

.nav-menu .dropdown-category:first-child {
    border-top: none;
    margin-top: 0;
}

/* Mega Menu */
.nav-menu .mega-menu .dropdown-content {
    min-width: 500px;
    padding: 1.5rem;
    left: auto;
    right: -100px;
}

.nav-menu .mega-menu-content {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.nav-menu .mega-menu:hover .mega-menu-content {
    display: grid;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
}

.mega-menu-column .dropdown-category {
    padding: 0 0 1rem 0;
    margin: 0 0 0.8rem 0;
    border-top: none;
    border-bottom: 2px solid rgba(212, 165, 116, 0.3);
    font-size: 0.9rem;
}

.mega-menu-column a {
    padding: 0.6rem 1rem !important;
    margin-bottom: 0.3rem;
    border-radius: 4px;
}

.mega-menu-column a:hover {
    padding-left: 1rem !important;
    transform: translateX(5px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu .dropdown-content {
        position: static;
        display: none;
        background: rgba(212, 165, 116, 0.1);
        margin-top: 0.5rem;
        border-radius: 4px;
    }

    .nav-menu .dropdown.active .dropdown-content {
        display: block;
    }

    .nav-menu .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .nav-menu .mega-menu:hover .mega-menu-content {
        display: none;
    }

    .nav-menu .mega-menu.active .mega-menu-content {
        display: grid;
    }

    .nav-menu .mega-menu .dropdown-content {
        min-width: auto;
        padding: 1rem;
    }
}

/* Events Section */
.events-section {
    background: var(--bg-cream);
    padding: 8rem 2rem;
    position: relative;
}

.events-container {
    max-width: 1400px;
    margin: 0 auto;
}

.events-slider {
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* .events-slider .event-card {
    margin: 0;
} */

.events-slider .slick-prev,
.events-slider .slick-next {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    top: 40%;
}

.events-slider .slick-prev:hover,
.events-slider .slick-next:hover {
    background: var(--accent-gold);
    /* transform: scale(1.1); */
}

.events-slider .slick-prev {
    left: -60px;
}

.events-slider .slick-next {
    right: -60px;
}

.events-slider .slick-prev:before,
.events-slider .slick-next:before {
    content: '';
}

.events-slider .slick-dots {
    bottom: 0;
    position: relative;
    margin-top: 30px;
}

.events-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--primary);
    opacity: 0.5;
}

.events-slider .slick-dots li.slick-active button:before {
    color: var(--accent-gold);
    opacity: 1;
}

@media (max-width: 900px) {
    .events-slider {
        padding: 0 60px;
    }

    .events-slider .slick-prev {
        left: -45px;
    }

    .events-slider .slick-next {
        right: -45px;
    }
}

@media (max-width: 768px) {
    .events-slider {
        padding: 0 40px;
    }

    .events-slider .slick-prev {
        left: -35px;
    }

    .events-slider .slick-next {
        right: -35px;
    }
}

.event-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
    max-width: 1100px;
    margin: 50px auto;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.4s ease;
}

.event-image-wrapper {
    overflow: hidden;
    position: relative;
}

.event-date-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-gold);
    color: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.event-date-badge .day {
    font-size: 1.8rem;
    display: block;
    line-height: 1;
}

.event-date-badge .month {
    font-size: 0.9rem;
    display: block;
    margin-top: 0.2rem;
}

.event-date-badge .year {
    font-size: 0.8rem;
    display: block;
    margin-top: 0.2rem;
    opacity: 0.9;
}

.event-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-category {
    display: inline-block;
    background: rgba(212, 165, 116, 0.1);
    color: var(--accent-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    width: fit-content;
}

.event-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.event-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.event-meta {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 1rem;
    color: var(--text-dark);
}

.event-meta-item {
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.event-meta-days span {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .event-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .event-image {
        height: 250px;
    }

    .event-content {
        padding: 1.5rem;
    }

    .event-title {
        font-size: 1.5rem;
    }
}

.event-link:hover {
    color: var(--accent-terracotta);
    transform: translateX(5px);
}

.event-image-link {
    display: block;
    cursor: zoom-in;
    width: 100%;
    height: 100%;
}

.event-image-link:hover .event-image {
    transform: scale(1.05);
}

/* About Us Section */
/* New About Section - Left Image + Right Content */
.about-toureast-section {
    background: var(--bg-cream);
    padding: 6rem 2rem;
    position: relative;
}

.about-toureast-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 40% 54%;
    gap: 4rem;
    align-items: center;
}

.about-toureast-image {
    position: relative;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-toureast-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-toureast-image:hover img {
    transform: scale(1.05);
}

.about-toureast-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-toureast-content .tagline {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-style: italic;
}

.about-toureast-content p {
    color: var(--text-dark);
    line-height: 1.3;
    font-size: 18px;
    margin-bottom: 1.5rem;
}

.about-toureast-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-highlight-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.about-highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.about-highlight-item h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.about-highlight-item p {
    color: #6a6a6a;
    font-size: 17px;
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 968px) {
    .about-toureast-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-toureast-image {
        height: 400px;
    }

    .about-toureast-highlights {
        grid-template-columns: 1fr;
    }
}

/* Callback Section (formerly About Section) */
.callback-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 100%);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.callback-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.02) 10px, rgba(255, 255, 255, 0.02) 20px);
    pointer-events: none;
}

.callback-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.callback-header {
    text-align: center;
    margin-bottom: 4rem;
}

.callback-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.callback-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.callback-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.callback-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.callback-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.callback-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
}

.callback-card:hover::before {
    opacity: 1;
}

.callback-icon {
    margin-bottom: 1.5rem;
    display: block;
}

.callback-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.callback-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 18px;
}

/* Contact Section */
.contact-section {
    background: var(--bg-cream);
    padding: 8rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    position: relative;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-info p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(212, 165, 116, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(212, 165, 116, 0.1);
    transform: translateX(10px);
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.contact-item-text p {
    font-size: 1.1rem;
    color: var(--primary);
    margin: 0;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link span {
    position: relative;
    z-index: 1;
}

.social-link:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Callback Form */
.callback-form {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.callback-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-terracotta), var(--accent-gold), var(--accent-teal));
    border-radius: 8px 8px 0 0;
}

.callback-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.callback-form p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(212, 165, 116, 0.2);
    border-radius: 4px;
    font-family: 'Crimson Pro', serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--accent-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.submit-btn span {
    position: relative;
    z-index: 1;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-nav.visible {
    opacity: 1;
    visibility: visible;
}

.nav-dot {
    width: 12px;
    height: 12px;
    background: rgba(26, 26, 26, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot:hover,
.nav-dot.active {
    background: var(--accent-gold);
    transform: scale(1.5);
}

.nav-dot::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-dot:hover::after {
    opacity: 1;
}

.gallery-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.callback-icon img {
    width: auto;
    max-width: 100%;
}

img.custom-logo {
    max-height: 50px;
    width: auto;
}

.footer-logo-wrapper a {
    display: inline-block;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    line-height: 0;
}

.footer-logo-wrapper a img {
    max-height: 100px;
    width: auto;
}

@media (max-width: 968px) {
    .floating-nav {
        display: none;
    }
}

/* Loading animation */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Loading animation */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.section-intro {
    animation: fadeInScale 1s ease-out;
}

/* Responsive */
@media (max-width: 968px) {
    .state-card {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .state-card:nth-child(even) {
        direction: ltr;
    }

    /* .state-images {
        height: 400px;
    } */

    .hero h1 {
        font-size: 3rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .state-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .callback-content {
        grid-template-columns: 1fr;
    }

    .state-images {
        position: relative;
        top: 0;
    }

}

@media (max-width: 640px) {
    .states-container {
        padding: 4rem 1rem;
    }

    .state-card {
        margin-bottom: 5rem;
    }

    /* .state-images {
        height: 320px;
    } */

    .state-image.main {
        width: 70%;
        height: 60%;
    }

    .state-image.secondary {
        width: 50%;
        height: 45%;
    }

    .state-image.accent {
        width: 60%;
        height: 50%;
    }

    .gallery-container {
        /* grid-template-columns: 1fr; */
        gap: 0.75rem;
    }

    .gallery-item.gallery-image {
        aspect-ratio: 16/9;
    }

    .video-play-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .gallery-item.gallery-video .image-overlay {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .highlight-item {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .state-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .callback-form {
        padding: 2rem 1.5rem;
    }

    .callback-section {
        padding: 4rem 1rem;
    }

    .contact-section {
        padding: 4rem 1rem;
    }

    .social-links {
        justify-content: center;
    }

    .downloads-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .download-card {
        flex-direction: column;
    }

    .download-thumbnail,
    .download-icon {
        width: 100%;
        height: 200px;
    }
}

/* ========================================
   Downloads Section
   ======================================== */
.downloads-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #faf8f6 0%, #f5f2ed 100%);
}

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

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.download-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    position: relative;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.download-thumbnail {
    width: 140px;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    flex-shrink: 0;
}

.download-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-icon {
    width: 140px;
    height: 100%;
    min-height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.download-icon span {
    font-size: 4rem;
}

.download-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.download-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: rgba(139, 69, 19, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.download-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.download-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    flex: 1;
    line-height: 1.6;
}

.download-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.download-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.file-type {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.file-size {
    color: var(--text-light);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
    width: 100%;
}

.download-btn:hover {
    background: var(--accent-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.download-btn svg {
    transition: transform 0.3s ease;
}

.download-btn:hover svg {
    transform: translateY(2px);
}