
    :root {
      /* Brand Colors */
      --c-navy: #1A2F4C;
      --c-navy-light: #2A4365;
      --c-green: #6A8E4E;
      --c-green-light: #85AB66;
      --c-green-pale: #E8F0E1;

      /* Accents (Kids/Fun) */
      --c-accent-gold: #D4AF37;
      --c-accent-orange: #F2994A;
      --c-accent-blue: #56CCF2;
      --c-accent-pink: #FF8A8A;

      /* Backgrounds */
      --bg-main: #FAFCFF;
      --bg-card: #FFFFFF;
      --bg-gray: #F0F4F8;

      /* Typography */
      --text-dark: #1A202C;
      --text-muted: #4A5568;

      --font-ar: 'Cairo', sans-serif;
      --font-en: 'Nunito', sans-serif;

      /* Shadows & Radii */
      --shadow-sm: 0 4px 6px -1px rgba(26, 47, 76, 0.05);
      --shadow-md: 0 10px 15px -3px rgba(26, 47, 76, 0.08);
      --shadow-lg: 0 20px 25px -5px rgba(26, 47, 76, 0.1);
      --shadow-hover: 0 25px 40px -5px rgba(106, 142, 78, 0.25);

      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-xl: 40px;

      /* ── Premium Glow & Glass Variables ── */
      --glow-green: 0 0 30px rgba(106, 142, 78, 0.4);
      --glow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
      --glass-bg: rgba(255, 255, 255, 0.08);
      --glass-border: rgba(255, 255, 255, 0.15);
      --gradient-hero: linear-gradient(135deg, #0d1f3c 0%, #0a2e1e 50%, #1a3a2e 100%);

      /* Legacy Variables Mapping (For Subpages Compatibility) */
      --primary: var(--c-navy);
      --secondary: var(--c-green);
      --secondary-light: var(--c-green-pale);
      --accent: var(--c-accent-orange);
      --bg-body: var(--bg-main);
      --surface: var(--bg-card);
      --text-main: var(--text-dark);
      --brand-gradient: linear-gradient(135deg, var(--c-navy) 0%, var(--c-green) 100%);
      --gold-gradient: linear-gradient(135deg, var(--c-accent-gold) 0%, var(--c-accent-orange) 100%);
    }

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

    /* ── Universal Responsive Fixes ── */
    html, body {
      max-width: 100vw;
      overflow-x: hidden;
      position: relative;
      scroll-behavior: smooth;
    }
    img, video, iframe {
      max-width: 100%;
      height: auto;
    }
    .container {
      width: 100%;
      padding-right: 20px;
      padding-left: 20px;
      margin-right: auto;
      margin-left: auto;
    }
    @media (min-width: 576px)  { .container { max-width: 540px; } }
    @media (min-width: 768px)  { .container { max-width: 720px; } }
    @media (min-width: 992px)  { .container { max-width: 960px; } }
    @media (min-width: 1200px) { .container { max-width: 1140px; } }

    /* ── Accessibility ── */
    input, button, select, textarea { font-family: inherit; }
    button { cursor: pointer; border: none; outline: none; }
    a { text-decoration: none; color: inherit; transition: 0.3s; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-ar); background-color: var(--bg-main); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
    body.loading { overflow: hidden; }
    h1, h2, h3, h4, h5, h6 { font-family: var(--font-en); font-weight: 800; color: var(--c-navy); }
    .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 10; }
    .en-text { font-family: var(--font-en); }

    /* ===================================
       News Ticker (شريط النشرة)
       =================================== */
    .news-ticker {
      background: linear-gradient(90deg, var(--c-green), var(--c-green-light));
      color: #fff; padding: 5px 130px 5px 0; font-size: 0.8rem; font-weight: 600; display: flex; align-items: center;
      position: fixed; top: 0; left: 0; width: 100%; z-index: 1001; overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .news-ticker-title {
      background: var(--c-navy); padding: 5px 10px; position: absolute; right: 0; top: 0; height: 100%;
      z-index: 2; display: flex; align-items: center; gap: 5px; border-radius: 0 0 0 15px;
    }
    .news-ticker-content { white-space: nowrap; animation: ticker 45s linear infinite; display: inline-block; padding-right: 0; }
    .news-ticker-content span { margin: 0 30px; display: inline-flex; align-items: center; gap: 8px; }
    @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(50%); } }

    /* ===================================
       Animated Background Elements & Bubbles
       =================================== */
    .bg-animations { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: -1; overflow: hidden; }
    .floating-icon { position: absolute; opacity: 0.25; animation: float-random 15s linear infinite; }
    .fi-1 { top: 15%; left: 5%; font-size: 4rem; color: var(--c-accent-blue); animation-duration: 20s; }
    .fi-2 { top: 25%; right: 10%; font-size: 3rem; color: var(--c-accent-orange); animation-duration: 18s; animation-delay: -5s; }
    .fi-3 { top: 60%; left: 15%; font-size: 4.5rem; color: var(--c-accent-pink); animation-duration: 22s; animation-delay: -10s; }
    .fi-4 { bottom: 15%; right: 20%; font-size: 3.5rem; color: var(--c-green); animation-duration: 25s; animation-delay: -2s; }
    .fi-5 { top: 45%; left: 40%; font-size: 2.5rem; color: var(--c-accent-gold); animation-duration: 19s; animation-delay: -7s; }
    .fi-6 { top: 75%; right: 5%; font-size: 3rem; color: var(--c-navy-light); animation-duration: 21s; animation-delay: -3s; }
    .fi-7 { top: 10%; right: 40%; font-size: 2rem; color: var(--c-accent-orange); animation-duration: 17s; animation-delay: -9s; }
    .fi-8 { bottom: 5%; left: 30%; font-size: 3.5rem; color: var(--c-green-light); animation-duration: 24s; animation-delay: -1s; }
    .fi-9 { top: 35%; left: 25%; font-size: 4rem; color: var(--c-accent-blue); animation-duration: 26s; animation-delay: -12s; }
    .fi-10 { bottom: 25%; right: 40%; font-size: 2.5rem; color: var(--c-accent-pink); animation-duration: 20s; animation-delay: -6s; }

    @keyframes float-random {
      0% { transform: translate(0, 0) rotate(0deg) scale(1); }
      33% { transform: translate(40px, -60px) rotate(120deg) scale(1.15); }
      66% { transform: translate(-30px, 30px) rotate(240deg) scale(0.9); }
      100% { transform: translate(0, 0) rotate(360deg) scale(1); }
    }

    /* Floating Bubbles */
    .bubbles { position: absolute; width: 100%; height: 100%; z-index: -1; overflow: hidden; top:0; left:0; }
    .bubble {
      position: absolute; bottom: -100px;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(255,255,255,0.1));
      border-radius: 50%; opacity: 0.5; animation: rise 15s infinite ease-in;
    }
    .bubble:nth-child(1) { width: 40px; height: 40px; left: 10%; animation-duration: 12s; }
    .bubble:nth-child(2) { width: 20px; height: 20px; left: 20%; animation-duration: 18s; animation-delay: 2s; }
    .bubble:nth-child(3) { width: 50px; height: 50px; left: 35%; animation-duration: 15s; animation-delay: 4s; }
    .bubble:nth-child(4) { width: 30px; height: 30px; left: 50%; animation-duration: 11s; animation-delay: 0s; }
    .bubble:nth-child(5) { width: 60px; height: 60px; left: 70%; animation-duration: 14s; animation-delay: 5s; }
    .bubble:nth-child(6) { width: 25px; height: 25px; left: 85%; animation-duration: 17s; animation-delay: 1s; }

    @keyframes rise {
      0% { bottom: -100px; transform: translateX(0); opacity: 0; }
      50% { opacity: 0.6; transform: translateX(30px); }
      100% { bottom: 1080px; transform: translateX(-30px); opacity: 0; }
    }

    /* Blobs */
    .blob { position: absolute; filter: blur(60px); z-index: -1; border-radius: 50%; animation: morph 8s ease-in-out infinite alternate; }
    .blob-1 { width: 400px; height: 400px; background: rgba(106, 142, 78, 0.15); top: 10%; right: -100px; }
    .blob-2 { width: 450px; height: 450px; background: rgba(86, 204, 242, 0.15); bottom: 10%; left: -100px; }
    @media (max-width: 767px) {
      .blob { display: none; }
    }
    @keyframes morph {
      0% { border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%; transform: scale(1); }
      100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: scale(1.1); }
    }

    /* ── News Ticker (second definition – more specific overrides) ── */
    .news-ticker {
      background: var(--c-green-pale);
      color: var(--text-dark);
      height: 30px;
      display: flex;
      align-items: center;
      overflow: hidden;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1010;
      font-weight: 700;
      font-size: 0.8rem;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    /* ───────────────────────────────────────────
       NAVBAR
       ─────────────────────────────────────────── */
    .navbar {
      background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
      position: fixed; width: 100%; top: 30px; z-index: 1000; box-shadow: var(--shadow-sm); padding: 10px 0;
      transition: all 0.3s; border-bottom: 2px solid var(--c-green-pale);
    }
    .navbar .container { display: flex; justify-content: space-between; align-items: center; }
    .logo { display: flex; align-items: center; gap: 15px; text-decoration: none; }
    .logo img { height: 60px; object-fit: contain; transition: 0.3s; }
    .logo:hover img { transform: scale(1.05) rotate(-3deg); }
    .nav-links { display: flex; gap: 25px; list-style: none; align-items: center; }
    .nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 700; font-size: 1.05rem; transition: 0.3s; display: flex; align-items: center; gap: 6px; position: relative;}
    .nav-links a i { color: var(--c-green); font-size: 0.9rem; transition: 0.3s;}
    .nav-links a:hover, .nav-links a.active { color: var(--c-green); transform: translateY(-2px); }
    .nav-links a:hover i, .nav-links a.active i { transform: rotate(15deg) scale(1.2); color: var(--c-accent-orange);}
    .nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background: var(--c-accent-orange); transition: 0.3s; border-radius: 5px; }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

    /* ── Improved Scrolled Navbar ── */
    .navbar.scrolled {
      background: rgba(10, 27, 63, 0.97) !important;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 4px 30px rgba(0,0,0,0.2);
      border-bottom: 1px solid rgba(106,142,78,0.2);
    }
    .navbar.scrolled .nav-links a { color: #fff; }
    .navbar.scrolled .nav-links a:hover { color: #4ee8a8; }
    .navbar.scrolled .hamburger .bar { background: #fff; }

    .btn { padding: 12px 28px; border-radius: 50px; text-decoration: none; font-weight: 800; font-size: 1.05rem; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); cursor: pointer; border: none; }
    .btn-primary { background: var(--c-navy); color: #fff; box-shadow: 0 10px 20px rgba(26, 47, 76, 0.15); }
    .btn-primary:hover { background: var(--c-green); transform: translateY(-5px) scale(1.05); box-shadow: 0 15px 25px rgba(106, 142, 78, 0.3); color: #fff;}
    .btn-outline { background: #fff; color: var(--c-navy); border: 2px solid var(--c-navy); }
    .btn-outline:hover { background: var(--c-navy); color: #fff; transform: translateY(-5px); }

    .hamburger { display: none; background: transparent; border: none; cursor: pointer; padding: 5px; z-index: 1005; }
    .hamburger .bar { display: block; width: 25px; height: 3px; margin: 5px auto; transition: all 0.3s ease-in-out; background-color: var(--c-navy); border-radius: 3px; }

    @media (max-width: 992px) {
      .hamburger { display: block; }
      .nav-links {
        position: fixed; left: -100%; top: 0; flex-direction: column; background-color: var(--bg-card); width: 100%; height: 100vh; text-align: center; transition: 0.3s; box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05); justify-content: center; z-index: 1000;
      }
      .nav-links.active { left: 0; }
      .hamburger.active .bar:nth-child(2) { opacity: 0; }
      .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
      .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
      /* Hide desktop booking btn on mobile, keep lang btn visible */
      .navbar .btn.open-booking:not(.mobile-only-link .btn) { display: none; }
      .mobile-only-link { display: block !important; width: 100%; padding: 0 10px; margin-top: 15px; }
      .mobile-only-link .btn { display: flex !important; width: 100%; justify-content: center; }
      /* Nav links on mobile: better spacing */
      .nav-links a { font-size: 1.15rem; padding: 8px 0; }
      .nav-links { padding: 20px 0; gap: 10px; }
      /* Logo smaller on mobile */
      .logo img { height: 48px !important; }
    }

    @media (max-width: 576px) {
      .logo img { height: 42px !important; }
      .navbar { padding: 6px 0; }
      .navbar .container { padding: 0 14px; }
    }

    @media (min-width: 900px) {
      .mobile-only-link { display: none !important; }
    }

    /* ── Language Toggle Button ── */
    .wcfw-lang-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--c-navy);
      border: 2px solid var(--c-green);
      color: #fff;
      padding: 7px 18px;
      border-radius: 50px;
      font-family: 'Cairo', 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      letter-spacing: 0.5px;
      margin-inline-end: 10px;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(106, 142, 78, 0.25);
    }
    .wcfw-lang-btn::before {
      content: '🌐';
      font-size: 0.85rem;
    }
    .wcfw-lang-btn:hover {
      background: var(--c-green);
      border-color: var(--c-green-light);
      transform: translateY(-2px) scale(1.05);
      box-shadow: 0 8px 20px rgba(106, 142, 78, 0.4);
    }
    @media (max-width: 992px) {
      .wcfw-lang-btn {
        padding: 6px 14px;
        font-size: 0.85rem;
        margin-inline-end: 6px;
      }
    }
    @media (max-width: 480px) {
      .wcfw-lang-btn {
        padding: 5px 11px;
        font-size: 0.8rem;
        margin-inline-end: 4px;
      }
      .wcfw-lang-btn::before { display: none; }
    }

    /* ───────────────────────────────────────────
       Section Headers
       ─────────────────────────────────────────── */
    .section-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 10; }

    /* ── Premium Title Badge ── */
    .title-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, rgba(106,142,78,0.15), rgba(212,175,55,0.1));
      color: var(--c-green);
      padding: 10px 28px;
      border-radius: 50px;
      font-weight: 800;
      font-size: 0.9rem;
      margin-bottom: 20px;
      border: 1px solid rgba(106,142,78,0.4);
      backdrop-filter: blur(10px);
      letter-spacing: 0.5px;
      box-shadow: 0 4px 15px rgba(106,142,78,0.15);
      animation: pulse-badge 2s infinite alternate;
    }
    @keyframes pulse-badge { 0% { transform: scale(1) rotate(-2deg); } 100% { transform: scale(1.05) rotate(2deg); box-shadow: 0 0 15px rgba(106,142,78,0.2); } }
    .section-header h2 { font-size: 3rem; color: var(--c-navy); font-weight: 900; margin-bottom: 15px; line-height: 1.3;}
    .section-header p { font-size: 1.2rem; color: var(--text-muted); max-width: 700px; margin: 0 auto; }
    .section-spacing { padding: 100px 0; }

    /* Wavy Dividers */
    .wave-divider { position: absolute; bottom: 0; left: 0; width: 100%; overflow: hidden; line-height: 0; }
    .wave-divider svg { position: relative; display: block; width: calc(100% + 1.3px); height: 70px; }
    .wave-divider .shape-fill { fill: var(--bg-main); }

    /* ── Hero wave fill matches new dark hero bg ── */
    .hero .wave-divider .shape-fill { fill: var(--bg-main); }

    /* ===================================
       Hero Section — PREMIUM DARK
       =================================== */
    .hero {
      padding: 200px 0 140px;
      position: relative;
      background: linear-gradient(160deg, #0a1b3f 0%, #0d2a1e 60%, #0a2e28 100%);
      overflow: hidden;
      min-height: 100vh;
      display: flex;
      align-items: center;
    }

    /* Glowing orbs */
    .hero::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -100px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(106,142,78,0.15) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -150px;
      left: -100px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }

    /* ── Hero Text — Light on Dark ── */
    .hero-text h1 {
      font-size: 4rem;
      color: #ffffff;
      line-height: 1.2;
      margin-bottom: 25px;
      font-weight: 900;
      text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }
    .hero-text h2 {
      color: #4ee8a8 !important;
    }
    .hero-text p {
      font-size: 1.2rem;
      color: rgba(255,255,255,0.75);
      margin-bottom: 40px;
      font-weight: 500;
      line-height: 1.8;
    }
    .hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }

    /* ── Animated Gradient Text — More Vivid ── */
    .animated-gradient-text {
      background: linear-gradient(to right, #4ee8a8, #d4af37, #f2994a, #4ee8a8);
      background-size: 300% 300%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: gradient-text 4s ease infinite;
      display: inline-block;
    }
    @keyframes gradient-text { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

    .hero-images { position: relative; animation: float-up-down 6s ease-in-out infinite; }

    /* ── Hero Image — Glowing Border ── */
    .hero-img-main {
      width: 100%;
      border-radius: 30px;
      box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 4px rgba(106,142,78,0.3);
      border: 4px solid rgba(255,255,255,0.15);
      position: relative;
      z-index: 2;
      height: 500px;
      object-fit: cover;
      transition: 0.5s;
    }
    .hero-images:hover .hero-img-main { border-radius: 50px 20px 50px 20px; transform: scale(1.02); }
    @keyframes float-up-down { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

    /* ── Glass Card — Better Glassmorphism ── */
    .glass-card {
      position: absolute;
      bottom: -30px;
      right: -20px;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 25px;
      border-radius: 24px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.15);
      z-index: 3;
      border: 1px solid rgba(255,255,255,0.2);
      animation: float-card 4s infinite ease-in-out reverse;
      transition: 0.3s;
      cursor: pointer;
    }
    .glass-card:hover { transform: scale(1.1) rotate(5deg) !important; animation-play-state: paused; }
    .glass-card h4 { color: #fff; font-weight: 800; font-size: 1.2rem; }
    .glass-card i { font-size: 2.5rem; color: #d4af37; margin-bottom: 10px; display: inline-block; animation: spin-slow 10s linear infinite; }
    @keyframes float-card { 0% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-15px) rotate(3deg); } 100% { transform: translateY(0px) rotate(0deg); } }
    @keyframes spin-slow { 100% { transform: rotate(360deg); } }

    /* ===================================
       Video Intro Section (فيديو تعريفي)
       =================================== */
    .video-section { background: var(--bg-main); position: relative; padding-top: 50px; }
    .video-container { position: relative; max-width: 1000px; margin: 0 auto; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.15); border: 8px solid #fff; transition: 0.5s; transform: perspective(1000px) rotateX(2deg); }
    .video-container:hover { transform: perspective(1000px) rotateX(0deg) scale(1.02); box-shadow: 0 40px 80px rgba(106,142,78,0.2); border-color: var(--c-green-pale); }
    .video-container video { width: 100%; display: block; border-radius: calc(var(--radius-xl) - 8px); object-fit: cover; aspect-ratio: 16/9; }

    /* ===================================
       Gallery Section
       =================================== */
    .gallery-section {
      background: linear-gradient(180deg, var(--bg-main) 0%, #e8f4e8 50%, var(--bg-main) 100%);
      overflow: hidden;
      position: relative;
    }

    /* ===================================
       Kids Gallery (حركة وصور للأطفال)
       =================================== */
    .kids-gallery { background: linear-gradient(180deg, var(--bg-gray) 0%, #ffffff 100%); overflow: hidden; position: relative; padding-bottom: 150px; }
    .gallery-track { display: flex; gap: 30px; padding: 40px 0; width: max-content; animation: scroll-left 35s linear infinite; }
    .gallery-track:hover { animation-play-state: paused; }
    .gallery-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); transform: rotate(-3deg); cursor: pointer; border: 5px solid #fff;}
    .gallery-img-wrap:nth-child(even) { transform: rotate(4deg) translateY(20px); }
    .gallery-img-wrap:hover { transform: scale(1.15) rotate(0deg) !important; z-index: 10; box-shadow: var(--shadow-hover); border-color: var(--c-accent-orange); }
    .gallery-img-wrap img { width: 350px; height: 260px; object-fit: cover; display: block; transition: 0.5s; }
    .gallery-img-wrap:hover img { filter: brightness(1.1); }
    .gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,47,76,0.7), transparent); opacity: 0; transition: 0.4s; display: flex; align-items: flex-end; justify-content: center; padding: 20px; }
    .gallery-img-wrap:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay i { color: #fff; font-size: 3rem; transform: translateY(20px); transition: 0.4s; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3)); }
    .gallery-img-wrap:hover .gallery-overlay i { transform: translateY(0); color: var(--c-accent-yellow); }
    @keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(1900px); } }

    /* ===================================
       Medical Leadership
       =================================== */
    .leadership { position: relative; background: #fff; }
    .leadership-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: center; }
    .doctor-img-wrap { position: relative; padding: 20px; }
    .doctor-img-wrap::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(45deg, var(--c-green-pale), var(--c-accent-blue)); border-radius: var(--radius-xl); z-index: 0; transform: rotate(-5deg); transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); opacity: 0.5;}
    .doctor-img-wrap:hover::before { transform: rotate(5deg) scale(1.05); opacity: 0.8;}
    .doctor-img { position: relative; z-index: 1; border-radius: var(--radius-lg); width: 100%; box-shadow: var(--shadow-lg); display: block; transition: 0.5s; }
    .doctor-img-wrap:hover .doctor-img { transform: scale(1.02); }

    /* ===================================
       Services Bento — Cards with Glow
       =================================== */
    .services { background: var(--bg-main); position: relative; }
    .bento-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

    /* ── Enhanced Bento Items ── */
    .bento-item {
      background: #fff;
      border-radius: 28px;
      padding: 45px;
      transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 8px 30px rgba(26,47,76,0.06);
      position: relative;
      overflow: hidden;
      border: 1.5px solid rgba(26,47,76,0.06);
    }
    .bento-item::before { content:''; position:absolute; top:-50px; right:-50px; width:200px; height:200px; border-radius:50%; opacity:0.05; transition:0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);}
    .bento-kids::before { background: var(--c-accent-orange); }
    .bento-adults::before { background: var(--c-accent-blue); }
    .bento-advanced::before { background: var(--c-green); }

    .bento-item:hover {
      box-shadow: 0 30px 60px rgba(106,142,78,0.15);
      transform: translateY(-12px);
      border-color: rgba(106,142,78,0.2);
    }
    .bento-item:hover::before { transform: scale(2); opacity: 0.15; }

    .bento-icon { width: 80px; height: 80px; border-radius: 24px; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; margin-bottom: 25px; transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
    .bento-item:hover .bento-icon { transform: scale(1.2) rotate(10deg); box-shadow: 0 15px 25px rgba(0,0,0,0.1); }
    .bento-kids .bento-icon { background: rgba(242, 153, 74, 0.15); color: var(--c-accent-orange); }
    .bento-adults .bento-icon { background: rgba(86, 204, 242, 0.15); color: var(--c-accent-blue); }
    .bento-advanced .bento-icon { background: rgba(106, 142, 78, 0.15); color: var(--c-green); }

    /* ===================================
       Statistics Section — Glowing
       =================================== */
    .statistics {
      background: linear-gradient(135deg, #0a1b3f 0%, #0d2a1e 100%);
      position: relative;
      overflow: hidden;
      padding: 100px 0;
    }
    .statistics::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 30% 50%, rgba(106,142,78,0.1) 0%, transparent 60%),
                  radial-gradient(ellipse at 70% 50%, rgba(212,175,55,0.08) 0%, transparent 60%);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 25px;
      position: relative;
      z-index: 1;
    }

    .stat-item {
      text-align: center;
      padding: 40px 20px;
      background: rgba(255,255,255,0.05);
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      transition: 0.4s;
      position: relative;
      overflow: hidden;
    }
    .stat-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #6a8e4e, #d4af37);
      transform: scaleX(0);
      transition: transform 0.4s;
    }
    .stat-item:hover::before { transform: scaleX(1); }
    .stat-item:hover {
      background: rgba(255,255,255,0.08);
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
      border-color: rgba(106,142,78,0.3);
    }

    .stat-icon {
      width: 70px;
      height: 70px;
      background: rgba(106,142,78,0.15);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: #4ee8a8;
      margin: 0 auto 20px;
      border: 1px solid rgba(106,142,78,0.3);
      transition: 0.4s;
    }
    .stat-item:hover .stat-icon {
      background: rgba(106,142,78,0.25);
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 0 20px rgba(106,142,78,0.3);
    }

    .stat-number {
      font-size: 3.5rem;
      font-weight: 900;
      color: #fff;
      line-height: 1;
      font-family: 'Cairo', sans-serif;
      margin-bottom: 8px;
      background: linear-gradient(135deg, #4ee8a8, #d4af37);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .stat-label {
      font-size: 1rem;
      color: rgba(255,255,255,0.7);
      font-weight: 600;
      margin-top: 8px;
    }

    /* ───────────────────────────────────────────
       Footer — Premium Dark
       ─────────────────────────────────────────── */
    .footer {
      background: linear-gradient(160deg, #0a1b3f 0%, #0d2a1e 100%);
      color: #fff;
      padding: 100px 0 30px;
      position: relative;
      z-index: 10;
    }
    .footer-wave { position: absolute; top: -1px; left: 0; width: 100%; overflow: hidden; line-height: 0; transform: rotate(180deg); }
    .footer-wave svg { position: relative; display: block; width: calc(100% + 1.3px); height: 50px; }
    .footer-wave .shape-fill { fill: var(--bg-main); }

    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
    .footer-links { list-style: none; }
    .footer-links a { color: rgba(255,255,255,0.8); text-decoration: none; transition: 0.3s; display: flex; align-items: center; gap: 8px;}
    .footer-links a:hover { color: var(--c-accent-gold); transform: translateX(-8px); }
    .social-links { display: flex; gap: 15px; margin-top: 20px; }
    .social-links a { width: 45px; height: 45px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); font-size: 1.2rem;}
    .social-links a:hover { background: var(--c-accent-orange); transform: translateY(-8px) scale(1.1) rotate(360deg); box-shadow: 0 10px 20px rgba(242, 153, 74, 0.4);}

    /* ───────────────────────────────────────────
       Preloader
       ─────────────────────────────────────────── */
    .preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--bg-main); display: flex; align-items: center; justify-content: center; z-index: 9999; transition: opacity 0.5s ease, visibility 0.5s ease; }
    .preloader.hidden { opacity: 0; visibility: hidden; }
    .preloader-content { text-align: center; }
    .preloader-logo h1 { color: var(--c-navy); font-size: 3.5rem; font-weight: 800; margin-bottom: 5px; }
    .preloader-logo p { color: var(--c-green); font-size: 1.2rem; margin-bottom: 20px; }
    .preloader-spinner { width: 50px; height: 50px; border: 5px solid var(--c-green-pale); border-top-color: var(--c-green); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto; }
    @keyframes spin { 100% { transform: rotate(360deg); } }

    /* ───────────────────────────────────────────
       Floating Contact — Premium WhatsApp Button
       ─────────────────────────────────────────── */
    .floating-contact { position: fixed; right: 30px; bottom: 30px; z-index: 999; display: flex; flex-direction: column-reverse; align-items: center; gap: 15px; }

    /* ── WhatsApp Floating Button ── */
    .floating-btn {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: linear-gradient(135deg, #25D366, #128C7E);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
      border: 3px solid rgba(255,255,255,0.3);
      cursor: pointer;
      transition: 0.3s;
      z-index: 2;
      animation: pulse-whatsapp 2s infinite;
    }
    @keyframes pulse-whatsapp {
      0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37,211,102,0.4); }
      50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5), 0 0 0 15px rgba(37,211,102,0); }
    }
    .floating-btn:hover { transform: scale(1.12) rotate(-5deg); }

    .contact-options { display: flex; flex-direction: column; gap: 10px; position: absolute; bottom: 70px; opacity: 0; visibility: hidden; transform: translateY(20px); transition: 0.3s; z-index: 1; }
    .contact-options.active { opacity: 1; visibility: visible; transform: translateY(0); }
    .contact-option { width: 50px; height: 50px; border-radius: 50%; background: white; color: var(--c-navy); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: var(--shadow-sm); text-decoration: none; transition: 0.3s; position: relative; }
    .contact-option.call { background: var(--c-green); color: white; }
    .contact-option.whatsapp { background: #25d366; color: white; }
    .contact-option.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
    .contact-option.twitter { background: #1DA1F2; color: white; }
    .contact-option.snapchat { background: #FFFC00; color: #000; }
    .contact-option.linkedin { background: #0077B5; color: white; }
    .contact-option.email { background: var(--c-navy); color: white; }
    .contact-option:hover { transform: scale(1.1) rotate(10deg); box-shadow: var(--shadow-md); }
    .contact-option[data-tooltip]::before { content: attr(data-tooltip); position: absolute; right: 100%; top: 50%; transform: translateY(-50%); background: rgba(26, 47, 76, 0.9); color: white; padding: 6px 12px; border-radius: 8px; font-size: 0.85rem; margin-right: 15px; white-space: nowrap; opacity: 0; visibility: hidden; transition: 0.3s; pointer-events: none; border: 1px solid rgba(255,255,255,0.1);}
    .contact-option:hover::before { opacity: 1; visibility: visible; }
    .back-to-top { position: fixed; left: 30px; bottom: 30px; width: 60px; height: 60px; border-radius: 50%; background: var(--brand-gradient); color: white; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; border: none; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(20px); transition: 0.3s; z-index: 998; box-shadow: var(--shadow-md); }
    .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
    .back-to-top:hover { background: var(--c-green); transform: translateY(-5px); }

    /* ═══════════════════════════════════════════
       RESPONSIVE DESIGN — ALL SCREEN SIZES
       ═══════════════════════════════════════════ */

    /* ── Desktop Large 1280px+ ── */
    @media (min-width: 1280px) {
      .container { max-width: 1200px; }
      .hero-text h1 { font-size: 4.2rem; }
    }

    /* ── Desktop Medium 1024px–1279px ── */
    @media (max-width: 1279px) {
      .hero-text h1 { font-size: 3.5rem; }
      .section-header h2 { font-size: 2.6rem; }
      .bento-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    }

    /* ── Tablet Landscape 900px–1023px ── */
    @media (max-width: 1023px) {
      .hero { padding: 160px 0 90px; }
      .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
      .hero-buttons { justify-content: center; }
      .hero-images { max-width: 520px; margin: 0 auto; }
      .hero-img-main { height: 380px; }
      .glass-card { right: -10px; bottom: -20px; padding: 18px; }
      .leadership-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
      .doctor-img-wrap { max-width: 420px; margin: 0 auto; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
      .section-header h2 { font-size: 2.4rem; }
      .section-spacing { padding: 80px 0; }
      .leadership { text-align: center; }
      .leadership-text ul { text-align: right; }
    }

    /* ── Tablet Portrait 768px–899px ── */
    @media (max-width: 899px) {
      .hamburger { display: block; }
      .nav-links {
        position: fixed; right: -100%; top: 0; flex-direction: column;
        background: var(--bg-card); width: 80%; max-width: 320px; height: 100vh;
        text-align: center; transition: 0.35s cubic-bezier(0.4,0,0.2,1);
        box-shadow: -8px 0 30px rgba(0,0,0,0.15); justify-content: center;
        z-index: 1000; padding: 40px 20px; gap: 8px;
      }
      .nav-links.active { right: 0; }
      .nav-links a { font-size: 1.1rem; padding: 12px 20px; border-radius: 12px; width: 100%; }
      .nav-links a:hover { background: var(--c-green-pale); }
      .hamburger .bar { background: var(--c-navy); }
      .navbar .btn { display: none; }
      .news-ticker { font-size: 0.7rem; }
      .hero { padding: 140px 0 80px; }
      .hero-text h1 { font-size: 2.8rem; }
      .section-header h2 { font-size: 2.1rem; }
      .section-header p { font-size: 1.05rem; }
      .section-spacing { padding: 70px 0; }
      .bento-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
      .bento-item { padding: 28px; }
      .video-container { border-width: 5px; border-radius: 24px; }
      .gallery-img-wrap img { width: 260px; height: 200px; }
      .footer { padding: 70px 0 20px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 25px; }
    }

    /* ── Mobile Large 600px–767px ── */
    @media (max-width: 767px) {
      .news-ticker { position: fixed; top: 0; z-index: 1001; font-size: 0.65rem; height: 28px; }
      .navbar { top: 28px !important; padding: 5px 0 !important; height: 70px; display: flex; align-items: center; }
      .navbar .container { height: 100%; align-items: center; }
      .logo img { height: 45px !important; }
      .hamburger { margin-top: 0; padding: 10px; font-size: 1.5rem; }

      .hero { padding: 130px 0 60px; text-align: center; }
      .hero-text h1 { font-size: 1.85rem; margin-bottom: 20px; line-height: 1.4; color: #ffffff !important; }
      .hero-text p { font-size: 0.95rem; margin-bottom: 30px; padding: 0 10px; color: rgba(255,255,255,0.75) !important; }
      .hero-text h2 { color: #4ee8a8 !important; }
      .hero-buttons { display: flex; flex-direction: column; gap: 15px; width: 100%; max-width: 320px; margin: 0 auto 40px; }
      .hero-buttons .btn { width: 100%; padding: 16px; border-radius: 15px; font-size: 1rem; justify-content: center; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }

      .hero-img-main { border-radius: 25px; box-shadow: 0 15px 35px rgba(0,0,0,0.15); width: 100%; max-width: 340px; }

      /* تحسين وضوح النص فوق الخلفية */
      .bg-animations { opacity: 0.3; }
      .floating-icon { opacity: 0.1 !important; }

      .bento-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 15px; }
      .bento-item { padding: 25px 20px; text-align: center; }
      .bento-icon { margin: 0 auto 20px; width: 60px; height: 60px; font-size: 1.8rem; }

      .footer { padding: 50px 0 20px; text-align: center; }
      .footer-grid { grid-template-columns: 1fr !important; gap: 40px; }
      .footer .logo { justify-content: center; margin-bottom: 25px; }
      .footer-links { text-align: center; padding: 0; }
      .footer-links li { display: flex; justify-content: center; }
      .footer-links a { justify-content: center; transform: none !important; }
      .footer-links a i { margin-left: 0; margin-right: 0; margin: 0 8px; }
      .social-links { justify-content: center; margin-top: 30px; }

      /* تحسينات خاصة بالصفحة الرئيسية على الجوال */
      .hero { padding: 100px 0 60px; overflow: hidden; }
      .hero-grid { grid-template-columns: 1fr !important; gap: 30px; text-align: center; }
      .hero-text h2 { font-size: 1.1rem !important; }
      .hero-text h1 { font-size: 1.9rem; line-height: 1.3; }
      .hero-images { margin-top: 30px; position: relative; max-width: 100%; }
      .hero-img-main { height: auto; max-height: 320px; border-radius: 30px; width: 90%; margin: 0 auto; }
      .hero-buttons { justify-content: center; width: 100%; gap: 10px; }
      .hero-buttons .btn { font-size: 0.9rem; padding: 12px 20px; }

      .leadership-grid { grid-template-columns: 1fr !important; gap: 35px; text-align: center; }
      .leadership-text { text-align: center; }
      .leadership-text ul { text-align: right; display: inline-block; }
      .doctor-img-wrap { max-width: 260px; margin: 0 auto; padding: 10px; }
      .doctor-img-wrap::before { transform: rotate(-3deg) scale(0.95); opacity: 0.4; }

      .video-container { width: 100%; border-radius: 15px; border-width: 4px; }
      .video-section .btn { width: 100%; max-width: 300px; }

      .kids-gallery { padding-bottom: 60px; }
      .gallery-track { gap: 15px; padding: 20px 0; }
      .gallery-img-wrap { border-width: 3px; transform: none !important; }
      .gallery-img-wrap img { width: 260px; height: 190px; }

      .bento-grid { grid-template-columns: 1fr !important; }
      .bento-item { padding: 30px 20px; }

      .wave-divider svg { height: 40px; }

      .floating-contact { right: 15px; bottom: 15px; }
      .back-to-top { left: 15px; bottom: 15px; width: 45px; height: 45px; }
    }

    /* ── Mobile Small 480px ── */
    @media (max-width: 480px) {
      .hero-text h1 { font-size: 1.8rem; }
      .section-header h2 { font-size: 1.5rem; }
      .title-badge { font-size: 0.8rem; padding: 5px 15px; }
      .nav-links { width: 85%; }
      .hero-img-main { height: 240px; }
      .glass-card { display: none; } /* إخفاء الكرت العائم على الشاشات الصغيرة جداً لتجنب التغطية على النص */
    }

    /* ── Mobile Tiny 360px ── */
    @media (max-width: 379px) {
      .hero-text h1 { font-size: 1.65rem; }
      .section-header h2 { font-size: 1.5rem; }
      .hero-buttons { flex-direction: column; }
      .hero-buttons .btn { width: 100%; justify-content: center; }
      .glass-card { display: none; }
      .container { padding: 0 12px; }
      .floating-btn { width: 44px; height: 44px; font-size: 1.1rem; }
      .back-to-top { left: 12px; bottom: 18px; }
    }

    /* ── Landscape orientation phones ── */
    @media (max-height: 500px) and (orientation: landscape) {
      .hero { padding: 90px 0 40px; }
      .hero-text h1 { font-size: 1.8rem; }
      .section-spacing { padding: 40px 0; }
      .nav-links { flex-direction: row; flex-wrap: wrap; height: auto; padding-top: 80px; }
    }

    /* ── Touch: disable hover-only effects ── */
    @media (hover: none) {
      .bento-item:hover { transform: none; }
      .gallery-img-wrap:hover { transform: rotate(-3deg); z-index: 1; }
      .gallery-img-wrap:nth-child(even):hover { transform: rotate(4deg) translateY(20px); }
      .social-links a:hover { transform: none; }
      .footer-links a:hover { transform: none; }
      .gallery-overlay { opacity: 1; background: linear-gradient(to top, rgba(26,47,76,0.6), transparent 60%); }
    }

    /* ── High DPI / Retina ── */
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
      .hero-img-main, .doctor-img { image-rendering: -webkit-optimize-contrast; }
    }

    /* ── Print ── */
    @media print {
      .navbar, .floating-contact, .back-to-top, .preloader, .news-ticker { display: none !important; }
      .hero { padding: 40px 0; background: white !important; }
      .hero-images { display: none; }
      .hero-grid { grid-template-columns: 1fr; }
      body { font-size: 12pt; color: #000; }
    }

    /* ═══════════════════════════════════════════
       FOOTER RESPONSIVE
       ═══════════════════════════════════════════ */
    @media (max-width: 900px) {
      .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        text-align: center;
      }
      .footer .social-links { justify-content: center !important; }
      .footer-links { padding: 0 !important; }
      .footer-links a { justify-content: center; }
    }

    @media (max-width: 576px) {
      .footer { padding-top: 60px; }
      .footer-grid { gap: 25px !important; }
      .footer-copyright {
        flex-direction: column !important;
        gap: 12px !important;
        text-align: center;
      }
    }

    /* ═══════════════════════════════════════════
       BREADCRUMB RESPONSIVE
       ═══════════════════════════════════════════ */
    .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
    @media (max-width: 480px) {
      .breadcrumb { font-size: 0.82rem; flex-wrap: wrap; gap: 5px; }
    }

    /* ═══════════════════════════════════════════
       LTR LAYOUT FIXES (English Mode)
       ═══════════════════════════════════════════ */
    @media (min-width: 993px) {
      [dir="ltr"] .nav-links { flex-direction: row; }
    }
    [dir="ltr"] .footer-links a i { margin-right: 8px; margin-left: 0; }
    [dir="ltr"] .title-badge { direction: ltr; }
    [dir="ltr"] .section-header h2 { direction: ltr; }
    [dir="ltr"] .nav-links a i { margin-right: 6px; margin-left: 0; }

    /* ═══════════════════════════════════════════
       MOBILE FIXES FOR DR BIO INLINE GRIDS
       ═══════════════════════════════════════════ */
    @media (max-width: 900px) {
      .dr-bio-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
    }
    @media (max-width: 576px) {
      .dr-stats-grid { grid-template-columns: 1fr !important; }
      .dr-achieve-grid { grid-template-columns: 1fr !important; }
    }

    /* ═══════════════════════════════════════════
       TESTIMONIALS SECTION
       ═══════════════════════════════════════════ */
    .testimonials-section {
      background: linear-gradient(135deg, var(--bg-main) 0%, #f0f7f0 100%);
      padding: 100px 0;
      overflow: hidden;
      position: relative;
    }
    .testimonials-track {
      display: flex;
      gap: 30px;
      animation: scroll-testimonials 35s linear infinite;
      width: max-content;
    }
    .testimonials-track:hover { animation-play-state: paused; }
    @keyframes scroll-testimonials {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .testimonial-card {
      background: #fff;
      border-radius: 24px;
      padding: 35px;
      width: 380px;
      flex-shrink: 0;
      box-shadow: 0 10px 40px rgba(26,47,76,0.07);
      border: 1.5px solid rgba(106,142,78,0.1);
      transition: 0.4s;
      position: relative;
      overflow: hidden;
    }
    .testimonial-card::before {
      content: '\201C';
      position: absolute;
      top: 15px;
      right: 25px;
      font-size: 6rem;
      color: rgba(106,142,78,0.08);
      font-family: Georgia, serif;
      line-height: 1;
      font-weight: 900;
    }
    .testimonial-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(106,142,78,0.15);
      border-color: rgba(106,142,78,0.3);
    }
    .testimonial-stars {
      color: #d4af37;
      font-size: 1.1rem;
      margin-bottom: 15px;
      letter-spacing: 3px;
    }
    .testimonial-text {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 25px;
      font-style: italic;
      position: relative;
      z-index: 1;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .testimonial-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--c-green), var(--c-navy));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: #fff;
      font-weight: 800;
      flex-shrink: 0;
      border: 3px solid var(--c-green-pale);
    }
    .testimonial-name {
      font-weight: 800;
      color: var(--c-navy);
      font-size: 0.95rem;
    }
    .testimonial-meta {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-top: 2px;
    }

    /* ═══════════════════════════════════════════
       WHATSAPP CTA BANNER
       ═══════════════════════════════════════════ */
    .whatsapp-cta {
      background: linear-gradient(135deg, #25D366, #128C7E);
      padding: 25px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .whatsapp-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0) 0px,
        rgba(255,255,255,0) 10px,
        rgba(255,255,255,0.03) 10px,
        rgba(255,255,255,0.03) 20px
      );
    }
    .whatsapp-cta .container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }
    .whatsapp-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      color: #128C7E;
      padding: 14px 30px;
      border-radius: 50px;
      font-weight: 800;
      font-size: 1rem;
      text-decoration: none;
      transition: 0.3s;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .whatsapp-cta-btn:hover {
      background: var(--c-navy);
      color: #fff;
      transform: translateY(-3px);
    }
    .whatsapp-cta-text {
      color: #fff;
      font-size: 1.15rem;
      font-weight: 700;
    }

    /* ── Inner Pages Hero Text Fix ── */
    .page-hero-content h1, 
    .page-hero-content h2, 
    .page-hero-content p {
      color: #ffffff !important;
    }

    /* ── Force Desktop Navigation on Large Screens (Fix for Inner Pages) ── */
    @media (min-width: 993px) {
      .hamburger { display: none !important; }
      .nav-links { 
        position: static !important; 
        flex-direction: row !important; 
        height: auto !important; 
        width: auto !important; 
        background: transparent !important;
        box-shadow: none !important; 
        display: flex !important;
      }
      .navbar .btn.open-booking { display: inline-flex !important; }
    }

    /* 🌟 Fix Mobile Navigation Text Color on Scroll 🌟 */
    @media (max-width: 992px) {
      .navbar.scrolled .nav-links a { color: var(--text-dark) !important; }
      .navbar.scrolled .nav-links a:hover, .navbar.scrolled .nav-links a.active { color: var(--c-green) !important; background: var(--c-green-pale) !important; }
    }
