        :root {
            --primary: #1a3c34;
            --primary-lt: #255247;
            --accent: #c9a04a;
            --accent-dk: #b8976b;
            --accent-lt: #f5ead6;
            --bg: #fdfaf5;
            --card: #ffffff;
            --text: #1e2d27;
            --text-muted: #5a7268;
            --border: #e4d5bc;
            --border-lt: #f0e8d8;
            --shadow-xs: 0 2px 8px rgba(26, 60, 52, 0.06);
            --shadow-sm: 0 6px 24px rgba(26, 60, 52, 0.10);
            --shadow-md: 0 16px 48px rgba(26, 60, 52, 0.14);
            --shadow-lg: 0 28px 72px rgba(26, 60, 52, 0.18);
            --radius: 14px;
            --radius-lg: 20px;
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--bg);
            color: var(--text);
            font-family: 'Outfit', system-ui, sans-serif;
            line-height: 1.65;
            overflow-x: hidden;
        }

        ::-webkit-scrollbar {
            width: 5px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 3px;
        }

        /* ═══════════ PAGE LOADER ═══════════ */
        #pageLoader {
            position: fixed;
            inset: 0;
            background: var(--primary);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.8s ease;
        }

        #pageLoader.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loader-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 700;
            color: white;
            letter-spacing: 6px;
            animation: loaderPulse 2s ease-in-out infinite;
        }

        .loader-logo span {
            color: var(--accent);
        }

        .loader-sub {
            font-size: 0.72rem;
            letter-spacing: 3px;
            color: rgba(255, 255, 255, 0.4);
            text-transform: uppercase;
            margin-top: 0.4rem;
        }

        .loader-progress {
            width: 120px;
            height: 1px;
            background: rgba(255, 255, 255, 0.15);
            margin-top: 2.5rem;
            border-radius: 1px;
            overflow: hidden;
        }

        .loader-progress-fill {
            height: 100%;
            width: 0;
            background: var(--accent);
            animation: loadFill 1.3s ease forwards;
        }

        @keyframes loaderPulse {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: 0.6
            }
        }

        @keyframes loadFill {
            to {
                width: 100%;
            }
        }

        /* ═══════════ NAVBAR ═══════════ */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(253, 250, 245, 0.97);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-lt);
            padding: 0 5%;
            height: 66px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.3rem, 4vw, 1.85rem);
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: 0.5px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .logo span {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            gap: 2.2rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.94rem;
            transition: color 0.2s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.25s ease;
            border-radius: 1px;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            width: 38px;
            height: 38px;
            align-items: center;
            justify-content: center;
            background: none;
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text);
            cursor: pointer;
            font-size: 1.1rem;
            transition: all 0.2s;
            flex-shrink: 0;
        }

        .hamburger:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .lang-selector {
            position: relative;
        }

        .lang-btn {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0.9rem;
            background: white;
            border: 1px solid var(--border);
            border-radius: 999px;
            font-size: 0.87rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            color: var(--text);
            font-family: 'DM Sans', sans-serif;
        }

        .lang-btn:hover {
            border-color: var(--accent);
            background: var(--accent-lt);
        }

        .lang-menu {
            display: none;
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            min-width: 140px;
            background: white;
            border: 1px solid var(--border);
            border-radius: 12px;
            box-shadow: var(--shadow-md);
            z-index: 1100;
            overflow: hidden;
        }

        .lang-menu.show {
            display: block;
        }

        .lang-menu button {
            display: block;
            width: 100%;
            padding: 0.65rem 1.1rem;
            text-align: left;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
            font-family: 'DM Sans', sans-serif;
            color: var(--text);
            transition: background 0.15s;
        }

        .lang-menu button:hover {
            background: var(--accent-lt);
        }

        .lang-menu button.active {
            color: var(--accent);
            font-weight: 600;
        }

        @media (max-width:820px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: min(300px, 85vw);
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 88px 2rem 2rem;
                box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
                border-left: 1px solid var(--border);
                z-index: 1000;
                transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
                gap: 0.3rem;
                align-items: flex-start;
                overflow-y: auto;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                font-size: 1.05rem;
                width: 100%;
                padding: 0.7rem 0;
                border-bottom: 1px solid var(--border-lt);
                color: var(--text);
            }

            .nav-links a::after {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .nav-links .lang-selector {
                display: block;
                width: 100%;
                margin-top: 1.2rem;
            }

            .nav-links .lang-selector .lang-menu {
                position: static;
                box-shadow: none;
                border: 1px solid var(--border);
                margin-top: 6px;
                width: 100%;
                border-radius: 10px;
            }

            .nav-links .lang-selector .lang-btn {
                width: 100%;
                justify-content: space-between;
                padding: 0.7rem 1rem;
            }
        }

        .overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
            transition: all 0.3s;
            backdrop-filter: blur(2px);
        }

        .overlay.show {
            opacity: 1;
            visibility: visible;
        }

        /* ═══════════ HERO — VIDEO BACKGROUND ═══════════ */
        .hero {
            position: relative;
            height: 120vh;
            min-height: 640px;
            display: flex;
            align-items: center;
            /* overflow: hidden; */
        }

        /* Hero video background */
        .hero-video-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-video-bg video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Fallback image slides (shown when video can't load) */
        .hero-slides {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.6s ease;
        }

        .hero-slide.active {
            opacity: 1;
            animation: kenBurns 9s ease-out forwards;
        }

        .hero-slide:nth-child(1) {
            background-image: url('https://joiaegypt.com/storage/about/KdpSuOvLyTNRhXfsQYLdrQDpjzyfuZN3CYWYJvTi.jpg');
        }

        .hero-slide:nth-child(2) {
            background-image: url('https://joiaegypt.com/storage/tours/aSbBMkymMz7IuVGFHxrN99TeC2wogPnx46H6EASi.jpg');
        }

        .hero-slide:nth-child(3) {
            background-image: url('https://joiaegypt.com/storage/tours/06DbN8ohPvRM4pU6FIk6EtZO6mE6gZC71b6NIj6L.jpg');
        }

        @keyframes kenBurns {
            from {
                transform: scale(1.1)
            }

            to {
                transform: scale(1)
            }
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(160deg, rgba(15, 35, 28, 0.88) 0%, rgba(26, 60, 52, 0.6) 50%, rgba(201, 160, 74, 0.12) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 3;
            padding: 0 6%;
            width: 100%;
            max-width: 1000px;
            margin-top: 40px;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(201, 160, 74, 0.15);
            border: 1px solid rgba(201, 160, 74, 0.35);
            color: #f5d98a;
            padding: 0.4rem 1.1rem;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 1.3rem;
            opacity: 0;
            animation: fadeUp 0.7s 0.3s ease forwards;
        }

        .hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.8rem, 8vw, 6rem);
            font-weight: 700;
            line-height: 1.0;
            color: white;
            text-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
            margin-bottom: 1.3rem;
            opacity: 0;
            animation: fadeUp 0.8s 0.5s ease forwards;
        }

        .hero h1 em {
            font-style: italic;
            color: #f5d98a;
        }

        .hero-sub {
            font-size: clamp(1rem, 2.2vw, 1.18rem);
            color: rgba(255, 255, 255, 0.78);
            max-width: 560px;
            line-height: 1.75;
            margin-bottom: 2.2rem;
            opacity: 0;
            animation: fadeUp 0.8s 0.7s ease forwards;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeUp 0.8s 0.9s ease forwards;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            background: var(--accent);
            color: white;
            padding: 1rem 2.3rem;
            border-radius: 999px;
            font-weight: 700;
            font-size: 0.97rem;
            text-decoration: none;
            transition: all 0.25s;
            box-shadow: 0 8px 28px rgba(201, 160, 74, 0.45);
        }

        .btn-primary:hover {
            background: var(--accent-dk);
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(201, 160, 74, 0.55);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 1rem 2.3rem;
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.97rem;
            text-decoration: none;
            border: 1.5px solid rgba(255, 255, 255, 0.35);
            transition: all 0.25s;
            backdrop-filter: blur(6px);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: white;
            transform: translateY(-3px);
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(22px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        .hero-dots {
            position: absolute;
            bottom: 135px;
            left: 6%;
            z-index: 4;
            display: flex;
            gap: 0.5rem;
        }

        .hero-dot {
            height: 3px;
            width: 24px;
            border-radius: 2px;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.35s;
        }

        .hero-dot.active {
            width: 40px;
            background: var(--accent);
        }

        .hero-scroll {
            position: absolute;
            bottom: 135px;
            right: 6%;
            z-index: 4;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.35rem;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: scrollBounce 2s ease infinite;
        }

        @keyframes scrollBounce {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(7px)
            }
        }

        /* Mute button for hero video */
        .hero-mute-btn {
            position: absolute;
            bottom: 135px;
            right: 6%;
            z-index: 4;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(0, 0, 0, 0.35);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.75);
            padding: 0.45rem 0.9rem;
            border-radius: 999px;
            font-size: 0.78rem;
            font-family: 'Outfit', sans-serif;
            cursor: pointer;
            transition: all 0.2s;
            backdrop-filter: blur(8px);
        }

        .hero-mute-btn:hover {
            background: rgba(201, 160, 74, 0.3);
            border-color: var(--accent);
            color: white;
        }

        .hero-stats {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%) translateY(50%);
            z-index: 4;
            width: calc(100% - 10%);
            max-width: 900px;
        }

        .hero-stats-card {
            background: white;
            border-radius: var(--radius-lg);
            box-shadow: 0 20px 60px rgba(26, 60, 52, 0.18);
            border: 1px solid var(--border-lt);
            display: flex;
            flex-wrap: wrap;
            overflow: hidden;
        }

        .hsc-item {
            flex: 1;
            min-width: 140px;
            padding: 1.4rem 1.8rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            border-right: 1px solid var(--border-lt);
            transition: background 0.2s;
        }

        .hsc-item:last-child {
            border-right: none;
        }

        .hsc-item:hover {
            background: var(--accent-lt);
        }

        .hsc-icon {
            width: 42px;
            height: 42px;
            flex-shrink: 0;
            background: var(--accent-lt);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1rem;
            transition: all 0.25s;
        }

        .hsc-item:hover .hsc-icon {
            background: var(--accent);
            color: white;
        }

        .hsc-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }

        .hsc-label {
            font-size: 0.74rem;
            color: var(--text-muted);
            font-weight: 500;
            margin-top: 0.15rem;
        }

        @media (max-width:620px) {
            .hsc-item {
                min-width: calc(50% - 1px);
            }

            .hsc-item:nth-child(2) {
                border-right: none;
            }

            .hero-stats {
                display: none;
            }
        }

        /* ═══════════ SECTION LAYOUT ═══════════ */
        .section {
            padding: 6rem 5% 3rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            background: var(--accent-lt);
            border: 1px solid rgba(201, 160, 74, 0.3);
            color: var(--accent);
            padding: 0.28rem 0.9rem;
            border-radius: 999px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 0.9rem;
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.8rem, 5vw, 3rem);
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 0.6rem;
        }

        .section-sub {
            color: var(--text-muted);
            font-size: 1rem;
            max-width: 550px;
            margin: 0 auto;
            line-height: 1.75;
        }

        .reveal {
            opacity: 0;
            transform: translateY(26px);
            transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-d1 {
            transition-delay: 0.1s
        }

        .reveal-d2 {
            transition-delay: 0.2s
        }

        .reveal-d3 {
            transition-delay: 0.3s
        }

        .reveal-d4 {
            transition-delay: 0.4s
        }

        .skeleton {
            background: linear-gradient(90deg, var(--border-lt) 25%, #ede3d0 50%, var(--border-lt) 75%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            border-radius: 8px;
        }

        @keyframes shimmer {
            0% {
                background-position: 200% 0
            }

            100% {
                background-position: -200% 0
            }
        }

        .skeleton-card {
            background: var(--card);
            border: 1px solid var(--border-lt);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-xs);
        }

        .sk-img {
            height: 220px;
        }

        .sk-body {
            padding: 1.2rem;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }

        .sk-line {
            height: 12px;
        }

        .sk-line.short {
            width: 55%
        }

        .sk-line.xshort {
            width: 35%
        }

        /* ═══════════ VIDEO SECTION — ENHANCED ═══════════ */
        .video-section {
            padding: 5rem 5%;
            background: var(--primary);
            position: relative;
            overflow: hidden;
        }

        .video-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 20% 50%, rgba(201, 160, 74, 0.1) 0%, transparent 60%);
        }

        .video-inner {
            max-width: 1280px;
            margin: 0 auto;
        }

        .video-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
        }

        @media (max-width:768px) {
            .video-grid {
                grid-template-columns: 1fr;
            }
        }

        .video-text {
            color: white;
        }

        .video-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            background: rgba(201, 160, 74, 0.15);
            border: 1px solid rgba(201, 160, 74, 0.3);
            color: var(--accent);
            padding: 0.28rem 0.9rem;
            border-radius: 999px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .video-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1rem;
        }

        .video-title em {
            color: var(--accent);
            font-style: italic;
        }

        .video-desc {
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .video-features {
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }

        .video-feat {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        .video-feat i {
            color: var(--accent);
            font-size: 0.85rem;
            width: 16px;
        }

        .video-frame-wrap {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(201, 160, 74, 0.2);
            aspect-ratio: 16/9;
        }

        .video-frame-wrap video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Video controls overlay */
        .video-controls-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 0.75rem 1rem;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 3;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .video-frame-wrap:hover .video-controls-bar {
            opacity: 1;
        }

        .vid-ctrl-btn {
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: white;
            width: 34px;
            height: 34px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 0.8rem;
            transition: all 0.2s;
            backdrop-filter: blur(4px);
        }

        .vid-ctrl-btn:hover {
            background: var(--accent);
            border-color: var(--accent);
        }

        .vid-ctrl-label {
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-family: 'Outfit', sans-serif;
        }

        .video-frame-wrap::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            width: 60px;
            height: 60px;
            border-top: 3px solid var(--accent);
            border-left: 3px solid var(--accent);
            border-radius: 20px 0 0 0;
            z-index: 2;
            pointer-events: none;
        }

        .video-frame-wrap::after {
            content: '';
            position: absolute;
            bottom: -2px;
            right: -2px;
            width: 60px;
            height: 60px;
            border-bottom: 3px solid var(--accent);
            border-right: 3px solid var(--accent);
            border-radius: 0 0 20px 0;
            z-index: 2;
            pointer-events: none;
        }

        /* ═══════════ COUNTDOWN TIMER ═══════════ */
        .countdown-section {
            background: linear-gradient(135deg, #0d2419, #1a3c34);
            padding: 3.5rem 5%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .countdown-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a04a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .countdown-inner {
            max-width: 860px;
            margin: 0 auto;
            position: relative;
        }

        .countdown-label {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: rgba(255, 255, 255, 0.45);
            margin-bottom: 0.5rem;
        }

        .countdown-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.5rem, 4vw, 2.4rem);
            color: white;
            font-weight: 700;
            margin-bottom: 2rem;
        }

        .countdown-title em {
            color: var(--accent);
            font-style: italic;
        }

        .countdown-clock {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .cc-unit {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .cc-box {
            width: 90px;
            height: 90px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(201, 160, 74, 0.25);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: white;
            position: relative;
            overflow: hidden;
            transition: transform 0.15s;
        }

        .cc-box.tick {
            transform: scale(0.93);
        }

        .cc-box::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: rgba(255, 255, 255, 0.06);
        }

        .cc-sep {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            color: var(--accent);
            font-weight: 700;
            padding-bottom: 1.4rem;
            animation: sepBlink 1s ease infinite;
        }

        @keyframes sepBlink {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: 0.3
            }
        }

        .cc-label {
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 0.6rem;
        }

        .countdown-deal-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #c53030, #e05252);
            color: white;
            padding: 0.5rem 1.3rem;
            border-radius: 999px;
            font-size: 0.82rem;
            font-weight: 700;
            box-shadow: 0 4px 16px rgba(197, 48, 48, 0.4);
            animation: pulseBadge 1.8s ease infinite;
        }

        @keyframes pulseBadge {

            0%,
            100% {
                box-shadow: 0 4px 16px rgba(197, 48, 48, 0.4)
            }

            50% {
                box-shadow: 0 4px 24px rgba(197, 48, 48, 0.7)
            }
        }

        @media (max-width:480px) {
            .cc-box {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
                border-radius: 12px;
            }

            .countdown-clock {
                gap: 0.8rem;
            }
        }

        /* ═══════════ TOURS / DEALS ═══════════ */
        .tours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
            gap: 1.4rem;
        }

        .tour-card {
            background: var(--card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-lt);
            box-shadow: var(--shadow-xs);
            overflow: hidden;
            transition: all 0.3s;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .tour-card:hover {
            transform: translateY(-7px);
            box-shadow: var(--shadow-md);
            border-color: transparent;
        }

        .tc-img-wrap {
            position: relative;
            overflow: hidden;
            height: 220px;
        }

        .tc-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.55s ease;
        }

        .tour-card:hover .tc-img {
            transform: scale(1.07);
        }

        .tc-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--primary);
            color: white;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            padding: 0.25rem 0.7rem;
            border-radius: 999px;
        }

        .tc-badge.multi {
            background: var(--accent);
        }

        .tc-rating {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(26, 60, 52, 0.85);
            backdrop-filter: blur(4px);
            color: white;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.25rem 0.65rem;
            border-radius: 999px;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .tc-rating i {
            color: #f5c842;
            font-size: 0.65rem;
        }

        .tc-body {
            padding: 1.3rem 1.4rem 1.5rem;
        }

        .tc-location {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.78rem;
            color: var(--text-muted);
            font-weight: 500;
            margin-bottom: 0.4rem;
        }

        .tc-location i {
            color: var(--accent);
            font-size: 0.68rem;
        }

        .tc-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.8rem;
            line-height: 1.3;
        }

        .tc-meta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }

        .tc-meta-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .tc-meta-item i {
            color: var(--accent);
            font-size: 0.7rem;
        }

        .tc-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid var(--border-lt);
            padding-top: 0.9rem;
        }

        .tc-price-from {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        .tc-price {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
        }

        .tc-price-per {
            font-size: 0.72rem;
            color: var(--text-muted);
        }

        .tc-btn {
            width: 36px;
            height: 36px;
            background: var(--accent-lt);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 0.85rem;
            transition: all 0.22s;
        }

        .tour-card:hover .tc-btn {
            background: var(--accent);
            color: white;
        }

        .deal-card {
            background: var(--card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-lt);
            box-shadow: var(--shadow-xs);
            overflow: hidden;
            transition: all 0.3s;
            text-decoration: none;
            color: inherit;
            display: block;
            position: relative;
        }

        .deal-card:hover {
            transform: translateY(-7px);
            box-shadow: var(--shadow-md);
        }

        .deal-ribbon {
            position: absolute;
            top: 1rem;
            left: 1rem;
            z-index: 2;
            background: linear-gradient(135deg, #c53030, #e05252);
            color: white;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 0.25rem 0.7rem;
            border-radius: 999px;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .deal-discount {
            position: absolute;
            top: 1rem;
            right: 1rem;
            z-index: 2;
            background: var(--primary);
            color: var(--accent);
            font-family: 'Cormorant Garamond', serif;
            font-size: 1rem;
            font-weight: 700;
            padding: 0.3rem 0.75rem;
            border-radius: 10px;
        }

        /* ═══════════ DESTINATIONS ═══════════ */
        .dest-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
            gap: 1.1rem;
        }

        .dest-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 3/4;
            display: block;
            text-decoration: none;
            box-shadow: var(--shadow-sm);
        }

        .dest-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .dest-card:hover .dest-img {
            transform: scale(1.08);
        }

        .dest-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(26, 60, 52, 0.85) 0%, rgba(26, 60, 52, 0.2) 50%, transparent 100%);
        }

        .dest-body {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.4rem 1.2rem;
        }

        .dest-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.2rem;
        }

        .dest-count {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .dest-count i {
            color: var(--accent);
            font-size: 0.68rem;
        }

        /* ═══════════ WHY US ═══════════ */
        .why-strip {
            background: var(--primary);
            padding: 5rem 5%;
        }

        .why-strip-inner {
            max-width: 1280px;
            margin: 0 auto;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr));
            gap: 2rem;
            margin-top: 2.5rem;
        }

        .why-item {
            text-align: center;
            color: white;
        }

        .why-icon-wrap {
            width: 64px;
            height: 64px;
            margin: 0 auto 1.1rem;
            background: rgba(201, 160, 74, 0.12);
            border: 1px solid rgba(201, 160, 74, 0.25);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
            color: var(--accent);
            transition: all 0.3s;
        }

        .why-item:hover .why-icon-wrap {
            background: var(--accent);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(201, 160, 74, 0.3);
        }

        .why-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 0.45rem;
        }

        .why-text {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.7;
        }

        /* ═══════════ TESTIMONIALS ═══════════ */
        .testimonials-section {
            background: linear-gradient(135deg, var(--accent-lt) 0%, #fff9ef 100%);
            padding: 5rem 5%;
        }

        .testimonials-inner {
            max-width: 1280px;
            margin: 0 auto;
        }

        .testimonials-track-wrap {
            overflow: hidden;
            margin-top: 2.5rem;
        }

        .testimonials-track {
            display: flex;
            gap: 1.4rem;
            transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .testi-card {
            flex: 0 0 calc(33.333% - 0.95rem);
            background: white;
            border-radius: var(--radius-lg);
            padding: 2rem;
            border: 1px solid var(--border-lt);
            box-shadow: var(--shadow-xs);
        }

        @media (max-width:900px) {
            .testi-card {
                flex: 0 0 calc(50% - 0.7rem);
            }
        }

        @media (max-width:580px) {
            .testi-card {
                flex: 0 0 100%;
            }
        }

        .testi-stars {
            color: #f5c842;
            font-size: 0.85rem;
            margin-bottom: 0.9rem;
        }

        .testi-text {
            font-size: 0.92rem;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 1.3rem;
            font-style: italic;
        }

        .testi-author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .testi-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .testi-name {
            font-weight: 600;
            font-size: 0.88rem;
            color: var(--primary);
        }

        .testi-origin {
            font-size: 0.77rem;
            color: var(--text-muted);
        }

        .testimonials-nav {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1.8rem;
        }

        .testi-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--border);
            cursor: pointer;
            transition: all 0.25s;
        }

        .testi-dot.active {
            background: var(--accent);
            width: 22px;
            border-radius: 4px;
        }

        /* ═══════════ FAQ ═══════════ */
        .faq-section {
            padding: 5rem 5%;
            background: var(--bg);
        }

        .faq-inner {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-search {
            position: relative;
            margin-bottom: 2rem;
        }

        .faq-search input {
            width: 100%;
            padding: 1rem 1.2rem 1rem 3rem;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem;
            color: var(--text);
            background: white;
            outline: none;
            transition: border-color 0.25s, box-shadow 0.25s;
        }

        .faq-search input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(201, 160, 74, 0.12);
        }

        .faq-search input::placeholder {
            color: var(--text-muted);
        }

        .faq-search i {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .faq-item {
            background: white;
            border: 1.5px solid var(--border-lt);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-xs);
            transition: all 0.25s;
        }

        .faq-item:hover {
            border-color: rgba(201, 160, 74, 0.4);
        }

        .faq-item.open {
            border-color: var(--accent);
            box-shadow: 0 8px 28px rgba(201, 160, 74, 0.12);
        }

        .faq-q {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 1.5rem;
            cursor: pointer;
            gap: 1rem;
            user-select: none;
        }

        .faq-q-icon {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
            background: var(--accent-lt);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 0.85rem;
            margin-right: 0.5rem;
        }

        .faq-q-text {
            font-weight: 600;
            font-size: 0.97rem;
            color: var(--primary);
            flex: 1;
        }

        .faq-chevron {
            width: 30px;
            height: 30px;
            flex-shrink: 0;
            background: var(--accent-lt);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 0.72rem;
            transition: all 0.35s;
        }

        .faq-item.open .faq-chevron {
            background: var(--accent);
            color: white;
            transform: rotate(180deg);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .faq-item.open .faq-a {
            max-height: 500px;
        }

        .faq-a-inner {
            padding: 0 1.5rem 1.4rem;
            font-size: 0.93rem;
            color: var(--text-muted);
            line-height: 1.8;
            border-top: 1px solid var(--border-lt);
            padding-top: 1.1rem;
        }

        .faq-no-results {
            text-align: center;
            padding: 3rem;
            color: var(--text-muted);
            display: none;
        }

        .faq-no-results i {
            font-size: 2.5rem;
            color: var(--border);
            display: block;
            margin-bottom: 0.8rem;
        }

        /* ═══════════ TRIP TIMER ═══════════ */
        .trip-timer-section {
            padding: 4rem 5%;
            background: linear-gradient(135deg, var(--accent-lt), #fff9ef);
        }

        .trip-timer-inner {
            max-width: 860px;
            margin: 0 auto;
            text-align: center;
        }

        .trip-timer-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.6rem, 4vw, 2.4rem);
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .trip-timer-sub {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }

        .trip-date-input-wrap {
            display: flex;
            justify-content: center;
            gap: 1rem;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .trip-date-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text);
        }

        .trip-date-input {
            padding: 0.7rem 1.2rem;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem;
            color: var(--text);
            background: white;
            outline: none;
            cursor: pointer;
            transition: border-color 0.2s;
        }

        .trip-date-input:focus {
            border-color: var(--accent);
        }

        .trip-set-btn {
            padding: 0.7rem 1.5rem;
            border-radius: var(--radius);
            background: var(--accent);
            color: white;
            border: none;
            font-family: 'Outfit', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
        }

        .trip-set-btn:hover {
            background: var(--accent-dk);
        }

        .trip-clock {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }

        .trip-unit {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .trip-box {
            width: 80px;
            height: 80px;
            background: var(--primary);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.4rem;
            font-weight: 700;
            color: white;
            box-shadow: 0 8px 24px rgba(26, 60, 52, 0.2);
            transition: transform 0.15s;
        }

        .trip-box.tick {
            transform: scale(0.9);
        }

        .trip-sep {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            color: var(--accent);
            font-weight: 700;
            padding-bottom: 1.2rem;
        }

        .trip-unit-label {
            font-size: 0.68rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }

        .trip-message {
            font-size: 0.95rem;
            color: var(--text-muted);
        }

        .trip-message strong {
            color: var(--primary);
        }

        .trip-started {
            color: var(--accent);
            font-weight: 700;
            font-size: 1.1rem;
        }

        .trip-cta-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        .trip-cta-link:hover {
            text-decoration: underline;
        }

        @media (max-width:480px) {
            .trip-box {
                width: 62px;
                height: 62px;
                font-size: 1.8rem;
                border-radius: 10px;
            }

            .trip-clock {
                gap: 0.5rem;
            }
        }

        /* ═══════════ CTA BANNER ═══════════ */
        .cta-section {
            padding: 5rem 5%;
        }

        .cta-banner {
            max-width: 1280px;
            margin: 0 auto;
            background: var(--primary);
            border-radius: 24px;
            padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 5rem);
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 2rem;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 85% 50%, rgba(201, 160, 74, 0.15) 0%, transparent 60%);
        }

        .cta-banner::after {
            content: '🏺';
            position: absolute;
            right: clamp(12rem, 20vw, 20rem);
            top: 50%;
            transform: translateY(-50%);
            font-size: clamp(5rem, 12vw, 9rem);
            opacity: 0.05;
            pointer-events: none;
        }

        .cta-text {
            position: relative;
        }

        .cta-eyebrow {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 0.5rem;
        }

        .cta-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            color: white;
            font-weight: 700;
            margin-bottom: 0.6rem;
        }

        .cta-sub {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.6);
            max-width: 500px;
            line-height: 1.75;
        }

        .cta-actions {
            display: flex;
            gap: 0.9rem;
            flex-wrap: wrap;
            position: relative;
        }

        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border-radius: 999px;
            font-weight: 700;
            font-size: 0.97rem;
            text-decoration: none;
            transition: all 0.25s;
        }

        .btn-cta.gold {
            background: var(--accent);
            color: white;
            box-shadow: 0 6px 24px rgba(201, 160, 74, 0.35);
        }

        .btn-cta.gold:hover {
            background: var(--accent-dk);
            transform: translateY(-3px);
        }

        .btn-cta.ghost {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1.5px solid rgba(255, 255, 255, 0.25);
        }

        .btn-cta.ghost:hover {
            background: rgba(255, 255, 255, 0.18);
            transform: translateY(-3px);
        }

        @media (max-width:700px) {
            .cta-banner {
                grid-template-columns: 1fr;
            }

            .cta-banner::after {
                display: none;
            }
        }

        /* ═══════════ FOOTER ═══════════ */
        footer {
            background: var(--primary);
            color: #c8ddd8;
            padding: 4rem 5% 2rem;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            max-width: 1280px;
            margin: 0 auto;
        }

        @media (max-width:900px) {
            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (max-width:520px) {
            .footer-top {
                grid-template-columns: 1fr;
            }
        }

        .footer-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.9rem;
        }

        .footer-desc {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.75;
            max-width: 280px;
        }

        .footer-social {
            display: flex;
            gap: 0.6rem;
            margin-top: 1.2rem;
        }

        .footer-social a {
            width: 36px;
            height: 36px;
            border-radius: 9px;
            background: rgba(255, 255, 255, 0.07);
            color: #c8ddd8;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.95rem;
            transition: all 0.25s;
            text-decoration: none;
        }

        .footer-social a:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-3px);
        }

        .footer-col-title {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: rgba(255, 255, 255, 0.35);
            font-weight: 700;
            margin-bottom: 1.1rem;
        }

        .footer-col a {
            display: block;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.88rem;
            margin-bottom: 0.55rem;
            transition: color 0.2s;
        }

        .footer-col a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            max-width: 1280px;
            margin: 1.8rem auto 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.3);
        }

        @media (max-width:480px) {
            .section {
                padding: 4rem 4% 3rem;
            }
        }