/* ========================================
           VARIABLES
        ======================================== */
        :root {
            --primary: #680201;
            --primary-dark: #460702;
            --primary-light: #680201;
            --secondary: #DACCB4;
            --white: #F9F0EE;
            --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        /* ========================================
           RESET
        ======================================== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary);
            color: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ========================================
           TYPOGRAPHY
        ======================================== */
        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            line-height: 1.2;
        }

        h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
        h2 { font-size: clamp(2rem, 4vw, 2.3rem);

             white-space: nowrap;
        }
        h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

        p {
            font-weight: 300;
            line-height: 1.8;
            font-size: 1rem;
        }

        .accent {
            color: var(--secondary);
        }

        /* ========================================
           PRELOADER
        ======================================== */
        .preloader {
            position: fixed;
            inset: 0;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        .preloader.loaded {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .preloader-logo {
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: preloaderPulse 1.5s ease-in-out infinite;
        }

        .preloader-logo img {
            max-width: 100%;
            max-height: 100%;
        }

        .preloader-text {
            margin-top: 2rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1rem;
            letter-spacing: 8px;
            text-transform: uppercase;
            color: var(--secondary);
            animation: textPulse 1.5s ease-in-out infinite;
        }

        @keyframes preloaderPulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.08); opacity: 0.7; }
        }

        @keyframes textPulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        /* ========================================
           ANIMATIONS
        ======================================== */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(60px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        @keyframes lineFlow {
            0% { transform: translateY(-100%); }
            100% { transform: translateY(100%); }
        }

        @keyframes scrollDown {
            0% { opacity: 1; top: 8px; }
            100% { opacity: 0; top: 30px; }
        }

        /* ========================================
           REVEAL ANIMATIONS
        ======================================== */
        .fade-up {
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
        }

        .fade-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-right {
            opacity: 0;
            transform: translateX(60px);
            transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
        }

        .fade-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-scale {
            opacity: 0;
            transform: scale(0.85);
            transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
        }

        .fade-scale.visible {
            opacity: 1;
            transform: scale(1);
        }

        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }
        .delay-5 { transition-delay: 0.5s; }
        .delay-6 { transition-delay: 0.6s; }

        /* ========================================
           FLOATING BACKGROUND
        ======================================== */
        .floating-bg {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .floating-orb {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(218, 204, 180, 0.1) 0%, transparent 70%);
        }

        .orb-1 {
            width: 400px;
            height: 400px;
            top: 10%;
            right: -100px;
            animation: float 15s ease-in-out infinite;
        }

        .orb-2 {
            width: 300px;
            height: 300px;
            bottom: 20%;
            left: -80px;
            animation: float 12s ease-in-out infinite reverse;
        }

        .orb-3 {
            width: 200px;
            height: 200px;
            top: 50%;
            left: 30%;
            animation: float 18s ease-in-out infinite 2s;
        }

        /* ========================================
           NAVIGATION
        ======================================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            margin: 0 auto;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: transparent;
            border-radius: 0;
            transition: all 0.9s ease;
        }

        .navbar.scrolled {
            background-image: url(/img/bg_red.png);
            background-size: cover;
            background-position: bottom;            backdrop-filter: blur(20px);
            padding: 0.8rem 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            top: 20px;
            left: 10%;
            right: 10%;
            width: 80%;
            max-width: 1400px;
            border-radius: 20px;
        }

        .nav-logo {
            height: 100px;
            transition: height 0.4s var(--transition-smooth);
        }

        .navbar.scrolled .nav-logo {
            height: 70px;
            width: auto;
        }

        .nav-logo img {
            height: 100%;
            width: auto;
            transition: transform 0.7s ease;
        }

        .nav-logo:hover img {
            transform: scale(1.05);
        }

        /* ========================================
           HAMBURGER MENU
        ======================================== */
        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding: 10px;
            cursor: pointer;
            z-index: 1001;
            background: transparent;
            border: none;
        }

        .hamburger span {
            width: 30px;
            height: 2px;
            background: var(--white);
            transition: all 0.4s var(--transition-smooth);
            transform-origin: center;
        }

        .hamburger:hover span {
            background: var(--secondary);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(20px);
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* ========================================
           SIDE MENU
        ======================================== */
        .side-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 400px;
            height: 100vh;
            background: var(--primary-dark);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4rem;
            transform: translateX(100%);
            transition: transform 0.5s var(--transition-smooth);
            z-index: 999;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        }

        .side-menu.active {
            transform: translateX(0);
        }

        .menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 998;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .side-menu-nav {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .side-menu-link {
            color: var(--white);
            text-decoration: none;
            font-size: 2rem;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 500;
            letter-spacing: 2px;
            padding: 1rem 0;
            position: relative;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.4s ease, color 0.3s ease;
            border-bottom: 1px solid rgba(218, 204, 180, 0.1);
        }

        .side-menu-link:last-child {
            border-bottom: none;
        }

        .side-menu-link::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.4s ease;
        }

        .side-menu-link:hover {
            color: var(--secondary);
            transform: translateX(10px);
        }

        .side-menu-link:hover::before {
            width: 50px;
        }

        .side-menu.active .side-menu-link {
            opacity: 1;
            transform: translateX(0);
        }

        .side-menu.active .side-menu-link:nth-child(1) { transition-delay: 0.1s; }
        .side-menu.active .side-menu-link:nth-child(2) { transition-delay: 0.2s; }
        .side-menu.active .side-menu-link:nth-child(3) { transition-delay: 0.3s; }
        .side-menu.active .side-menu-link:nth-child(4) { transition-delay: 0.4s; }
        .side-menu.active .side-menu-link:nth-child(5) { transition-delay: 0.5s; }

        .side-menu-cta {
            margin-top: 3rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease 0.6s;
        }

        .side-menu.active .side-menu-cta {
            opacity: 1;
            transform: translateY(0);
        }

        .side-menu-cta .btn {
            width: 100%;
            text-align: center;
        }

        /* ========================================
           BUTTONS
        ======================================== */
        .btn {
            padding: 1.2rem 3rem;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.4s ease;
            border: none;
            display: inline-block;
        }

        .btn-primary {
            background: var(--secondary);
            color: var(--primary);
            transition: all 0.4s ease, transform 0.15s ease-out;
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(218, 204, 180, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--secondary);
        }

        .btn-outline:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: translateY(-5px);
        }

        /* ========================================
           HERO SECTION (SHORTER)
        ======================================== */
        .hero {
            min-height: 75vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .hero-bg-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%) scale(1.1);
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(26, 34, 64, 0.7) 0%,
                rgba(38, 48, 86, 0.6) 50%,
                rgba(26, 34, 64, 0.7) 100%
            );
        }

        .hero-overlay::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 20% 80%, rgba(218, 204, 180, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(218, 204, 180, 0.08) 0%, transparent 50%);
        }

        .hero-lines {
            position: absolute;
            inset: 0;
            overflow: hidden;
            opacity: 0.1;
            z-index: 1;
        }

        .hero-lines span {
            position: absolute;
            display: block;
            width: 1px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, var(--secondary), transparent);
            animation: lineFlow 8s linear infinite;
        }

        .hero-lines span:nth-child(1) { left: 10%; animation-delay: 0s; }
        .hero-lines span:nth-child(2) { left: 30%; animation-delay: 2s; }
        .hero-lines span:nth-child(3) { left: 50%; animation-delay: 1s; }
        .hero-lines span:nth-child(4) { left: 70%; animation-delay: 3s; }
        .hero-lines span:nth-child(5) { left: 90%; animation-delay: 0.5s; }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: linear-gradient(to bottom, transparent, var(--primary-light));
            z-index: 1;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 0 2rem;
        }

        .hero-tagline {
            color: var(--secondary);
            font-size: 1rem;
            letter-spacing: 6px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeUp 1s var(--transition-smooth) forwards;
            animation-delay: 0.5s;
        }

        .hero h1 {
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeUp 1s var(--transition-smooth) forwards;
            animation-delay: 0.7s;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            font-weight: 300;
            opacity: 0;
            animation: fadeUp 1s var(--transition-smooth) forwards;
            animation-delay: 0.9s;
        }

        .hero-actions {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeUp 1s var(--transition-smooth) forwards;
            animation-delay: 1.1s;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            opacity: 0;
            animation: fadeUp 1s var(--transition-smooth) forwards;
            animation-delay: 1.4s;
        }

        .scroll-indicator span {
            display: block;
            width: 30px;
            height: 50px;
            border: 2px solid var(--secondary);
            border-radius: 20px;
            position: relative;
        }

        .scroll-indicator span::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: var(--secondary);
            border-radius: 50%;
            animation: scrollDown 2s infinite;
        }

        /* ========================================
           SECTIONS BASE
        ======================================== */
        section {
            padding: 8rem 5%;
            position: relative;
            overflow: hidden;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 5rem;
        }

        .section-tag {
            color: var(--secondary);
            font-size: 0.85rem;
            letter-spacing: 6px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            display: block;
        }

        .section-header p {
            opacity: 0.85;
        }

        /* ========================================
           OVERVIEW SECTION - BENTO GRID
        ======================================== */
        .overview {
            background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
            padding: 6rem 5%;
        }

        .overview-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* BENTO GRID LAYOUT - 3 CARDS */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: auto auto;
            gap: 1.25rem;
            margin-top: 3rem;
        }

        /* BASE CARD STYLES */
        .bento-card {
            background: linear-gradient(145deg, var(--primary-light), var(--primary) 100%);
            border: 1px solid rgba(218, 204, 180, 0.15);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
        }

        .bento-card:hover {
            border-color: rgba(218, 204, 180, 0.4);
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        /* Diamond Icon */
        .bento-diamond {
            margin-bottom: 1rem;
        }

        .bento-content {
            padding: 2rem;
        }

        .bento-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 0.75rem;
        }

        .bento-desc {
            font-size: 0.9rem;
            line-height: 1.6;
            color: rgba(249, 240, 238, 0.8);
            font-weight: 300;
        }

        /* CARD 1: Text Only (Left) - Row 1 */
        .bento-text-card {
            grid-column: span 1;
            grid-row: 1;
            min-height: 350px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .bento-text-card .bento-split-bg {
            position: absolute;
            inset: 0;
            background-image: url('/bande.png');
            background-size: auto 150%;
            background-position: -135% center;
            background-repeat: no-repeat;
            opacity: 0.9;
            z-index: 0;
            transition: opacity 0.4s ease;
        }

        .bento-text-card:hover .bento-split-bg {
            opacity: 0.9;
        }

        .bento-text-card .bento-content {
            position: relative;
            z-index: 2;
        }

        /* CARD 2: Large Image (Right) - Row 1 */
        .bento-image-card {
            grid-column: span 1;
            grid-row: 1;
            min-height: 350px;
            position: relative;
        }

        .bento-image-card .bento-split-bg {
            position: absolute;
            inset: 0;
            background-image: url('/bande.png');
            background-size: auto 150%;
            background-position: 100% center;
            background-repeat: no-repeat;
            opacity: 0.9;
            z-index: 1;
            transition: opacity 0.4s ease, transform 0.6s ease;
        }

        .bento-image-card:hover .bento-split-bg {
            opacity: 1;
            transform: scale(1.03);
        }

        .bento-bg-image {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: transform 0.6s ease;
        }

        .bento-image-card:hover .bento-bg-image {
            transform: scale(1.08);
        }

        .bento-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 29, 81, 0.4) 0%, transparent 60%);
        }

        /* CARD 5: Video + Text (Full Width) - Row 2 */
        .bento-media-text-card {
            grid-column: span 2;
            grid-row: 2;
            min-height: 300px;
            display: flex;
            align-items: stretch;
        }

        .bento-video-wrapper {
            width: 50%;
            padding: 1rem;
            display: flex;
            align-items: stretch;
        }

        .bento-video-wrapper video {
            width: 100%;
            height: 100%;
            min-height: 250px;
            object-fit: cover;
            border-radius: 12px;
        }

        .bento-media-text-card:hover .bento-media-item {
            transform: scale(1.03);
        }

        .bento-media-text-card .bento-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            width: 50%;
            padding: 2.5rem;
        }

        /* IMAGE MOBILE - Cach�e sur desktop */
        .bento-image-mobile {
            display: none;
        }

        /* CTA Section */
        .overview-cta {
            text-align: center;
            margin-top: 3.5rem;
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ========================================
           RESPONSIVE - TABLET (Bento Grid)
        ======================================== */
        @media (max-width: 1024px) {
            .bento-text-card {
                min-height: 300px;
            }

            .bento-image-card {
                min-height: 300px;
            }

            .bento-media-text-card {
                min-height: 280px;
            }

            .bento-video-wrapper {
                width: 50%;
            }

            .bento-media-text-card .bento-content {
                width: 50%;
            }
        }

        /* ========================================
           RESPONSIVE - MOBILE (Bento Grid) - OPTIMIS�
        ======================================== */
        @media (max-width: 768px) {
            .bento-grid {
                display: block;
            }

            /* Card 1 - Texte avec image int�gr�e */
            .bento-text-card {
                min-height: auto;
                margin-bottom: 1rem;
            }

            .bento-text-card .bento-split-bg {
                display: none;
            }

            .bento-text-card .bento-content {
                padding: 1.5rem;
            }

            .bento-text-card .bento-title {
                font-size: 1.3rem;
            }

            .bento-text-card .bento-desc {
                font-size: 0.9rem;
                line-height: 1.7;
            }

            /* Card 2 - Cach�e sur mobile */
            .bento-image-card {
                display: none;
            }

            /* Image mobile int�gr�e dans le texte (float right) */
            .bento-image-mobile {
                display: block;
                width: 45%;
                max-width: 200px;
                height: auto;
                border-radius: 12px;
                margin: 0 0 1rem 1rem;
                float: right;
                shape-outside: margin-box;
            }

            /* Card 5 - Video + Text */
            .bento-media-text-card {
                flex-direction: column;
                min-height: auto;
            }

            .bento-video-wrapper {
                width: 100%;
                padding: 1rem 1rem 0;
            }

            .bento-video-wrapper video {
                min-height: 200px;
            }

            .bento-media-text-card .bento-content {
                width: 100%;
                padding: 1.5rem;
            }

            .bento-media-text-card .bento-title {
                font-size: 1.3rem;
            }

            .bento-media-text-card .bento-desc {
                font-size: 0.9rem;
                line-height: 1.7;
            }
        }

        /* ==================== WHY EXHIBIT ==================== */
.why-exhibit {
    background: var(--primary-dark);
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(218, 204, 180, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.benefit-card:hover {
    transform: translateY(-15px);
    border-color: var(--secondary);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover::before {
    transform: translateX(100%);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease;
}

.benefit-icon .icon-logo {
    width: 50px;
    height: 50px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.benefit-icon .icon-hover {
    position: absolute;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.benefit-card:hover .icon-logo {
    opacity: 0;
}

.benefit-card:hover .icon-hover {
    opacity: 1;
}

.benefit-card:hover .benefit-icon {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: rotateY(360deg);
}

.benefit-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.benefit-card p {
    opacity: 0.8;
}

/* ==================== RESPONSIVE WHY EXHIBIT ==================== */

@media (max-width: 1024px) {
    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    h2 {
        font-size: 1.5rem;
        text-align: center;
         white-space: normal;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
    }

    .benefit-card:hover {
        transform: none;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .benefit-icon .icon-logo {
        width: 30px;
        height: 30px;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .benefit-card {
        padding: 1.5rem 1rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
    }

    .benefit-icon .icon-logo {
        width: 25px;
        height: 25px;
    }
}


        /* ========================================
           EXHIBITOR CARE SECTION
        ======================================== */
        .exhibitor-care {
            background: #E8E0D5;
            padding: 8rem 5%;
        }

        .exhibitor-care .section-tag {
            color: var(--primary);
        }

        .exhibitor-care .section-header h2 {
            color: var(--primary);
        }

        .exhibitor-care .section-header h2 .accent {
            color: #8B7355;
        }

        .exhibitor-care .section-header p {
            color: var(--primary);
            opacity: 0.7;
        }

        .care-card {
            max-width: 1100px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            display: grid;
            grid-template-columns: 300px 1fr;
            overflow: hidden;
            min-height: 450px;
        }

        .care-tabs {
            background: var(--primary);
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 1rem;
        }

        .care-tab-btn {
            padding: 1.5rem 1.5rem;
            background: transparent;
            border: 2px solid var(--secondary);
            border-radius: 15px;
            color: var(--white);
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.4s ease;
            text-align: center;
        }

        .care-tab-btn:hover {
            background: rgba(218, 204, 180, 0.1);
        }

        .care-tab-btn.active {
            background: var(--secondary);
            color: var(--primary);
            border-color: var(--secondary);
            box-shadow: 0 10px 30px rgba(218, 204, 180, 0.3);
        }

        .care-content {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .care-content-item {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .care-content-item.active {
            display: block;
        }

        .care-content-item .subtitle {
            color: var(--secondary);
            font-size: 0.85rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            color: #8B7355;
        }

        .care-content-item h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .care-content-item p {
            color: var(--primary);
            opacity: 0.75;
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .care-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .care-buttons .btn-primary {
            background: var(--primary);
            color: var(--white);
        }

        .care-buttons .btn-primary:hover {
            background: #002D71;
        }

        .care-buttons .btn-outline {
            color: var(--primary);
            border-color: var(--primary);
        }

        .care-buttons .btn-outline:hover {
            background: var(--primary);
            color: var(--white);
        }

        /* ========================================
           NEWSLETTER SECTION
        ======================================== */
        .newsletter {
            background: var(--primary-dark);
            padding: 6rem 5%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .newsletter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--secondary), transparent);
        }

        .newsletter::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--secondary), transparent);
        }

        .newsletter-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter-content h2 {
            margin-bottom: 1rem;
        }

        .newsletter-content p {
            opacity: 0.8;
            margin-bottom: 2.5rem;
        }

        .newsletter-form {
            width: 100%;
        }

        .newsletter-input-wrapper {
            display: flex;
            gap: 0;
            border: 2px solid var(--secondary);
            border-radius: 50px;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .newsletter-input-wrapper:focus-within {
            box-shadow: 0 0 30px rgba(218, 204, 180, 0.2);
        }

        .newsletter-form input[type="email"] {
            flex: 1;
            padding: 1.2rem 2rem;
            background: transparent;
            border: none;
            color: var(--white);
            font-size: 1rem;
            font-family: inherit;
            outline: none;
        }

        .newsletter-form input[type="email"]::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-btn {
            padding: 1.2rem 2.5rem;
            background: var(--secondary);
            color: var(--primary);
            border: none;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s ease;
            white-space: nowrap;
        }

        .newsletter-btn:hover {
            background: var(--white);
            color: var(--primary-dark);
        }

        /* ========================================
           FOOTER
        ======================================== */
        footer {
            background: var(--primary-dark);
            padding: 5rem 5% 2rem;
        }

        .footer-container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            max-width: 1400px;
            margin: 0 auto 4rem;
        }

        .footer-brand .footer-logo {
            height: 70px;
            margin-bottom: 1.5rem;
        }

        .footer-brand .footer-logo img {
            height: 100%;
            width: auto;
        }

        .footer-brand p {
            opacity: 0.7;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .footer-col h4 {
            color: var(--secondary);
            font-size: 0.9rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 0.8rem;
        }

        .footer-col a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.7;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-col a:hover {
            opacity: 1;
            color: var(--secondary);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            border: 1px solid rgba(218, 204, 180, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 1.1rem;
            transition: all 0.4s ease;
        }

        .social-links a:hover {
            background: var(--secondary);
            color: var(--primary);
            border-color: var(--secondary);
            transform: translateY(-5px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(218, 204, 180, 0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            opacity: 0.6;
            font-size: 0.85rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
        }

        .footer-bottom-links a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--secondary);
        }

        /* ========================================
           BACK TO TOP
        ======================================== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--secondary);
            color: var(--primary);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s ease;
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            background: var(--white);
            transform: translateY(-5px);
        }

        /* ========================================
           RESPONSIVE - TABLET
        ======================================== */
        @media (max-width: 1024px) {
            .care-card {
                grid-template-columns: 1fr;
            }

            .care-tabs {
                flex-direction: row;
                padding: 1.5rem;
                gap: 0.5rem;
            }

            .care-tab-btn {
                padding: 1rem;
                font-size: 0.9rem;
            }

            .benefits-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .scroll-indicator {
                display: none;
            }
        }

        /* ========================================
           RESPONSIVE - MOBILE
        ======================================== */
        @media (max-width: 768px) {
            section {
                padding: 4rem 5%;
            }

            /* Navbar */
            .navbar {
                padding: 1rem 4%;
            }

            .nav-logo {
                height: 60px;
            }

            .navbar.scrolled {
                width: 95%;
                left: 2.5%;
                right: 2.5%;
                padding: 0.6rem 1.5rem;
                border-radius: 30px;
            }

            .navbar.scrolled .nav-logo {
                height: 45px;
            }

            .hamburger span {
                width: 25px;
            }

            /* Hero */
            .hero {
                min-height: 70vh;
            }

            .hero-tagline {
                font-size: 0.8rem;
                letter-spacing: 3px;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .hero-actions {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 280px;
                text-align: center;
                padding: 1rem 2rem;
                font-size: 0.85rem;
            }

            /* Care Card */
            .care-tabs {
                flex-direction: column;
            }

            .care-content {
                padding: 2rem;
            }

            .care-buttons {
                flex-direction: column;
            }

            .care-buttons .btn {
                width: 100%;
            }

            /* Benefits */
            .benefits-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .benefit-card {
                padding: 2rem 1.5rem;
            }

            .benefit-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            /* Newsletter */
            .newsletter {
                padding: 4rem 5%;
            }

            .newsletter-input-wrapper {
                flex-direction: column;
                border-radius: 10px;
            }

            .newsletter-form input[type="email"] {
                padding: 1rem 1.5rem;
                text-align: center;
                border-bottom: 1px solid rgba(218, 204, 180, 0.3);
            }

            .newsletter-btn {
                padding: 1rem 2rem;
                border-radius: 0;
            }

            /* Footer */
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .footer-brand .footer-logo {
                height: 50px;
            }

            .social-links {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            /* Side Menu */
            .side-menu {
                width: 100%;
                padding: 3rem 2rem;
            }

            .side-menu-link {
                font-size: 1.6rem;
            }

            /* Back to Top */
            .back-to-top {
                width: 40px;
                height: 40px;
                bottom: 20px;
                right: 20px;
                font-size: 1rem;
            }
        }

        /* ========================================
           RESPONSIVE - SMALL MOBILE
        ======================================== */
        @media (max-width: 480px) {
            .nav-logo {
                height: 50px;
            }

            .navbar.scrolled .nav-logo {
                height: 60px;
            }

            .hero-tagline {
                font-size: 0.7rem;
                letter-spacing: 2px;
            }

            .section-header {
                margin-bottom: 3rem;
            }

            .section-tag {
                font-size: 0.75rem;
                letter-spacing: 4px;
            }
        }
 