:root {
    --navy:      #00426a;
    --navy-dk:   #00426a;
    --navy-lt:   #005a8e;
    --gold:      #e1b527;
    --gold-dk:   #c49b18;
    --gold-lt:   #f0cb50;
    --black:     #07111a;
    --dark:      #0b1d2c;
    --mid:       #102538;
    --steel:     #1a3448;
    --muted:     #5b8aaa;
    --white:     #f4f8fb;

    /* Light theme */
    --lt-bg1:    #f5f7fa;
    --lt-bg2:    #eaeff5;
    --lt-text:   #0d1f2d;
    --lt-muted:  #4a6070;
    --lt-border: rgba(0,66,106,0.1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { font-size: 16px; scroll-behavior: smooth; }
  body { font-family: 'Barlow', sans-serif; font-size: 1rem; line-height: 1.6; background: var(--black); color: var(--white); overflow-x: hidden; }

  /* ═══════════════ NAV ═══════════════ */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: 96px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 3rem;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 2px solid transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  }
  /* Subtle gradient scrim behind transparent nav for readability */
  nav::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(7,17,26,0.6) 0%, rgba(7,17,26,0.25) 70%, transparent 100%);
    z-index: -1;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }
  nav.scrolled::before { opacity: 0; }
  /* Scrolled: blurred glass with gold border */
  nav.scrolled {
    background: rgba(7,17,26,0.62);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--gold);
  }
  .nav-logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
  .nav-logo .brand { font-family: 'Bebas Neue', sans-serif; font-size: 1.55rem; letter-spacing: 0.12em; color: var(--white); }
  .nav-logo .brand em { color: var(--gold); font-style: normal; }
  .nav-logo .sub { font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

  /* ── Nav links + mega menu ── */
  .nav-links { display: flex; gap: 0; list-style: none; align-items: stretch; }
  .nav-links > li { position: static; display: flex; align-items: stretch; }
  .nav-links > li > a {
    display: flex; align-items: center; gap: 0.35rem;
    text-decoration: none; color: var(--gold);
    font-size: 0.95rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; transition: color 0.2s, text-shadow 0.4s;
    padding: 0 1.1rem; position: relative;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  }
  .nav-links > li > a::after {
    content: ''; position: absolute; bottom: 0; left: 1.1rem; right: 1.1rem;
    height: 2px; background: var(--gold);
    transform: scaleX(0); transition: transform 0.25s;
  }
  .nav-links > li.is-hovered > a { color: var(--white); }
  .nav-links > li.is-hovered > a::after { transform: scaleX(1); }
  nav.scrolled .nav-links > li > a { text-shadow: none; }

  /* Chevron on Services */
  .nav-chevron {
    width: 10px; height: 10px;
    stroke: currentColor; fill: none;
    stroke-width: 2; stroke-linecap: round;
    transition: transform 0.25s;
    flex-shrink: 0;
  }
  .nav-links > li .nav-chevron.rotated { transform: rotate(180deg); }

  /* ── MEGA MENU ── */
  .mega {
    position: fixed;
    top: 96px; left: 0; right: 0;
    background: rgba(7,17,26,0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(225,181,39,0.15);
    border-bottom: 2px solid var(--gold);
    padding: 2.5rem 0 2rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(0);
    transition: opacity 0.2s ease;
    z-index: 999;
  }
  /* invisible bridge fills the 2px border gap so mouse doesn't lose hover */
  .mega::before {
    content: '';
    position: absolute;
    top: -4px; left: 0; right: 0;
    height: 4px;
  }
  .nav-links > li .mega.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .mega-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 0;
  }

  /* Left feature panel */
  .mega-feature {
    padding-right: 2.5rem;
    border-right: 1px solid rgba(255,255,255,0.06);
    display: flex; flex-direction: column; justify-content: space-between;
    gap: 1.5rem;
  }
  .mega-feature-tag {
    font-size: 0.6rem; font-weight: 800; letter-spacing: 0.35em;
    text-transform: uppercase; color: var(--gold);
  }
  .mega-feature-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.6rem; line-height: 0.95; letter-spacing: 0.03em;
    color: var(--white);
  }
  .mega-feature-title em { color: var(--gold); font-style: normal; }
  .mega-feature-desc {
    font-size: 0.8rem; color: rgba(255,255,255,0.45);
    line-height: 1.7; max-width: 220px;
  }
  .mega-feature-cta {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.7rem; font-weight: 800; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold);
    text-decoration: none; border-bottom: 1px solid rgba(225,181,39,0.3);
    padding-bottom: 2px; transition: border-color 0.2s;
    width: fit-content;
  }
  .mega-feature-cta:hover { border-color: var(--gold); }

  /* Service columns */
  .mega-col {
    padding: 0 2rem;
    border-right: 1px solid rgba(255,255,255,0.04);
  }
  .mega-col:last-child { border-right: none; }
  .mega-col-title {
    font-size: 0.58rem; font-weight: 800; letter-spacing: 0.32em;
    text-transform: uppercase; color: rgba(255,255,255,0.25);
    margin-bottom: 1.2rem; padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  /* Service links */
  .mega-link {
    display: flex; align-items: center; gap: 0.9rem;
    padding: 0.6rem 0;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.15s;
    group: true;
  }
  .mega-link:hover .mega-link-icon { background: var(--gold); border-color: var(--gold); }
  .mega-link:hover .mega-link-icon img { filter: brightness(0) saturate(0); }
  .mega-link:hover .mega-link-name { color: var(--white); }
  .mega-link-icon {
    width: 34px; height: 34px; flex-shrink: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, border-color 0.2s;
  }
  .mega-link-icon img {
    width: 18px; height: 18px; object-fit: contain;
    filter: brightness(0) invert(1); opacity: 0.6;
    transition: filter 0.2s, opacity 0.2s;
  }
  .mega-link-text { display: flex; flex-direction: column; gap: 1px; }
  .mega-link-name {
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em;
    color: rgba(255,255,255,0.75); transition: color 0.15s;
    text-transform: uppercase;
  }
  .mega-link-price {
    font-size: 0.65rem; color: rgba(225,181,39,0.6);
    letter-spacing: 0.08em;
  }

  /* MOT highlight badge */
  .mega-link-badge {
    margin-left: auto; flex-shrink: 0;
    background: var(--gold); color: var(--navy-dk);
    font-size: 0.55rem; font-weight: 900; letter-spacing: 0.12em;
    text-transform: uppercase; padding: 0.15rem 0.45rem;
  }

  .btn-nav-call { background: var(--gold); color: var(--navy-dk); text-decoration: none; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.55rem 1.3rem; transition: background 0.2s; white-space: nowrap; }
  .btn-nav-call:hover { background: var(--gold-lt); }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .nav-social { display: flex; gap: 0.5rem; align-items: center; }
  .hamburger span { width: 24px; height: 2px; background: var(--white); display: block; transition: 0.3s; }

  .mobile-menu {
    display: none; position: fixed; top: 96px; left: 0; right: 0; bottom: 0;
    background: var(--black); z-index: 999;
    flex-direction: column;
    border-top: 2px solid var(--gold);
    overflow-y: auto;
  }
  .mobile-menu.open { display: flex; }

  .mm-links {
    flex: 1;
    display: flex; flex-direction: column;
    padding: 2.5rem 2rem;
    gap: 0.2rem;
  }
  .mm-links a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 0.06em;
    color: var(--white);
    text-decoration: none;
    line-height: 1.25;
    transition: color 0.2s;
    display: block;
  }
  .mm-links a:hover, .mm-links a.mm-cta { color: var(--gold); }

  /* Mobile services dropdown */
  .mm-svc-toggle {
    display: flex; align-items: center; justify-content: space-between;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem; letter-spacing: 0.06em;
    color: var(--white); line-height: 1.25;
    cursor: pointer; background: none; border: none;
    width: 100%; text-align: left; padding: 0;
    transition: color 0.2s;
  }
  .mm-svc-toggle:hover { color: var(--gold); }
  .mm-svc-toggle svg {
    width: 28px; height: 28px;
    stroke: currentColor; fill: none; stroke-width: 2;
    transition: transform 0.3s; flex-shrink: 0;
  }
  .mm-svc-toggle.open { color: var(--gold); }
  .mm-svc-toggle.open svg { transform: rotate(180deg); }

  .mm-svc-panel {
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s ease, margin 0.5s ease;
    border-left: 2px solid rgba(225,181,39,0.25);
    margin: 0 0 0 0.3rem;
  }
  .mm-svc-panel.open { max-height: 1200px; margin: 0.3rem 0 0.5rem 0.3rem; }

  .mm-svc-cat {
    font-size: 0.58rem; font-weight: 800; letter-spacing: 0.3em;
    text-transform: uppercase; color: rgba(225,181,39,0.5);
    padding: 1rem 1.2rem 0.4rem;
  }
  .mm-svc-link {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 1rem;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    transition: background 0.15s;
  }
  .mm-svc-link:hover { background: rgba(255,255,255,0.04); }
  .mm-svc-link:hover .mm-svc-name { color: var(--gold); }
  .mm-svc-icon {
    width: 36px; height: 36px;
    flex: 0 0 36px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
  }
  .mm-svc-icon img {
    width: 22px; height: 22px; object-fit: contain;
    filter: brightness(0) invert(1); opacity: 0.7;
  }
  .mm-svc-name {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 1.3rem !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    transition: color 0.15s;
    display: block;
    line-height: 1;
  }

  .mm-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 2rem 2rem;
    display: flex;
    gap: 2rem;
  }
  .mm-bottom-col { flex: 1; }
  .mm-bottom-col h4 {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.9rem;
  }
  .mm-icon-row { display: flex; gap: 0.6rem; }
  .mm-ic {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--mid);
    border: 1.5px solid rgba(225,181,39,0.3);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
  }
  .mm-ic:hover { background: var(--gold); border-color: var(--gold); }
  .mm-ic:hover svg { fill: var(--navy-dk); }
  .mm-ic svg { width: 20px; height: 20px; fill: rgba(225,181,39,0.8); transition: fill 0.2s; }

  /* Hamburger open state animation */
  .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.is-open span:nth-child(2) { opacity: 0; }
  .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ═══════════════ SHARED ═══════════════ */
  section { padding: 7rem 3rem; }
  .inner { max-width: 1200px; margin: 0 auto; }

  .lbl { display: inline-flex; align-items: center; gap: 0.7rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
  .lbl::before { content: ''; width: 24px; height: 2px; background: var(--gold); }

  h2.ttl { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.6rem, 5vw, 4.2rem); line-height: 0.97; letter-spacing: 0.02em; }
  h2.ttl span { color: var(--gold); }

  .btn-p { display: inline-block; background: var(--gold); color: var(--navy-dk); text-decoration: none; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.95rem 2.2rem; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s; }
  .btn-p:hover { background: var(--gold-lt); transform: translateY(-1px); }
  .btn-o { display: inline-block; background: transparent; color: var(--white); text-decoration: none; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.95rem 2.2rem; border: 2px solid rgba(255,255,255,0.25); transition: border-color 0.2s, color 0.2s; cursor: pointer; }
  .btn-o:hover { border-color: var(--gold); color: var(--gold); }

  /* ─── Image Placeholder ─── */
  .img-ph {
    width: 100%; background: var(--steel); border: 1px dashed rgba(225,181,39,0.25);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0.65rem; color: var(--muted); font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; position: relative; overflow: hidden;
  }
  .img-ph::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(255,255,255,0.015) 18px, rgba(255,255,255,0.015) 19px);
  }
  .img-ph .ph-icon { font-size: 2.2rem; opacity: 0.35; position: relative; }
  .img-ph .ph-label { position: relative; opacity: 0.55; }
  .img-ph .ph-size { position: relative; font-size: 0.62rem; opacity: 0.3; font-weight: 400; letter-spacing: 0.05em; }

  /* ═══════════════ HERO ═══════════════ */
  #home { min-height: 100vh; padding: 0; position: relative; display: flex; flex-direction: column; }

  .hero-img { position: absolute; inset: 0; overflow: hidden; }
  .hero-img img, .hero-img .img-ph { width: 100%; height: 100%; object-fit: cover; }

  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom,
      rgba(7,17,26,0.3) 0%,
      rgba(7,17,26,0.15) 25%,
      rgba(7,17,26,0.55) 60%,
      rgba(7,17,26,0.92) 100%);
  }

  .hero-content {
    position: relative; z-index: 1;
    flex: 1; display: flex; flex-direction: column; justify-content: flex-end;
    padding: 8rem 3rem 5rem 3rem;
    max-width: 1200px; margin: 0 auto; width: 100%;
  }

  .hero-badge { display: inline-flex; align-items: center; gap: 0.6rem; background: rgba(225,181,39,0.12); border: 1px solid rgba(225,181,39,0.38); padding: 0.4rem 1rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; width: fit-content; animation: fadeUp 0.7s ease both; }
  .hero-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }

  .hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(4.5rem, 11vw, 10rem); line-height: 0.88; letter-spacing: 0.02em; animation: fadeUp 0.7s ease 0.08s both; }
  .hero-title .t2 { color: var(--gold); }
  .hero-title .t3 { color: transparent; -webkit-text-stroke: 1.5px rgba(225,181,39,0.40); }

  .hero-sub { margin-top: 1.8rem; font-size: 1.05rem; color: rgba(244,248,251,0.68); max-width: 500px; line-height: 1.75; animation: fadeUp 0.7s ease 0.16s both; }
  .hero-sub strong { color: var(--white); font-weight: 700; }

  .hero-actions { display: flex; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap; animation: fadeUp 0.7s ease 0.22s both; }

  /* ── Hero icon ticker — nav top to stats top line ── */
  .hero-icon-slider {
    position: absolute;
    right: 0;
    top: 96px;               /* bottom edge of nav */
    bottom: 132px;           /* top edge of stats bar */
    width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    animation: fadeUp 0.7s ease 0.35s both;
  }
  /* Gold line top, grey line bottom — connecting to nav and stats */
  .hero-icon-slider::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background: linear-gradient(to bottom,
      var(--gold) 0%,
      rgba(225,181,39,0.15) 40%,
      rgba(90,138,170,0.15) 70%,
      rgba(90,138,170,0.3) 100%
    );
    z-index: 0;
    pointer-events: none;
  }
  /* No vertical line */
  .his-rail-top, .his-rail-bot { display: none; }

  /* Scrolling window with fade masks */
  .his-track {
    flex: 1;
    overflow: hidden;
    position: relative;
    z-index: 2;
    width: 100%;
  }
  /* No fade */
  /* Each icon item */
  .his-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    height: 88px;
    flex-shrink: 0;
    width: 100%;
  }
  .his-item img {
    width: 30px; height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.65;
  }
  .his-item span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.35);
    text-align: center;
  }

  .hero-stats { margin-top: 3rem; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,0.07); animation: fadeUp 0.7s ease 0.3s both; }
  .stat { padding: 2rem 0; border-right: 1px solid rgba(255,255,255,0.07); text-align: center; }
  .stat:last-child { border-right: none; }
  .stat-n { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--white); line-height: 1; }
  .stat-n em { color: var(--gold); font-style: normal; }
  .stat-l { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.25} }

  /* ═══════════════ BOOKING STRIP ═══════════════ */
  .bstrip { background: var(--navy); border-top: 3px solid var(--gold); }
  .bstrip-in { max-width: 1200px; margin: 0 auto; padding: 0 3rem; display: grid; grid-template-columns: auto 1fr; align-items: stretch; gap: 3rem; min-height: 100px; }
  .bstrip-txt { display: flex; flex-direction: column; justify-content: center; padding: 2rem 0; }
  .bstrip-form-wrap { display: flex; align-items: center; padding: 1.5rem 0; }
  .bstrip-txt h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; letter-spacing: 0.05em; }
  .bstrip-txt p { font-size: 1rem; color: rgba(255,255,255,0.55); margin-top: 3px; }
  .bstrip-form { display: flex; }
  .bstrip-form input, .bstrip-form select { flex: 1; height: 52px; padding: 0 1.2rem; background: rgba(0,0,0,0.25); border: none; border-right: 1px solid rgba(255,255,255,0.08); color: #fff; font-family: 'Barlow', sans-serif; font-size: 0.88rem; outline: none; }
  .bstrip-form input::placeholder { color: rgba(255,255,255,0.45); }
  .bstrip-form select option { color: #000; }
  .bstrip-form button { height: 52px; padding: 0 1.8rem; background: var(--gold); color: var(--navy-dk); font-family: 'Barlow', sans-serif; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; border: none; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
  .bstrip-form button:hover { background: var(--gold-lt); }

  /* ═══════════════ ABOUT ═══════════════ */
  #about { background: var(--lt-bg1); color: var(--lt-text); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3.5rem; }

  .about-img-wrap { position: relative; }
  .about-img-main .img-ph { height: 380px; }
  .about-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--gold); color: var(--navy-dk); padding: 1.2rem 1.5rem; text-align: center; z-index: 2; }
  .about-badge .big { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; line-height: 1; }
  .about-badge .sm { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }

  .about-text p { font-size: 1rem; line-height: 1.8; color: rgba(244,248,251,0.68); margin-bottom: 1.1rem; }
  .about-text p strong { color: var(--white); font-weight: 700; }

  .about-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; }
  .pill { background: var(--mid); border: 1px solid rgba(225,181,39,0.2); color: var(--gold); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.45rem 1rem; }

  .info-card { background: var(--mid); border: 1px solid rgba(255,255,255,0.05); border-left: 3px solid var(--gold); padding: 2rem; margin-top: 2rem; }
  .info-card .v { text-align: right; }
  .ir { display: flex; justify-content: space-between; align-items: center; padding: 0.72rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 1rem; }
  .ir:last-child { border-bottom: none; }
  .ir .k { color: var(--muted); }
  .ir .v { color: var(--white); font-weight: 600; }
  .ir .v a { color: inherit; text-decoration: none; transition: color 0.2s; }
  .ir .v a:hover { color: var(--gold); }
  .ir .v.gd { color: var(--gold); }

  /* ═══════════════ SERVICES ═══════════════ */
  #services { background: var(--lt-bg2); color: var(--lt-text); }
  .svc-hdr { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; gap: 2rem; flex-wrap: wrap; }

  /* ── Services icon strip ── */
  .svc-icon-strip {
    display: none; /* desktop: hidden, mobile: shown */
    overflow: hidden;
    margin-bottom: 2.5rem;
    position: relative;
    background: var(--navy);
    border-radius: 4px;
  }
  .svc-icon-strip::before,
  .svc-icon-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 50px;
    z-index: 2;
    pointer-events: none;
  }
  .svc-icon-strip::before {
    left: 0;
    background: linear-gradient(to right, var(--navy), transparent);
  }
  .svc-icon-strip::after {
    right: 0;
    background: linear-gradient(to left, var(--navy), transparent);
  }
  .svc-strip-belt {
    display: flex;
    gap: 0;
    width: max-content;
    animation: svcStripScroll 18s linear infinite;
  }
  @keyframes svcStripScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .svc-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    flex-shrink: 0;
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .svc-strip-item img {
    width: 28px; height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.75;
  }
  .svc-strip-item span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.55);
    text-align: center;
    white-space: nowrap;
  }
  @media (max-width: 960px) {
    .svc-icon-strip { display: block; }
  }



  /* Service grid — 3 columns, image top white body cards */
  .svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; background: none; }

  /* ── Service cards — Image top, white body ── */
  .sc {
    background: #fff; overflow: hidden; display: flex; flex-direction: column;
    border: 1px solid rgba(0,66,106,0.1);
    transition: transform 0.28s, box-shadow 0.28s;
    position: relative;
  }
  .sc:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(0,66,106,0.12); }
  .sc::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); z-index: 2; }

  /* Image area */
  .sc-img { position: relative; height: 280px; overflow: hidden; }
  .sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .sc:hover .sc-img img { transform: scale(1.05); }

  /* Gold-ringed icon at junction */
  .sc-icon {
    position: absolute; bottom: 16px; right: 16px; z-index: 3;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--navy); border: 2.5px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.2);
  }
  .sc-icon img {
    width: 20px; height: 20px; object-fit: contain;
    filter: brightness(0) saturate(100%) invert(80%) sepia(50%) saturate(500%) hue-rotate(5deg);
  }

  /* Card body */
  .sc-body { padding: 1.2rem 1.2rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
  .sc h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.05em; color: var(--navy); margin-bottom: 0.3rem; }
  .sc p { font-size: 0.84rem; line-height: 1.6; color: var(--lt-muted); flex: 1; margin-bottom: 0.8rem; }
  .sc-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--navy); letter-spacing: 0.03em; line-height: 1; margin-bottom: 0.8rem; }
  .sc-price small { font-family: 'Barlow', sans-serif; font-size: 0.6rem; color: var(--lt-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-left: 3px; }

  /* Book + Details row */
  .sc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; margin-bottom: 0.5rem; }
  .sc-book {
    display: flex; align-items: center; justify-content: center;
    gap: 0.3rem; padding: 0.55rem 0.4rem;
    font-size: 0.62rem; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase;
    cursor: pointer; text-decoration: none;
    transition: all 0.2s;
    border: none; white-space: nowrap;
  }
  .sc-book-primary { background: var(--gold); color: var(--navy); }
  .sc-book-primary:hover { background: #f0cb50; }
  .sc-book-secondary {
    background: transparent !important;
    color: var(--navy) !important;
    border: 1px solid var(--navy) !important;
    font-weight: 800;
  }
  .sc-book-secondary:hover {
    background: var(--navy) !important;
    color: #fff !important;
  }

  /* Call + WhatsApp row */
  .sc-contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; padding-top: 0.5rem; border-top: 1px solid rgba(0,66,106,0.07); }
  .sc-contact-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.3rem;
    padding: 0.45rem 0.3rem;
    border: 1px solid rgba(0,66,106,0.1);
    background: rgba(0,66,106,0.02);
    text-decoration: none; font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--lt-muted);
    transition: all 0.2s;
  }
  .sc-contact-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
  .sc-contact-btn svg { width: 12px; height: 12px; fill: currentColor; flex-shrink: 0; }

  /* "Not Sure" navy card */
  .sc.sc-navy-card {
    background: var(--navy); border-color: rgba(225,181,39,0.15);
  }
  .sc.sc-navy-card::before { background: var(--gold); }
  .sc.sc-navy-card h3 { color: #fff; }
  .sc.sc-navy-card p { color: rgba(255,255,255,0.55); }
  .sc-icon-inline {
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(225,181,39,0.1); border: 1.5px solid rgba(225,181,39,0.35);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.8rem;
  }
  .sc.sc-navy-card .sc-book-primary { background: var(--gold); color: var(--navy); }
  .sc.sc-navy-card .sc-book-secondary {
    background: transparent !important;
    color: rgba(255,255,255,0.7) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
  }
  .sc.sc-navy-card .sc-book-secondary:hover {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
    background: transparent !important;
  }

  /* ═══════════════ GALLERY ═══════════════ */
  #gallery { background: var(--lt-bg1); color: var(--lt-text); }

  /* ── Gallery grid (desktop) ── */
  .gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 3.5rem; }
  .g-item { overflow: hidden; cursor: zoom-in; position: relative; }
  .g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
  .g-item:hover img { transform: scale(1.04); }

  /* ── Gallery carousel (mobile) ── */
  .gal-carousel {
    display: none;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    touch-action: pan-y;
    user-select: none;
  }
  .gal-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }
  .gal-slide {
    flex: 0 0 100%;
    position: relative;
    aspect-ratio: auto;
    overflow: hidden;
  }
  .gal-slide img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }
  /* Prev / Next arrows */
  .gal-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10;
    width: 40px; height: 40px;
    background: rgba(7,17,26,0.6);
    border: 1px solid rgba(225,181,39,0.3);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.2s;
  }
  .gal-btn:hover { background: var(--navy); }
  .gal-btn svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; }
  .gal-prev { left: 0.8rem; }
  .gal-next { right: 0.8rem; }

  /* Counter badge */
  .gal-counter {
    position: absolute; bottom: 0.8rem; right: 0.8rem;
    background: rgba(7,17,26,0.7);
    color: rgba(255,255,255,0.8);
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
    padding: 0.25rem 0.6rem;
  }
  .g-large { grid-column: span 2; grid-row: span 2; }
  .g-tall  { grid-row: span 2; }

  /* ═══════════════ REVIEWS ═══════════════ */
  #reviews { background: var(--navy); }
  .rv-top { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: 3.5rem; }
  .rating-box { background: rgba(0,0,0,0.3); border: 1px solid rgba(225,181,39,0.3); padding: 1.4rem 2rem; display: flex; align-items: center; gap: 1.5rem; }
  .r-big { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: var(--white); line-height: 1; }
  .r-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 3px; }
  .r-sub { font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-top: 4px; letter-spacing: 0.1em; text-transform: uppercase; }
  .rv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
  .rvc { background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.07); padding: 2rem; transition: border-color 0.2s; }
  .rvc:hover { border-color: rgba(225,181,39,0.35); }
  .rvc-q { font-size: 2.5rem; color: rgba(225,181,39,0.28); font-family: Georgia, serif; line-height: 1; margin-bottom: 0.8rem; }
  .rvc-txt { font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,0.72); margin-bottom: 1.5rem; }
  .rvc-auth { display: flex; align-items: center; gap: 0.8rem; }
  .rvc-av { width: 36px; height: 36px; background: var(--gold); color: var(--navy-dk); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; flex-shrink: 0; }
  .rvc-name { font-weight: 700; font-size: 1rem; color: var(--white); }
  .rvc-stars { color: var(--gold); font-size: 0.72rem; letter-spacing: 2px; }

  /* ═══════════════ CONTACT ═══════════════ */
  #contact { background: var(--lt-bg2); color: var(--lt-text); }
  .ct-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; margin-top: 3.5rem; }
  .ci { display: flex; gap: 1.2rem; align-items: flex-start; margin-bottom: 2rem; }
  .ci-ic { width: 44px; height: 44px; background: var(--navy); border: 1px solid rgba(225,181,39,0.25); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
  .ci-lbl { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
  .ci-val { font-size: 1rem; color: var(--white); font-weight: 600; }
  .ci-val a { color: inherit; text-decoration: none; transition: color 0.2s; }
  .ci-val a:hover { color: var(--gold); }

  .hrs-box { background: var(--dark); border: 1px solid rgba(255,255,255,0.05); border-top: 3px solid var(--gold); padding: 1.5rem; margin-top: 0.5rem; }
  .hrs-box h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
  .hr-r { display: flex; justify-content: space-between; font-size: 1rem; padding: 0.45rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .hr-r:last-child { border-bottom: none; }
  .hr-r .d { color: var(--muted); }
  .hr-r .t { color: var(--white); font-weight: 600; }
  .hr-r .cl { color: #e05555; font-weight: 600; }

  .cf-box { background: var(--dark); border: 1px solid rgba(255,255,255,0.05); border-top: 3px solid var(--gold); padding: 2.5rem; }
  .cf-box h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; letter-spacing: 0.04em; margin-bottom: 1.8rem; }
  .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .fg { margin-bottom: 1.1rem; }
  .fg label { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.45rem; }
  .fg input, .fg select, .fg textarea { width: 100%; background: var(--mid); border: 1px solid rgba(255,255,255,0.07); color: var(--white); font-family: 'Barlow', sans-serif; font-size: 1rem; padding: 0.8rem 1rem; outline: none; transition: border-color 0.2s; }
  .fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
  .fg select option { color: #000; }
  .fg textarea { height: 110px; resize: vertical; }
  .cf-ok { display: none; background: rgba(225,181,39,0.1); border: 1px solid rgba(225,181,39,0.3); padding: 1rem; text-align: center; font-size: 1rem; margin-top: 1rem; color: var(--gold); }

  /* ── Contact map row ── */
  .ct-map-row {
    margin-top: 4rem;
    border-top: 1px solid var(--lt-border);
    padding-top: 2rem;
  }
  .ct-map-label {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--navy);
    margin-bottom: 1rem;
  }
  .ct-map-label svg { stroke: var(--navy); flex-shrink: 0; }
  .ct-map-frame {
    width: 100%; height: 420px;
    border: 1px solid var(--lt-border);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  @media (max-width: 960px) {
    .ct-map-frame { height: 280px; }
  }

  /* ═══════════════ FOOTER ═══════════════ */
  footer { background: var(--navy-dk); border-top: 3px solid var(--gold); }
  .ft-main { max-width: 1200px; margin: 0 auto; padding: 4rem 3rem; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; }
  .ft-brand { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.12em; }
  .ft-brand em { color: var(--gold); font-style: normal; }
  .ft-desc { font-size: 1rem; color: rgba(255,255,255,0.45); line-height: 1.75; margin-top: 0.8rem; max-width: 280px; }
  .ft-acts { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
  .fc h4 { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
  .fc ul { list-style: none; }
  .fc ul li { margin-bottom: 0.55rem; }
  .fc ul a { text-decoration: none; color: rgba(255,255,255,0.45); font-size: 1rem; transition: color 0.2s; }
  .fc ul a:hover { color: var(--white); }
  .ft-bar { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.4rem 3rem; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.78rem; color: rgba(255,255,255,0.3); }
  .ft-bar a { color: var(--gold); text-decoration: none; }
  /* Social icons */
  .social-row { display: flex; gap: 0.75rem; margin-top: 1.4rem; align-items: center; }
  .social-ic { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(225,181,39,0.25); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background 0.2s, border-color 0.2s, transform 0.2s; }
  .social-ic:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
  .social-ic:hover svg { fill: var(--navy-dk); }
  .social-ic svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.6); transition: fill 0.2s; }
  .ft-bar-socials { display: flex; gap: 0.6rem; align-items: center; }
  .ft-bar-socials a { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(225,181,39,0.2); display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; }
  .ft-bar-socials a:hover { background: var(--gold); transform: scale(1.1); }
  .ft-bar-socials a:hover svg { fill: var(--navy-dk); }
  .ft-bar-socials svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.45); transition: fill 0.2s; }

  /* ═══════════════ MODAL ═══════════════ */
  .ovl { position: fixed; inset: 0; background: rgba(0,0,0,0.88); z-index: 2000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(8px); padding: 1rem; }
  .ovl.on { display: flex; }
  .modal { background: var(--dark); border: 1px solid rgba(255,255,255,0.1); border-top: 3px solid var(--gold); width: 100%; max-width: 540px; max-height: 92vh; overflow-y: auto; animation: popIn 0.3s ease; }
  @keyframes popIn { from{opacity:0;transform:scale(0.96)} to{opacity:1;transform:scale(1)} }
  .m-hdr { padding: 1.8rem 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; }
  .m-hdr h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; letter-spacing: 0.05em; }
  .m-close { background: none; border: none; color: var(--muted); font-size: 1.4rem; cursor: pointer; padding: 0.2rem; transition: color 0.2s; line-height: 1; }
  .m-close:hover { color: var(--white); }
  .m-body { padding: 2.2rem 2.5rem; }

  /* UK reg plate */
  .reg-wrap { display: flex; background: #f2c017; margin-bottom: 1.4rem; height: 56px; overflow: hidden; border: 2px solid #d4a810; }
  .reg-gb { background: #003189; color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0 0.7rem; min-width: 46px; gap: 3px; }
  .reg-gb .flag { width: 22px; height: 14px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 40'%3E%3Crect width='60' height='40' fill='%23012169'/%3E%3Cpath d='M0,0 L60,40 M60,0 L0,40' stroke='%23fff' stroke-width='8'/%3E%3Cpath d='M0,0 L60,40 M60,0 L0,40' stroke='%23C8102E' stroke-width='5'/%3E%3Cpath d='M30,0 V40 M0,20 H60' stroke='%23fff' stroke-width='12'/%3E%3Cpath d='M30,0 V40 M0,20 H60' stroke='%23C8102E' stroke-width='8'/%3E%3C/svg%3E") center/cover no-repeat; }
  .reg-gb .g { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.08em; line-height: 1; }
  .reg-wrap input { flex: 1; background: transparent; border: none; font-family: 'Bebas Neue', sans-serif; font-size: 2.1rem; letter-spacing: 0.16em; color: #111; padding: 0 1rem; outline: none; text-transform: uppercase; }
  .reg-wrap input::placeholder { color: rgba(0,0,0,0.3); }

  .m-ok { display: none; text-align: center; padding: 1rem 0 0.5rem; }
  .m-ok .chk { font-size: 2.8rem; color: var(--gold); margin-bottom: 0.8rem; }
  .m-ok h4 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; margin-bottom: 0.5rem; }
  .m-ok p { font-size: 1rem; color: var(--muted); line-height: 1.6; }

  /* FAB Stack */
  .fab-stack { position: fixed; bottom: 1.5rem; right: 1rem; z-index: 500; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
  .fab { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; position: relative; }
  .fab:hover { transform: scale(1.12); }
  .fab-wa   { background: #25D366; box-shadow: 0 4px 18px rgba(37,211,102,0.55); border: 2px solid #fff; }
  .fab-wa svg { fill: #fff; }
  .fab-call { background: var(--navy); box-shadow: 0 4px 18px rgba(0,66,106,0.6); border: 2px solid var(--gold); }
  .fab-call svg { fill: var(--gold); }
  .fab svg  { width: 32px; height: 32px; }
  /* Tooltip labels */
  .fab::before { content: attr(data-tip); position: absolute; right: calc(100% + 10px); background: rgba(7,17,26,0.92); color: var(--white); font-family: 'Barlow', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; white-space: nowrap; padding: 0.35rem 0.75rem; border-radius: 3px; border: 1px solid rgba(225,181,39,0.25); opacity: 0; pointer-events: none; transition: opacity 0.2s; }
  .fab:hover::before { opacity: 1; }


  /* ── Light section text overrides ── */
  #about .lbl, #services .lbl, #gallery .lbl, #contact .lbl { color: var(--navy); }
  #about .lbl::before, #services .lbl::before, #gallery .lbl::before, #contact .lbl::before { background: var(--navy); }
  #about h2.ttl, #services h2.ttl, #gallery h2.ttl, #contact h2.ttl { color: var(--lt-text); }
  #about h2.ttl span, #services h2.ttl span, #gallery h2.ttl span, #contact h2.ttl span { color: var(--navy); }

  /* About section light */
  #about .about-text p { color: var(--lt-muted); }
  #about .about-text p strong { color: var(--lt-text); }
  #about .pill { background: #fff; border: 1px solid rgba(0,66,106,0.15); color: var(--navy); }
  #about .info-card { background: #fff; border: 1px solid var(--lt-border); border-left: 3px solid var(--gold); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
  #about .ir { border-bottom: 1px solid rgba(0,66,106,0.06); }
  #about .ir .k { color: var(--lt-muted); }
  #about .ir .v { color: var(--lt-text); }
  #about .ir .v.gd { color: var(--navy); }

  /* Gallery light */
  #gallery p { color: var(--lt-muted); }

  /* Contact light */
  #contact .ci-lbl { color: var(--navy); }
  #contact .ci-val { color: var(--lt-text); }
  #contact .ci-ic { background: #fff; border: 1px solid var(--lt-border); box-shadow: 0 2px 8px rgba(0,0,0,0.06); color: var(--navy); }
  #contact .hrs-box { background: #fff; border: 1px solid var(--lt-border); border-top: 3px solid var(--gold); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
  #contact .hrs-box h4 { color: var(--navy); }
  #contact .hr-r { border-bottom: 1px solid rgba(0,66,106,0.06); }
  #contact .hr-r .d { color: var(--lt-muted); }
  #contact .hr-r .t { color: var(--lt-text); }
  #contact .cf-box { background: #fff; border: 1px solid var(--lt-border); border-top: 3px solid var(--gold); box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
  #contact .cf-box h3 { color: var(--lt-text); }
  #contact .fg label { color: var(--lt-muted); }
  #contact .fg input, #contact .fg select, #contact .fg textarea { background: var(--lt-bg1); border: 1px solid var(--lt-border); color: var(--lt-text); }
  #contact .fg input:focus, #contact .fg select:focus, #contact .fg textarea:focus { border-color: var(--navy); }

  /* ═══════════════ RESPONSIVE ═══════════════ */
  @media (max-width: 960px) {
    nav { padding: 0 1.5rem; }
    .nav-links, .btn-nav-call, .nav-social { display: none; }
    .hamburger { display: flex; }
    section { padding: 5rem 1.5rem; }
    .about-grid, .ct-grid { grid-template-columns: 1fr; gap: 3rem; }
    .ft-main { grid-template-columns: 1fr; gap: 2.5rem; }

    /* ── Quick booking mobile fix ── */
    .bstrip-in { grid-template-columns: 1fr; padding: 2rem 1.5rem; gap: 1.2rem; }
    .bstrip-form { flex-direction: column; }
    .bstrip-form input,
    .bstrip-form select {
      height: 52px;
      border-right: none;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      border-radius: 0;
      width: 100%;
      flex: none;
    }
    .bstrip-form button {
      height: 56px;
      border-right: none;
      width: 100%;
      font-size: 0.92rem;
      margin-top: 0;
    }

    /* ── Hero badge clears nav ── */
    .hero-content { padding: 6rem 1.5rem 3rem; }
    .hero-badge { margin-top: 0.5rem; }
    .hero-icon-slider { display: none; }

    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .rv-grid { grid-template-columns: 1fr; }
    .gal-grid { display: none; }
    .gal-carousel { display: block; }
    .svc-hdr { flex-direction: column; align-items: flex-start; }
    .svc-grid { grid-template-columns: 1fr 1fr; }
    .ft-bar { padding: 1.4rem 1.5rem; }
    .about-badge { right: 0; }

    /* ── FAB - prevent overflow on small screens ── */
    .fab-stack { right: 0.8rem; bottom: 1rem; }
    .fab { width: 54px; height: 54px; }
    .fab svg { width: 28px; height: 28px; }
    .fab::before { display: none; } /* hide tooltips on mobile */
  }
  @media (max-width: 600px) {
    .svc-grid { grid-template-columns: 1fr; }
    .cf-row { grid-template-columns: 1fr; }
    .m-body { padding: 1.5rem; }
    .m-hdr { padding: 1.5rem; }
    .bstrip-txt h3 { font-size: 1.5rem; }
    .hi img { width: 26px; height: 26px; }
    .hi span { display: none; }
    .hi { padding: 0.85rem 0.3rem; }
  }
  
  /* Footer view-all link */
  .ft-view-all {
    display: inline-flex; align-items: center; gap: 0.4rem;
    margin-top: 1rem; font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    border-bottom: 1px solid rgba(225,181,39,0.35);
    padding-bottom: 2px; transition: border-color 0.2s;
  }
  .ft-view-all:hover { border-color: var(--gold); }

  /* ═══════════════ REDUCED MOTION ═══════════════ */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
