/* =====================================================================
   Nujum Alkhaleej — Design System
   Plain CSS component layer (works without a Tailwind build step).
   Tailwind utility classes handle layout; this file owns the reusable
   components, base typography, header, footer and floating UI.
   ===================================================================== */

:root {
  --brand-50:#eefaf3; --brand-100:#d4f2e0; --brand-200:#abe4c4;
  --brand-300:#76cfa1; --brand-400:#43b47e; --brand-500:#1f9a64;
  --brand-600:#137a4f; --brand-700:#106243; --brand-800:#0f4e37;
  --brand-900:#0d402f; --brand-950:#06251b;
  --gold-300:#e2c163; --gold-400:#d9ab3c; --gold-500:#c8902a;
  --ink:#0c1a14; --sand:#f6f4ee; --wa:#25D366; --wa-dark:#1ebe57;
  --ring: 0 0 0 4px rgba(31,154,100,.18);
  scroll-behavior: smooth;
}

* { -webkit-tap-highlight-color: transparent; }

html { scroll-padding-top: 92px; }

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip; /* guard against any incidental horizontal overflow (keeps sticky working) */
}

h1,h2,h3,h4,.font-display {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  letter-spacing: -0.02em;
}

::selection { background: var(--brand-500); color:#fff; }

/* Slim, branded scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-thumb { background: var(--brand-300); border-radius: 99px; border:3px solid #fff; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-500); }

img { max-width: 100%; height: auto; }

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  :root { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

/* Skip link (keyboard/screen-reader accessibility) */
.skip-link { position:fixed; left:12px; top:-80px; z-index:100; background:var(--brand-700); color:#fff; font-weight:600; padding:.7rem 1.1rem; border-radius:.6rem; text-decoration:none; box-shadow:0 8px 24px -8px rgba(0,0,0,.5); transition:top .2s ease; }
.skip-link:focus { top:12px; outline:3px solid var(--gold-400); outline-offset:2px; }

/* ------------------------------ Layout ------------------------------ */
.container-x { width:100%; max-width:1600px; margin-inline:auto; padding-inline:1.1rem; }
@media (min-width:640px){ .container-x { padding-inline:1.5rem; } }
@media (min-width:1024px){ .container-x { padding-inline:2.5rem; } }
@media (min-width:1440px){ .container-x { padding-inline:3.5rem; } }
.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.eyebrow {
  display:inline-flex; align-items:center; gap:.5rem;
  font-weight:600; font-size:.8rem; letter-spacing:.12em; text-transform:uppercase;
  color: var(--brand-600);
}
.eyebrow::before { content:""; width:1.75rem; height:2px; background:var(--gold-400); border-radius:2px; }
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight:800; line-height:1.1; }
.text-balance { text-wrap: balance; }

/* ------------------------------ Buttons ----------------------------- */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:.55rem;
  font-weight:600; font-size:.95rem; line-height:1; cursor:pointer;
  padding:.85rem 1.4rem; border-radius:.85rem; border:1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  white-space:nowrap; text-decoration:none;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn:focus-visible { outline:none; box-shadow: var(--ring); }
.btn svg { width:1.15em; height:1.15em; }

.btn-primary { background:var(--brand-600); color:#fff; box-shadow:0 8px 20px -10px rgba(16,98,67,.7); }
.btn-primary:hover { background:var(--brand-700); transform:translateY(-2px); }

.btn-gold { background:var(--gold-400); color:#3a2a05; }
.btn-gold:hover { background:var(--gold-300); transform:translateY(-2px); }

.btn-whatsapp { background:#0a8040; color:#fff; box-shadow:0 8px 20px -10px rgba(10,128,64,.75); }
.btn-whatsapp:hover { background:#08702f; transform:translateY(-2px); color:#fff; }
.btn-whatsapp svg { color:#fff; }

.btn-outline { background:#fff; color:var(--brand-700); border-color:var(--brand-200); }
.btn-outline:hover { border-color:var(--brand-500); background:var(--brand-50); }

.btn-ghost-light { background:rgba(255,255,255,.12); color:#fff; border-color:rgba(255,255,255,.4); backdrop-filter:blur(6px); }
.btn-ghost-light:hover { background:rgba(255,255,255,.22); }

.btn-block { width:100%; }
.btn-lg { padding:1rem 1.7rem; font-size:1.02rem; }

/* ------------------------------ Cards ------------------------------- */
.card {
  background:#fff; border:1px solid #dfe5dd; border-radius:1.25rem;
  box-shadow: 0 2px 8px -2px rgba(12,26,20,.07), 0 14px 34px -20px rgba(12,26,20,.16);
  overflow:hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display:flex; flex-direction:column;
}
.hover-lift:hover { transform: translateY(-6px); box-shadow: 0 18px 50px -18px rgba(12,26,20,.30); border-color:var(--brand-200); }
/* Horizontal card variant (overrides the default column direction) */
.card-row { flex-direction: row; align-items: center; }

/* "Learn more" text link inside a clickable card */
.link-more { display:inline-flex; align-items:center; gap:.35rem; margin-top:.4rem; color:var(--brand-700); font-weight:700; font-size:.9rem; }
.link-more svg { width:1rem; height:1rem; transition:transform .18s ease; }
.card.group:hover .link-more { color:var(--brand-800); }
.card.group:hover .link-more svg { transform:translate(2px,-2px); }

/* Image-topped route card (dark Popular Routes section) */
.route-card { display:flex; flex-direction:column; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.16); border-radius:1.25rem; overflow:hidden; transition:border-color .2s ease, transform .2s ease, background-color .2s ease; }
.route-card:hover { border-color:rgba(255,255,255,.34); background:rgba(255,255,255,.09); transform:translateY(-4px); }
.route-card-media { display:block; aspect-ratio:16/10; overflow:hidden; }
.route-card-media img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.route-card:hover .route-card-media img { transform:scale(1.06); }
.route-card-body { padding:1.4rem; display:flex; flex-direction:column; flex:1; }
.route-card-body > div:last-child { margin-top:auto; padding-top:1.15rem; }

/* "Why choose us" reason rows (solid high-contrast badges, no faded icons) */
.reason { display:flex; gap:.8rem; align-items:flex-start; }
.reason-ic { flex:none; width:2.6rem; height:2.6rem; border-radius:.75rem; background:linear-gradient(135deg,var(--brand-500),var(--brand-700)); color:#fff !important; display:grid; place-items:center; box-shadow:0 6px 16px -8px rgba(16,98,67,.85); }
.reason-ic svg { width:1.3rem; height:1.3rem; color:#fff; stroke:#fff; stroke-width:2.2; }
.reason > div strong { display:block; color:var(--ink); font-weight:700; font-size:.98rem; }
.reason > div span { display:block; color:#46524b; font-size:.86rem; line-height:1.5; margin-top:.1rem; }

.card-media { position:relative; aspect-ratio: 4/3; overflow:hidden; background:var(--brand-50); }
.card-media img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding:1.25rem 1.35rem 1.4rem; display:flex; flex-direction:column; gap:.6rem; flex:1; }

.icon-badge {
  display:inline-flex; align-items:center; justify-content:center;
  width:3rem; height:3rem; border-radius:.9rem;
  background:linear-gradient(135deg,var(--brand-50),var(--brand-100));
  color:var(--brand-700); border:1px solid var(--brand-200);
}
.icon-badge svg { width:1.5rem; height:1.5rem; }

.chip {
  display:inline-flex; align-items:center; gap:.4rem;
  font-size:.78rem; font-weight:600; padding:.3rem .7rem; border-radius:999px;
  background:var(--brand-50); color:var(--brand-700); border:1px solid var(--brand-100);
}
.chip-gold { background:var(--gold-50,#fbf8ee); color:var(--gold-700,#8a521f); border-color:#f0e3b8; }

/* ------------------------------ Forms ------------------------------- */
.field { display:flex; flex-direction:column; gap:.4rem; }
.label { font-size:.82rem; font-weight:600; color:#33433b; }
.label .req { color:#c0392b; }
.input, .select, .textarea {
  width:100%; font-size:1rem; color:var(--ink); background:#fff;
  border:1px solid #d8dcd6; border-radius:.7rem; padding:.7rem .85rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.input::placeholder, .textarea::placeholder { color:#9aa39c; }
.input:focus, .select:focus, .textarea:focus { outline:none; border-color:var(--brand-500); box-shadow: var(--ring); }
.textarea { min-height:7rem; resize:vertical; }
.select { appearance:none; background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23137a4f' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat:no-repeat; background-position:right .8rem center; padding-right:2.4rem; }
.form-note { font-size:.85rem; color:#52605a; }

/* ------------------------------ Header ------------------------------ */
.site-header {
  position:sticky; top:0; z-index:50; width:100%;
  background:rgba(255,255,255,.94); backdrop-filter:saturate(160%) blur(14px);
  border-bottom:1px solid #e7ebe6; transition: box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
}
.site-header.scrolled { background:rgba(255,255,255,.98); box-shadow:0 8px 28px -18px rgba(12,26,20,.45); border-bottom-color:#dfe4de; }
.header-inner { display:flex; align-items:center; justify-content:space-between; gap:1rem; height:72px; }
.brand-logo { display:inline-flex; align-items:center; gap:.65rem; flex:none; font-family:"Plus Jakarta Sans"; font-weight:800; color:var(--ink); text-decoration:none; }
.brand-logo .mark { width:46px; height:46px; border-radius:.75rem; overflow:hidden; flex:none; box-shadow:0 6px 16px -8px rgba(16,98,67,.85); ring:1px solid rgba(0,0,0,.06); }
.brand-logo .mark img { width:100%; height:100%; object-fit:cover; display:block; }
.brand-logo .name { font-size:1.06rem; line-height:1.1; white-space:nowrap; }
.brand-logo .name small { display:block; font-size:.6rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--brand-600); white-space:nowrap; margin-top:1px; }
@media (max-width:480px){ .brand-logo .name small { display:none; } .brand-logo .name { font-size:1rem; } }

.nav-desktop { display:none; align-items:center; gap:.1rem; }
@media (min-width:1280px){ .nav-desktop { display:flex; } }
.nav-link { position:relative; display:inline-flex; align-items:center; gap:.2rem; font-size:.875rem; font-weight:600; color:#1d2a24; padding:.5rem .55rem; border-radius:.6rem; text-decoration:none; white-space:nowrap; transition:color .15s ease, background-color .15s ease; }
.nav-link svg, .nav-link i { flex:none; }
@media (min-width:1180px){ .nav-link { padding:.5rem .72rem; font-size:.9rem; } }
.nav-link:hover { color:var(--brand-700); background:var(--brand-50); }
.nav-link.active { color:var(--brand-700); }
.nav-link.active::after { content:""; position:absolute; left:.8rem; right:.8rem; bottom:.28rem; height:2px; background:var(--gold-400); border-radius:2px; }

/* Dropdown */
.nav-item { position:relative; }
.nav-menu {
  position:absolute; top:calc(100% + 8px); left:0; min-width:280px;
  background:#fff; border:1px solid #ececec; border-radius:1rem; box-shadow:0 20px 50px -20px rgba(12,26,20,.35);
  padding:.5rem; opacity:0; visibility:hidden; transform:translateY(8px); transition:.18s ease; z-index:60;
}
.nav-item:hover .nav-menu, .nav-item:focus-within .nav-menu { opacity:1; visibility:visible; transform:translateY(0); }
.nav-menu a { display:flex; gap:.7rem; align-items:flex-start; padding:.6rem .7rem; border-radius:.6rem; text-decoration:none; color:#2c3a33; transition:background-color .12s ease; }
.nav-menu a:hover { background:var(--brand-50); }
.nav-menu a strong { display:block; font-size:.9rem; font-weight:600; color:var(--ink); }
.nav-menu a span { font-size:.78rem; color:#6b766f; }
.nav-menu .col2 { display:grid; grid-template-columns:1fr 1fr; min-width:480px; }

.menu-toggle { display:inline-flex; width:44px; height:44px; padding:0 !important; align-items:center; justify-content:center; }
@media (min-width:1280px){ .menu-toggle { display:none; } }
/* Reduce tap delay / double-tap zoom on controls (keeps pinch-zoom) */
a, button, .btn, input, select, textarea, [role="button"], summary { touch-action: manipulation; }

/* Mobile drawer */
.mobile-drawer { position:fixed; inset:0; z-index:70; visibility:hidden; overflow:hidden; }
.mobile-drawer.open { visibility:visible; }
.mobile-drawer .scrim { position:absolute; inset:0; background:rgba(8,18,13,.5); opacity:0; transition:opacity .25s ease; }
.mobile-drawer.open .scrim { opacity:1; }
.mobile-panel { position:absolute; top:0; right:0; height:100%; width:min(88%,360px); background:#fff; box-shadow:-20px 0 60px -20px rgba(0,0,0,.4); transform:translateX(100%); transition:transform .28s cubic-bezier(.4,0,.2,1); display:flex; flex-direction:column; overflow-y:auto; }
.mobile-drawer.open .mobile-panel { transform:translateX(0); }
.mobile-panel .m-head { display:flex; align-items:center; justify-content:space-between; padding:1rem 1.1rem; border-bottom:1px solid #eee; }
.mobile-panel .m-head .btn { width:44px; height:44px; padding:0 !important; align-items:center; justify-content:center; }
.mobile-panel nav { padding:.6rem; display:flex; flex-direction:column; }
.m-link { padding:.85rem .9rem; border-radius:.7rem; color:#26332c; font-weight:500; text-decoration:none; display:flex; justify-content:space-between; align-items:center; }
.m-link:hover, .m-link.active { background:var(--brand-50); color:var(--brand-700); }
.m-group-title { font-size:.72rem; text-transform:uppercase; letter-spacing:.1em; color:#9aa39c; padding:.9rem .9rem .3rem; font-weight:700; }
.m-sub { padding:.6rem .9rem; border-radius:.6rem; color:#3c4a42; text-decoration:none; font-size:.9rem; }
.m-sub:hover { background:var(--brand-50); color:var(--brand-700); }

/* ------------------------------ Hero -------------------------------- */
.hero-overlay { position:absolute; inset:0; background:
  linear-gradient(180deg, rgba(6,37,27,.55) 0%, rgba(6,37,27,.35) 40%, rgba(6,37,27,.82) 100%),
  linear-gradient(90deg, rgba(6,37,27,.65) 0%, rgba(6,37,27,.25) 55%, rgba(6,37,27,0) 100%); }
.hero-pattern { position:absolute; inset:0; opacity:.10; background-image:radial-gradient(circle at 1px 1px, #fff 1px, transparent 0); background-size:26px 26px; }

/* ---- Premium top utility bar (above the sticky nav) ---- */
.topbar { background:linear-gradient(90deg,var(--brand-950),var(--brand-900)); color:#cfe3d7; font-size:.8rem; overflow:hidden; max-width:100%; }
.topbar-inner { display:none; align-items:center; justify-content:space-between; min-height:40px; }
@media (min-width:768px){ .topbar-inner { display:flex; } }
.tb-left { display:flex; align-items:center; gap:.5rem; color:#bcd6c7; }
.tb-left svg { width:15px; height:15px; color:var(--gold-400); }
.tb-right { display:flex; align-items:center; gap:1rem; }
.tb-rate { display:flex; align-items:center; gap:.45rem; color:#e7f3ec; font-weight:500; }
.tb-stars { display:inline-flex; gap:1px; color:var(--gold-400); }
.tb-stars svg { width:14px; height:14px; fill:currentColor; stroke:currentColor; }
.tb-sep { width:1px; height:16px; background:rgba(255,255,255,.2); }
.tb-phone { display:inline-flex; align-items:center; gap:.4rem; color:#fff !important; font-weight:700; letter-spacing:.01em; }
.tb-phone svg { width:15px; height:15px; color:var(--gold-400); }
.tb-phone:hover { color:var(--gold-300) !important; }

/* Mobile marquee top bar (left-to-right, reduced-motion safe) */
.topbar-marquee { display:none; overflow:hidden; }
@media (max-width:767px){ .topbar-marquee { display:block; } }
.tb-track { display:flex; width:max-content; align-items:center; animation: tb-marquee 28s linear infinite; will-change:transform; }
.tbm-set { display:inline-flex; align-items:center; }
.tbm-item { display:inline-flex; align-items:center; gap:.4rem; padding:.55rem .9rem; font-size:.8rem; color:#dbeee4; white-space:nowrap; }
.tbm-item svg { width:14px; height:14px; color:var(--gold-400); }
.tbm-item .tb-stars { gap:1px; }
.tbm-item .tb-stars svg { width:12px; height:12px; }
.tbm-dot { color:var(--gold-400); font-size:.55rem; opacity:.8; }
@keyframes tb-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .tb-track { animation:none; transform:translateX(0); } }

/* Branded section divider (between light sections) */
.sec-divider { display:flex; align-items:center; justify-content:center; gap:1rem; padding:1.25rem 1rem; }
.sec-divider .sd-line { height:1px; width:min(110px,16vw); background:linear-gradient(90deg, transparent, rgba(201,144,42,.55)); }
.sec-divider .sd-line:last-child { background:linear-gradient(90deg, rgba(201,144,42,.55), transparent); }
.sec-divider .sd-star { color:var(--gold-400); display:inline-flex; }
.sec-divider .sd-star svg { width:18px; height:18px; }

/* ---- Signature: brand starfield ("Nujum Alkhaleej" = Stars of the Gulf) ---- */
.starfield { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.starfield::before, .starfield::after { content:""; position:absolute; inset:-10%; }
.starfield::before {
  background-image:
    radial-gradient(1.6px 1.6px at 62% 18%, rgba(255,255,255,.95), transparent 60%),
    radial-gradient(2px 2px at 78% 30%, rgba(226,193,99,.95), transparent 60%),
    radial-gradient(1.3px 1.3px at 88% 14%, rgba(255,255,255,.85), transparent 60%),
    radial-gradient(1.5px 1.5px at 70% 52%, rgba(255,255,255,.75), transparent 60%),
    radial-gradient(2.2px 2.2px at 92% 44%, rgba(226,193,99,.9), transparent 60%),
    radial-gradient(1.3px 1.3px at 58% 70%, rgba(255,255,255,.7), transparent 60%),
    radial-gradient(1.6px 1.6px at 84% 66%, rgba(255,255,255,.8), transparent 60%),
    radial-gradient(1.2px 1.2px at 96% 24%, rgba(255,255,255,.7), transparent 60%),
    radial-gradient(2px 2px at 66% 86%, rgba(226,193,99,.8), transparent 60%),
    radial-gradient(1.4px 1.4px at 50% 30%, rgba(255,255,255,.6), transparent 60%);
  opacity:.9;
}
/* a few twinkling sparkles */
.starfield::after {
  background-image:
    radial-gradient(2.6px 2.6px at 80% 22%, rgba(255,255,255,.95), transparent 55%),
    radial-gradient(2.6px 2.6px at 90% 60%, rgba(226,193,99,.95), transparent 55%);
  animation: twinkle 3.6s ease-in-out infinite;
}
@keyframes twinkle { 0%,100%{ opacity:.25 } 50%{ opacity:.95 } }
@media (prefers-reduced-motion: reduce){ .starfield::after { animation:none; opacity:.7; } }

/* Hero headline legibility + gold accent */
.hero-h1 { text-shadow: 0 2px 30px rgba(4,20,13,.35); }
.hero-h1 .accent { color:var(--gold-300); }

/* Hero stats: gold top accent + dividers */
.stats-bar { border-top:2px solid var(--gold-400) !important; }

/* Hero inline booking form card */
.hero-form-card { background:#fff; border-radius:1.3rem; overflow:hidden; box-shadow:0 30px 70px -25px rgba(0,0,0,.6); border:1px solid rgba(255,255,255,.35); }
.hero-form-head { background:linear-gradient(135deg,var(--brand-700),var(--brand-900)); color:#fff; padding:1.05rem 1.4rem; position:relative; }
.hero-form-head::before { content:""; position:absolute; left:0; top:0; bottom:0; width:4px; background:var(--gold-400); }
.hero-form-head h2 { font-weight:800; font-size:1.3rem; letter-spacing:-.01em; }
.hero-form-head p { font-size:.83rem; color:#cfe7da; margin-top:.2rem; line-height:1.4; }
.hero-form-card form { padding:1.25rem 1.35rem 1.35rem; }
.hero-form-card .label { font-size:.78rem; }
.hero-form-card .input, .hero-form-card .select { padding:.6rem .75rem; }

/* "How it works" numbered step cards */
.step-card { background:#fff; border:1px solid #dfe5dd; border-radius:1.1rem; padding:1.5rem; box-shadow:0 2px 8px -2px rgba(12,26,20,.06), 0 14px 30px -22px rgba(12,26,20,.18); transition:transform .2s ease, box-shadow .2s ease; }
.step-card:hover { transform:translateY(-4px); box-shadow:0 18px 44px -18px rgba(12,26,20,.28); }
.step-num { display:inline-grid; place-items:center; width:2.7rem; height:2.7rem; border-radius:.8rem; background:linear-gradient(135deg,var(--brand-500),var(--brand-700)); color:#fff; font-family:"Plus Jakarta Sans"; font-weight:800; font-size:1.15rem; box-shadow:0 6px 16px -8px rgba(16,98,67,.85); }

/* Page hero (inner pages) */
.page-hero { position:relative; overflow:hidden; background:linear-gradient(135deg,var(--brand-800),var(--brand-950)); color:#fff; }
.page-hero .hero-pattern { opacity:.12; }

/* Breadcrumb */
.crumbs { display:flex; flex-wrap:wrap; gap:.4rem; align-items:center; font-size:.85rem; }
.crumbs a { color:rgba(255,255,255,.8); text-decoration:none; }
.crumbs a:hover { color:#fff; text-decoration:underline; }
.crumbs span { color:rgba(255,255,255,.55); }

/* ------------------------------ Footer ------------------------------ */
.site-footer { background:var(--brand-950); color:#cfe3d7; border-top:4px solid var(--gold-400); }
/* defensive: keep inline contact icons small (not the CTA button icons) */
.site-footer a:not(.btn) svg, .site-footer p svg { width:18px !important; height:18px !important; flex:none; }
.footer-cta { background:linear-gradient(120deg,var(--brand-800),var(--brand-900)); border-bottom:1px solid rgba(255,255,255,.08); }
/* link colour only for real links, never the CTA buttons */
.site-footer a:not(.btn) { color:#bcd6c7; text-decoration:none; transition:color .12s ease; }
.site-footer a:not(.btn):hover { color:#fff; }
.site-footer .footer-cta .btn { white-space:nowrap; }
.footer-title { color:#fff; font-weight:700; font-size:.95rem; margin-bottom:1.1rem; padding-bottom:.55rem; position:relative; font-family:"Plus Jakarta Sans"; }
.footer-title::after { content:""; position:absolute; left:0; bottom:0; width:1.7rem; height:2px; background:var(--gold-400); border-radius:2px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); }
/* Quick-contact strip */
.footer-contact { border-bottom:1px solid rgba(255,255,255,.1); }
.footer-contact > .container-x { padding-top:1.6rem; padding-bottom:1.6rem; }
.fcontact { display:flex; align-items:center; gap:.85rem; min-width:0; padding:.8rem 1rem; border:1px solid rgba(255,255,255,.12); border-radius:1rem; background:rgba(255,255,255,.04); transition:background-color .18s ease, border-color .18s ease, transform .18s ease; }
.fcontact:hover { background:rgba(255,255,255,.09); border-color:rgba(255,255,255,.28); transform:translateY(-2px); }
.fcontact-ic { flex:none; width:2.7rem; height:2.7rem; border-radius:.7rem; background:#0c8a45; color:#fff !important; display:grid; place-items:center; }
.fcontact-ic svg { width:1.3rem !important; height:1.3rem !important; color:#fff; }
.fcontact-tx { min-width:0; }
.fcontact-tx small { display:block; color:#9fc3ad; font-size:.72rem; text-transform:uppercase; letter-spacing:.07em; }
.fcontact-tx strong { display:block; color:#fff; font-size:.93rem; overflow-wrap:anywhere; }
/* Bottom bar: copyright + legal row, then centered credit */
.footer-bottom-inner { display:flex; flex-direction:column; gap:.85rem; align-items:center; text-align:center; padding-top:1.5rem; padding-bottom:1.5rem; }
.fb-row { display:flex; flex-direction:column; gap:.55rem; align-items:center; width:100%; }
.footer-bottom-inner p { font-size:.82rem; color:#9fbfac; margin:0; }
.footer-legal { display:flex; gap:1.1rem; font-size:.82rem; flex-wrap:wrap; justify-content:center; }
.footer-credit { width:100%; text-align:center; }
.footer-credit a { color:var(--gold-300) !important; font-weight:700; }
.footer-credit a:hover { color:#fff !important; }
@media (min-width:860px){ .fb-row { flex-direction:row; justify-content:space-between; text-align:left; padding-right:4.5rem; } }

/* --------------------------- Floating UI ---------------------------- */
.fab-wrap { position:fixed; right:18px; bottom:18px; z-index:60; display:flex; flex-direction:column; gap:.7rem; align-items:flex-end; }
.fab {
  width:56px; height:56px; border-radius:50%; display:grid; place-items:center;
  color:#fff; box-shadow:0 12px 30px -8px rgba(0,0,0,.4); cursor:pointer; border:none; text-decoration:none;
  transition: transform .18s ease, box-shadow .18s ease, opacity .25s ease;
}
.fab:hover { transform:scale(1.08); }
.fab-wa { background:var(--wa); }
.fab-wa svg { width:30px; height:30px; }
.fab-wa::after { content:""; position:absolute; inset:0; border-radius:50%; box-shadow:0 0 0 0 rgba(37,211,102,.55); animation:wa-pulse 2.4s infinite; }
@keyframes wa-pulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5);} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }
.fab-top { background:var(--brand-700); width:46px; height:46px; opacity:0; pointer-events:none; }
.fab-top.show { opacity:1; pointer-events:auto; }
.fab-top svg { width:22px; height:22px; }
.fab-wa-label { position:absolute; right:64px; white-space:nowrap; background:#fff; color:var(--ink); font-size:.82rem; font-weight:600; padding:.4rem .7rem; border-radius:.6rem; box-shadow:0 8px 20px -10px rgba(0,0,0,.4); opacity:0; transform:translateX(8px); transition:.2s ease; pointer-events:none; }
.fab-wa-btn { position:relative; }
.fab-wa-btn:hover .fab-wa-label { opacity:1; transform:translateX(0); }

/* ------------------------- Misc components -------------------------- */
.feature-row { display:flex; gap:.85rem; align-items:flex-start; }
.feature-row .tick { flex:none; width:1.6rem; height:1.6rem; border-radius:50%; display:grid; place-items:center; background:var(--brand-50); color:var(--brand-600); border:1px solid var(--brand-200); }
.feature-row .tick svg { width:1rem; height:1rem; }

.stat { text-align:center; }
.stat .num { font-family:"Plus Jakarta Sans"; font-weight:800; font-size:clamp(1.8rem,4vw,2.6rem); line-height:1; }

.divider-wave { display:block; width:100%; height:auto; }

.accordion-item { border:1px solid #ececec; border-radius:1rem; overflow:hidden; background:#fff; transition:box-shadow .2s ease; }
.accordion-item + .accordion-item { margin-top:.8rem; }
.accordion-item.open { box-shadow:0 12px 30px -18px rgba(12,26,20,.2); border-color:var(--brand-200); }
.accordion-head { width:100%; text-align:left; display:flex; justify-content:space-between; align-items:center; gap:1rem; padding:1.1rem 1.25rem; font-weight:600; color:var(--ink); cursor:pointer; background:none; border:none; font-size:1rem; }
.accordion-head .ico { flex:none; transition:transform .25s ease; color:var(--brand-600); }
.accordion-item.open .accordion-head .ico { transform:rotate(45deg); }
.accordion-body { max-height:0; overflow:hidden; transition:max-height .3s ease; }
.accordion-body .inner { padding:0 1.25rem 1.2rem; color:#52605a; line-height:1.7; }

/* Testimonials */
.review-card { background:#fff; border:1px solid #eceae3; border-radius:1.25rem; padding:1.6rem; height:100%; display:flex; flex-direction:column; gap:1rem; }
.stars { display:inline-flex; gap:2px; color:var(--gold-400); }
.stars svg { width:1.05rem; height:1.05rem; fill:currentColor; }

/* Legal / prose */
.prose-legal { color:#3a463f; line-height:1.8; }
.prose-legal h2 { font-size:1.3rem; font-weight:800; margin:2rem 0 .6rem; color:var(--ink); }
.prose-legal h3 { font-size:1.05rem; font-weight:700; margin:1.4rem 0 .4rem; color:var(--ink); }
.prose-legal p { margin:.7rem 0; }
.prose-legal ul { margin:.6rem 0 .6rem 1.2rem; list-style:disc; }
.prose-legal li { margin:.35rem 0; }
.prose-legal a:not(.btn) { color:var(--brand-700); text-decoration:underline; }

/* Image placeholder shimmer (before load) */
.img-skeleton { background:linear-gradient(100deg,#eef1ee 30%,#f7f9f7 50%,#eef1ee 70%); background-size:200% 100%; animation: imgshimmer 1.3s infinite; }
@keyframes imgshimmer { to { background-position:-200% 0; } }

/* Gallery */
.gallery-grid { columns: 1; gap:1rem; }
@media (min-width:640px){ .gallery-grid { columns:2; } }
@media (min-width:1024px){ .gallery-grid { columns:3; } }
.gallery-grid > a { display:block; margin-bottom:1rem; break-inside:avoid; border-radius:1rem; overflow:hidden; position:relative; }
.gallery-grid img { width:100%; display:block; transition:transform .4s ease; }
.gallery-grid > a:hover img { transform:scale(1.05); }

/* AOS-lite fallback (in case CDN blocked) */
[data-aos]{ } /* AOS library handles when present */

/* ---------------------- High-contrast overrides --------------------- */
/* Darken common body/secondary text for stronger contrast (WCAG AA+). */
.text-slate-600 { color:#3a463f !important; }
.text-slate-500 { color:#4a564f !important; }
.text-slate-700 { color:#2a342e !important; }
/* Stronger outline button border for definition */
.btn-outline { border-width:1.5px; }
/* Gold eyebrow accent line a touch bolder */
.eyebrow::before { height:3px; }
/* Ensure focus states are clearly visible (accessibility) */
a:focus-visible, button:focus-visible, summary:focus-visible { outline:3px solid var(--brand-500); outline-offset:2px; border-radius:.3rem; }
/* Slightly heavier card titles */
.card h3 { letter-spacing:-.01em; }

/* ---- Section-QA fixes ---- */
/* Swiper pagination uses brand colours (was default iOS blue) */
.swiper-pagination-bullet { background:var(--brand-300); opacity:.6; }
.swiper-pagination-bullet-active { background:var(--brand-600); opacity:1; }
/* Brand-tint native date/time picker indicator */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator { filter: invert(28%) sepia(35%) saturate(900%) hue-rotate(110deg); cursor:pointer; }
/* Mobile: smaller floating buttons + keep them clear of content */
@media (max-width:480px){
  .fab-wrap { right:12px; bottom:12px; gap:.55rem; }
  .fab { width:50px; height:50px; }
  .fab-wa svg { width:26px; height:26px; }
  .fab-top { width:44px; height:44px; }
  .site-footer .footer-bottom { padding-bottom:4.5rem; } /* clear the FAB cluster */
}
/* Tighter feature-row icon→text gap on small screens */
@media (max-width:480px){ .feature-row { gap:.7rem; } }
