/* =========================================================================
   Shaleen Global — Business, Immigration & Quality Solutions
   Bespoke stylesheet. Mobile-first, accessible, no framework.
   Palette sampled from brand logo (royal blue + leaf green + deep navy).
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  --blue:        #0E63B3;   /* primary brand blue */
  --blue-600:    #0B5499;
  --blue-700:    #094680;
  --blue-50:     #EAF2FB;
  --blue-100:    #D6E6F6;
  --navy:        #0B2440;   /* headings, header, footer */
  --navy-soft:   #15314f;
  --green:       #34A853;   /* accent / success */
  --green-600:   #2A8B45;
  --green-50:    #E9F6EE;
  --wa:          #25D366;   /* WhatsApp */
  --wa-600:      #1EB457;

  --ink:         #1B2A3A;   /* body text */
  --ink-soft:    #4A5D70;   /* muted text */
  --line:        #E2E8F0;   /* borders */
  --bg:          #FFFFFF;
  --bg-soft:     #F5F8FC;   /* alt section */
  --bg-tint:     #EDF4FB;
  --white:       #FFFFFF;

  --shadow-sm: 0 1px 2px rgba(11,36,64,.06), 0 1px 3px rgba(11,36,64,.08);
  --shadow:    0 6px 18px rgba(11,36,64,.08), 0 2px 6px rgba(11,36,64,.06);
  --shadow-lg: 0 18px 50px rgba(11,36,64,.16), 0 6px 16px rgba(11,36,64,.08);

  --radius:   14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --maxw: 1180px;
  --gut: clamp(1.1rem, 4vw, 2.2rem);

  --ff-head: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --header-h: 74px;
  --t: .25s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 14px); }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--blue-700); }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font: inherit; color: inherit; }
h1,h2,h3,h4 { font-family: var(--ff-head); color: var(--navy); line-height: 1.15; font-weight: 700; letter-spacing: -.02em; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(3.4rem, 8vw, 6.2rem); }
.section--tint { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #cfe0f0; }
.section--navy h2, .section--navy h3 { color: #fff; }
.narrow { max-width: 760px; }
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.6rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--ff-head); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--blue);
  background: var(--blue-50); padding: .4rem .85rem; border-radius: var(--radius-pill);
}
.eyebrow--light { color: #bfe9cf; background: rgba(52,168,83,.16); }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.55rem); margin-top: .8rem; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; margin-top: .9rem; }

/* ---------- Typographic scale ---------- */
h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.45rem); }
p { color: var(--ink); }
.lead { font-size: clamp(1.1rem, 2vw, 1.28rem); color: var(--ink-soft); line-height: 1.6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--ff-head); font-weight: 700; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: var(--radius-pill);
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap; cursor: pointer; line-height: 1;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(14,99,179,.28); }
.btn--primary:hover { background: var(--blue-700); color:#fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(14,99,179,.34); }
.btn--wa { background: var(--wa); color: #06351a; box-shadow: 0 8px 20px rgba(37,211,102,.3); }
.btn--wa:hover { background: var(--wa-600); color:#fff; transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--navy); box-shadow: inset 0 0 0 2px var(--line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.12); color:#fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.4); }
.btn--light:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }
.btn--lg { padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t), border-color var(--t), background var(--t);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; gap: 1.2rem; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; margin-right: auto; }
.brand img { height: 42px; width: auto; }
.brand__text { font-family: var(--ff-head); font-weight: 800; color: var(--navy); font-size: 1.18rem; letter-spacing: -.02em; line-height: 1; }
.brand__text span { display:block; font-size: .58rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--green-600); margin-top: 3px; }

.nav-menu { display: flex; align-items: center; gap: .15rem; }
.nav-menu > li { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-family: var(--ff-head); font-weight: 600; font-size: .97rem; color: var(--navy);
  padding: .6rem .8rem; border-radius: var(--radius-sm); transition: background var(--t), color var(--t);
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--blue); background: var(--blue-50); }
.nav-link .chev { width: 14px; height: 14px; transition: transform var(--t); }
.has-sub:hover .chev, .has-sub.open .chev { transform: rotate(180deg); }
.nav-trigger { cursor: default; }   /* Services is a label/toggle, not a link */

/* dropdown */
.sub {
  position: absolute; top: calc(100% + 8px); right: 0; left: auto;
  display: grid; grid-template-columns: repeat(2, minmax(232px, 1fr)); gap: 2px;
  width: 532px; max-width: 94vw; max-height: calc(100vh - 96px); overflow-y: auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: .5rem; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: opacity var(--t), visibility var(--t), transform var(--t); z-index: 20;
}
.sub a:first-child { grid-column: 1 / -1; }   /* "All Services" overview link spans full width */
.sub a.sub__all { background: var(--blue-50); }
.sub a.sub__all:hover { background: var(--blue-100); }
.has-sub:hover .sub, .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: translateY(0); }
.sub a { display: flex; gap: .7rem; align-items: flex-start; padding: .6rem .7rem; border-radius: var(--radius-sm); color: var(--navy); }
.sub a:hover { background: var(--blue-50); }
.sub a .ic { flex-shrink: 0; width: 30px; height: 30px; display:grid; place-items:center; border-radius: 8px; background: var(--blue-50); color: var(--blue); }
.sub a .ic svg { width: 17px; height: 17px; }
.sub a strong { display: block; font-family: var(--ff-head); font-size: .92rem; font-weight: 700; }
.sub a small { color: var(--ink-soft); font-size: .8rem; line-height: 1.35; }

.nav-cta { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.nav-menu__book { display: none; }   /* only shown inside the mobile drawer */
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: var(--blue-50); }
.nav-toggle span { width: 22px; height: 2.4px; background: var(--navy); border-radius: 2px; transition: var(--t); }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(160deg, #0B2440 0%, #0E3E72 52%, #0E63B3 100%); color: #eaf2fb; }
.hero::before { /* subtle globe/grid texture */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 480px at 82% -8%, rgba(52,168,83,.30), transparent 60%),
    radial-gradient(700px 420px at 8% 110%, rgba(14,99,179,.55), transparent 60%);
  opacity: .9;
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem,5vw,4rem); align-items: center; padding-block: clamp(3rem, 7vw, 5.6rem); }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5.2vw, 3.55rem); }
.hero h1 .hl { color: #8fe3a9; }
.hero p { color: #cfe0f0; font-size: clamp(1.05rem, 2vw, 1.25rem); margin-top: 1.1rem; max-width: 38ch; }
.hero .btn-row { margin-top: 1.8rem; }
.hero__trust { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1.1rem 1.8rem; }
.hero__trust div { display: flex; align-items: center; gap: .5rem; font-size: .92rem; color: #d6e6f6; }
.hero__trust svg { width: 20px; height: 20px; color: #8fe3a9; flex-shrink: 0; }

.hero__card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg); padding: 1.6rem; backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}
.hero__card h3 { color: #fff; font-size: 1.15rem; }
.hero__card .mini { display: flex; gap: .8rem; align-items: flex-start; padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.hero__card .mini:last-child { border-bottom: 0; }
.hero__card .mini .ic { width: 40px; height: 40px; flex-shrink: 0; border-radius: 11px; display:grid; place-items:center; background: rgba(52,168,83,.2); color: #8fe3a9; }
.hero__card .mini .ic svg { width: 21px; height: 21px; }
.hero__card .mini strong { color: #fff; font-family: var(--ff-head); font-size: .98rem; display:block; }
.hero__card .mini small { color: #b9cee4; font-size: .84rem; }

/* page hero (inner) */
.pagehero { background: linear-gradient(160deg, #0B2440 0%, #0E3E72 100%); color: #eaf2fb; position: relative; overflow: hidden; }
.pagehero::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 360px at 88% -20%, rgba(52,168,83,.28), transparent 60%); }
.pagehero__inner { position: relative; padding-block: clamp(2.4rem, 6vw, 4rem); max-width: 820px; }
.pagehero h1 { color: #fff; margin-top: .7rem; }
.pagehero p { color: #cfe0f0; margin-top: .8rem; font-size: 1.12rem; max-width: 60ch; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .86rem; color: #9fc0e0; }
.breadcrumb a { color: #cfe0f0; } .breadcrumb a:hover { color:#fff; }
.breadcrumb span { color: #7fa6cf; }

/* ---------- Cards / grids ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: clamp(1rem,2.4vw,1.6rem); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-100); }
.card__ic { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: var(--blue-50); color: var(--blue); margin-bottom: 1.1rem; }
.card__ic svg { width: 26px; height: 26px; }
.card--green .card__ic { background: var(--green-50); color: var(--green-600); }
.card h3 { font-size: 1.18rem; }
.card p { color: var(--ink-soft); margin-top: .55rem; font-size: .97rem; flex-grow: 1; }
.card__link { margin-top: 1rem; font-family: var(--ff-head); font-weight: 700; font-size: .92rem; color: var(--blue); display: inline-flex; align-items: center; gap: .35rem; }
.card__link svg { width: 16px; height: 16px; transition: transform var(--t); }
.card:hover .card__link svg { transform: translateX(3px); }

/* feature list */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: clamp(1.2rem,3vw,2rem); }
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature .ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; display:grid; place-items:center; background: var(--green-50); color: var(--green-600); }
.feature .ic svg { width: 23px; height: 23px; }
.feature h3 { font-size: 1.08rem; }
.feature p { color: var(--ink-soft); font-size: .95rem; margin-top: .3rem; }

/* process steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: clamp(1.2rem,3vw,1.8rem); }
.step { position: relative; padding-top: .5rem; }
.step__n { width: 48px; height: 48px; border-radius: 50%; background: var(--blue); color:#fff; font-family: var(--ff-head); font-weight: 800; font-size: 1.2rem; display:grid; place-items:center; margin-bottom: 1rem; box-shadow: 0 8px 18px rgba(14,99,179,.28); }
.step h3 { font-size: 1.1rem; }
.step p { color: var(--ink-soft); font-size: .95rem; margin-top: .35rem; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 1.4rem; }
.stat { text-align: center; padding: 1.4rem 1rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); }
.stat strong { display: block; font-family: var(--ff-head); font-weight: 800; font-size: clamp(1.9rem,4vw,2.6rem); color: #fff; line-height: 1; }
.stat span { color: #bcd3ea; font-size: .92rem; margin-top: .5rem; display: block; }

/* check list */
.checks { display: grid; gap: .7rem; }
.checks li { display: flex; gap: .65rem; align-items: flex-start; }
.checks li svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--green); margin-top: 2px; }
.checks li b { font-family: var(--ff-head); }

/* split media */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem,4vw,3.4rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--bg-tint); }

/* prose (legal + rich text) */
.prose { max-width: 820px; }
.prose h2 { font-size: clamp(1.35rem,3vw,1.7rem); margin-top: 2.4rem; }
.prose h3 { margin-top: 1.6rem; font-size: 1.18rem; }
.prose p, .prose li { color: var(--ink); margin-top: .9rem; }
.prose ul { margin-top: .8rem; display: grid; gap: .5rem; }
.prose ul li { position: relative; padding-left: 1.4rem; }
.prose ul li::before { content:""; position:absolute; left: 0; top: .65em; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.prose a { text-decoration: underline; }
.prose .meta { color: var(--ink-soft); font-size: .92rem; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-700) 100%); color:#fff; border-radius: var(--radius-lg); padding: clamp(2rem,5vw,3.4rem); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(500px 300px at 85% -30%, rgba(52,168,83,.4), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color:#fff; font-size: clamp(1.6rem,3.6vw,2.3rem); }
.cta-band p { color:#dbe9f8; margin-top: .8rem; max-width: 56ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 1.6rem; }

/* FAQ accordion */
.faq { display: grid; gap: .8rem; max-width: 840px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow var(--t), border-color var(--t); }
.faq details[open] { box-shadow: var(--shadow); border-color: var(--blue-100); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.15rem 1.3rem; font-family: var(--ff-head); font-weight: 700; color: var(--navy); font-size: 1.04rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--blue-50); color: var(--blue); display:grid; place-items:center; transition: var(--t); }
.faq details[open] summary .pm { background: var(--blue); color:#fff; transform: rotate(45deg); }
.faq .faq__a { padding: 0 1.3rem 1.25rem; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem,4vw,3rem); align-items: start; }
.field { display: grid; gap: .4rem; margin-bottom: 1rem; }
.field label { font-family: var(--ff-head); font-weight: 600; font-size: .9rem; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; transition: border-color var(--t), box-shadow var(--t); font-size: 1rem;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-50); outline: none; }
.field textarea { min-height: 130px; resize: vertical; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .84rem; color: var(--ink-soft); margin-top: .4rem; }
.form-card { background:#fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem,3vw,2rem); box-shadow: var(--shadow); }
.form-status { display:none; padding: .9rem 1rem; border-radius: var(--radius-sm); margin-bottom: 1rem; font-size: .95rem; }
.form-status.ok { display:block; background: var(--green-50); color: var(--green-600); border: 1px solid #bfe6cd; }
.form-status.err { display:block; background:#fdecec; color:#c0392b; border:1px solid #f6c9c9; }

.info-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.4rem; }
.info-row { display: flex; gap: .9rem; align-items: flex-start; padding: .75rem 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row .ic { flex-shrink:0; width: 44px; height: 44px; border-radius: 12px; background: var(--blue-50); color: var(--blue); display:grid; place-items:center; }
.info-row .ic svg { width: 21px; height: 21px; }
.info-row strong { font-family: var(--ff-head); color: var(--navy); display:block; font-size: .95rem; }
.info-row a, .info-row span { color: var(--ink-soft); font-size: .96rem; }
.info-row a:hover { color: var(--blue); }

/* video (About page feature) */
.video-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: #000; max-width: 880px; margin-inline: auto; }
.video-wrap video { width: 100%; height: auto; display: block; }
.video-wrap iframe { width: 100%; aspect-ratio: 16 / 9; height: auto; border: 0; display: block; }
.video-credit { margin: 1rem auto 0; color: var(--ink-soft); font-size: .92rem; display: flex; align-items: center; justify-content: center; gap: .45rem; text-align: center; }
.video-credit svg { width: 17px; height: 17px; color: var(--blue); }
.video-credit a { font-weight: 600; }

/* map */
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-embed iframe { display:block; width: 100%; height: 320px; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #aebfd4; padding-top: clamp(3rem,6vw,4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(1.6rem,4vw,2.6rem); padding-bottom: 2.6rem; }
.footer-brand img { height: 40px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { color: #93a8c2; font-size: .95rem; max-width: 34ch; }
.footer-soc { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer-soc a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display:grid; place-items:center; color:#cfe0f0; transition: var(--t); }
.footer-soc a:hover { background: var(--blue); color:#fff; transform: translateY(-2px); }
.footer-soc svg { width: 19px; height: 19px; }
.footer-col h4 { color:#fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .55rem; }
.footer-col a { color: #aebfd4; font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display:flex; gap:.6rem; align-items:flex-start; font-size:.93rem; color:#aebfd4; margin-bottom:.6rem; }
.footer-contact svg { width:18px; height:18px; color:#8fe3a9; flex-shrink:0; margin-top:2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.4rem; display:flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; align-items:center; font-size: .86rem; color: #8298b4; }
.footer-bottom nav { display:flex; flex-wrap:wrap; gap: .4rem 1.2rem; }
.footer-bottom a { color:#8298b4; } .footer-bottom a:hover { color:#fff; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 900; width: 60px; height: 60px; border-radius: 50%; background: var(--wa); color:#fff; display:grid; place-items:center; box-shadow: 0 10px 26px rgba(37,211,102,.5); transition: transform var(--t), box-shadow var(--t); animation: waPulse 2.6s infinite; }
.wa-float:hover { transform: scale(1.08); color:#fff; }
.wa-float svg { width: 32px; height: 32px; }
@keyframes waPulse { 0%{ box-shadow: 0 10px 26px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.5);} 70%{ box-shadow: 0 10px 26px rgba(37,211,102,.5), 0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow:0 10px 26px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0);} }

/* ---------- Cookie consent ---------- */
.cookie {
  position: fixed; left: 50%; transform: translateX(-50%) translateY(140%);
  bottom: 16px; z-index: 1100; width: min(760px, calc(100% - 24px));
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 1.1rem 1.3rem;
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.cookie.show { transform: translateX(-50%) translateY(0); }
.cookie p { font-size: .92rem; color: var(--ink-soft); flex: 1 1 320px; margin: 0; }
.cookie p strong { color: var(--navy); }
.cookie .cookie-act { display:flex; gap:.6rem; flex-wrap: wrap; }
.cookie .btn { padding: .65rem 1.15rem; font-size: .92rem; }

/* ---------- Utilities / misc ---------- */
.tag-strip { display:flex; flex-wrap:wrap; gap:.55rem; }
.tag { font-family: var(--ff-head); font-weight:600; font-size:.85rem; color: var(--blue-700); background: var(--blue-50); padding:.4rem .8rem; border-radius: var(--radius-pill); }
.note-band { background: var(--green-50); border: 1px solid #bfe6cd; border-radius: var(--radius); padding: 1.1rem 1.3rem; display:flex; gap:.8rem; align-items:flex-start; }
.note-band svg { color: var(--green-600); width: 22px; height:22px; flex-shrink:0; margin-top:2px; }
.note-band p { color: var(--ink); font-size: .96rem; margin:0; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
hr.rule { border:0; border-top:1px solid var(--line); margin-block: 2.4rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { max-width: 460px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  :root { --header-h: 66px; }
  /* backdrop-filter on the header would make the fixed drawer position relative to the
     header box (tiny) instead of the viewport — drop it on mobile so the drawer fills the screen */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }
  .nav-cta__book { display: none; }   /* booking lives in the drawer + floating button on mobile */
  .nav-menu__book { display: block; margin-top: .6rem; }
  .nav-toggle { display: flex; }
  .split, .split--reverse .split__media { grid-template-columns: 1fr; order: 0; }
  .contact-grid { grid-template-columns: 1fr; }

  /* mobile drawer */
  .nav-menu {
    position: fixed; inset: var(--header-h) 0 0 auto; width: min(360px, 86vw);
    background: #fff; display: flex; flex-direction: column; align-items: stretch; gap: 0;
    padding: 1rem 1rem 2rem; box-shadow: var(--shadow-lg); border-left: 1px solid var(--line);
    transform: translateX(105%); transition: transform .32s cubic-bezier(.4,0,.2,1);
    overflow-y: auto; z-index: 1001;
  }
  body.menu-open .nav-menu { transform: translateX(0); }
  .nav-menu > li { width: 100%; }
  .nav-link { width: 100%; justify-content: space-between; padding: .85rem .9rem; font-size: 1.05rem; border-radius: 10px; }
  .sub {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    display: block; width: auto; right: auto; left: auto;
    border: 0; border-left: 2px solid var(--blue-100); border-radius: 0; margin: .2rem 0 .4rem .9rem;
    padding: .2rem 0 .2rem .4rem; min-width: 0; max-height: 0; overflow: hidden; transition: max-height var(--t);
  }
  .has-sub.open .sub { max-height: 720px; }
  .has-sub.open .chev { transform: rotate(180deg); }
  .sub a small { display: none; }
  .nav-backdrop { position: fixed; inset: var(--header-h) 0 0 0; background: rgba(11,36,64,.42); opacity:0; visibility:hidden; transition: var(--t); z-index: 1000; }
  body.menu-open .nav-backdrop { opacity: 1; visibility: visible; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .btn-row .btn { width: 100%; }
  .cookie { flex-direction: column; align-items: stretch; text-align: left; }
  .cookie .cookie-act .btn { flex: 1; }
  .wa-float { width: 54px; height: 54px; right: 14px; bottom: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}
