 :root {
      --navy: #0A1628;
      --navy-mid: #112240;
      --orange: #fe5402;
      --blue-light: #3B82F6;
      --gold: #fe5402;
      --gold-light: #FCD34D;
      --light: #F0F4FF;
      --lighter: #F8FAFF;
      --white: #FFFFFF;
      --text-dark: #1E293B;
      --text-muted: #64748B;
      --border: #E2E8F0;
      /* Height of the sticky navbar — used for scroll-padding so anchor
         targets are never hidden behind the fixed header. JS updates this
         on resize via document.documentElement.style.setProperty. */
      --header-h: 74px;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      /* Push anchor-scroll targets below the sticky header */
      scroll-padding-top: var(--header-h);
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text-dark);
      background: var(--white);
      overflow-x: hidden;
    }

    h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

    /* ── TOPBAR ── */
    .topbar {
      background: var(--navy);
      color: #94A3B8;
      font-size: 0.78rem;
      padding: 8px 0;
    }
    .topbar a { color: #fff; text-decoration: none; transition: color .2s; }
    .topbar a:hover { color: var(--gold); }
    .topbar .divider { margin: 0 12px; opacity: .4; }
.contact_top a, .contact_top i{ color: #fff; }
    /* ── NAVBAR ── */
    /* Sticky is on the <header> wrapper, not .navbar itself.
       Reason: if .navbar is sticky inside <header>, the sticky range is 0
       (parent height = element height) so it never actually sticks. Moving
       sticky to <header id="siteHeader"> gives it the full page as its range. */
    #siteHeader {
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .navbar {
      background: var(--white);
      box-shadow: 0 2px 20px rgba(10,22,40,.08);
      padding: 14px 0;
      transition: all .3s;
    }
    .navbar.scrolled {
      padding: 8px 0;
      box-shadow: 0 4px 30px rgba(10,22,40,.15);
    }
    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--navy) !important;
    }
    .navbar-brand span { color: var(--gold); }
    .navbar-brand .dot { color: var(--orange); }
    .nav-link {
      color: var(--text-dark) !important;
      font-weight: 500;
      font-size: 0.9rem;
      padding: 8px 14px !important;
      border-radius: 6px;
      transition: all .2s;
    }
    .navbar-brand img {
    width: 115px;
    height: auto;
}
    .nav-link:hover, .nav-link.active { color: var(--orange) !important; background: var(--light); }
    .nav-cta {
      background: var(--orange);
      color: var(--white) !important;
      border-radius: 8px !important;
      padding: 10px 22px !important;
    }
    .nav-cta:hover { background: var(--navy) !important; color: var(--white) !important; }

    .navbar.scrolled .navbar-brand img{
      width: 80px;
    }

    .navbar .navbar-collapse .nav-item a.nav-link.nav-cta {
      width: fit-content;
    }

    /* ── DROPDOWN MENU ── */
    .navbar .dropdown-menu {
      border: none;
      background: var(--white);
      border-radius: 14px;
      box-shadow: 0 16px 48px rgba(10,22,40,.13), 0 2px 8px rgba(10,22,40,.06);
      padding: 8px 0;
      min-width: 240px;
      margin-top: 4px;
      /* Fade + slide: base = hidden */
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: opacity .22s ease, transform .22s ease, visibility 0s .22s;
      pointer-events: none;
    }

    /* Bootstrap adds .show on click — works on all viewports */
    .navbar .dropdown-menu.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
      transition: opacity .22s ease, transform .22s ease, visibility 0s;
    }

    /* Desktop: CSS-only positioning + hover open.
       display:block !important overrides Bootstrap's display:none so our
       opacity/visibility transitions can fire.
       top:100% + left:0 anchor the menu below its parent — without this
       Popper.js is never invoked (we bypass Bootstrap's show/hide) and
       the browser places the menu at top:0, causing the overlap bug. */
    @media (min-width: 992px) {
      .navbar .dropdown-menu {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: auto;
        z-index: 1010;
      }
      /* Make dropdown <li> a flex row so the nav-link and caret sit
         side-by-side (Bootstrap's .nav-link is display:block, which
         would push the caret onto a new line without this). */
      .navbar .nav-item.dropdown {
        display: flex;
        align-items: center;
        position: relative;
      }
      .navbar .dropdown:hover > .dropdown-menu,
      .navbar .dropdown.aw-open > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
        transition: opacity .22s ease, transform .22s ease, visibility 0s;
      }
    }

    /* Mobile: static in-flow accordion; Bootstrap display:none/block controls toggle */
    @media (max-width: 991px) {
      .navbar .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: none !important;
        pointer-events: auto !important;
        display: none;          /* Bootstrap .show changes this to block */
        box-shadow: none;
        border-radius: 0 0 10px 10px;
        border-top: 1px solid var(--border);
        background: var(--lighter);
        min-width: 100%;
        margin: 0;
        padding: 4px 0 8px;
      }
      .navbar .dropdown-menu.show {
        display: block;
      }
    }

    /* Dropdown child items */
    .navbar .dropdown-item {
      display: block;
      padding: 10px 20px;
      font-size: 0.87rem;
      font-weight: 500;
      color: var(--text-dark);
      background: transparent;
      border-left: 3px solid transparent;
      transition: color .18s, background .18s, border-color .18s;
      white-space: nowrap;
    }
    .navbar .dropdown-item:hover,
    .navbar .dropdown-item:focus {
      color: var(--orange);
      background: var(--light);
      border-left-color: var(--orange);
    }
    .navbar .dropdown-item.active {
      color: var(--orange);
      font-weight: 600;
      background: var(--light);
      border-left-color: var(--orange);
    }

    /* ── DROPDOWN CARET — plain inline chevron, no circle ── */
    .nav-caret-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 2px 3px;
      border: none;
      border-radius: 3px;
      background: none;
      cursor: pointer;
      color: var(--text-muted);
      font-size: 0.64rem;
      margin-left: 1px;
      vertical-align: middle;
      flex-shrink: 0;
      transition: color .18s;
      line-height: 1;
    }
    .nav-caret-btn:hover,
    .nav-caret-btn:focus-visible {
      background: none;
      color: var(--orange);
      outline: 2px solid transparent; /* keeps focus ring for browsers that don't support :focus-visible */
    }
    .nav-caret-btn[aria-expanded="true"] {
      color: var(--orange);
    }
    .nav-caret-btn .fa-chevron-down {
      transition: transform .22s ease;
    }
    .nav-caret-btn[aria-expanded="true"] .fa-chevron-down,
    .navbar .dropdown.aw-open .nav-caret-btn .fa-chevron-down {
      transform: rotate(180deg);
    }

    /* ── HEADER CTA (phone link + book button) ── */
    .nav-header-cta {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 16px 0 8px;
      flex-wrap: wrap;
    }
    @media (min-width: 992px) {
      .nav-header-cta {
        padding: 0;
        margin-left: 16px;
        flex-wrap: nowrap;
      }
    }
    .nav-phone-cta {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: var(--navy);
      font-weight: 600;
      font-size: 0.87rem;
      white-space: nowrap;
      transition: color .2s;
    }
    .nav-phone-cta:hover { color: var(--orange); }
    .nav-phone-icon {
      width: 30px;
      height: 30px;
      background: rgba(254,84,2,.1);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--orange);
      font-size: 0.68rem;
      flex-shrink: 0;
      transition: background .2s;
    }
    .nav-phone-cta:hover .nav-phone-icon { background: rgba(254,84,2,.18); }
    .nav-phone-text { display: inline; }
    .nav-book-btn {
      font-size: 0.84rem !important;
      padding: 9px 18px !important;
      border-radius: 8px !important;
      white-space: nowrap;
      display: inline-flex !important;
      align-items: center;
      line-height: 1.4;
      font-weight: 700 !important;
      transition: background .22s, transform .18s, box-shadow .18s !important;
    }
    .nav-book-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(254,84,2,.35);
    }

    /* ── MOBILE NAVBAR ── */
    @media (max-width: 991px) {
      /* Toggler: dark bars on white navbar */
      .navbar-toggler { padding: 6px 10px; }
      .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230A1628' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
      }
      /* Scrollable collapsed menu */
      #navMenu {
        padding: 10px 0 6px;
        border-top: 1px solid var(--border);
        margin-top: 8px;
        max-height: 78vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }
      /* Dropdown parent row: link fills width, caret on the right */
      .navbar .nav-item.dropdown {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
      }
      .navbar .nav-item.dropdown > .nav-link {
        flex: 1 1 0;
        min-width: 0;
      }
      .navbar .nav-item.dropdown > .nav-caret-btn {
        margin-right: 4px;
      }
      .navbar .nav-item.dropdown > .dropdown-menu {
        flex-basis: 100%;
        order: 10;
      }
      /* CTA group: full-width book button at bottom of open menu */
      .nav-header-cta {
        flex-wrap: wrap;
        border-top: 1px solid var(--border);
        padding-top: 14px;
        margin-top: 4px;
        gap: 8px;
      }
      .nav-book-btn {
        width: 100%;
        justify-content: center;
      }
    }

    /* ── HERO SWIPER ── */
    .hero-swiper { height: 100vh; min-height: 600px; }
    .swiper-slide {
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1.05);
      transition: transform 8s ease;
    }
    .swiper-slide-active .hero-bg { transform: scale(1); }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(10,22,40,.88) 50%, rgba(37,99,235,.3) 100%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 680px;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    /*  background: rgba(245,158,11,.15);*/
      border: 1px solid rgba(245,158,11,.4);
      color: var(--gold-light);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 20px;
    }
    .hero-content h1,
    .hero-content h2 {
      color: var(--white);
      font-size: clamp(2.4rem, 5vw, 4rem);
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .hero-content h1 em,
    .hero-content h2 em {
      font-style: normal;
      color: var(--gold);
    }
    .hero-content p {
      color: rgba(255,255,255,.78);
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 32px;
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-gold {
      background: var(--gold);
      color: var(--white);
      font-weight: 700;
      border: none;
      padding: 13px 30px;
      border-radius: 8px;
      transition: all .25s;
      font-size: 0.95rem;
    }
    .btn-gold:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,.4); }
    .btn-outline-white {
      border: 2px solid rgba(255,255,255,.5);
      color: var(--white);
      background: transparent;
      padding: 11px 28px;
      border-radius: 8px;
      font-weight: 600;
      transition: all .25s;
      font-size: 0.95rem;
    }
    .btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); color: var(--white); }

    .hero-stats {
      position: absolute;
      bottom: 60px;
      left: 0;
      right: 0;
      z-index: 3;
    }
    .hero-stat-card {
      background: rgba(255,255,255,.1);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 12px;
      padding: 16px 24px;
      text-align: center;
    }
    .hero-stat-card .num {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--gold);
    }
    .hero-stat-card .lbl { color: rgba(255,255,255,.7); font-size: 0.78rem; margin-top: 2px; }

    .swiper-pagination-bullet { background: var(--white) !important; opacity: .5; }
    .swiper-pagination-bullet-active { opacity: 1 !important; background: var(--gold) !important; width: 24px !important; border-radius: 4px !important; }

    /* ── PAGE HERO / BREADCRUMB BANNER (inner pages) ── */
    .page-hero {
      position: relative;
      min-height: 420px;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 110px 0 80px;
    }
    .page-hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
    }
    .page-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(10,22,40,.88) 50%, rgba(37,99,235,.3) 100%);
    }
    .page-hero-content {
      position: relative;
      z-index: 2;
      max-width: 680px;
    }
    .breadcrumb-nav {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.83rem;
      color: rgba(255,255,255,.65);
      margin-bottom: 18px;
      flex-wrap: wrap;
    }
    .breadcrumb-nav a {
      color: var(--gold-light);
      text-decoration: none;
      transition: color .2s;
    }
    .breadcrumb-nav a:hover { color: var(--white); }
    .breadcrumb-nav .sep { font-size: 0.65rem; color: rgba(255,255,255,.35); }
    .page-hero-title {
      color: var(--white);
      font-size: clamp(2.2rem, 4.5vw, 3.6rem);
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      line-height: 1.15;
      margin-bottom: 18px;
    }
    .page-hero-subtitle {
      color: rgba(255,255,255,.78);
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 30px;
      max-width: 580px;
    }
    .page-hero-btn { margin-top: 4px; }
    @media (max-width: 991px) {
      .page-hero { min-height: 360px; padding: 90px 0 70px; }
    }
    @media (max-width: 767px) {
      .page-hero { min-height: 300px; padding: 80px 0 60px; }
      .page-hero-title { font-size: 2rem; }
    }

    /* ── SECTION BASICS ── */
    section { padding: 90px 0; }
    .section-eyebrow {
      display: inline-block;
      color: var(--orange);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      color: var(--navy);
      line-height: 1.25;
      margin-bottom: 16px;
    }
    .section-title span { color: var(--orange); }
    .section-lead {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.7;
      max-width: 560px;
    }
    .divider-line {
      width: 50px;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      border-radius: 2px;
      margin: 0 auto 20px;
    }

    /* ── ABOUT ── */
    .about-section { background: var(--lighter); }
    .about-img-wrap {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
    }
    .about-section .btn-outline-secondary { color: #000;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: 8px;
    transition: all .25s;
    font-size: 0.95rem;
}
    .about-img-wrap img { width: 100%; height: 460px; object-fit: cover; border-radius: 20px; }
    .about-badge {
      position: absolute;
      bottom: 28px;
      left: 28px;
      background: var(--gold);
      border-radius: 12px;
      padding: 16px 22px;
      text-align: center;
      box-shadow: 0 8px 32px rgba(0,0,0,.2);
    }
    .about-badge .big { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; color: var(--navy); line-height: 1; }
    .about-badge .small { font-size: 0.78rem; font-weight: 600; color: var(--navy); margin-top: 2px; }
    .check-list { list-style: none; padding: 0; }
    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 8px 0;
      font-size: 0.94rem;
      color: var(--text-dark);
    }
    .check-list li i { color: var(--orange); margin-top: 3px; font-size: 0.9rem; flex-shrink: 0; }

    /* ── WHY CHOOSE ── */
    .why-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px 28px;
      height: 100%;
      transition: all .3s;
      position: relative;
      overflow: hidden;
    }
    .why-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      transform: scaleX(0);
      transition: transform .3s;
    }
    .why-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(37,99,235,.1); border-color: transparent; }
    .why-card:hover::before { transform: scaleX(1); }
    .why-icon {
      width: 60px; height: 60px;
      background: var(--light);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      color: var(--orange);
      margin-bottom: 20px;
      transition: all .3s;
    }
    .why-card:hover .why-icon { background: var(--orange); color: var(--white); }
    .why-card h5 { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 10px; color: var(--navy); }
    .why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

    /* ── SERVICES ── */
    .services-section { background: var(--navy); }
    .services-section .section-title { color: var(--white); }
    .services-section .section-lead { color: rgba(255,255,255,.6); }
    .service-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 16px;
      padding: 36px 28px;
      height: 100%;
      transition: all .3s;
      text-align: center;
    }
    .service-card:hover {
      background: rgba(37,99,235,.2);
      border-color: rgba(37,99,235,.5);
      transform: translateY(-6px);
    }
    .service-icon {
      width: 72px; height: 72px;
      background: rgba(37,99,235,.2);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem;
      color: var(--gold);
      margin: 0 auto 22px;
      transition: all .3s;
    }
    .service-card:hover .service-icon { background: var(--gold); color: var(--navy); }
    .service-card h5 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.15rem; margin-bottom: 12px; }
    .service-card p { color: rgba(255,255,255,.6); font-size: 0.88rem; line-height: 1.65; margin: 0; }
    .service-link { color: var(--gold); font-size: 0.85rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; transition: gap .2s; }
    .service-link:hover { color: var(--gold-light); gap: 10px; }

    /* ── PROCESS ── */
    .process-section { background: var(--lighter); }
    .process-step {
      display: flex;
      gap: 24px;
      align-items: flex-start;
      padding: 28px;
      background: var(--white);
      border-radius: 16px;
      border: 1px solid var(--border);
      margin-bottom: 20px;
      transition: all .3s;
    }
    .process-step:hover { box-shadow: 0 12px 36px rgba(37,99,235,.1); transform: translateX(6px); }
    .step-num {
      width: 52px; height: 52px;
      background: linear-gradient(135deg, var(--orange), #fdc90a);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: var(--white);
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 900;
      flex-shrink: 0;
    }
    .process-step h5 { font-family: 'Playfair Display', serif; color: var(--navy); margin-bottom: 6px; }
    .process-step p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin: 0; }
    .process-img img { width: 100%; border-radius: 20px; height: 100%; object-fit: cover; }

    /* ── COUNTER ── */
    .counter-section {
      background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
      position: relative;
      overflow: hidden;
    }
    .counter-section::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(37,99,235,.25) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none; /* decorative only — must not intercept clicks */
    }
    .counter-card { text-align: center; padding: 24px; }
    .counter-icon { font-size: 2.2rem; color: var(--gold); margin-bottom: 14px; }
    .counter-num {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 900;
      color: var(--white);
      line-height: 1;
    }
    .counter-plus { color: var(--gold); }
    .counter-label { color: rgba(255,255,255,.65); font-size: 0.88rem; margin-top: 8px; font-weight: 500; }
    .counter-divider { width: 1px; background: rgba(255,255,255,.1); }

    /* ── REVIEWS ── */
    .review-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px 28px;
      height: 100%;
      transition: all .3s;
    }
    .review-card:hover { box-shadow: 0 16px 48px rgba(37,99,235,.1); transform: translateY(-4px); }
    .review-stars { color: #FBBF24; font-size: 0.9rem; margin-bottom: 14px; }
    .review-text { color: var(--text-dark); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
    .review-author { display: flex; align-items: center; gap: 12px; }
    .review-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background:linear-gradient(135deg, var(--orange), #fdc90a);
      display: flex; align-items: center; justify-content: center;
      color: var(--white);
      font-weight: 700;
      font-size: 0.95rem;
      flex-shrink: 0;
    }
    .review-name { font-weight: 600; font-size: 0.92rem; color: var(--navy); }
    .review-country { font-size: 0.78rem; color: var(--text-muted); }
    .google-badge { display: flex; align-items: center; gap: 8px; }
    .google-badge i { font-size: 1.4rem; }

    /* ── FAQ ── */
    .faq-section { background: var(--lighter); }
    .accordion-item {
      border: 1px solid var(--border) !important;
      border-radius: 12px !important;
      margin-bottom: 12px !important;
      overflow: hidden;
    }
    .accordion-button {
      background: var(--white) !important;
      color: var(--navy) !important;
      font-weight: 600 !important;
      font-size: 0.95rem !important;
      padding: 18px 24px !important;
      box-shadow: none !important;
    }
    .accordion-button:not(.collapsed) {
      background: var(--light) !important;
      color: var(--orange) !important;
    }
    .accordion-button::after { filter: hue-rotate(210deg); }
    .accordion-body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; padding: 16px 24px 20px !important; }

    /* ── TEAM ── */
    .team-card {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      transition: all .3s;
      text-align: center;
    }
    .team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(37,99,235,.12); }
    .team-img {
      position: relative;
      overflow: hidden;
    }
    .team-img img { width: 100%; height: 280px; object-fit: cover; transition: transform .4s; }
    .team-card:hover .team-img img { transform: scale(1.05); }
    .team-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(0deg, rgba(10,22,40,.8) 0%, transparent 100%);
      padding: 20px;
      display: flex; justify-content: center; gap: 10px;
      transform: translateY(100%);
      transition: transform .3s;
    }
    .team-card:hover .team-overlay { transform: translateY(0); }
    .team-social {
      width: 34px; height: 34px;
      background: var(--white);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--navy);
      font-size: 0.8rem;
      text-decoration: none;
      transition: all .2s;
    }
    .team-social:hover { background: var(--orange); color: var(--white); }
    .team-info { padding: 20px; }
    .team-info h5 { font-family: 'Playfair Display', serif; color: var(--navy); margin-bottom: 4px; }
    .team-info span { color: var(--orange); font-size: 0.83rem; font-weight: 500; }

    /* ── CLIENTS ── */
    .clients-section { background: var(--lighter); padding: 60px 0; }
    .client-logo {
      display: flex; align-items: center; justify-content: center;
      height: 80px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 16px 28px;
      filter: grayscale(1);
      opacity: .5;
      transition: all .3s;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--navy);
    }
    .client-logo:hover { filter: grayscale(0); opacity: 1; box-shadow: 0 8px 24px rgba(37,99,235,.1); }

    /* ── FORM SECTION ── */
    .form-section { background: var(--navy); }
    .form-section .section-title { color: var(--white); }
    .form-section .section-lead { color: rgba(255,255,255,.6); }
    .form-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 20px;
      padding: 40px;
    }
    .form-control, .form-select {
      background: rgba(255,255,255,.08) !important;
      border: 1px solid rgba(255,255,255,.15) !important;
      color: var(--white) !important;
      border-radius: 10px !important;
      padding: 12px 16px !important;
      font-size: 0.92rem !important;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--orange) !important;
      box-shadow: 0 0 0 3px rgba(37,99,235,.25) !important;
      background: rgba(255,255,255,.1) !important;
    }
    .form-control::placeholder { color: rgba(255,255,255,.4) !important; }
    .form-label { color: rgba(255,255,255,.8); font-size: 0.88rem; font-weight: 500; margin-bottom: 6px; }
    .form-select option { background: var(--navy-mid); }
    .form-info { padding: 32px 0; }
    .form-info-item { display: flex; gap: 16px; margin-bottom: 24px; }
    .form-info-icon {
      width: 46px; height: 46px;
      background: rgba(37,99,235,.2);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .form-info-text h6 { color: var(--white); font-weight: 600; margin-bottom: 4px; font-size: 0.92rem; }
    .form-info-text p { color: rgba(255,255,255,.55); font-size: 0.85rem; margin: 0; }

    /* ── CTA ── */
    .cta-section {
      background: linear-gradient(135deg, var(--orange) 0%, var(--navy) 100%);
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none; /* decorative only — was blocking the Call Now tel: button */
    }
    /* Ensure CTA content (buttons) sits above the decorative ::before circle */
    .cta-section .container { position: relative; z-index: 1; }
    .cta-section h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.8rem); }
    .cta-section p { color: rgba(255,255,255,.75); font-size: 1.05rem; }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      color: rgba(255,255,255,.6);
      padding: 70px 0 0;
    }
    footer h5 {
      color: var(--white);
      font-family: 'Playfair Display', serif;
      margin-bottom: 22px;
      font-size: 1.1rem;
    }
    footer a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; font-size: 0.9rem; }
    footer a:hover { color: var(--gold); }
    .footer-links li { margin-bottom: 10px; list-style: none; }
    .footer-links li a { display: flex; align-items: center; gap: 8px; }
    .footer-links li a i { color: var(--orange); font-size: 0.7rem; }
    .footer-social { display: flex; gap: 10px; }
    .footer-social a {
      width: 38px; height: 38px;
      background: rgba(255,255,255,.08);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem;
      color: rgba(255,255,255,.7);
      transition: all .2s;
    }
/*    footer i {
    color: #fe5402 !important;
}*/
    .footer-social a:hover { background: var(--orange); color: var(--white); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 20px 0;
      margin-top: 50px;
      font-size: 0.82rem;
    }
    .footer-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--white);
    }
    .footer-brand span { color: var(--gold); }

    /* ── BACK TO TOP ── */
    #backToTop {
      position: fixed;
      bottom: 28px; right: 28px;
      width: 46px; height: 46px;
      background: var(--orange);
      color: var(--white);
      border: none;
      border-radius: 10px;
      font-size: 1.1rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      opacity: 0;
      transform: translateY(20px);
      transition: all .3s;
      z-index: 999;
      box-shadow: 0 4px 20px rgba(37,99,235,.4);
    }
    #backToTop.show { opacity: 1; transform: translateY(0); }
    #backToTop:hover { background: var(--navy); }

    /* ── WHATSAPP FLOAT ── */
    .wa-float {
      position: fixed;
      bottom: 84px; right: 28px;
      width: 46px; height: 46px;
      background: #25D366;
      color: var(--white);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      text-decoration: none;
      z-index: 999;
      box-shadow: 0 4px 20px rgba(37,211,102,.4);
      transition: transform .2s;
    }
    .wa-float:hover { transform: scale(1.1); color: var(--white); }

    /* ── RESPONSIVE ── */
    @media (max-width: 991px) {
      section { padding: 65px 0; }
      .hero-stats { bottom: 30px; }
      .hero-stat-card { padding: 12px 16px; }
      .hero-stat-card .num { font-size: 1.4rem; }
    }
    @media (max-width: 767px) {
       .hero-swiper { height: 60vh; min-height: 450px; }
       .hero-content h1, .hero-content h2 { font-size: 2rem; }
      .topbar .d-none-mobile { display: none !important; }
       .hero-stats { position: relative; bottom: 0; padding: 20px 0; }
       .counter-divider { display: none; }
    }
    @media (max-width: 575px) {
      .hero-swiper { height: 60vh; min-height:550px }
    }

    /* ── CONTACT PAGE ── */
    .contact-reach-section { background: var(--lighter); }

    /* Quick-access contact method cards */
    .contact-reach-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 36px 24px 28px;
      height: 100%;
      text-align: center;
      transition: all .3s;
      position: relative;
      overflow: hidden;
    }
    .contact-reach-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      transform: scaleX(0);
      transition: transform .3s;
    }
    .contact-reach-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(37,99,235,.1); border-color: transparent; }
    .contact-reach-card:hover::before { transform: scaleX(1); }
    .contact-reach-icon {
      width: 68px; height: 68px;
      background: var(--light);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      color: var(--orange);
      margin: 0 auto 18px;
      transition: all .3s;
    }
    .contact-reach-card:hover .contact-reach-icon { background: var(--orange); color: var(--white); }
    .contact-reach-label {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      color: var(--navy);
      margin-bottom: 10px;
    }
    .contact-reach-value {
      font-size: 0.9rem;
      color: var(--text-dark);
      line-height: 1.55;
      text-decoration: none;
      display: block;
      transition: color .2s;
      margin: 0;
    }
    a.contact-reach-value:hover { color: var(--orange); }
    .contact-reach-sub {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin: 6px 0 0;
      line-height: 1.5;
    }

    /* Office branch cards */
    .contact-office-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 36px 28px;
      height: 100%;
      transition: all .3s;
    }
    .contact-office-card:hover { box-shadow: 0 16px 48px rgba(37,99,235,.1); transform: translateY(-4px); }
    .contact-office-icon {
      width: 56px; height: 56px;
      background: linear-gradient(135deg, var(--orange), var(--gold));
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      color: var(--white);
      margin-bottom: 18px;
    }
    .contact-office-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--navy);
      margin-bottom: 16px;
    }
    .contact-office-list { list-style: none; padding: 0; margin: 0; }
    .contact-office-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 8px 0;
      font-size: 0.88rem;
      color: var(--text-muted);
      border-bottom: 1px solid var(--border);
    }
    .contact-office-list li:last-child { border-bottom: none; }
    .contact-office-list li i {
      color: var(--orange);
      margin-top: 3px;
      font-size: 0.82rem;
      flex-shrink: 0;
      width: 14px;
    }
    .contact-office-list li a { color: var(--text-muted); text-decoration: none; transition: color .2s; }
    .contact-office-list li a:hover { color: var(--orange); }

    /* Map section */
    .contact-map-section { line-height: 0; }
    .contact-map-wrap iframe { display: block; width: 100%; min-height: 460px; border: 0; }
    .contact-map-placeholder {
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 260px;
      line-height: 1.5;
    }
    .contact-map-placeholder-inner { text-align: center; padding: 48px 24px; }
    .contact-map-placeholder-icon {
      font-size: 3rem;
      color: var(--gold);
      opacity: .65;
      display: block;
      margin-bottom: 18px;
    }
    .contact-map-placeholder-title {
      font-family: 'Playfair Display', serif;
      color: var(--white);
      font-size: 1.4rem;
      margin-bottom: 10px;
    }
    .contact-map-placeholder-address { color: rgba(255,255,255,.65); font-size: 0.92rem; margin-bottom: 12px; }
    .contact-map-placeholder-hint {
      color: rgba(255,255,255,.35);
      font-size: 0.8rem;
      max-width: 380px;
      margin: 0 auto;
    }
    @media (max-width: 767px) {
      .contact-map-wrap iframe { min-height: 280px; }
      .contact-map-placeholder { min-height: 200px; }
    }

    /* ── PROCESS PAGE ── */
    .process-intro-section { background: var(--lighter); }

    /* Highlight stat blocks (right column of intro) */
    .process-highlight {
      display: flex;
      align-items: center;
      gap: 20px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px 28px;
      margin-bottom: 20px;
      transition: all .3s;
    }
    .process-highlight:last-child { margin-bottom: 0; }
    .process-highlight:hover { box-shadow: 0 12px 36px rgba(37,99,235,.1); transform: translateX(4px); }
    .process-highlight-icon {
      width: 56px; height: 56px;
      background: linear-gradient(135deg, var(--orange), var(--gold));
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      color: var(--white);
      flex-shrink: 0;
    }
    .process-highlight-text .num {
      font-family: 'Playfair Display', serif;
      font-size: 1.7rem;
      font-weight: 900;
      color: var(--navy);
      line-height: 1.1;
    }
    .process-highlight-text .lbl {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-top: 2px;
    }

    /* Step cards (extended layout for the process page) */
    .process-step-icon {
      width: 44px; height: 44px;
      background: var(--light);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      color: var(--orange);
      flex-shrink: 0;
      transition: all .3s;
    }
    .process-step:hover .process-step-icon { background: var(--orange); color: var(--white); }
    .process-step-body { flex: 1; }
    .process-step-body h5 { font-family: 'Playfair Display', serif; color: var(--navy); margin-bottom: 6px; font-size: 1rem; }
    .process-step-body p { color: var(--text-muted); font-size: 0.88rem; margin: 0; line-height: 1.65; }

    /* Why section */
    .process-why-section { background: var(--white); }

    @media (max-width: 767px) {
      .process-highlight { padding: 18px 20px; }
      .process-highlight-text .num { font-size: 1.4rem; }
    }

    /* ── SERVICES LISTING PAGE ── */
    .svc-intro-section { background: var(--white); }
    .svc-grid-section  { background: var(--lighter); }

    /* Light-background service card (listing page — different from dark homepage cards) */
    .svc-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 36px 28px;
      height: 100%;
      display: flex;
      flex-direction: column;
      transition: all .3s;
      position: relative;
      overflow: hidden;
    }
    .svc-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      transform: scaleX(0);
      transition: transform .3s;
    }
    .svc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(37,99,235,.1); border-color: transparent; }
    .svc-card:hover::before { transform: scaleX(1); }
    .svc-icon {
      width: 72px; height: 72px;
      background: linear-gradient(135deg, var(--orange), #fdc90a);
      border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem;
      color: var(--white);
      margin-bottom: 24px;
      flex-shrink: 0;
      transition: transform .3s;
    }
    .svc-card:hover .svc-icon { transform: scale(1.08) rotate(-4deg); }
    .svc-card h4 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.2rem; margin-bottom: 12px; }
    .svc-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; flex: 1; margin-bottom: 20px; }
    .svc-more-link {
      color: var(--orange);
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all .2s;
      margin-top: auto;
    }
    .svc-more-link:hover { color: var(--navy); gap: 10px; }

    /* ── SINGLE SERVICE DETAIL ── */
    .svc-overview-section { background: var(--white); }
    .svc-elig-section     { background: var(--lighter); }
    .svc-steps-section    { background: var(--white); }
    .svc-faq-section      { background: var(--lighter); }

    /* Navy sidebar "Why Choose Aurawise" box */
    .svc-quick-box {
      background: var(--navy);
      border-radius: 20px;
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
    }
    .svc-quick-box::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 220px; height: 220px;
      background: radial-gradient(circle, rgba(254,84,2,.22) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none; /* decorative only */
    }
    .svc-quick-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--white);
      margin-bottom: 24px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255,255,255,.15);
    }
    .svc-quick-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .svc-quick-item:last-child { border-bottom: none; }
    .svc-quick-icon { color: var(--gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; width: 18px; }
    .svc-quick-text { color: rgba(255,255,255,.82); font-size: 0.88rem; line-height: 1.6; }

    /* Eligibility / Documents section headings */
    .svc-block-heading {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--navy);
      display: inline-block;
      padding-bottom: 12px;
      border-bottom: 3px solid var(--orange);
    }

    @media (max-width: 991px) {
      .svc-quick-box { margin-top: 0; }
    }
    @media (max-width: 767px) {
      .svc-card { padding: 28px 22px; }
      .svc-quick-box { padding: 28px 24px; }
    }

    /* ── PERMANENT RESIDENCY (PR) PAGE ── */
    .pr-intro-section      { background: var(--white); }
    .pr-whypr-section      { background: var(--lighter); }
    .pr-countries-section  { background: var(--white); }
    .pr-whyus-section      { background: var(--lighter); }
    .pr-benefits-section   { background: var(--white); }
    .pr-reasons-section    { background: var(--lighter); }
    .pr-ptime-section      { background: var(--white); }
    .pr-partner-section    { background: var(--lighter); }
    .pr-final-cta-section  { background: var(--white); padding: 70px 0; }

    /* Two-column checklist on larger screens (Why Choose PR, Reasons, Best Partner) */
    @media (min-width: 768px) {
      .check-list-cols { columns: 2; column-gap: 32px; }
      .check-list-cols li { break-inside: avoid; }
    }

    /* Country cards (Canada / Australia) */
    .pr-country-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px 28px;
      height: 100%;
      text-align: center;
      transition: all .3s;
    }
    .pr-country-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(37,99,235,.1); }
    .pr-country-flag { font-size: 2.6rem; line-height: 1; margin-bottom: 14px; }
    .pr-country-card h5 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
    .pr-country-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; margin: 0; }

    /* Extra sub-list / note inside a PR process step (steps 3–6) */
    .pr-step-list-heading { font-weight: 600; font-size: 0.85rem; color: var(--navy); margin: 10px 0 4px; }
    .pr-process-step .pr-step-list { margin: 0 0 8px; }
    .pr-process-step .pr-step-list li { padding: 3px 0; font-size: 0.85rem; }
    .pr-process-step .pr-step-list li i { color: var(--orange); font-size: 0.75rem; }
    .pr-step-note { font-size: 0.82rem; color: var(--text-muted); font-style: italic; margin: 6px 0 0; }

    /* Processing time table */
    .pr-table-wrap {
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
    }
    .pr-table { width: 100%; border-collapse: collapse; }
    .pr-table thead th {
      background: var(--navy);
      color: var(--white);
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 0.95rem;
      text-align: left;
      padding: 16px 24px;
    }
    .pr-table tbody td {
      padding: 16px 24px;
      font-size: 0.92rem;
      color: var(--text-dark);
      border-bottom: 1px solid var(--border);
    }
    .pr-table tbody tr:last-child td { border-bottom: none; }
    .pr-table tbody tr:nth-child(even) { background: var(--lighter); }

    /* ── MIGRATION PAGE ── */
    .migration-content-section { background: var(--white); padding-top: 80px; }

    /* Sticky sidebar card (image + badge + phone button) */
    .mig-sidebar {
      position: sticky;
      top: calc(var(--header-h) + 24px);
    }
    @media (max-width: 991px) {
      .mig-sidebar { position: static; margin-bottom: 20px; }
    }

    /* Long-form content column */
    .mig-block { margin-bottom: 44px; }
    .mig-block-last { margin-bottom: 0; }
    .mig-subheading {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--navy);
      margin: 10px 0 6px;
    }
    .mig-lead { font-weight: 600; color: var(--navy); font-size: 0.95rem; margin-bottom: 8px; }
    .mig-stat { color: var(--text-muted); font-size: 0.9rem; font-style: italic; margin-top: 12px; }
    .mig-step { padding-left: 20px; border-left: 3px solid var(--border); }
    .mig-step-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      color: var(--navy);
      margin-bottom: 8px;
    }

    /* Apply-steps ordered list */
    .mig-apply-steps {
      list-style: none;
      padding: 0;
      margin: 0 0 20px;
      counter-reset: none;
    }
    .mig-apply-steps li {
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      color: var(--text-dark);
      font-size: 0.94rem;
    }
    .mig-apply-steps li:last-child { border-bottom: none; }
    .mig-apply-steps li strong { color: var(--orange); margin-right: 6px; }

    /* ── COUNTRIES PAGE ── */
    .countries-section { background: var(--white); }

    .country-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px 26px;
      height: 100%;
      transition: all .3s;
    }
    .country-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(37,99,235,.1); border-color: transparent; }
    .country-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
    .country-flag-img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
    .country-flag-circle {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: var(--lighter);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .country-card-label {
      color: var(--orange);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
    }
    .country-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      color: var(--navy);
      margin-bottom: 12px;
    }
    .country-visa-list li { padding: 5px 0; font-size: 0.88rem; }
    .country-visa-list li i { color: var(--orange); font-size: 0.8rem; }