:root {
    /* Brand Colors — #d2ad5f (Gold) and White Theme */
    --brand-accent: #d2ad5f;
    --brand-accent-dark: #b8954d;
    --brand-accent-light: rgba(210, 173, 95, 0.12);
    --brand-accent-glow: rgba(210, 173, 95, 0.25);

    --navy-dark: #0A1128;
    --navy-mid: #141C36;
    --navy-light: #1C2541;

    --gray-900: #0f172a;
    --gray-800: #1e293b;
    --gray-700: #334155;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --white: #ffffff;
    --bg-tint: #F7F8FB;

    /* Variables */
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-sm: 0 4px 16px rgba(10, 17, 40, 0.04);
    --shadow-md: 0 14px 36px rgba(10, 17, 40, 0.07);
    --shadow-lg: 0 28px 68px rgba(10, 17, 40, 0.10);
    --shadow-accent: 0 14px 34px rgba(210, 173, 95, 0.3);

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.35s var(--ease);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-700);
    line-height: 1.68;
    background-color: var(--white);
    background-image: radial-gradient(var(--gray-200) 1px, transparent 1px);
    background-size: 40px 40px;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; color: var(--navy-dark); letter-spacing: -0.02em; }
  a { text-decoration: none; color: inherit; transition: var(--transition); }
  ul { list-style: none; }
  img { max-width: 100%; display: block; border-radius: inherit; }

  .container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

  a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2.5px solid var(--brand-accent);
    outline-offset: 3px;
    border-radius: 6px;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .animate-fade-up { animation: fadeUp 0.8s var(--ease) forwards; }

  .eyebrow {
    color: var(--brand-accent-dark); font-weight: 800; letter-spacing: 1.6px;
    font-size: 12px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px;
    margin-bottom: 20px; background: var(--brand-accent-light);
    padding: 8px 18px; border-radius: 50px; border: 1px solid rgba(210, 173, 95, 0.3);
  }
  .eyebrow::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }

  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 16px 36px; border-radius: 50px; font-weight: 700; font-size: 15.5px;
    transition: var(--transition); cursor: pointer; border: none; font-family: 'Outfit', sans-serif;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-dark));
    color: #fff;
    box-shadow: var(--shadow-accent);
  }
  .btn-primary:hover {
    background: var(--navy-dark);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(10, 17, 40, 0.22);
  }

  /* ===== TOP BAR ===== */
  .topbar { background: var(--navy-dark); color: #93a0bd; font-size: 13px; padding: 12px 0; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .topbar .container { display: flex; justify-content: space-between; align-items: center; }
  .topbar a { color: var(--brand-accent); font-weight: 700; letter-spacing: 0.5px; transition: var(--transition); }
  .topbar a:hover { color: #fff; }

  /* ===== HEADER ===== */
  header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    position: sticky; top: 0; z-index: 500;
  }
  .navwrap { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }

  .logo { display: flex; align-items: center; }
  .logo img { height: 45px; width: auto; }

  nav.main-nav > ul { display: flex; flex-wrap: wrap; row-gap: 4px; gap: 2px; }
  nav.main-nav > ul > li { position: relative; }
  nav.main-nav > ul > li > a {
    display: flex; align-items: center; gap: 6px; padding: 10px 14px; white-space: nowrap;
    font-weight: 600; font-size: 14px; color: var(--navy-dark); font-family: 'Outfit', sans-serif;
    border-radius: 50px; transition: var(--transition);
  }
  nav.main-nav > ul > li > a:hover { color: var(--brand-accent-dark); background: var(--brand-accent-light); }

  nav.main-nav > ul > li.has-dropdown > a i { font-size: 10px; margin-left: 2px; color: var(--gray-500); transition: var(--transition); }
  nav.main-nav > ul > li.has-dropdown:hover > a i { transform: rotate(180deg); color: var(--brand-accent-dark); }

  .nav-dropdown {
    position: absolute; top: calc(100% + 20px); left: 50%; transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px);
    border-radius: var(--radius-md); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100);
    min-width: 240px; padding: 12px; opacity: 0; visibility: hidden; pointer-events: none;
    transition: var(--transition); z-index: 600;
  }
  nav.main-nav > ul > li.has-dropdown:hover .nav-dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
  .nav-dropdown a {
    display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: var(--radius-sm); font-family: 'Outfit', sans-serif;
    font-weight: 600; font-size: 14.5px; color: var(--navy-dark); white-space: nowrap; transition: var(--transition);
  }
  .nav-dropdown a i { font-size: 14px; color: var(--gray-500); transition: var(--transition); }
  .nav-dropdown a:hover { background: var(--brand-accent-light); color: var(--brand-accent-dark); padding-left: 20px; }
  .nav-dropdown a:hover i { color: var(--brand-accent-dark); }

  .nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
  .nav-icon-btn {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    background: rgba(37, 211, 102, 0.15); color: #1da851; font-size: 18px; border: 1px solid rgba(37, 211, 102, 0.3);
    display: flex; align-items: center; justify-content: center; transition: var(--transition);
  }
  .nav-icon-btn:hover { background: #25D366; color: #fff; transform: translateY(-3px); box-shadow: 0 6px 16px rgba(37, 211, 102, 0.32); }
  .nav-icon-btn.phone { background: var(--brand-accent-light); color: var(--brand-accent-dark); border: 1px solid rgba(210, 173, 95, 0.3); }
  .nav-icon-btn.phone:hover { background: var(--brand-accent); color: #fff; box-shadow: var(--shadow-accent); }

  .btn-outline-sm {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; flex-shrink: 0; white-space: nowrap;
    padding: 12px 24px; border-radius: 50px; font-weight: 700; font-size: 14.5px; font-family: 'Outfit', sans-serif;
    background: transparent; color: var(--navy-dark); border: 2px solid var(--gray-200); cursor: pointer; transition: var(--transition);
  }
  .btn-outline-sm:hover { background: var(--navy-dark); color: #fff; border-color: var(--navy-dark); transform: translateY(-2px); }

  .nav-cta .btn { padding: 14px 28px; font-size: 14.5px; }

  .burger { display: none; font-size: 20px; background: var(--gray-100); border: none; cursor: pointer; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; color: var(--navy-dark); flex-shrink: 0; transition: var(--transition); }
  .burger:hover { background: var(--gray-200); color: var(--brand-accent-dark); }

  /* ===== MOBILE MENU PANEL ===== */
  .mobile-menu-backdrop {
    display: none; position: fixed; inset: 0; background: rgba(10, 17, 40, 0.6); backdrop-filter: blur(6px);
    z-index: 998; opacity: 0; transition: opacity 0.4s ease;
  }
  .mobile-menu-backdrop.active { display: block; opacity: 1; }

  .mobile-menu-panel {
    position: fixed; top: 0; right: 0; height: 100%; width: min(340px, 85vw);
    background: #fff; z-index: 999; box-shadow: -24px 0 80px rgba(10, 17, 40, 0.2);
    transform: translateX(100%); transition: transform 0.5s var(--ease);
    display: flex; flex-direction: column; padding: 32px 24px; overflow-y: auto;
  }
  .mobile-menu-panel.active { transform: translateX(0); }

  .mobile-menu-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 40px; }
  .mobile-menu-close { flex-shrink: 0; width: 44px; height: 44px; border-radius: 14px; background: var(--gray-100); border: none; color: var(--navy-dark); font-size: 18px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
  .mobile-menu-close:hover { background: var(--brand-accent); color: #fff; }

  .mobile-menu-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: auto; }
  .mobile-menu-links > a { display: flex; align-items: center; gap: 16px; padding: 16px; border-radius: 14px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 17px; color: var(--navy-dark); transition: var(--transition); }
  .mobile-menu-links > a i { font-size: 20px; color: var(--brand-accent-dark); width: 24px; text-align: center; flex-shrink: 0; }
  .mobile-menu-links > a:hover, .mobile-menu-links > a:active { background: var(--brand-accent-light); color: var(--brand-accent-dark); padding-left: 20px; }

  .mobile-menu-group { display: flex; flex-direction: column; }
  .mobile-menu-parent {
    display: flex; align-items: center; justify-content: space-between; width: 100%;
    padding: 16px; border-radius: 14px; background: none; border: none; cursor: pointer;
    font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 17px; color: var(--navy-dark); text-align: left; transition: var(--transition);
  }
  .mobile-menu-parent span { display: flex; align-items: center; gap: 16px; }
  .mobile-menu-parent span i { font-size: 20px; color: var(--brand-accent-dark); width: 24px; text-align: center; flex-shrink: 0; }
  .mobile-menu-parent:hover, .mobile-menu-parent:active { background: var(--brand-accent-light); color: var(--brand-accent-dark); padding-left: 20px; }
  .mobile-menu-chevron { font-size: 14px; color: var(--gray-500); transition: transform 0.4s ease; flex-shrink: 0; }
  .mobile-menu-group.open .mobile-menu-chevron { transform: rotate(180deg); color: var(--brand-accent-dark); }

  .mobile-submenu { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; display: flex; flex-direction: column; padding-left: 24px; }
  .mobile-menu-group.open .mobile-submenu { max-height: 340px; }
  .mobile-submenu a { padding: 14px 16px 14px 28px; font-size: 15px; font-weight: 500; color: var(--gray-700); border-radius: 12px; position: relative; transition: var(--transition); }
  .mobile-submenu a::before { content: ''; position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--gray-200); transition: var(--transition); }
  .mobile-submenu a:hover, .mobile-submenu a:active { background: var(--brand-accent-light); color: var(--brand-accent-dark); padding-left: 32px; }
  .mobile-submenu a:hover::before { background: var(--brand-accent-dark); }

  .mobile-menu-footer { display: flex; flex-direction: column; gap: 20px; padding-top: 32px; border-top: 1px solid var(--gray-200); }
  .mobile-menu-phone { display: flex; align-items: center; gap: 16px; padding: 12px; border-radius: 16px; background: var(--brand-accent-light); transition: var(--transition); border: 1px solid transparent; }
  .mobile-menu-phone:hover { background: rgba(210, 173, 95, 0.2); }
  .mobile-menu-phone .ico { width: 48px; height: 48px; border-radius: 14px; background: rgba(210,173,95,0.25); color: var(--brand-accent-dark); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
  .mobile-menu-phone-label { font-size: 10.5px; color: var(--gray-600); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
  .mobile-menu-phone-num { font-size: 17px; font-weight: 800; color: var(--navy-dark); font-family: 'Outfit'; }
  .mobile-menu-footer .btn-primary { width: 100%; padding: 18px; font-size: 16px; border-radius: 16px; }

  /* ===== HERO BANNER & FORM ===== */
  .hero { padding: 32px 0 50px; position: relative; }
  .hero::before {
    content: ''; position: absolute; top: -100px; left: -100px; width: 400px; height: 400px;
    background: radial-gradient(circle, var(--brand-accent-glow) 0%, transparent 70%); border-radius: 50%; z-index: 0; pointer-events: none;
  }
  .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: stretch; position: relative; z-index: 1; }

  .hero-slider-wrap {
    position: relative; border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-md); min-height: 390px; display: flex;
    background: var(--navy-dark); border: 1px solid rgba(0,0,0,0.05);
  }
  .h-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s var(--ease); display: flex; z-index: 1; }
  .h-slide.active { opacity: 1; z-index: 2; }
  .h-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,17,40,0) 20%, rgba(10,17,40,0.6) 100%); }

  .hero-stamp {
    position: absolute; left: 28px; bottom: 28px; z-index: 5; display: flex; align-items: center; gap: 12px;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    padding: 12px 20px 12px 12px; border-radius: 50px; box-shadow: var(--shadow-lg);
  }
  .hero-stamp-ring {
    width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; border: 1.5px dashed var(--brand-accent);
    display: flex; align-items: center; justify-content: center; font-family: 'Outfit'; font-weight: 800; font-size: 15px; color: var(--navy-dark);
  }
  .hero-stamp-text { line-height: 1.25; }
  .hero-stamp-text strong { display: block; font-family: 'Outfit'; font-size: 14.5px; font-weight: 800; color: var(--navy-dark); }
  .hero-stamp-text span { font-size: 11.5px; color: var(--gray-500); font-weight: 600; letter-spacing: 0.3px; }

  .hero-right {
    background: #fff;
    padding: 32px; border-radius: var(--radius-xl); display: flex; flex-direction: column; justify-content: center; position: relative;
    box-shadow: 0 22px 54px rgba(10, 17, 40, 0.07), inset 0 0 0 1px rgba(0,0,0,0.04);
  }

  .form-header {
    display: inline-flex; align-items: center; gap: 8px; background: rgba(16, 185, 129, 0.1); color: #0e9f6e;
    padding: 6px 13px; border-radius: 50px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px; margin-bottom: 10px; border: 1px solid rgba(16, 185, 129, 0.2); width: fit-content;
  }
  .pulse-dot { width: 8px; height: 8px; background: #0e9f6e; border-radius: 50%; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); animation: pulse 2s infinite; }
  @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55); } 70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }

  .hero-right h3 { font-size: 23px; font-weight: 800; margin-bottom: 5px; letter-spacing: -0.4px; color: var(--navy-dark); }
  .form-sub { font-size: 13.5px; color: var(--gray-500); margin-bottom: 15px; font-weight: 500; }

  .form-group { display: flex; flex-direction: column; gap: 10px; }
  .input-wrap { position: relative; }
  .input-wrap i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--gray-400); font-size: 16px; pointer-events: none; transition: var(--transition); }

  .form-field {
    width: 100%; padding: 13px 16px 13px 46px; border-radius: var(--radius-md); border: 1.5px solid transparent; font-size: 14px; font-family: 'Inter'; font-weight: 500;
    background: var(--bg-tint); color: var(--navy-dark); transition: var(--transition);
  }
  .form-field::placeholder { color: var(--gray-400); }
  .form-field:focus { outline: none; border-color: var(--brand-accent); background: #fff; box-shadow: 0 4px 18px var(--brand-accent-glow); }
  .form-field:focus + i, .form-field:focus ~ i { color: var(--brand-accent-dark); }
  .form-field option { background: #fff; color: var(--navy-dark); }

  .form-btn-glow {
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-dark));
    color: #fff; border: none; padding: 14px; border-radius: var(--radius-md); width: 100%;
    font-size: 15.5px; font-weight: 800; font-family: 'Outfit'; cursor: pointer;
    display: flex; justify-content: center; align-items: center; gap: 12px;
    box-shadow: var(--shadow-accent); transition: var(--transition); margin-top: 5px; letter-spacing: 0.5px;
  }
  .form-btn-glow:hover { background: var(--navy-dark); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(10,17,40,0.22); }

  .form-footer { text-align: center; margin-top: 12px; font-size: 12px; color: var(--gray-500); display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; }

  /* ===== SHARED SECTIONS ===== */
  section { padding: 100px 0; scroll-margin-top: 120px; }
  .section-head { max-width: 680px; margin: 0 auto 64px; text-align: center; }
  .section-head h2 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; line-height: 1.2; letter-spacing: -1px; margin-top: 4px; color: var(--navy-dark); }

  /* ===== ABOUT US ===== */
  .about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; }
  .about-media { position: relative; padding: 10px 30px 50px 0; }
  .about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: transform 0.8s var(--ease); }
  .about-img:hover { transform: scale(1.02); }
  .about-img-main { height: 480px; }
  .about-img-main img { width: 100%; height: 100%; object-fit: cover; }
  .about-img-float { position: absolute; right: 0; bottom: 0; width: 55%; height: 260px; border: 8px solid #fff; box-shadow: var(--shadow-lg); border-radius: var(--radius-lg); }
  .about-img-float img { width: 100%; height: 100%; object-fit: cover; }
  .about-badge {
    position: absolute; left: -10px; top: 40px; width: 140px; height: 140px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-light)); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; box-shadow: var(--shadow-lg); border: 6px solid #fff; z-index: 3;
  }
  .about-badge::before { content: ''; position: absolute; inset: 9px; border-radius: 50%; border: 1.5px dashed rgba(210, 173, 95, 0.5); pointer-events: none; }
  .about-badge-num { font-family: 'Outfit'; font-size: 34px; font-weight: 800; color: var(--brand-accent); line-height: 1; }
  .about-badge-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 8px; line-height: 1.4; color: rgba(255,255,255,0.9); }

  .about-content h2 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; line-height: 1.2; margin: 4px 0 24px; letter-spacing: -1px; color: var(--navy-dark); }
  .about-content > p { font-size: 17px; margin-bottom: 32px; color: var(--gray-700); }
  .about-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
  .about-feature { display: flex; gap: 20px; align-items: flex-start; padding: 24px; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-md); transition: var(--transition); box-shadow: var(--shadow-sm); }
  .about-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(210, 173, 95, 0.4); }
  .about-feature .ico { flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px; background: var(--brand-accent-light); color: var(--brand-accent-dark); display: flex; align-items: center; justify-content: center; font-size: 22px; }
  .about-feature h4 { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--navy-dark); }
  .about-feature p { font-size: 15px; margin: 0; color: var(--gray-500); }

  /* ===== COUNTRY DESTINATIONS SLIDER ===== */
  .destinations { background: var(--white); padding: 96px 0; border-top: 1px solid var(--gray-200); position: relative; overflow: hidden; }
  .destinations::before { content: ''; position: absolute; top: -140px; right: -100px; width: 380px; height: 380px; background: radial-gradient(circle, var(--brand-accent-glow) 0%, transparent 70%); border-radius: 50%; pointer-events: none; z-index: 0; }
  .destinations::after { content: ''; position: absolute; bottom: -160px; left: -120px; width: 340px; height: 340px; background: radial-gradient(circle, var(--bg-tint) 0%, transparent 70%); border-radius: 50%; pointer-events: none; z-index: 0; }
  .destinations-head { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 48px; }
  
  .destinations-nav { display: flex; gap: 12px; flex-shrink: 0; }
  .destinations-nav button {
    width: 50px; height: 50px; border-radius: 50%; background: #fff;
    border: 1.5px solid var(--gray-200); color: var(--navy-dark); cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: var(--transition); font-size: 18px; box-shadow: var(--shadow-sm);
  }
  .destinations-nav button:hover { background: var(--brand-accent); border-color: var(--brand-accent); box-shadow: 0 8px 20px var(--brand-accent-glow); transform: translateY(-2px); color: #fff; }

  .country-track { position: relative; z-index: 1; counter-reset: dest-counter; display: flex; gap: 28px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 4px 4px 28px; }
  .country-track::-webkit-scrollbar { display: none; }

  .country-card {
    counter-increment: dest-counter; position: relative; flex: 0 0 320px; scroll-snap-align: start;
    padding: 14px; display: flex; flex-direction: column; transition: var(--transition);
    background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  }
  .country-card:hover { transform: translateY(-10px); box-shadow: 0 26px 56px var(--brand-accent-glow); border-color: rgba(210, 173, 95, 0.4); }

  .country-card-img { height: 226px; position: relative; overflow: hidden; border-radius: 16px; }
  .country-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
  .country-card:hover .country-card-img img { transform: scale(1.08); }
  .country-card-img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,17,40,0) 55%, rgba(10,17,40,0.45) 100%); pointer-events: none; }

  .country-card-img::after {
    content: counter(dest-counter, decimal-leading-zero); position: absolute; top: 16px; right: 16px; z-index: 2;
    width: 34px; height: 34px; border-radius: 50%; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(6px);
    border: 1.5px dashed rgba(210, 173, 95, 0.8); display: flex; align-items: center; justify-content: center;
    font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 12.5px; color: var(--navy-dark); box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .country-flag-badge {
    position: absolute; top: 16px; left: 16px; z-index: 2; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    padding: 9px 18px 9px 14px; border-radius: 50px; font-weight: 800; font-size: 13.5px; display: flex; align-items: center; gap: 9px; border: 1px solid rgba(255,255,255,0.6); color: var(--navy-dark); font-family: 'Outfit', sans-serif; box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }
  .country-flag-badge .flag-icon { font-size: 24px; line-height: 1; }

  .country-card-body { position: relative; overflow: hidden; padding: 26px 12px 12px; display: flex; flex-direction: column; flex-grow: 1; }
  .country-card-body > * { position: relative; z-index: 1; }
  .country-card-body h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; color: var(--navy-dark); }
  .country-card-body p { font-size: 14.5px; color: var(--gray-500); margin-bottom: 24px; line-height: 1.6; }

  .country-card-body::before { position: absolute; top: -14px; right: -10px; z-index: 0; font-size: 96px; line-height: 1; opacity: 0.07; pointer-events: none; }
  .country-card:nth-child(1) .country-card-body::before { content: '🇨🇦'; }
  .country-card:nth-child(2) .country-card-body::before { content: '🇦🇺'; }
  .country-card:nth-child(3) .country-card-body::before { content: '🇬🇧'; }
  .country-card:nth-child(4) .country-card-body::before { content: '🇺🇸'; }
  .country-card:nth-child(5) .country-card-body::before { content: '🇩🇪'; }
  .country-card:nth-child(6) .country-card-body::before { content: '🇳🇿'; }

  .country-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; margin-top: auto; }
  .country-tag { background: var(--bg-tint); color: var(--gray-700); font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 50px; border: 1px solid var(--gray-200); transition: var(--transition); }
  .country-tag:first-child { background: var(--brand-accent-light); color: var(--brand-accent-dark); border-color: rgba(210, 173, 95, 0.3); }

  .country-card-btn {
    display: flex; align-items: center; justify-content: space-between; width: 100%; font-weight: 700; font-size: 15px; color: var(--navy-dark); letter-spacing: 0.2px; font-family: 'Outfit', sans-serif; padding: 16px 20px; border-radius: 16px; background: var(--bg-tint); transition: var(--transition); border: 1px solid var(--gray-100);
  }
  .country-card-btn i { width: 32px; height: 32px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); box-shadow: var(--shadow-sm); }
  .country-card:hover .country-card-btn { background: var(--brand-accent); border-color: var(--brand-accent); box-shadow: 0 10px 26px var(--brand-accent-glow); color: #fff; }
  .country-card:hover .country-card-btn i { color: var(--brand-accent-dark); transform: translateX(4px); }

  /* ===== BENTO-GRID STYLING FOR WHY CHOOSE US ===== */
  .why-choose { background: var(--bg-tint); position: relative; overflow: hidden; }
  .why-choose::before { content:''; position:absolute; top:0; left:0; width:100%; height:100%; background-image: radial-gradient(var(--gray-200) 1px, transparent 1px); background-size: 30px 30px; opacity: 0.5; pointer-events: none;}
  .why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
  .why-content h2 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; line-height: 1.2; margin: 4px 0 24px; letter-spacing: -1px; color: var(--navy-dark); }
  .why-content .text-accent { color: var(--brand-accent-dark); }
  .why-desc { font-size: 17px; margin-bottom: 32px; color: var(--gray-700); }
  .why-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); height: 340px; }
  .why-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
  .why-image:hover img { transform: scale(1.05); }

  .why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .why-card {
    position: relative; padding: 36px 28px; border-radius: var(--radius-lg); background: #fff;
    transition: var(--transition); overflow: hidden; border: 1px solid rgba(0,0,0,0.03); box-shadow: var(--shadow-sm);
  }
  .why-card:hover { box-shadow: 0 22px 44px var(--brand-accent-glow); transform: translateY(-6px); border-color: rgba(210, 173, 95, 0.3); }
  .why-card.offset-down { margin-top: 40px; }
  .why-card .ico { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 24px; box-shadow: 0 10px 24px var(--brand-accent-glow); }
  .why-num {
    position: absolute; top: 22px; right: 22px; font-family: 'Outfit'; font-size: 14px; font-weight: 800;
    color: var(--brand-accent-dark); opacity: 0.55; transition: var(--transition); border: 1.5px dashed rgba(210, 173, 95, 0.5); border-radius: 50%; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; transform: rotate(-8deg); letter-spacing: 0.5px;
  }
  .why-card:hover .why-num { opacity: 1; transform: rotate(0deg) scale(1.06); background: var(--brand-accent-light); }
  .why-card h4 { font-size: 19px; font-weight: 800; margin-bottom: 10px; color: var(--navy-dark); }
  .why-card p { font-size: 15px; margin: 0; color: var(--gray-500); line-height: 1.5; }

  /* ===== SERVICES / VISA PATHWAYS ===== */
  .service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .service-card {
    display: flex; flex-direction: column; scroll-margin-top: 120px; position: relative; border-radius: var(--radius-lg); transition: var(--transition); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  }
  .service-card:hover { box-shadow: 0 22px 44px var(--brand-accent-glow); transform: translateY(-8px); border-color: rgba(210,173,95,0.4); }
  .service-card-top { padding: 32px 28px 24px; position: relative; z-index: 2; background: #fff; }
  .service-card .ico { width: 56px; height: 56px; border-radius: 16px; background: var(--brand-accent-light); color: var(--brand-accent-dark); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 24px; transition: var(--transition); }
  .service-card:hover .ico { background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-dark)); color: #fff; transform: scale(1.05); box-shadow: 0 8px 20px var(--brand-accent-glow); }
  .service-card h4 { font-size: 20px; font-weight: 800; margin-bottom: 12px; color: var(--navy-dark); }
  .service-card p { font-size: 15px; margin-bottom: 20px; color: var(--gray-500); }

  .service-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; font-family: 'Outfit'; color: var(--navy-dark); }
  .service-link i { font-size: 14px; transition: var(--transition); }
  .service-card:hover .service-link { color: var(--brand-accent-dark); }
  .service-card:hover .service-link i { transform: translateX(6px) translateY(-2px); }

  .service-card-img { height: 180px; margin-top: auto; overflow: hidden; }
  .service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
  .service-card:hover .service-card-img img { transform: scale(1.08); }

  /* ===== COACHING / TEST PREP SLIDER ===== */
  .coaching { background: linear-gradient(180deg, var(--white) 0%, var(--bg-tint) 100%); position: relative; }
  .coaching-head { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 56px; }
  .coaching-head h2 { color: var(--navy-dark); }
  .coaching-nav { display: flex; gap: 16px; flex-shrink: 0; }
  .coaching-nav button { width: 50px; height: 50px; border-radius: 50%; background: #fff; border: 1.5px solid var(--gray-200); color: var(--navy-dark); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); font-size: 18px; box-shadow: var(--shadow-sm); }
  .coaching-nav button:hover { background: var(--brand-accent); border-color: var(--brand-accent); box-shadow: 0 8px 20px var(--brand-accent-glow); transform: translateY(-2px); color: #fff; }

  .coaching-track { position: relative; z-index: 1; display: flex; gap: 32px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 56px; margin-bottom: -56px; }
  .coaching-track::-webkit-scrollbar { display: none; }
  .coaching-card { position: relative; flex: 0 0 320px; scroll-snap-align: start; }
  .coaching-img { height: 240px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
  .coaching-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
  .coaching-card:hover .coaching-img img { transform: scale(1.05); }

  .coaching-card-info {
    position: relative; padding: 24px; margin: -50px 20px 0; border-left: 4px solid var(--brand-accent); transition: var(--transition); border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); box-shadow: var(--shadow-md); border-top: 1px solid #fff; border-right: 1px solid #fff; border-bottom: 1px solid #fff;
  }
  .coaching-card:hover .coaching-card-info { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
  .coaching-card-info h4 { font-size: 19px; font-weight: 800; margin-bottom: 8px; color: var(--navy-dark); }
  .coaching-card-info p { font-size: 14.5px; margin: 0; color: var(--gray-500); }

  /* ===== FAQ ===== */
  .faq { background: var(--white); }
  .faq-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: start; }

  .faq-list { display: flex; flex-direction: column; gap: 16px; }
  .faq-item { border-radius: var(--radius-md); transition: var(--transition); background: var(--bg-tint); border: 1px solid transparent; }
  .faq-item.active { border-color: rgba(210, 173, 95, 0.4); background: #fff; box-shadow: var(--shadow-sm); }
  .faq-q { display: flex; justify-content: space-between; align-items: center; gap: 20px; width: 100%; background: none; border: none; text-align: left; cursor: pointer; font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy-dark); padding: 24px; }
  .faq-icon { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; font-family: 'Outfit'; line-height: 1; background: #fff; color: var(--navy-dark); transition: var(--transition); box-shadow: var(--shadow-sm); }
  .faq-item.active .faq-icon { background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-dark)); color: #fff; box-shadow: 0 4px 12px var(--brand-accent-glow); transform: rotate(180deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
  .faq-item.active .faq-a { max-height: 300px; }
  .faq-a p { font-size: 15px; margin: 0; padding: 0 24px 24px; color: var(--gray-700); }

  .faq-form-wrap { scroll-margin-top: 120px; padding: 48px; border-top: 6px solid var(--navy-dark); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-lg); border-left: 1px solid rgba(0,0,0,0.04); border-right: 1px solid rgba(0,0,0,0.04); border-bottom: 1px solid rgba(0,0,0,0.04); }
  .faq-form-wrap h3 { font-size: 28px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; color: var(--navy-dark); }
  .faq-form-wrap .form-sub { margin-bottom: 32px; font-size: 15px; color: var(--gray-500); }
  .faq-form-wrap textarea.form-field { padding-top: 18px; font-family: 'Inter'; resize: vertical; min-height: 120px; }
  .faq-form-wrap .input-wrap i { top: 26px; transform: none; }

  /* ===== REVIEWS / TESTIMONIALS ===== */
  .reviews { background: var(--bg-tint); border-top: 1px solid var(--gray-200); }
  .reviews-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 48px; }
  .reviews-head h2 { font-size: clamp(26px, 3.2vw, 40px); font-weight: 800; line-height: 1.2; letter-spacing: -1px; margin-top: 4px; position: relative; padding-bottom: 14px; color: var(--navy-dark); }
  .reviews-head h2::after { content: ''; position: absolute; left: 0; bottom: 0; width: 56px; height: 4px; background: var(--brand-accent); border-radius: 4px; }
  
  .reviews-nav { display: flex; gap: 12px; flex-shrink: 0; }
  .reviews-nav button { width: 50px; height: 50px; border-radius: 50%; background: #fff; border: 1.5px solid var(--gray-200); color: var(--navy-dark); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); font-size: 18px; box-shadow: var(--shadow-sm); }
  .reviews-nav button:hover { background: var(--brand-accent); border-color: var(--brand-accent); box-shadow: 0 8px 20px var(--brand-accent-glow); transform: translateY(-2px); color: #fff; }

  .reviews-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: start; }

  .gbp-card { padding: 20px; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
  .gbp-photos { display: grid; grid-template-columns: 1fr 1.1fr; gap: 10px; margin-bottom: 20px; }
  .gbp-photos > div { height: 180px; border-radius: 14px; overflow: hidden; }
  .gbp-photos img { width: 100%; height: 100%; object-fit: cover; }

  .gbp-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
  .gbp-title-row h3 { font-size: 18.5px; font-weight: 700; line-height: 1.4; color: var(--navy-dark); }
  .gbp-logo { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Outfit'; font-weight: 900; font-size: 20px; box-shadow: var(--shadow-accent); }

  .gbp-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
  .gbp-chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 50px; background: var(--bg-tint); border: 1px solid var(--gray-200); font-family: 'Outfit'; font-weight: 600; font-size: 13.5px; color: var(--navy-dark); transition: var(--transition); }
  .gbp-chip i { font-size: 14px; color: var(--brand-accent-dark); transition: var(--transition); }
  .gbp-chip:hover { background: var(--brand-accent); border-color: var(--brand-accent); color: #fff; }
  .gbp-chip:hover i { color: #fff; }

  .gbp-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
  .gbp-rating .stars { color: var(--brand-accent); letter-spacing: 2px; font-size: 14px; }
  .gbp-rating .score { font-weight: 800; font-family: 'Outfit'; color: var(--navy-dark); font-size: 15px; }
  .gbp-rating a { color: #1a73e8; font-weight: 600; font-size: 13.5px; }
  .gbp-rating a:hover { text-decoration: underline; }

  .gbp-sub { font-size: 13.5px; color: var(--gray-500); font-weight: 500; }

  .reviews-track { display: flex; flex-direction: column; gap: 16px; max-height: 420px; overflow-y: auto; scroll-snap-type: y mandatory; scrollbar-width: none; padding: 2px 4px 2px 2px; }
  .reviews-track::-webkit-scrollbar { display: none; }

  .review-card { scroll-snap-align: start; padding: 22px; display: flex; gap: 16px; transition: var(--transition); border-radius: var(--radius-md); background: #fff; border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); }
  .review-card:hover { border-color: rgba(210, 173, 95, 0.4); box-shadow: var(--shadow-md); }

  .review-avatar { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Outfit'; font-weight: 800; font-size: 16px; color: #fff; }
  .review-avatar.c1 { background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-dark)); }
  .review-avatar.c2 { background: linear-gradient(135deg, var(--navy-dark), var(--navy-light)); }
  .review-avatar.c3 { background: linear-gradient(135deg, var(--brand-accent), #93741c); }

  .review-body { flex: 1; min-width: 0; }
  .review-text { font-size: 14.5px; color: var(--gray-700); line-height: 1.6; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .review-card.expanded .review-text { -webkit-line-clamp: unset; }
  .review-more { background: none; border: none; padding: 0; font-size: 13px; font-weight: 700; color: var(--brand-accent-dark); cursor: pointer; margin-bottom: 10px; display: inline-block; font-family: 'Outfit'; }
  .review-more:hover { text-decoration: underline; }

  .review-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
  .review-name { font-weight: 800; font-family: 'Outfit'; color: var(--navy-dark); font-size: 14.5px; }
  .review-stars { color: var(--brand-accent); font-size: 13px; letter-spacing: 1.5px; }
  .review-time { font-size: 12px; color: var(--gray-400); font-weight: 600; }

  /* ===== FOOTER ===== */
  .new-footer { background: var(--bg-tint); color: var(--navy-dark); padding: 70px 0 0; font-family: 'Inter', sans-serif; border-top: 1px solid var(--gray-200); }
  .new-footer a { color: var(--navy-dark); transition: var(--transition); }
  .new-footer a:hover { color: var(--brand-accent-dark); }

  .footer-top-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; gap: 40px; margin-bottom: 40px; }

  .footer-team-img { width: 100%; height: 180px; object-fit: cover; border-radius: 16px; margin-bottom: 24px; box-shadow: var(--shadow-sm); border: 2px solid #fff; }
  .footer-heading { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 800; text-transform: uppercase; margin-bottom: 16px; display: inline-block; position: relative; letter-spacing: 0.5px; color: var(--navy-dark); }
  .footer-heading::after { content: ''; display: block; width: 30px; height: 3px; background: var(--brand-accent); margin-top: 6px; border-radius: 4px; }

  .center-align { text-align: center; display: block; margin: 0 auto 16px; }
  .center-align::after { margin: 8px auto 0; }

  .footer-socials { display: flex; justify-content: center; gap: 10px; margin-bottom: 20px; }
  .footer-socials a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); color: var(--navy-dark); font-size: 16px; transition: all 0.3s; }
  .footer-socials a:hover { background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-dark)); color: #fff; transform: translateY(-3px); box-shadow: 0 6px 12px var(--brand-accent-glow); }

  .footer-desc { font-size: 14px; text-align: center; line-height: 1.6; color: var(--gray-700); }

  .footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .footer-links li a { font-size: 14.5px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
  .footer-links li a::before { content: '→'; color: var(--brand-accent-dark); font-weight: 800; font-family: 'Outfit'; transition: transform 0.3s; }
  .footer-links li a:hover::before { transform: translateX(4px); }

  .mt-4 { margin-top: 24px; }

  .footer-contact p { display: flex; align-items: center; gap: 12px; font-size: 14.5px; margin-bottom: 12px; font-weight: 600; color: var(--navy-dark); }
  .footer-contact i { color: var(--brand-accent-dark); font-size: 18px; background: #fff; box-shadow: var(--shadow-sm); padding: 6px; border-radius: 50%; }

  .footer-address { font-size: 14.5px; margin-bottom: 16px; line-height: 1.6; color: var(--gray-700); }
  .footer-map { border: 2px solid #fff; border-radius: 12px; overflow: hidden; height: 160px; box-shadow: var(--shadow-sm); }
  .footer-map iframe, .footer-map img { width: 100%; height: 100%; object-fit: cover; border: none; }

  .footer-offices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
  .office-box { padding: 24px; border-top: 4px solid var(--navy-dark); border-radius: var(--radius-md); transition: var(--transition); background: #fff; box-shadow: var(--shadow-sm); border-left: 1px solid rgba(0,0,0,0.03); border-right: 1px solid rgba(0,0,0,0.03); border-bottom: 1px solid rgba(0,0,0,0.03); }
  .office-box:hover { transform: translateY(-3px); border-top-color: var(--brand-accent); box-shadow: var(--shadow-md); }
  .office-box h4 { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 800; margin-bottom: 12px; color: var(--navy-dark); }
  .office-box p { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; margin-bottom: 10px; line-height: 1.5; color: var(--gray-700); }
  .office-box p i { color: var(--brand-accent-dark); font-size: 16px; margin-top: 2px; }

  .footer-bottom-links { display: flex; flex-direction: column; gap: 1px; background: var(--gray-200); border-radius: 12px; overflow: hidden; margin-bottom: 40px; border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); }
  .fb-row { display: flex; gap: 1px; }
  .fb-item { flex: 1; background: #fff; padding: 16px 20px; font-size: 13.5px; display: flex; align-items: center; transition: var(--transition); color: var(--gray-700); }
  .fb-item:hover { background: var(--bg-tint); }
  .fb-item.full-width { flex: none; width: 100%; }
  .fb-item strong { color: var(--brand-accent-dark); font-weight: 800; margin-right: 12px; font-family: 'Outfit', sans-serif; font-size: 15px; }

  .footer-copyright { background: var(--navy-dark); text-align: center; padding: 16px; font-size: 13px; font-weight: 500; color: #93a0bd; }
  .footer-copyright strong { color: #fff; }

  /* ===== RESPONSIVENESS ===== */
  @media(max-width: 1180px) {
    .btn-outline-sm { display: none; }
    nav.main-nav > ul > li > a { padding: 8px 12px; font-size: 13.5px; }
    .nav-cta { gap: 10px; }
  }

  @media(max-width: 980px) {
    nav.main-nav, .nav-cta a.btn, .btn-outline-sm, .nav-icon-btn { display: none; }
    .burger { display: flex; }
    .hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-right { max-width: 100%; margin: 0; }
    .hero-slider-wrap { min-height: 400px; height: 400px; }
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .about-grid, .why-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-media { padding: 10px 0 50px 0; max-width: 480px; margin: 0 auto; }
    .service-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .faq-grid { grid-template-columns: 1fr; gap: 40px; }
    .reviews-grid { grid-template-columns: 1fr; gap: 32px; }
    .reviews-track { max-height: 460px; }
    .footer-top-grid { grid-template-columns: 1fr 1fr; }
    .footer-col-left { grid-column: span 2; }
  }

  @media(max-width: 768px) {
    .container { padding: 0 16px; }

    .topbar { display: none; }
    header .logo img { height: 35px; }

    .hero { padding: 20px 0 36px; }
    .hero-slider-wrap { height: 290px; min-height: 290px; border-radius: var(--radius-lg); }
    .hero-stamp { left: 16px; bottom: 16px; padding: 8px 16px 8px 8px; gap: 10px; }
    .hero-stamp-ring { width: 38px; height: 38px; font-size: 12px; }
    .hero-stamp-text strong { font-size: 12.5px; }
    .hero-stamp-text span { font-size: 10px; }

    .hero-right { padding: 22px 20px; border-radius: var(--radius-lg); }
    .hero-right h3 { font-size: 21px; }
    .form-field { padding: 13px 14px 13px 42px; font-size: 13.5px; }
    .form-btn-glow { padding: 14px; font-size: 15px; }

    section { padding: 60px 0; }
    .section-head { margin-bottom: 32px; }

    .about-media { padding: 0 0 32px 0; }
    .about-img-main { height: 280px; }
    .about-img-float { width: 60%; height: 140px; right: 0; bottom: 0; border-width: 4px; }
    .about-badge { width: 90px; height: 90px; left: 0; top: 10px; border-width: 4px; }
    .about-badge::before { inset: 6px; }
    .about-badge-num { font-size: 22px; }
    .about-badge-label { font-size: 9px; }
    .about-content > p { font-size: 15px; margin-bottom: 20px; }

    .country-card { flex-basis: 260px; }
    .country-card-img { height: 160px; }

    .why-cards { grid-template-columns: 1fr; }
    .why-card { padding: 24px 20px; }
    .why-card.offset-down { margin-top: 0; }
    .why-card .ico { width: 44px; height: 44px; font-size: 18px; margin-bottom: 12px; }
    .why-num { font-size: 12px; width: 38px; height: 38px; top: 10px; right: 10px; }

    .service-grid { grid-template-columns: 1fr; gap: 16px; }

    .coaching-card { flex-basis: 240px; }
    .coaching-img { height: 180px; }
    .coaching-card-info { padding: 16px; margin: -30px 12px 0; }

    .faq-grid { grid-template-columns: 1fr; gap: 32px; }
    .faq-form-wrap { padding: 24px 20px; }
    .faq-q { font-size: 15px; padding: 16px; gap: 10px; }

    .reviews-head h2 { font-size: 24px; }
    .gbp-photos { grid-template-columns: 1fr 1fr; }
    .gbp-photos > div { height: 130px; }
    .gbp-title-row h3 { font-size: 16.5px; }
    .review-card { padding: 16px; gap: 12px; }
    .review-avatar { width: 40px; height: 40px; font-size: 14px; }

    .footer-top-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
    .footer-col-left { grid-column: span 1; }
    .footer-offices-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
    .office-box { padding: 20px 16px; }
    .office-box h4 { font-size: 18px; }

    .fb-row { flex-direction: column; }
    .fb-item { padding: 14px; flex-direction: column; align-items: flex-start; gap: 6px; }
  }

