
    /* ==============================================
       CSS DESIGN SYSTEM & VARIABLES
    =============================================== */
    :root {
        /* --- Color Palette (Moroccan-inspired) --- */
        --primary: #1a365d;          /* Deep Blue */
        --primary-light: #2c5282;
        --primary-dark: #0f2440;
        --secondary: #d4a843;        /* Desert Gold */
        --secondary-light: #e8c570;
        --secondary-dark: #b8922e;
        --accent: #c75b39;           /* Terracotta */
        --accent-light: #e07a5f;
        --emerald: #2d8b6f;          /* Emerald Green */
        --emerald-light: #48bb94;
        --dark: #0f172a;
        --dark-2: #1e293b;
        --light: #fdf8f0;            /* Warm Ivory */
        --light-2: #faf5eb;
        --white: #ffffff;
        --gray-50: #f8fafc;
        --gray-100: #f1f5f9;
        --gray-200: #e2e8f0;
        --gray-300: #cbd5e1;
        --gray-400: #94a3b8;
        --gray-500: #64748b;
        --gray-600: #475569;
        --gray-700: #334155;

        /* --- Shadows --- */
        --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
        --shadow: 0 4px 12px rgba(0,0,0,0.1);
        --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
        --shadow-lg: 0 16px 40px rgba(0,0,0,0.15);
        --shadow-xl: 0 24px 60px rgba(0,0,0,0.2);
        --shadow-gold: 0 4px 20px rgba(212,168,67,0.3);

        /* --- Typography --- */
        --font-heading: 'Playfair Display', Georgia, serif;
        --font-body: 'Inter', -apple-system, sans-serif;

        /* --- Spacing --- */
        --section-padding: 100px 0;
        --container-width: 1200px;

        /* --- Border Radius --- */
        --radius-sm: 8px;
        --radius: 12px;
        --radius-lg: 20px;
        --radius-xl: 28px;
        --radius-full: 50%;

        /* --- Transitions --- */
        --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        --transition-fast: all 0.2s ease;
        --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* ==============================================
       CSS RESET & BASE STYLES
    =============================================== */
    *, *::before, *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        font-size: 16px;
    }

    body {
        font-family: var(--font-body);
        color: var(--dark-2);
        background-color: var(--white);
        line-height: 1.7;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition-fast);
    }

    ul, ol { list-style: none; }

    h1, h2, h3, h4, h5, h6 {
        font-family: var(--font-heading);
        font-weight: 700;
        line-height: 1.2;
        color: var(--dark);
    }

    /* ==============================================
       UTILITY CLASSES
    =============================================== */
    .container {
        max-width: var(--container-width);
        margin: 0 auto;
        padding: 0 24px;
    }

    .section-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--font-body);
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--secondary);
        margin-bottom: 16px;
    }

    .section-label::before {
        content: '';
        width: 40px;
        height: 2px;
        background: var(--secondary);
    }

    .section-title {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 20px;
        color: var(--dark);
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: var(--gray-500);
        max-width: 650px;
        margin: 0 auto 50px;
        line-height: 1.8;
    }

    .text-center { text-align: center; }
    .text-gold { color: var(--secondary); }
    .text-white { color: var(--white); }

    /* Reveal-on-scroll animation base */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ==============================================
       BUTTONS
    =============================================== */
    .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 32px;
        font-family: var(--font-body);
        font-size: 0.95rem;
        font-weight: 600;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        transition: var(--transition);
        letter-spacing: 0.5px;
        text-transform: none;
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
        color: var(--dark);
        box-shadow: var(--shadow-gold);
    }
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(212,168,67,0.45);
        background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
    }

    .btn-outline {
        background: transparent;
        color: var(--white);
        border: 2px solid rgba(255,255,255,0.6);
    }
    .btn-outline:hover {
        background: var(--white);
        color: var(--dark);
        border-color: var(--white);
        transform: translateY(-3px);
    }

    .btn-dark {
        background: var(--primary);
        color: var(--white);
    }
    .btn-dark:hover {
        background: var(--primary-light);
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }

    .btn-emerald {
        background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
        color: var(--white);
    }
    .btn-emerald:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(45,139,111,0.35);
    }

    /* ==============================================
       HEADER & NAVIGATION
    =============================================== */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 20px 0;
        transition: var(--transition);
    }

    .header.scrolled {
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 12px 0;
        box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    }

    .header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        z-index: 1001;
    }

    .logo-icon {
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: var(--dark);
        font-weight: 700;
    }

    .logo-text {
        font-family: var(--font-heading);
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--white);
    }

    .logo-text span {
        color: var(--secondary);
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .nav-links a {
        padding: 8px 16px;
        font-size: 0.9rem;
        font-weight: 500;
        color: rgba(255,255,255,0.8);
        border-radius: 8px;
        transition: var(--transition-fast);
        position: relative;
        white-space: nowrap;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--white);
        background: rgba(255,255,255,0.1);
    }

    .nav-links a.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 3px;
        background: var(--secondary);
        border-radius: 10px;
    }

    /* Dropdown Container */
    .nav-item.dropdown {
        position: relative;
        display: inline-block;
    }

    /* Dropdown Toggle Icon */
    .nav-item.dropdown > a::after {
        content: '\f107'; /* FontAwesome angle-down */
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        margin-left: 6px;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .nav-item.dropdown:hover > a::after {
        transform: rotate(180deg);
    }

    /* Dropdown Content */
    .dropdown-content {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        min-width: 240px;
        box-shadow: var(--shadow-lg);
        border-radius: var(--radius-md);
        padding: 10px 0;
        z-index: 1000;
        transform: translateY(15px);
        transition: all 0.3s ease;
        border: 1px solid rgba(201, 150, 69, 0.3);
        border-top: 3px solid var(--secondary);
    }

    /* Show dropdown on hover */
    .nav-item.dropdown:hover .dropdown-content {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    /* Dropdown Links */
    .dropdown-content a {
        color: var(--dark) !important;
        padding: 12px 24px !important;
        display: block;
        border-radius: 0 !important;
        font-weight: 500;
        transition: all 0.3s ease;
        background: transparent !important;
    }
    
    .dropdown-content a::after {
        display: none !important; /* Hide active indicator underline */
    }

    .dropdown-content a:hover {
        background-color: var(--gray-50) !important;
        color: var(--emerald) !important;
        padding-left: 30px !important; /* Subtle slide effect */
    }

    /* Contact button in nav */
    .nav-contact-btn {
        background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)) !important;
        color: var(--dark) !important;
        font-weight: 600 !important;
        padding: 10px 22px !important;
        border-radius: 50px !important;
    }
    .nav-contact-btn:hover {
        box-shadow: var(--shadow-gold) !important;
        transform: translateY(-2px);
    }

    /* Mobile Hamburger Menu */
    .hamburger {
        display: none;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
        padding: 8px;
    }

    .hamburger span {
        width: 28px;
        height: 2.5px;
        background: var(--white);
        border-radius: 2px;
        transition: var(--transition);
    }

    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Mobile Menu */
    .mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        z-index: 999;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 100px;
        padding-bottom: 50px;
        overflow-y: auto;
        gap: 8px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-menu.open {
        display: flex;
        opacity: 1;
    }

    .mobile-menu a {
        font-size: 1.2rem;
        font-weight: 500;
        color: rgba(255,255,255,0.8);
        padding: 14px 32px;
        border-radius: var(--radius);
        transition: var(--transition-fast);
        text-align: center;
    }

    .mobile-menu a:hover {
        color: var(--secondary);
        background: rgba(255,255,255,0.05);
    }

    /* Mobile Accordion Dropdown */
    .mobile-dropdown-container {
        width: 100%;
        text-align: center;
    }
    
    .mobile-dropdown-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        cursor: pointer;
        gap: 8px;
    }
    
    .mobile-dropdown-toggle i {
        transition: transform 0.3s ease;
        font-size: 0.9rem;
    }
    
    .mobile-dropdown-toggle.open i {
        transform: rotate(180deg);
    }
    
    .mobile-dropdown-content {
        display: none;
        flex-direction: column;
        background: rgba(0,0,0,0.2);
        margin: 5px 20px 10px 20px;
        padding: 10px 0;
        border-radius: var(--radius-md);
        border-left: 2px solid var(--secondary);
    }
    
    .mobile-dropdown-content.open {
        display: flex;
    }
    
    .mobile-dropdown-content a {
        font-size: 1.1rem;
        padding: 10px 0;
        color: rgba(255,255,255,0.8);
        background: transparent !important;
    }
    
    .mobile-dropdown-content a:hover {
        color: var(--secondary);
    }

    /* ==============================================
       PAGE SECTIONS (show/hide pages)
    =============================================== */
    .page { display: none; }
    .page.active { display: block; }

    /* ==============================================
       HERO SECTION
    =============================================== */
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        background: linear-gradient(160deg, rgba(10, 15, 30, 0.80), rgba(26, 54, 93, 0.65), rgba(15, 36, 64, 0.75)),
                    url('../images/hero.png') center/cover no-repeat;
        background-color: var(--primary-dark);
    }

    /* Animated decorative shapes */
    .hero::before {
        content: '';
        position: absolute;
        top: -150px;
        right: -150px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(212,168,67,0.12) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 8s ease-in-out infinite;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(45,139,111,0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 10s ease-in-out infinite reverse;
    }

    @keyframes float {
        0%, 100% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(30px, -30px) scale(1.05); }
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 850px;
        padding: 0 24px;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 20px;
        background: rgba(212,168,67,0.15);
        border: 1px solid rgba(212,168,67,0.3);
        border-radius: 50px;
        color: var(--secondary-light);
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 1px;
        margin-bottom: 28px;
        animation: fadeInDown 1s ease;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        font-weight: 800;
        color: var(--white);
        margin-bottom: 24px;
        line-height: 1.1;
        animation: fadeInUp 1s ease 0.2s both;
    }

    .hero h1 .gold {
        background: linear-gradient(135deg, var(--secondary-light), var(--secondary), var(--accent-light));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero p {
        font-size: clamp(1rem, 2vw, 1.25rem);
        color: rgba(255,255,255,0.75);
        max-width: 600px;
        margin: 0 auto 40px;
        line-height: 1.8;
        animation: fadeInUp 1s ease 0.4s both;
    }

    .hero-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
        animation: fadeInUp 1s ease 0.6s both;
    }

    /* Scroll indicator */
    .scroll-indicator {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        animation: bounce 2s ease infinite;
    }

    .scroll-indicator i {
        font-size: 1.5rem;
        color: rgba(255,255,255,0.5);
    }

    @keyframes bounce {
        0%, 100% { transform: translateX(-50%) translateY(0); }
        50% { transform: translateX(-50%) translateY(10px); }
    }

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

    @keyframes fadeInDown {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* ==============================================
       PAGE BANNER (About / Contact hero)
    =============================================== */
    .page-banner {
        position: relative;
        padding: 180px 0 100px;
        text-align: center;
        overflow: hidden;
    }

    .page-banner.about-banner {
        background: linear-gradient(160deg, rgba(10, 15, 30, 0.88), rgba(26, 54, 93, 0.75)),
                    url('../images/about-hero.png') center center/cover no-repeat;
        background-color: var(--primary-dark);
    }

    .page-banner.contact-banner {
        background: linear-gradient(160deg, rgba(10, 15, 30, 0.88), rgba(45,139,111, 0.4)),
                    url('../images/contact-hero.png') center center/cover no-repeat;
        background-color: var(--primary-dark);
    }

    .page-banner h1, .page-banner h2.page-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        color: var(--white);
        margin-bottom: 16px;
    }

    .page-banner p {
        font-size: 1.15rem;
        color: rgba(255,255,255,0.7);
        max-width: 600px;
        margin: 0 auto;
    }

    .breadcrumb {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 24px;
        font-size: 0.9rem;
        color: rgba(255,255,255,0.5);
    }

    .breadcrumb a {
        color: var(--secondary-light);
    }

    .breadcrumb a:hover {
        text-decoration: underline;
    }

    /* ==============================================
       ABOUT MOROCCO SECTION
    =============================================== */
    .about-morocco {
        padding: var(--section-padding);
        background: var(--light);
    }

    .about-morocco-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .about-morocco-text h2 {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        margin-bottom: 20px;
    }

    .about-morocco-text p {
        color: var(--gray-600);
        margin-bottom: 16px;
        line-height: 1.85;
    }

    .morocco-facts {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .fact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
        background: var(--white);
        border-radius: var(--radius);
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
    }

    .fact-item:hover {
        box-shadow: var(--shadow);
        transform: translateY(-2px);
    }

    .fact-item i {
        font-size: 1.3rem;
        color: var(--secondary);
        margin-top: 2px;
    }

    .fact-item strong {
        display: block;
        font-size: 0.9rem;
        color: var(--dark);
        margin-bottom: 2px;
    }

    .fact-item span {
        font-size: 0.82rem;
        color: var(--gray-500);
    }

    .about-morocco-visual {
        position: relative;
    }

    .about-morocco-visual .img-main {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        object-fit: cover;
        height: 500px;
    }

    .about-morocco-visual .img-float {
        position: absolute;
        bottom: -30px;
        left: -30px;
        width: 200px;
        height: 200px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        border: 5px solid var(--white);
        object-fit: cover;
    }

    .about-morocco-visual .stat-badge {
        position: absolute;
        top: -20px;
        right: -20px;
        background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
        color: var(--dark);
        padding: 20px;
        border-radius: var(--radius);
        text-align: center;
        box-shadow: var(--shadow-gold);
    }

    .stat-badge .number {
        font-family: var(--font-heading);
        font-size: 2rem;
        font-weight: 800;
        display: block;
    }

    .stat-badge .label {
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* ==============================================
       DESTINATIONS SECTION
    =============================================== */
    .destinations {
        padding: var(--section-padding);
        background: var(--white);
    }

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

    .dest-card {
        position: relative;
        border-radius: var(--radius-lg);
        overflow: hidden;
        height: 380px;
        cursor: pointer;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .dest-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
    }

    .dest-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .dest-card:hover img {
        transform: scale(1.08);
    }

    .dest-card-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 28px;
        transition: var(--transition);
    }

    .dest-card:hover .dest-card-overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.1) 100%);
    }

    .dest-card-overlay h3 {
        font-size: 1.5rem;
        color: var(--white);
        margin-bottom: 6px;
    }

    .dest-card-tag {
        display: inline-block;
        padding: 4px 12px;
        background: rgba(212,168,67,0.25);
        color: var(--secondary-light);
        font-size: 0.75rem;
        font-weight: 600;
        border-radius: 50px;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
        width: fit-content;
    }

    .dest-card-overlay p {
        font-size: 0.88rem;
        color: rgba(255,255,255,0.7);
        line-height: 1.5;
        margin-bottom: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .dest-card .learn-more {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--secondary-light);
        opacity: 0;
        transform: translateY(10px);
        transition: var(--transition);
    }

    .dest-card:hover .learn-more {
        opacity: 1;
        transform: translateY(0);
    }

    /* ==============================================
       WHY VISIT MOROCCO SECTION
    =============================================== */
    .why-visit {
        padding: var(--section-padding);
        background: var(--dark);
        position: relative;
        overflow: hidden;
    }

    .why-visit::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(ellipse at 20% 50%, rgba(212,168,67,0.06) 0%, transparent 60%),
                    radial-gradient(ellipse at 80% 50%, rgba(45,139,111,0.06) 0%, transparent 60%);
    }

    .why-visit .section-title { color: var(--white); }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 24px;
        position: relative;
        z-index: 1;
    }

    .why-card {
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: var(--radius-lg);
        padding: 36px 28px;
        text-align: center;
        transition: var(--transition);
        backdrop-filter: blur(10px);
    }

    .why-card:hover {
        background: rgba(255,255,255,0.1);
        border-color: rgba(212,168,67,0.3);
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    }

    .why-card-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 20px;
        border-radius: var(--radius);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
    }

    .why-card-icon.gold { background: rgba(212,168,67,0.15); color: var(--secondary-light); }
    .why-card-icon.emerald { background: rgba(45,139,111,0.15); color: var(--emerald-light); }
    .why-card-icon.terracotta { background: rgba(199,91,57,0.15); color: var(--accent-light); }
    .why-card-icon.blue { background: rgba(44,82,130,0.2); color: #63b3ed; }

    .why-card h3 {
        font-size: 1.15rem;
        color: var(--white);
        margin-bottom: 10px;
    }

    .why-card p {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.55);
        line-height: 1.7;
    }

    /* ==============================================
       FEATURED TOURS SECTION
    =============================================== */
    .tours {
        padding: var(--section-padding);
        background: var(--light);
    }

    .tours-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 28px;
    }

    .tour-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .tour-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

    .tour-card-image {
        position: relative;
        height: 220px;
        overflow: hidden;
    }

    .tour-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .tour-card:hover .tour-card-image img {
        transform: scale(1.06);
    }

    .tour-card-badge {
        position: absolute;
        top: 16px;
        left: 16px;
        padding: 6px 14px;
        background: var(--secondary);
        color: var(--dark);
        font-size: 0.75rem;
        font-weight: 700;
        border-radius: 50px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .tour-card-price {
        position: absolute;
        bottom: 16px;
        right: 16px;
        padding: 6px 16px;
        background: rgba(0,0,0,0.7);
        backdrop-filter: blur(10px);
        color: var(--white);
        font-size: 1.1rem;
        font-weight: 700;
        border-radius: 50px;
    }

    .tour-card-price span {
        font-size: 0.75rem;
        font-weight: 400;
        color: rgba(255,255,255,0.7);
    }

    .tour-card-content {
        padding: 24px;
    }

    .tour-card-content h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .tour-card-meta {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 14px;
        font-size: 0.82rem;
        color: var(--gray-500);
    }

    .tour-card-meta span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .tour-card-meta i {
        color: var(--secondary);
        font-size: 0.85rem;
    }

    .tour-card-content p {
        font-size: 0.9rem;
        color: var(--gray-600);
        margin-bottom: 20px;
        line-height: 1.7;
    }

    .tour-highlights {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
    }

    .tour-highlights span {
        padding: 4px 12px;
        background: var(--light);
        color: var(--gray-600);
        font-size: 0.78rem;
        border-radius: 50px;
        font-weight: 500;
    }

    /* ==============================================
       TESTIMONIALS SECTION
    =============================================== */
    .testimonials {
        padding: var(--section-padding);
        background: var(--white);
    }

    .testimonials-carousel {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
        overflow: hidden;
    }

    .testimonial-track {
        display: flex;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .testimonial-slide {
        min-width: 100%;
        padding: 0 20px;
    }

    .testimonial-content {
        background: var(--light);
        border-radius: var(--radius-lg);
        padding: 48px 40px;
        text-align: center;
        position: relative;
    }

    .testimonial-content::before {
        content: '\201c';
        font-family: var(--font-heading);
        font-size: 6rem;
        color: var(--secondary);
        opacity: 0.2;
        position: absolute;
        top: -10px;
        left: 30px;
        line-height: 1;
    }

    .testimonial-stars {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        margin-bottom: 20px;
        color: var(--secondary);
        font-size: 1.1rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
        color: var(--gray-600);
        line-height: 1.9;
        font-style: italic;
        margin-bottom: 28px;
        position: relative;
        z-index: 1;
    }

    .testimonial-author {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .testimonial-author strong {
        font-size: 1rem;
        color: var(--dark);
    }

    .testimonial-author span {
        font-size: 0.85rem;
        color: var(--gray-400);
    }

    .carousel-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-top: 32px;
    }

    .carousel-btn {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        border: 2px solid var(--gray-200);
        background: var(--white);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        color: var(--gray-600);
        transition: var(--transition);
    }

    .carousel-btn:hover {
        border-color: var(--secondary);
        color: var(--secondary);
        background: rgba(212,168,67,0.08);
    }

    .carousel-dots {
        display: flex;
        gap: 8px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--gray-300);
        cursor: pointer;
        transition: var(--transition);
    }

    .carousel-dot.active {
        background: var(--secondary);
        width: 28px;
        border-radius: 10px;
    }

    /* ==============================================
       CTA SECTION
    =============================================== */
    .cta-section {
        padding: 100px 0;
        background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 50%, rgba(212,168,67,0.1) 0%, transparent 50%),
                    radial-gradient(circle at 70% 50%, rgba(45,139,111,0.08) 0%, transparent 50%);
    }

    .cta-section .container {
        position: relative;
        z-index: 1;
    }

    .cta-section h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--white);
        margin-bottom: 16px;
    }

    .cta-section p {
        font-size: 1.15rem;
        color: rgba(255,255,255,0.7);
        max-width: 550px;
        margin: 0 auto 36px;
    }

    .cta-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    /* ==============================================
       ABOUT US PAGE STYLES
    =============================================== */
    .about-welcome {
        padding: var(--section-padding);
        background: var(--white);
    }

    .about-welcome-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .about-welcome-text h2 {
        font-size: clamp(1.8rem, 3vw, 2.3rem);
        margin-bottom: 20px;
    }

    .about-welcome-text p {
        color: var(--gray-600);
        margin-bottom: 18px;
        line-height: 1.85;
    }

    .about-image-collage {
        position: relative;
        height: 500px;
    }

    .about-image-collage img {
        position: absolute;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        object-fit: cover;
    }

    .about-image-collage img:nth-child(1) {
        top: 0;
        right: 0;
        width: 65%;
        height: 60%;
    }

    .about-image-collage img:nth-child(2) {
        bottom: 0;
        left: 0;
        width: 55%;
        height: 55%;
        border: 5px solid var(--white);
    }

    /* Mission Card */
    .mission-section {
        padding: 80px 0;
        background: var(--light);
    }

    .mission-card {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary));
        border-radius: var(--radius-xl);
        padding: 60px;
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
    }

    .mission-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 50%, rgba(212,168,67,0.08) 0%, transparent 70%);
    }

    .mission-card .mission-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 24px;
        background: rgba(212,168,67,0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: var(--secondary-light);
        position: relative;
        z-index: 1;
    }

    .mission-card h2 {
        color: var(--white);
        font-size: 1.8rem;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

    .mission-card p {
        color: rgba(255,255,255,0.75);
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.9;
        position: relative;
        z-index: 1;
    }

    /* Who We Are */
    .who-section {
        padding: var(--section-padding);
        background: var(--white);
    }

    .who-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }

    .who-content p {
        font-size: 1.05rem;
        color: var(--gray-600);
        line-height: 1.9;
        margin-bottom: 18px;
    }

    /* What We Do */
    .services-section {
        padding: var(--section-padding);
        background: var(--light);
    }

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

    .service-card {
        background: var(--white);
        padding: 32px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
        border-left: 4px solid var(--secondary);
    }

    .service-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
    }

    .service-card i {
        font-size: 1.5rem;
        color: var(--secondary);
        margin-bottom: 16px;
    }

    .service-card h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .service-card p {
        font-size: 0.88rem;
        color: var(--gray-500);
        line-height: 1.7;
    }

    /* Why Travel With Us */
    .why-us-section {
        padding: var(--section-padding);
        background: var(--white);
    }

    .why-us-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 24px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .why-us-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 24px;
        background: var(--light);
        border-radius: var(--radius);
        transition: var(--transition);
    }

    .why-us-item:hover {
        box-shadow: var(--shadow);
        transform: translateX(4px);
    }

    .why-us-check {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    .why-us-item h4 {
        font-family: var(--font-body);
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .why-us-item p {
        font-size: 0.85rem;
        color: var(--gray-500);
    }

    /* Values */
    .values-section {
        padding: var(--section-padding);
        background: var(--dark);
    }

    .values-section .section-title { color: var(--white); }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 24px;
    }

    .value-card {
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: var(--radius-lg);
        padding: 36px;
        text-align: center;
        backdrop-filter: blur(10px);
        transition: var(--transition);
    }

    .value-card:hover {
        background: rgba(255,255,255,0.1);
        transform: translateY(-4px);
    }

    .value-card i {
        font-size: 2rem;
        color: var(--secondary-light);
        margin-bottom: 18px;
    }

    .value-card h3 {
        font-size: 1.1rem;
        color: var(--white);
        margin-bottom: 10px;
    }

    .value-card p {
        font-size: 0.88rem;
        color: rgba(255,255,255,0.55);
        line-height: 1.7;
    }

    /* Founder */
    .founder-section {
        padding: var(--section-padding);
        background: var(--light);
    }

    .founder-grid {
        display: grid;
        grid-template-columns: 350px 1fr;
        gap: 50px;
        align-items: center;
        max-width: 900px;
        margin: 0 auto;
    }

    .founder-image {
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }

    .founder-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .founder-text h2 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .founder-text .founder-role {
        color: var(--secondary);
        font-weight: 600;
        margin-bottom: 20px;
        display: block;
    }

    .founder-text p {
        color: var(--gray-600);
        margin-bottom: 16px;
        line-height: 1.85;
    }

    /* ==============================================
       CONTACT US PAGE STYLES
    =============================================== */
    .contact-section {
        padding: var(--section-padding);
        background: var(--white);
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 50px;
        align-items: start;
    }

    .contact-info-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-info-card {
        display: flex;
        align-items: flex-start;
        gap: 18px;
        padding: 28px;
        background: var(--light);
        border-radius: var(--radius-lg);
        transition: var(--transition);
    }

    .contact-info-card:hover {
        box-shadow: var(--shadow);
        transform: translateX(4px);
    }

    .contact-info-icon {
        width: 52px;
        height: 52px;
        border-radius: var(--radius);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .contact-info-icon.gold { background: rgba(212,168,67,0.15); color: var(--secondary); }
    .contact-info-icon.emerald { background: rgba(45,139,111,0.15); color: var(--emerald); }
    .contact-info-icon.blue { background: rgba(44,82,130,0.15); color: var(--primary-light); }
    .contact-info-icon.terracotta { background: rgba(199,91,57,0.15); color: var(--accent); }

    .contact-info-card h4 {
        font-family: var(--font-body);
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .contact-info-card p,
    .contact-info-card a {
        font-size: 0.9rem;
        color: var(--gray-500);
    }

    .contact-info-card a:hover {
        color: var(--secondary);
    }

    /* Social Media */
    .social-section {
        margin-top: 30px;
    }

    .social-section h3 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .social-links-contact {
        display: flex;
        gap: 12px;
    }

    .social-link-big {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px;
        border-radius: var(--radius);
        font-size: 0.9rem;
        font-weight: 500;
        transition: var(--transition);
    }

    .social-link-big.facebook {
        background: rgba(24, 119, 242, 0.1);
        color: #1877f2;
    }
    .social-link-big.facebook:hover { background: #1877f2; color: var(--white); }

    .social-link-big.instagram {
        background: rgba(225, 48, 108, 0.1);
        color: #e1306c;
    }
    .social-link-big.instagram:hover { background: #e1306c; color: var(--white); }

    .social-link-big.tripadvisor {
        background: rgba(52, 224, 161, 0.1);
        color: #34e0a1;
    }
    .social-link-big.tripadvisor:hover { background: #34e0a1; color: var(--dark); }

    /* Contact Form */
    .contact-form-wrapper {
        background: var(--light);
        padding: 40px;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow);
    }

    .contact-form-wrapper h3 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .contact-form-wrapper > p {
        font-size: 0.9rem;
        color: var(--gray-500);
        margin-bottom: 28px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .form-group label {
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--dark-2);
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid var(--gray-200);
        border-radius: var(--radius);
        font-family: var(--font-body);
        font-size: 0.95rem;
        color: var(--dark-2);
        background: var(--white);
        transition: var(--transition-fast);
        outline: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--secondary);
        box-shadow: 0 0 0 4px rgba(212,168,67,0.1);
    }

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

    .form-submit {
        width: 100%;
        padding: 16px;
        background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
        color: var(--dark);
        font-size: 1rem;
        font-weight: 700;
        border: none;
        border-radius: var(--radius);
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .form-submit:hover {
        box-shadow: var(--shadow-gold);
        transform: translateY(-2px);
    }

    /* Map */
    .map-section {
        padding: 80px 0;
        background: var(--light);
    }

    .map-container {
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        height: 400px;
    }

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    /* Hours */
    .hours-card {
        background: var(--white);
        padding: 32px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        margin-top: 30px;
    }

    .hours-card h3 {
        font-size: 1.1rem;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .hours-card h3 i { color: var(--secondary); }

    .hours-row {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid var(--gray-100);
        font-size: 0.9rem;
    }

    .hours-row:last-child { border-bottom: none; }
    .hours-row span:first-child { color: var(--gray-600); }
    .hours-row span:last-child { font-weight: 600; color: var(--dark); }

    /* ==============================================
       FOOTER
    =============================================== */
    .footer {
        background: var(--dark);
        color: rgba(255,255,255,0.7);
        padding: 40px 0 0;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
        gap: 40px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .footer-about .logo {
        margin-bottom: 18px;
    }

    .footer-about p {
        font-size: 0.82rem;
        color: rgba(255,255,255,0.55);
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .footer-social {
        display: flex;
        gap: 10px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid var(--secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--secondary);
        transition: var(--transition);
    }

    .footer-social a:hover {
        background: var(--secondary);
        border-color: var(--secondary);
        color: var(--dark);
    }

    .footer-col h4 {
        font-family: var(--font-body);
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .footer-col a {
        display: block;
        font-size: 0.88rem;
        color: rgba(255,255,255,0.5);
        padding: 5px 0;
        transition: var(--transition-fast);
    }

    .footer-col a:hover {
        color: var(--secondary);
        padding-left: 4px;
    }

    .footer-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 14px;
        font-size: 0.88rem;
    }

    .footer-contact-item i {
        color: var(--secondary);
        margin-top: 3px;
        font-size: 0.9rem;
    }
    
    .footer-contact-item a {
        display: inline;
        padding: 0;
        color: rgba(255,255,255,0.5);
        text-decoration: none;
    }
    
    .footer-contact-item a:hover {
        color: var(--secondary);
        padding-left: 0;
    }

    .footer-bottom {
        padding: 24px 0;
        text-align: center;
        font-size: 0.82rem;
        color: rgba(255,255,255,0.35);
    }

    /* ==============================================
       BACK TO TOP BUTTON
    =============================================== */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
        color: var(--dark);
        border: none;
        cursor: pointer;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-gold);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: var(--transition);
    }

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(212,168,67,0.5);
    }

    /* ==============================================
       FORM SUCCESS MESSAGE
    =============================================== */
    .form-success {
        display: none;
        text-align: center;
        padding: 40px;
    }

    .form-success.show {
        display: block;
    }

    .form-success i {
        font-size: 3rem;
        color: var(--emerald);
        margin-bottom: 16px;
    }

    .form-success h3 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .form-success p {
        color: var(--gray-500);
    }

    /* ==============================================
       RESPONSIVE DESIGN
    =============================================== */
    @media (max-width: 1024px) {
        .about-morocco-grid,
        .about-welcome-grid,
        .contact-grid,
        .founder-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
        }

        .about-image-collage {
            height: 350px;
        }

        .founder-grid {
            grid-template-columns: 250px 1fr;
        }
    }

    @media (max-width: 768px) {
        :root {
            --section-padding: 70px 0;
        }

        .nav-links { display: none; }
        .hamburger { display: flex; }

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

        .hero-buttons {
            flex-direction: column;
            gap: 12px;
        }

        .hero-buttons .btn {
            width: 100%;
            justify-content: center;
        }

        .destinations-grid {
            grid-template-columns: 1fr 1fr;
        }

        .tours-grid {
            grid-template-columns: 1fr;
        }

        .morocco-facts {
            grid-template-columns: 1fr;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .why-us-grid {
            grid-template-columns: 1fr;
        }

        .founder-grid {
            grid-template-columns: 1fr;
        }

        .founder-image img {
            height: 300px;
        }

        .mission-card {
            padding: 40px 28px;
        }

        .social-links-contact {
            flex-direction: column;
        }

        .contact-form-wrapper {
            padding: 28px;
        }

        .about-image-collage {
            height: 300px;
        }

        .page-banner {
            padding: 150px 0 80px;
        }
    }

    @media (max-width: 576px) {
        .destinations-grid {
            grid-template-columns: 1fr;
        }

        .dest-card {
            height: 320px;
        }

        .testimonial-content {
            padding: 32px 20px;
        }

        .hero {
            min-height: 100svh;
        }
    }
    

/* ==============================================
   DESTINATIONS PAGE SPECIFIC
=============================================== */
.page-banner {
    padding: 180px 0 100px;
    background: linear-gradient(160deg, rgba(10, 15, 30, 0.80), rgba(26, 54, 93, 0.85)), url('../images/hero.png') center/cover no-repeat;
    color: var(--white);
    text-align: center;
}

.page-banner h1, .page-banner h2.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: var(--white);
}

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

.dest-detail-section {
    padding: var(--section-padding);
    border-bottom: 1px solid var(--gray-200);
}

.dest-detail-section:nth-child(even) {
    background: var(--gray-50);
}

.dest-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.dest-detail-section:nth-child(even) .dest-detail-grid {
    direction: rtl;
}

.dest-detail-section:nth-child(even) .dest-detail-content {
    direction: ltr;
}

.dest-detail-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.dest-detail-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.dest-detail-image-wrapper:hover img {
    transform: scale(1.05);
}

.dest-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(212,168,67,0.15);
    color: var(--secondary-dark);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dest-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.dest-detail-content .dest-nickname {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 25px;
    font-style: italic;
    font-family: var(--font-heading);
}

.dest-detail-content > p {
    color: var(--gray-600);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.dest-info-box {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.dest-detail-section:nth-child(even) .dest-info-box {
    background: var(--light);
}

.dest-info-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.dest-info-row:last-child {
    margin-bottom: 0;
}

.dest-info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.dest-info-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: var(--font-body);
}

.dest-info-text p, .dest-info-text ul {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.dest-info-text ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-top: 5px;
}

.dest-info-text ul li {
    margin-bottom: 5px;
}

.top-places-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.place-card {
    background: var(--gray-100);
    padding: 20px;
    border-radius: var(--radius);
    transition: var(--transition-fast);
}

.dest-detail-section:nth-child(even) .place-card {
    background: var(--white);
}

.place-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.place-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    gap: 8px;
}

.place-card h4 i {
    color: var(--secondary);
}

.place-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .dest-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .dest-detail-section:nth-child(even) .dest-detail-grid {
        direction: ltr;
    }
    .dest-detail-image-wrapper img {
        height: 400px;
    }
}
@media (max-width: 768px) {
    .top-places-grid {
        grid-template-columns: 1fr;
    }
}


/* ==============================================
   TOURS PAGE SPECIFIC & LOGO UPDATES
=============================================== */
.header .main-logo {
    height: 85px;
    width: auto;
    border-radius: var(--radius-sm);
    transition: transform 0.3s ease;
    display: block;
}

.footer .main-logo {
    height: 120px;
    width: auto;
    border-radius: var(--radius-sm);
    transition: transform 0.3s ease;
    display: block;
}

.main-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .header .main-logo { height: 75px; }
    .footer .main-logo { height: 140px; }
}

@media (max-width: 768px) {
    .header .main-logo { height: 60px; }
    .footer .main-logo { height: 120px; }
}

.tour-detail-section {
    padding: var(--section-padding);
    border-bottom: 1px solid var(--gray-200);
}

.tour-detail-section:nth-child(even) {
    background: var(--gray-50);
}

.tour-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.tour-header {
    margin-bottom: 30px;
}

.tour-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.tour-meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tour-pill {
    background: var(--gray-200);
    color: var(--gray-700);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-pill.category {
    background: rgba(212,168,67,0.15);
    color: var(--secondary-dark);
}

.itinerary-container {
    margin-top: 40px;
}

.itinerary-day {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.day-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--shadow);
}
.day-number span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }
.day-number strong { font-size: 1.2rem; line-height: 1; }

.day-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
    margin-top: 5px;
}

.day-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

.tour-sidebar {
    position: sticky;
    top: 100px;
}

.tour-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.tour-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.tour-included {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.tour-included h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 10px;
    display: inline-block;
}

.tour-included ul {
    list-style: none;
}

.tour-included ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.tour-included ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--emerald);
}

@media (max-width: 1024px) {
    .tour-detail-grid { grid-template-columns: 1fr; }
    .tour-sidebar { position: static; }
}





/* ==============================================
   PREMIUM DEDICATED TOUR PAGES
=============================================== */

.premium-tour-hero {
    position: relative;
    padding: 200px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-tour-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(160deg, rgba(4, 17, 42, 0.8), rgba(46, 125, 107, 0.6));
    z-index: 1;
}

.premium-tour-hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.premium-tour-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.premium-tour-hero .tour-subtitle {
    font-size: 1.2rem;
    color: var(--gray-200);
    margin-bottom: 30px;
}

.premium-tour-hero .hero-meta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.premium-tour-hero .hero-meta span {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Quick Info Section */
.quick-info-section {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    z-index: 10;
    margin-top: -30px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
    border-radius: 20px 20px 0 0;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}

.info-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p {
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

/* Content Grid */
.premium-tour-content {
    padding: 80px 0;
    background: var(--gray-50);
}

.premium-tour-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.premium-tour-main h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 15px;
}

.premium-tour-main h3::before {
    content: '';
    width: 30px;
    height: 3px;
    background: var(--secondary);
}

.tour-overview p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
}

/* Highlights */
.tour-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 40px 0;
}

.tour-highlights-grid li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: var(--dark);
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.tour-highlights-grid li i {
    color: var(--emerald);
    font-size: 1.2rem;
}

/* Day by Day */
.day-by-day {
    margin: 50px 0;
}

.day-block {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    border-left: 4px solid var(--secondary);
}

.day-badge {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.day-badge span { font-size: 0.8rem; text-transform: uppercase; }
.day-badge strong { font-size: 1.5rem; line-height: 1; }

.day-details h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.day-details p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Included / Excluded */
.included-excluded-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.inc-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.inc-card h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 10px;
}

.inc-card.included h4 { border-color: var(--emerald); color: var(--emerald); }
.inc-card.excluded h4 { border-color: var(--danger, #dc3545); color: var(--danger, #dc3545); }

.inc-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--gray-600);
}

.inc-card.included ul li i { color: var(--emerald); margin-top: 4px; }
.inc-card.excluded ul li i { color: var(--danger, #dc3545); margin-top: 4px; }

/* Sticky Sidebar */
.sticky-booking-card {
    position: sticky;
    top: 100px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--secondary);
}

.sticky-booking-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.sticky-booking-card .duration {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 25px;
    display: block;
}

.sticky-booking-card .btn {
    width: 100%;
    margin-bottom: 12px;
    text-align: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    color: var(--white);
}

/* Bottom Form */
.tour-inquiry-section {
    padding: 80px 0;
    background: var(--primary-dark);
    color: var(--white);
}

.inquiry-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.inquiry-form-wrapper h2 {
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 30px;
}

.inquiry-form .form-group {
    margin-bottom: 20px;
}

.inquiry-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-700);
    font-weight: 600;
}

.inquiry-form input, 
.inquiry-form textarea, 
.inquiry-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: var(--font-body);
}

.inquiry-form input[readonly] {
    background: var(--gray-100);
    color: var(--gray-600);
    font-weight: bold;
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 992px) {
    .premium-tour-grid {
        grid-template-columns: 1fr;
    }
    .sticky-booking-card {
        position: static;
        margin-top: 40px;
    }
    .included-excluded-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tour-highlights-grid {
        grid-template-columns: 1fr;
    }
    .day-block {
        flex-direction: column;
        gap: 15px;
    }
    .inquiry-grid {
        grid-template-columns: 1fr;
    }
    .inquiry-form-wrapper {
        padding: 30px 20px;
    }
}

    .btn-tour {
        background: var(--secondary);
        color: var(--white) !important;
        box-shadow: var(--shadow-sm);
    }
    .btn-tour:hover {
        background: var(--emerald);
        color: var(--white) !important;
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(45,139,111,0.35);
    }

/* ==========================================================================
   PREMIUM FEATURED TOURS (STAGGERED LAYOUT)
   ========================================================================== */
.premium-tours-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.premium-tour-row {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    gap: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.premium-tour-row.active {
    opacity: 1;
    transform: translateY(0);
}

.premium-tour-row:nth-child(even) {
    flex-direction: row-reverse;
}

.premium-tour-image {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(10, 25, 47, 0.15);
    position: relative;
    border: 1px solid rgba(212, 168, 67, 0.2);
}

.premium-tour-image::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(212, 168, 67, 0.3);
    border-radius: 20px;
    pointer-events: none;
    transition: all 0.4s ease;
}

.premium-tour-row:hover .premium-tour-image::after {
    box-shadow: inset 0 0 0 2px rgba(212, 168, 67, 0.8);
}

.premium-tour-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: block;
}

.premium-tour-row:hover .premium-tour-image img {
    transform: scale(1.08);
}

.premium-tour-content {
    flex: 1;
    padding: 20px;
}

.premium-tour-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.premium-tour-content p {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.tour-meta-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.meta-tag {
    background: rgba(212, 168, 67, 0.1);
    color: var(--secondary-dark);
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(212, 168, 67, 0.3);
}

.meta-tag i {
    margin-right: 6px;
}

@media (max-width: 992px) {
    .premium-tour-row, .premium-tour-row:nth-child(even) {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }
    .premium-tour-image img {
        height: 350px;
    }
    .premium-tour-content h3 {
        font-size: 2rem;
    }
}
/* ==========================================================================
   PREMIUM FEATURED TOURS (HORIZONTAL DESTINATION-STYLE GRID)
   ========================================================================== */
.premium-tours.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}

.info-item {
    padding: 10px;
}

.info-item i {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 12px;
    display: block;
}

.info-item span {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.info-item h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin: 0;
}

/* Mobile Fixes for Tour Pages */
@media (max-width: 768px) {
    .premium-tour-hero {
        padding: 120px 0 60px !important;
        min-height: auto !important;
    }
    .premium-tour-hero h1 {
        font-size: 2.2rem !important;
    }
    .quick-info-section {
        margin-top: -20px !important;
    }
    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
    .quick-info-grid .info-item:last-child {
        grid-column: span 2;
    }
    .info-item i {
        font-size: 1.8rem;
    }
    .info-item h3 {
        font-size: 1rem;
    }
}

.premium-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.premium-tour-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 450px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.premium-tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.premium-tour-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.premium-tour-card:hover > img {
    transform: scale(1.08);
}

.premium-tour-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 30, 0.95) 0%, rgba(10, 15, 30, 0.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition);
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
}

.premium-tour-card:hover .premium-tour-overlay {
    background: linear-gradient(to top, rgba(10, 15, 30, 0.95) 0%, rgba(10, 15, 30, 0.6) 60%, rgba(10, 15, 30, 0.2) 100%);
    border: 1px solid rgba(212, 168, 67, 0.5);
}

.premium-tour-overlay h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.premium-tour-overlay .tour-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--gray-300);
    margin-bottom: 15px;
}

.premium-tour-overlay .tour-meta i {
    color: var(--secondary);
    margin-right: 5px;
}

.premium-tour-overlay .tour-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.premium-tour-overlay .view-tour {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
}

.premium-tour-card:hover .view-tour {
    opacity: 1;
    transform: translateY(0);
}

.premium-tour-card .duration-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(10, 15, 30, 0.75);
    backdrop-filter: blur(5px);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    border: 1px solid rgba(212,168,67,0.4);
    z-index: 2;
}

.premium-tour-card .duration-badge i {
    color: var(--secondary);
    margin-right: 5px;
}

@media (max-width: 576px) {
    .premium-tours-grid {
        grid-template-columns: 1fr;
    }
}



/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}
.floating-whatsapp:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff;
}

/* About Morocco Mobile Layout Fix */
@media (max-width: 768px) {
    .about-rich-content .content-block {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center;
    }
    .about-rich-content .content-block > div {
        order: unset !important;
    }
    .about-rich-content .content-block img {
        height: 300px !important;
    }
}

/* ==============================================
   DESTINATIONS PAGE ENHANCEMENTS
=============================================== */
.dest-cta-section {
    margin-top: 50px;
    text-align: center;
    padding: 40px 20px;
    background: var(--primary-dark);
    border-radius: 16px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .dest-cta-section {
        padding: 60px 30px;
        margin-top: 80px;
        border-radius: 20px;
        box-shadow: var(--shadow-xl);
    }
}

.dest-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--primary-dark);
    border: 2px solid var(--secondary);
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

.dest-cta-button i {
    margin-left: 8px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.dest-cta-button:hover {
    background: transparent;
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 168, 67, 0.4);
}

.dest-cta-button:hover i {
    transform: translateX(4px);
}

@media (min-width: 768px) {
    .dest-cta-button {
        padding: 16px 40px;
        font-size: 1.1rem;
        letter-spacing: 1.5px;
    }
    .dest-cta-button i {
        margin-left: 12px;
        font-size: 1rem;
    }
}