  html { font-size: 16px; }
:root {
    --navy:     #00426a;
    --navy-dk:  #002f4d;
    --navy-lt:  #005a8e;
    --gold:     #e1b527;
    --gold-dk:  #c49b18;
    --gold-lt:  #f0cb50;
    --black:    #07111a;
    --dark:     #0b1d2c;
    --mid:      #102538;
    --muted:    #5b8aaa;
    --white:    #f4f8fb;
    --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(--lt-bg1); color: var(--lt-text); overflow-x: hidden; }

  /* ─── NAV (copied from main) ─── */
  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;
  }
  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; }
  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(-8px);
    transition: opacity 0.28s ease, transform 0.28s ease;
    z-index: 999;
  }
  .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;
    border-left: 2px solid rgba(225,181,39,0.25);
    margin: 0.3rem 0 0.5rem 0.3rem;
  }
  .mm-svc-panel.open { max-height: 1200px; }

  .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; }
  .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; }
  .hamburger span { width: 24px; height: 2px; background: var(--white); display: block; transition: 0.3s; }
  .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); }
  .nav-social { display: flex; gap: 0.5rem; align-items: center; }
  .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;
    border-left: 2px solid rgba(225,181,39,0.25);
    margin: 0.3rem 0 0.5rem 0.3rem;
  }
  .mm-svc-panel.open { max-height: 1200px; }

  .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 svg { width: 20px; height: 20px; fill: rgba(225,181,39,0.8); transition: fill 0.2s; }
  .mm-ic:hover svg { fill: var(--navy-dk); }

  /* ─── HERO ─── */
  .svc-hero {
    min-height: 55vh;
    position: relative;
    display: flex; align-items: flex-end;
    padding-top: 96px;
    overflow: hidden;
  }
  .svc-hero-img { position: absolute; inset: 0; }
  .svc-hero-img img, .svc-hero-img .img-ph {
    width: 100%; height: 100%; object-fit: cover;
  }
  .svc-hero-img .img-ph {
    background: var(--mid);
    border: none; border-radius: 0;
    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;
  }
  .svc-hero-img .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);
  }
  .svc-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(7,17,26,0.2) 0%, rgba(7,17,26,0.75) 100%);
  }
  .svc-hero-content {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto; width: 100%;
    padding: 3rem 3rem 4rem;
  }
  .svc-breadcrumb {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: rgba(255,255,255,0.55);
    margin-bottom: 1.2rem;
  }
  .svc-breadcrumb a { color: var(--gold); text-decoration: none; transition: opacity 0.2s; }
  .svc-breadcrumb a:hover { opacity: 0.7; }
  .svc-breadcrumb span { color: rgba(255,255,255,0.3); }
  .svc-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.9; letter-spacing: 0.02em;
    color: #fff;
  }
  .svc-hero-title em { color: var(--gold); font-style: normal; }
  .svc-hero-sub {
    margin-top: 1rem; font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 500px; line-height: 1.6;
  }
  .svc-hero-price {
    display: inline-flex; align-items: center; gap: 0.8rem;
    margin-top: 1.5rem;
    background: var(--gold); color: var(--navy-dk);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem; letter-spacing: 0.08em;
    padding: 0.5rem 1.5rem;
  }

  /* ─── MAIN CONTENT ─── */
  .svc-body { max-width: 1200px; margin: 0 auto; padding: 5rem 3rem; }
  .svc-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

  /* What's included */
  .inc-box {
    background: #fff;
    border: 1px solid var(--lt-border);
    border-top: 3px solid var(--gold);
    padding: 2.2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  }
  .inc-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem; letter-spacing: 0.04em;
    color: var(--navy); margin-bottom: 1.5rem;
  }
  .inc-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
  .inc-list li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    font-size: 1rem; color: var(--lt-muted); line-height: 1.5;
  }
  .inc-list li svg { flex-shrink: 0; margin-top: 2px; }

  /* About box */
  .about-box { display: flex; flex-direction: column; gap: 2rem; }
  .about-box h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1; color: var(--lt-text);
  }
  .about-box h2 em { color: var(--navy); font-style: normal; }
  .about-box p { font-size: 1rem; line-height: 1.8; color: var(--lt-muted); }

  /* CTA box */
  .cta-box {
    background: var(--navy);
    padding: 2.5rem;
    color: #fff;
    margin-top: 2rem;
  }
  .cta-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem; letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
  }
  .cta-box p { font-size: 1rem; color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; }
  .cta-btns { display: flex; gap: 0.8rem; flex-wrap: wrap; }
  .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; }
  .btn-p:hover { background: var(--gold-lt); }
  .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); }

  /* Gallery row */
  .svc-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 4rem; }
  .svc-gallery .img-ph {
    height: 200px; background: var(--lt-bg2);
    border: 1px dashed rgba(0,66,106,0.2);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0.5rem; color: var(--lt-muted); font-size: 0.72rem;
    font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  }

  /* ── Body text: enforce 16px minimum on readable content ── */
  .about-box p { font-size: 1rem; line-height: 1.8; color: var(--lt-muted); }
  .cta-box p   { font-size: 1rem; color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; }
  .svc-hero-sub { font-size: 1rem; }

  /* FAQ */
  .faq-section { margin-top: 4rem; }
  .faq-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem; letter-spacing: 0.04em;
    color: var(--lt-text); margin-bottom: 2rem;
  }
  .faq-section h2 em { color: var(--navy); font-style: normal; }
  .faq-item {
    border-bottom: 1px solid var(--lt-border);
    overflow: hidden;
  }
  .faq-q {
    width: 100%; display: flex; justify-content: space-between; align-items: flex-start;
    padding: 1.2rem 0; background: none; border: none; cursor: pointer;
    font-family: 'Barlow', sans-serif; font-size: 1rem; font-weight: 700;
    color: var(--lt-text); text-align: left; gap: 1rem;
    transition: color 0.2s; line-height: 1.5;
  }
  .faq-q:hover { color: var(--navy); }
  .faq-q svg { flex-shrink: 0; margin-top: 0.2rem; transition: transform 0.3s; stroke: var(--navy); }
  .faq-item.open .faq-q svg { transform: rotate(180deg); }
  .faq-a {
    font-size: 1rem; line-height: 1.8; color: var(--lt-muted);
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0;
  }
  /* Large max-height so long answers are never clipped */
  .faq-item.open .faq-a { max-height: 800px; padding-bottom: 1.4rem; }

  /* Related services strip */
  .related-section {
    background: var(--lt-bg2);
    padding: 5rem 0;
    margin-top: 5rem;
  }
  .related-inner { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }
  .related-inner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem; color: var(--lt-text);
    margin-bottom: 2rem;
  }
  .related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
  .rel-card {
    background: #fff; border: 1px solid var(--lt-border);
    border-top: 3px solid var(--gold);
    padding: 1.5rem; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex; flex-direction: row;
    align-items: center; justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .rel-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,66,106,0.1); }
  .rel-card-text { display: flex; flex-direction: column; }
  .rel-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem; letter-spacing: 0.04em;
    color: var(--navy); margin-bottom: 0.3rem;
  }
  .rel-card span { font-size: 1rem; color: var(--lt-muted); }

  /* ── Related card icon — right side ── */
  .rel-card-icon {
    width: 40px; height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.75;
    filter: brightness(0) saturate(100%) invert(18%) sepia(60%) saturate(800%) hue-rotate(185deg) brightness(90%);
  }

  /* ── Gallery lightbox ── */
  .svc-gallery img { cursor: zoom-in; transition: opacity 0.2s; }
  .svc-gallery img:hover { opacity: 0.88; }
  .pb-lightbox {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.94);
    z-index: 3000;
    display: flex; align-items: center; justify-content: center;
    cursor: zoom-out;
    animation: lbFadeIn 0.2s ease;
  }
  @keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
  .pb-lightbox img {
    max-width: 92vw; max-height: 92vh;
    object-fit: contain;
    box-shadow: 0 8px 60px rgba(0,0,0,0.7);
    border: 2px solid rgba(225,181,39,0.3);
    pointer-events: none;
  }
  .pb-lightbox-close {
    position: fixed; top: 1.2rem; right: 1.5rem;
    font-size: 2rem; color: rgba(255,255,255,0.8);
    cursor: pointer; line-height: 1;
    transition: color 0.2s;
  }
  .pb-lightbox-close:hover { color: var(--gold); }

  /* Footer overrides for light page */
  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; color: #fff; }
  .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: #fff; }
  .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-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 svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.6); transition: fill 0.2s; }
  .social-ic:hover svg { fill: var(--navy-dk); }
  .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; }
  .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; color: #fff; }
  .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: #fff; }
  .m-body { padding: 2.2rem 2.5rem; }
  .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: #fff; 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-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .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; }
  .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; color: #fff; }
  .m-ok p { font-size: 1rem; color: var(--muted); line-height: 1.6; }

  /* FAB */
  .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; }
  .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; }

  /* Responsive */
  @media (max-width: 960px) {
    nav { padding: 0 1.5rem; }
    .nav-links, .btn-nav-call, .nav-social { display: none; }
    .hamburger { display: flex; }
    .svc-hero-content { padding: 2rem 1.5rem 3rem; }
    .svc-hero-title { font-size: 3.5rem; }
    .svc-body { padding: 3rem 1.5rem; }
    .svc-grid-2 { grid-template-columns: 1fr; gap: 2rem; }
    .related-grid { grid-template-columns: 1fr 1fr 1fr; }
    .svc-gallery { grid-template-columns: 1fr 1fr; }
    .ft-main { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem; }
    .ft-bar { padding: 1.4rem 1.5rem; }
    .fab { width: 54px; height: 54px; }
    .fab svg { width: 28px; height: 28px; }
    .cf-row { grid-template-columns: 1fr; }
    .m-body { padding: 1.5rem; }
    .m-hdr { padding: 1.5rem; }
  }
  @media (max-width: 600px) {
    .related-grid { grid-template-columns: 1fr; }
    .svc-gallery { grid-template-columns: 1fr; }
    .cta-btns { flex-direction: column; }
  }

  /* ═══════════════ SERVICES INDEX PAGE ═══════════════ */

  /* ═══════════════ SERVICES INDEX PAGE ═══════════════ */

  /* Hero stats */
  .svc-hero-stats { display:flex; gap:3rem; margin-top:1.5rem; }
  .svc-hero-stat-num { font-family:'Bebas Neue',sans-serif; font-size:2rem; color:var(--gold); line-height:1; }
  .svc-hero-stat-label { font-size:0.7rem; letter-spacing:0.15em; text-transform:uppercase; color:rgba(255,255,255,0.4); margin-top:0.2rem; }

  /* Intro section */
  .svcs-intro { display:grid; grid-template-columns:1fr 1fr; gap:3rem; margin-bottom:4rem; padding-bottom:3rem; border-bottom:1px solid var(--lt-border); }
  .svcs-intro h2 { font-family:'Bebas Neue',sans-serif; font-size:2.5rem; letter-spacing:0.04em; color:var(--lt-text); line-height:1; }
  .svcs-intro h2 em { color:var(--navy); font-style:normal; }
  .svcs-intro p { font-size:1rem; line-height:1.8; color:var(--lt-muted); margin-bottom:0.8rem; }
  .svcs-intro p strong { color:var(--lt-text); }

  /* Category sections */
  .cat { margin-bottom:5rem; }
  .cat-header { display:flex; align-items:flex-end; gap:1.2rem; margin-bottom:2.5rem; }
  .cat-num { font-family:'Bebas Neue',sans-serif; font-size:5rem; color:rgba(0,66,106,0.06); line-height:0.75; letter-spacing:-0.02em; }
  .cat-info { flex:1; }
  .cat-name { font-family:'Bebas Neue',sans-serif; font-size:2rem; letter-spacing:0.05em; color:var(--lt-text); line-height:1; margin-bottom:0.3rem; }
  .cat-desc { font-size:0.9rem; color:var(--lt-muted); line-height:1.5; }
  .cat-line { width:100%; height:1px; background:linear-gradient(to right, var(--lt-border), transparent 80%); margin-top:0.8rem; }

  /* Card grid — 2 per row */
  .card-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }

  /* Service card */
  .scard {
    background:#fff; overflow:hidden; display:flex; flex-direction:column;
    border:1px solid var(--lt-border);
    transition:transform 0.3s, box-shadow 0.3s;
    text-decoration:none; color:inherit;
    position:relative;
  }
  .scard:hover { transform:translateY(-5px); box-shadow:0 18px 50px rgba(0,66,106,0.1); }
  .scard::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--gold); z-index:2; transform:scaleX(0); transform-origin:left; transition:transform 0.35s; }
  .scard:hover::before { transform:scaleX(1); }

  /* Image */
  .scard-img { position:relative; height:260px; overflow:hidden; }
  .scard-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s; }
  .scard:hover .scard-img img { transform:scale(1.05); }
  /* Icon */
  .scard-icon {
    position:absolute; bottom:14px; right:14px; z-index:3;
    width:46px; height:46px; 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.25);
    transition:transform 0.25s;
  }
  .scard:hover .scard-icon { transform:scale(1.08); }
  .scard-icon img { width:22px; height:22px; object-fit:contain; filter:brightness(0) saturate(100%) invert(80%) sepia(50%) saturate(500%) hue-rotate(5deg); }
  /* Ribbon */
  .scard-ribbon { position:absolute; top:0; right:0; z-index:3; padding:0.35rem 0.8rem; background:var(--gold); color:var(--navy-dk); font-size:0.6rem; font-weight:900; letter-spacing:0.15em; text-transform:uppercase; }

  /* Body */
  .scard-body { padding:1.4rem 1.5rem; display:flex; flex-direction:column; flex:1; }
  .scard-body h3 { font-family:'Bebas Neue',sans-serif; font-size:1.6rem; letter-spacing:0.05em; color:var(--navy); margin-bottom:0.35rem; }
  .scard-body p { font-size:0.9rem; line-height:1.65; color:var(--lt-muted); margin-bottom:0.8rem; }

  /* Tags */
  .scard-tags { display:flex; flex-wrap:wrap; gap:0.35rem; margin-bottom:1rem; }
  .scard-tag { padding:0.22rem 0.55rem; background:rgba(0,66,106,0.04); border:1px solid rgba(0,66,106,0.08); font-size:0.65rem; font-weight:600; letter-spacing:0.04em; color:var(--lt-muted); transition:all 0.2s; }
  .scard:hover .scard-tag { border-color:rgba(225,181,39,0.25); background:rgba(225,181,39,0.04); }

  /* Price row */
  .scard-price-row { display:flex; align-items:baseline; gap:1rem; margin-bottom:1rem; padding-top:0.8rem; border-top:1px solid var(--lt-border); margin-top:auto; }
  .scard-price { font-family:'Bebas Neue',sans-serif; font-size:1.5rem; color:var(--navy); letter-spacing:0.03em; }
  .scard-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; }

  /* Action buttons */
  .scard-actions { display:grid; grid-template-columns:1fr 1fr; gap:0.4rem; margin-bottom:0.5rem; }
  .scard-btn { display:flex; align-items:center; justify-content:center; gap:0.3rem; padding:0.6rem 0.5rem; font-size:0.64rem; font-weight:800; letter-spacing:0.12em; text-transform:uppercase; cursor:pointer; text-decoration:none; border:none; transition:all 0.2s; font-family:'Barlow',sans-serif; }
  .scard-btn-book { background:var(--gold); color:var(--black); }
  .scard-btn-book:hover { background:#f0cb50; }
  .scard-btn-detail { background:transparent; color:var(--navy); border:1px solid var(--navy); }
  .scard-btn-detail:hover { background:var(--navy); color:#fff; }

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

  /* Featured card — MOT full width */
  .scard-featured { grid-column:1 / -1; display:grid; grid-template-columns:1fr 1fr; }
  .scard-featured::before { transform:scaleX(1); }
  .scard-featured .scard-img { height:auto; min-height:340px; }
  .scard-featured .scard-body { padding:2rem; }
  .scard-featured .scard-body h3 { font-size:2rem; }
  .scard-featured .scard-body p { font-size:1rem; }
  .scard-featured .scard-icon { width:52px; height:52px; bottom:18px; right:18px; }
  .scard-featured .scard-icon img { width:26px; height:26px; }

  /* Trust bar */
  .trust { display:grid; grid-template-columns:repeat(4,1fr); background:var(--navy-dk); margin:0 -3rem; padding:0; margin-bottom:4rem; }
  .trust-item { padding:2.2rem 1.5rem; text-align:center; border-right:1px solid rgba(255,255,255,0.05); transition:background 0.2s; }
  .trust-item:last-child { border-right:none; }
  .trust-item:hover { background:rgba(255,255,255,0.02); }
  .trust-item svg { margin-bottom:0.8rem; }
  .trust-item h4 { font-family:'Bebas Neue',sans-serif; font-size:1.05rem; letter-spacing:0.08em; color:#fff; margin-bottom:0.25rem; }
  .trust-item p { font-size:0.75rem; color:rgba(255,255,255,0.4); line-height:1.4; }

  /* CTA box (services page) */
  .svcs-cta-box { background:var(--navy-dk); padding:3.5rem; display:flex; align-items:center; justify-content:space-between; gap:2rem; position:relative; overflow:hidden; margin-top:2rem; }
  .svcs-cta-box::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--gold); }
  .svcs-cta-box h3 { font-family:'Bebas Neue',sans-serif; font-size:2.4rem; letter-spacing:0.06em; color:#fff; }
  .svcs-cta-box p { font-size:1rem; color:rgba(255,255,255,0.5); margin-top:0.3rem; line-height:1.6; }
  .svcs-cta-btns { display:flex; gap:0.8rem; flex-shrink:0; }

  /* Services responsive */
  @media (max-width:960px) {
    .svcs-intro { grid-template-columns:1fr; gap:1.5rem; }
    .card-grid { grid-template-columns:1fr; }
    .scard-featured { grid-template-columns:1fr; }
    .scard-featured .scard-img { min-height:240px; }
    .trust { grid-template-columns:1fr 1fr; margin:0 -1.5rem; margin-bottom:4rem; }
    .svcs-cta-box { flex-direction:column; text-align:center; padding:2.5rem 1.5rem; }
    .svc-hero-stats { gap:2rem; }
    .svc-body { padding:3rem 1.5rem; }
    .cat-num { font-size:3.5rem; }
  }
  @media (max-width:600px) {
    .cat-num { display:none; }
    .scard-featured .scard-body h3 { font-size:1.6rem; }
    .svc-hero-stats { flex-wrap:wrap; gap:1.5rem; }
    .svcs-intro h2 { font-size:2rem; }
  }

  /* 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); }

  @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; }
  }
