@font-face{ font-family:'Unbounded'; src:url('../fonts/unbounded.woff2') format('woff2'); font-weight:400 900; font-display:swap; }
@font-face{ font-family:'Karla'; src:url('../fonts/karla.woff2') format('woff2'); font-weight:200 800; font-display:swap; }
@font-face{ font-family:'JetBrains Mono'; src:url('../fonts/jetbrains-mono.woff2') format('woff2'); font-weight:100 800; font-display:swap; }

:root{
  --bg:#ffffff; --surface:#ffffff; --surface-alt:#f2f8ff;
  --ink:#101010; --muted:#5b5f6b; --border:#e2eaf4;
  --sky:#0d9ff9; --navy:#222376; --red:#e6232a; --red-deep:#b81820;
  --font-display:'Unbounded', system-ui, sans-serif;
  --font-body:'Karla', system-ui, sans-serif;
  --font-mono:'JetBrains Mono', ui-monospace, consolas, monospace;
}
@media (prefers-color-scheme: dark){
  :root{ --bg:#0d1117; --surface:#151b24; --surface-alt:#182230; --ink:#eef2f7; --muted:#9aa3b2; --border:#28323f; }
}
:root[data-theme="dark"]{ --bg:#0d1117; --surface:#151b24; --surface-alt:#182230; --ink:#eef2f7; --muted:#9aa3b2; --border:#28323f; }
:root[data-theme="light"]{ --bg:#ffffff; --surface:#ffffff; --surface-alt:#f2f8ff; --ink:#101010; --muted:#5b5f6b; --border:#e2eaf4; }

*{box-sizing:border-box;}
body{ margin:0; background:var(--bg); color:var(--ink); font-family:var(--font-body); line-height:1.62; -webkit-font-smoothing:antialiased; overflow-x:hidden; }
h1,h2,h3{ font-family:var(--font-display); text-wrap:balance; margin:0; font-weight:700; }
p{ text-wrap:pretty; }
a{ color:inherit; text-decoration:none; }
.wrap{ max-width:1200px; margin:0 auto; padding:0 28px; }
img{ max-width:100%; display:block; }
/* Font Awesome icons (assets/fontawesome/) size themselves to 1em of the
   surrounding text by default, which is why most inline icons need no
   extra rule here — a small label gets a small icon, a heading-adjacent
   icon gets a bigger one, automatically. This nudge only fixes vertical
   centering next to text, since FA's default baseline sits slightly low
   when an icon shares a flex row with a text node. */
i[class*="fa-"]{ vertical-align:-0.08em; flex:none; }

/* ============ PRELOADER ============ */
#preloader{ position:fixed; inset:0; z-index:999; background:var(--navy); display:flex; align-items:center; justify-content:center; transition:opacity .6s ease, visibility .6s ease; }
#preloader.done{ opacity:0; visibility:hidden; pointer-events:none; }
.pl-stage{ display:flex; flex-direction:column; align-items:center; gap:20px; }
.pl-logo{ height:56px; width:auto; opacity:0; animation:plIn .5s ease .1s forwards; }
@keyframes plIn{ to{ opacity:1; } }
.pl-route{ width:min(60vw, 300px); }
.pl-route svg{ width:100%; height:auto; display:block; }
.pl-route .path{ fill:none; stroke:#0d9ff9; stroke-width:2; stroke-dasharray:302; stroke-dashoffset:302; animation:plDraw 1.5s cubic-bezier(.65,0,.35,1) .25s forwards; }
.pl-route .dot{ fill:#e6232a; }
.pl-route .plane{ offset-path:path("M8,72 C 70,10 190,10 292,58"); offset-rotate:auto; offset-distance:0%; animation:plFly 1.5s cubic-bezier(.65,0,.35,1) .25s forwards; }
@keyframes plDraw{ to{ stroke-dashoffset:0; } }
@keyframes plFly{ to{ offset-distance:100%; } }
.pl-bar{ width:180px; height:3px; border-radius:3px; background:rgba(255,255,255,.18); overflow:hidden; }
.pl-bar span{ display:block; height:100%; width:0%; background:var(--red); animation:plBar 1.8s ease-out .1s forwards; }
@keyframes plBar{ to{ width:100%; } }
@media (prefers-reduced-motion: reduce){
  .pl-logo{ opacity:1; animation:none; } .pl-route .path{ stroke-dashoffset:0; animation:none; }
  .pl-route .plane{ offset-distance:100%; animation:none; } .pl-bar span{ width:100%; animation:none; }
}

/* TOP BAR */
.topbar{ background:var(--navy); color:#cdd3ea; font-size:.8rem; padding:9px 28px; }
.topbar .wrap{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:8px; }
.topbar .left{ display:flex; gap:22px; }
.topbar a{ display:inline-flex; align-items:center; gap:6px; color:#cdd3ea; }
.topbar a:hover{ color:#fff; }
@media (max-width:700px){ .topbar .left span:nth-child(2){ display:none; } }

/* NAV */
.nav{ display:flex; align-items:center; justify-content:space-between; padding:16px 28px; border-bottom:1px solid var(--border); position:relative; z-index:5; background:var(--bg); }
.nav img.logo{ height:42px; width:auto; }
.nav .links{ display:flex; align-items:center; gap:22px; font-size:.9rem; font-weight:600; }
.nav .links > a.active{ color:var(--red); }
.nav .cta{ font-size:.84rem; font-weight:700; padding:11px 20px; border-radius:8px; background:var(--red); color:#fff; display:inline-flex; align-items:center; gap:8px; }
@media (max-width:900px){ .nav .links{ display:none; } }

/* "More Services" dropdown (Packages, Tours, Education — Flights, Hotels,
   and Visas are important enough to sit as flat nav links instead; see
   includes/header.php). Built on the native <details>/<summary> elements,
   so it's keyboard/screen-reader operable with zero JavaScript; app.js
   only adds the "close when you click elsewhere or click a link inside"
   polish on top.

   Vertical list — one item per row, label + chevron side by side on the
   same line (not stacked), panel left-aligned under the trigger. */
.nav-dropdown{ position:relative; }
/* display:inline-flex (rather than the browser default of display:list-item)
   is what actually removes the native disclosure arrow — list-style:none
   alone doesn't reliably do it in every browser, which is why one arrow
   was still showing after only hiding ::-webkit-details-marker. Between
   display:list-item→inline-flex and the two rules below, every browser's
   version of the native marker is covered. */
.nav-dropdown summary{
  display:inline-flex; align-items:center; gap:6px; cursor:pointer; list-style:none;
  color:inherit; font:inherit;
}
.nav-dropdown summary::-webkit-details-marker{ display:none; } /* Safari/Chrome */
.nav-dropdown summary::marker{ content:''; display:none; }     /* Firefox/modern Chrome */
.nav-dropdown summary.active{ color:var(--red); }
.nav-dropdown summary i{ transition:transform .15s ease; }
.nav-dropdown[open] summary i{ transform:rotate(180deg); }
.nav-dropdown .dropdown-menu{
  position:absolute; top:calc(100% + 16px); left:0;
  background:#fff; border:1px solid var(--border); border-radius:12px;
  box-shadow:0 20px 44px rgba(20,30,70,.16); padding:8px 0; width:230px;
  display:flex; flex-direction:column; z-index:999; overflow:hidden;
}
.nav-dropdown .dropdown-menu a{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:13px 20px; width:100%; box-sizing:border-box;
  font-size:.9rem; font-weight:600; color:var(--ink);
}
.nav-dropdown .dropdown-menu a i{ color:var(--muted); flex:none; }
.nav-dropdown .dropdown-menu a:hover{ background:var(--surface-alt); }
.nav-dropdown .dropdown-menu a:hover i{ color:var(--red); }
.nav-dropdown .dropdown-menu a.active{ color:var(--red); }
.nav-dropdown .dropdown-menu a.active i{ color:var(--red); }

/* HERO */
.hero{ position:relative; padding:56px 28px 0; overflow:hidden; background:var(--bg); }
.blob{ position:absolute; top:-180px; right:-220px; width:820px; height:820px; z-index:0; background:linear-gradient(140deg, var(--sky) 0%, var(--navy) 100%); border-radius:44% 56% 60% 40% / 46% 40% 60% 54%; }
@media (max-width:900px){ .blob{ width:560px; height:560px; top:-140px; right:-260px; } }
.hero-grid{ position:relative; z-index:1; max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; }
@media (max-width:900px){ .hero-grid{ grid-template-columns:1fr; } }
.hero h1{ font-size:clamp(2.1rem, 1rem + 3.8vw, 3.4rem); line-height:1.05; }
.hero p.lede{ color:var(--muted); font-size:1.06rem; max-width:44ch; margin:20px 0 0; }
.hero-photo{ position:relative; }
.hero-photo .frame{ position:relative; aspect-ratio:1/1; border-radius:44% 56% 62% 38% / 46% 40% 60% 54%; overflow:hidden; box-shadow:0 30px 60px rgba(15,20,40,.22); }
.hero-photo img{ width:100%; height:100%; object-fit:cover; }
.hero-photo .float-card{ position:absolute; bottom:-16px; left:-16px; background:#fff; border-radius:14px; padding:12px 16px; box-shadow:0 14px 32px rgba(15,20,40,.18); display:flex; align-items:center; gap:10px; }
.hero-photo .float-card .dot{ width:10px; height:10px; border-radius:50%; background:var(--red); }
.hero-photo .float-card b{ font-family:var(--font-mono); font-size:.78rem; }

/* WIDGET */
.widget{ position:relative; z-index:1; margin:40px auto 0; max-width:1120px; background:#fff; border-radius:16px; box-shadow:0 24px 60px rgba(20,30,70,.16); padding:8px 26px 22px; }
.widget .tabs{ display:flex; gap:2px; overflow-x:auto; }
.widget .tabs button{ font-family:var(--font-body); font-size:.85rem; font-weight:700; padding:14px 16px 12px; border:none; background:transparent; color:var(--muted); cursor:pointer; border-bottom:3px solid transparent; display:flex; align-items:center; gap:7px; white-space:nowrap; }
.widget .tabs button.active{ color:var(--navy); border-bottom-color:var(--red); }
.widget-panel{ display:none; padding-top:14px; }
.widget-panel.active{ display:block; }
.widget-grid{ display:grid; grid-template-columns:1fr 1fr 1fr 1fr auto; gap:12px; align-items:end; }
.widget-grid.cols-3{ grid-template-columns:1.2fr 1fr 1fr auto; }
@media (max-width:900px){ .widget-grid, .widget-grid.cols-3{ grid-template-columns:1fr 1fr; } }
.field label{ display:flex; align-items:center; gap:6px; font-size:.7rem; text-transform:uppercase; letter-spacing:.05em; color:var(--muted); margin-bottom:6px; font-weight:700; }
.field select, .field input, .field textarea{ width:100%; padding:12px 13px; border-radius:8px; border:1.5px solid var(--border); font-size:.9rem; font-family:var(--font-body); color:var(--ink); }
.field select:focus, .field input:focus, .field textarea:focus{ outline:2px solid var(--sky); border-color:var(--sky); }
/* .go is the shared "submit"/primary-action button — used inside the
   homepage widget AND as the plain <button class="go"> on every service
   page's inquiry form. It used to be styled only as ".widget .go", so
   every form outside the homepage widget rendered as an unstyled native
   browser button — that's the real cause of "the buttons are too plain",
   not just a missing polish pass. Styling the bare class fixes every
   form at once. */
.go{ background:linear-gradient(135deg, var(--red), var(--red-deep)); color:#fff; border:none; border-radius:9px; padding:14px 24px; font-weight:700; font-size:.88rem; font-family:var(--font-body); cursor:pointer; white-space:nowrap; display:inline-flex; align-items:center; gap:9px; box-shadow:0 10px 24px -8px rgba(230,35,42,.55); transition:transform .18s ease, box-shadow .18s ease, filter .18s ease; }
.go:hover{ transform:translateY(-2px); box-shadow:0 14px 30px -8px rgba(230,35,42,.65); filter:brightness(1.05); }
.go:active{ transform:translateY(0); box-shadow:0 6px 16px -8px rgba(230,35,42,.5); }
.go:disabled{ opacity:.6; cursor:not-allowed; transform:none; box-shadow:none; }
.widget .note{ font-size:.75rem; color:var(--muted); margin-top:10px; }
.field .error{ color:var(--red-deep); font-size:.76rem; margin-top:5px; display:block; }
.field input.invalid, .field select.invalid{ border-color:var(--red); }

/* TOP DESTINATIONS (circular photo row) */
.topdest{ padding:52px 28px 0; }
.topdest .headrow{ display:flex; justify-content:space-between; align-items:baseline; max-width:1200px; margin:0 auto 22px; }
.topdest .headrow h2{ font-size:1.25rem; }
.topdest .headrow a{ font-size:.86rem; font-weight:700; color:var(--red); }
.dest-row{ display:flex; gap:30px; justify-content:center; flex-wrap:wrap; max-width:1200px; margin:0 auto; }
.dest-circle{ text-align:center; width:132px; }
.dest-circle .ring{ width:124px; height:124px; border-radius:50%; overflow:hidden; border:4px solid var(--surface-alt); margin:0 auto 12px; transition:transform .2s ease, border-color .2s ease; }
.dest-circle:hover .ring{ transform:translateY(-3px); border-color:var(--sky); }
.dest-circle .ring img{ width:100%; height:100%; object-fit:cover; }
.dest-circle b{ display:block; font-size:.92rem; }
.dest-circle span{ font-size:.76rem; color:var(--muted); }

/* CATEGORY ROW — back to icons (not photos) per client request, but
   keeping the one-line responsive behavior from that photo version:
   flex-wrap:nowrap + a fixed width per .cat item (rather than relying
   on font-shrinking alone) so a label like "Honeymoon" wraps to two
   short text lines within its own column instead of forcing the row
   wider than the viewport on a narrow phone. */
.cats{ padding:44px 28px 0; }
.cats-row{ display:flex; justify-content:center; gap:34px; flex-wrap:nowrap; max-width:1200px; margin:0 auto; }
/* min-width:0 overrides the flex-item default of min-width:auto, which
   otherwise lets an unbroken word like "Honeymoon" force this item
   wider than its set width — without it, overflow-wrap has nothing to
   act on and the row overflows despite the width being set correctly. */
.cat{ display:flex; flex-direction:column; align-items:center; gap:8px; font-size:.82rem; font-weight:700; color:var(--ink); flex:none; width:70px; min-width:0; text-align:center; line-height:1.2; overflow-wrap:break-word; }
.cat .icwrap{ width:52px; height:52px; border-radius:50%; background:var(--surface-alt); display:flex; align-items:center; justify-content:center; color:var(--navy); font-size:1.4rem; flex:none; transition:transform .2s ease, background-color .2s ease, color .2s ease; }
/* flex-direction:column + align-items:center sizes children to their own
   content width by default (shrink-to-fit), which is exactly what
   breaks text wrapping here — an explicit width:100% overrides that so
   the label actually fills (and wraps within) .cat's own fixed width. */
.cat b{ display:block; width:100%; font-weight:700; overflow-wrap:break-word; }
.cat:hover .icwrap{ transform:translateY(-2px); background:var(--navy); color:#fff; }
@media (max-width:640px){
  .cats-row{ gap:14px; }
  .cat{ font-size:.68rem; gap:6px; width:56px; }
  .cat .icwrap{ width:44px; height:44px; font-size:1.1rem; }
}
@media (max-width:400px){
  .cats-row{ gap:7px; }
  .cat{ font-size:.6rem; width:46px; }
  .cat .icwrap{ width:38px; height:38px; font-size:1rem; }
}

/* TRUST STATS */
.stats{ padding:56px 28px; }
.stats-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; max-width:1200px; margin:0 auto; }
@media (max-width:700px){ .stats-row{ grid-template-columns:1fr; } }
.stat{ background:var(--surface-alt); border-radius:14px; padding:22px 20px; display:flex; align-items:center; gap:16px; }
.stat .icwrap{ width:48px; height:48px; border-radius:12px; background:var(--navy); color:#fff; display:flex; align-items:center; justify-content:center; font-size:1.3rem; flex:none; }
.stat b{ display:block; font-family:var(--font-display); font-size:1.2rem; }
.stat span{ font-size:.8rem; color:var(--muted); }

.shead{ text-align:center; margin-bottom:36px; }
.shead .kicker{ font-family:var(--font-mono); font-size:.74rem; color:var(--red-deep); text-transform:uppercase; letter-spacing:.08em; margin-bottom:10px; }
.shead h2{ font-size:clamp(1.5rem, 1rem + 1.6vw, 2.1rem); }
.shead p{ color:var(--muted); font-size:.95rem; margin-top:10px; max-width:56ch; margin-left:auto; margin-right:auto; }

/* CORE VALUES */
.values{ padding:0 28px 76px; }
.values-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(240px,1fr)); gap:26px; max-width:1200px; margin:0 auto; }

/* Fixed-count responsive grids for short feature/step rows whose item
   count is always the same (e.g. a 3-step "how it works" explainer, a
   4-item list of tour types) — unlike .pgrid/.rgrid/.glance-grid/
   .values-grid above, which use auto-fit because their item count varies
   with the database or the section. auto-fit's column count depends on
   exact container width vs. the minmax minimum, which can silently drop
   a column short (3 items rendering as 2, 4 as 2) whenever a page wraps
   the grid in a narrower container — using an explicit column count here
   avoids that entirely. Exactly 3 or 4 columns on desktop, 2 on tablet,
   1 on mobile. */
.fixed-grid-3, .fixed-grid-4{ display:grid; gap:26px; max-width:1200px; margin:0 auto; }
.fixed-grid-3{ grid-template-columns:repeat(3, 1fr); }
.fixed-grid-4{ grid-template-columns:repeat(4, 1fr); }
@media (max-width:900px){ .fixed-grid-3, .fixed-grid-4{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width:560px){ .fixed-grid-3, .fixed-grid-4{ grid-template-columns:1fr; } }
.value-card{ text-align:center; padding:8px; }
.value-card .icwrap{ width:72px; height:72px; border-radius:50%; margin:0 auto 18px; display:flex; align-items:center; justify-content:center; font-size:1.7rem; color:#fff; background:linear-gradient(135deg, var(--sky), var(--navy)); }
.value-card h3{ font-family:var(--font-body); font-size:1.05rem; font-weight:700; margin-bottom:8px; }
.value-card p{ color:var(--muted); font-size:.88rem; max-width:30ch; margin:0 auto; }

/* TOP DEAL blob band */
.deal{ position:relative; padding:80px 28px; overflow:hidden; }
.deal .blob2{ position:absolute; inset:0; z-index:0; background:linear-gradient(120deg, var(--navy) 0%, var(--sky) 100%); clip-path:ellipse(70% 100% at 50% 50%); }
.deal-grid{ position:relative; z-index:1; max-width:1160px; margin:0 auto; display:grid; grid-template-columns:1fr 1.1fr; gap:44px; align-items:center; }
@media (max-width:900px){ .deal-grid{ grid-template-columns:1fr; } }
.deal-photo{ border-radius:18px; overflow:hidden; aspect-ratio:4/3; box-shadow:0 24px 50px rgba(0,0,0,.25); }
.deal-photo img{ width:100%; height:100%; object-fit:cover; }
.deal-content{ color:#fff; }
.deal-content .kicker{ font-family:var(--font-mono); font-size:.74rem; text-transform:uppercase; letter-spacing:.08em; color:#a9e3ff; margin-bottom:12px; }
.deal-content h2{ color:#fff; font-size:clamp(1.5rem,1rem + 2vw,2.1rem); margin-bottom:16px; }
.deal-badge{ display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.15); padding:8px 16px; border-radius:999px; font-size:.82rem; font-weight:700; margin-bottom:18px; }
.deal-content p.desc{ color:rgba(255,255,255,.85); max-width:48ch; margin-bottom:22px; }
.deal-actions{ display:flex; gap:12px; flex-wrap:wrap; }

.btn{ font-size:.88rem; font-weight:700; padding:14px 24px; border-radius:9px; display:inline-flex; align-items:center; gap:8px; cursor:pointer; border:none; font-family:var(--font-body); transition:transform .18s ease, box-shadow .18s ease, filter .18s ease, background-color .18s ease, border-color .18s ease; }
.btn.primary{ background:linear-gradient(135deg, var(--red), var(--red-deep)); color:#fff; box-shadow:0 10px 24px -8px rgba(230,35,42,.55); }
.btn.primary:hover{ transform:translateY(-2px); box-shadow:0 14px 30px -8px rgba(230,35,42,.65); filter:brightness(1.05); }
.btn.light{ background:#fff; color:var(--navy); box-shadow:0 10px 24px -10px rgba(16,16,16,.35); }
.btn.light:hover{ transform:translateY(-2px); box-shadow:0 14px 30px -10px rgba(16,16,16,.4); }
.btn.ghost-dark{ border:1.5px solid rgba(255,255,255,.5); color:#fff; background:transparent; }
.btn.ghost-dark:hover{ background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.8); transform:translateY(-2px); }
.btn.ghost{ border:1.5px solid var(--border); color:var(--ink); background:transparent; }
.btn.ghost:hover{ background:var(--surface-alt); border-color:var(--sky); transform:translateY(-2px); }
.btn:active{ transform:translateY(0); }

/* HOW IT WORKS */
.how{ padding:80px 28px; }
/* Always exactly 4 steps everywhere this class is used (homepage,
   visas.php) — an explicit column count rather than auto-fit, which was
   silently dropping to 2 columns whenever the wrapping container was even
   slightly under the 4-column minmax threshold. 4 on desktop, 2 on
   tablet, 1 on mobile — see the two breakpoints below. */
.how-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:26px; max-width:1200px; margin:0 auto; }
@media (max-width:900px){ .how-grid{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width:560px){ .how-grid{ grid-template-columns:1fr; } }
.how-step{ text-align:center; }
.how-step .icwrap{ width:66px; height:66px; border-radius:50%; margin:0 auto 16px; display:flex; align-items:center; justify-content:center; font-size:1.5rem; color:#fff; }
.how-step:nth-child(1) .icwrap{ background:linear-gradient(135deg,#0d9ff9,#222376); }
.how-step:nth-child(2) .icwrap{ background:linear-gradient(135deg,#e6232a,#b81820); }
.how-step:nth-child(3) .icwrap{ background:linear-gradient(135deg,#0d9ff9,#e6232a); }
.how-step:nth-child(4) .icwrap{ background:linear-gradient(135deg,#222376,#0d9ff9); }
.how-step h3{ font-family:var(--font-body); font-size:1rem; font-weight:700; margin-bottom:8px; }
.how-step p{ color:var(--muted); font-size:.87rem; max-width:26ch; margin:0 auto; }

/* PACKAGES */
.packages{ padding:0 28px 80px; }
.pill-row{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-bottom:34px; }
.pill{ font-size:.86rem; font-weight:700; padding:10px 20px; border-radius:999px; border:1.5px solid var(--border); color:var(--muted); }
.pill.active{ background:var(--navy); border-color:var(--navy); color:#fff; }
/* Fixed 3 columns rather than auto-fit(minmax) on purpose: with 4 cards,
   auto-fit would stretch to fill a 4th column if the viewport is wide
   enough. A fixed repeat(3,1fr) means a 4th card always wraps to a new
   row under the first column instead — the requested "3 across, then
   the 4th on its own row" behavior at desktop width. */
.pgrid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:30px; max-width:1280px; margin:0 auto; }
@media (max-width:900px){ .pgrid{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width:560px){ .pgrid{ grid-template-columns:1fr; } }
.pcard{ border-radius:18px; overflow:hidden; border:1px solid var(--border); background:var(--surface); }
.pcard .photo{ position:relative; aspect-ratio:5/4; overflow:hidden; }
.pcard .photo img{ width:100%; height:100%; object-fit:cover; }
.pcard .ribbon{ position:absolute; top:12px; left:12px; background:var(--red); color:#fff; font-size:.68rem; font-weight:800; padding:6px 12px; border-radius:999px; text-transform:uppercase; }
.pcard .price-tag{ position:absolute; bottom:12px; right:12px; background:#fff; color:var(--ink); font-family:var(--font-mono); font-weight:700; font-size:.86rem; padding:8px 14px; border-radius:999px; box-shadow:0 6px 16px rgba(0,0,0,.15); }
.pcard .body{ padding:24px 26px 26px; }
.pcard .country{ font-size:.76rem; color:var(--muted); text-transform:uppercase; letter-spacing:.05em; font-weight:700; }
.pcard h3{ font-size:1.32rem; margin:.3em 0 .4em; font-family:var(--font-body); font-weight:700; }
.pcard p{ font-size:.94rem; color:var(--muted); margin:0 0 16px; }
.chip-row{ display:flex; gap:8px; flex-wrap:wrap; }
.chip{ font-size:.72rem; font-weight:700; color:var(--navy); background:var(--surface-alt); padding:6px 12px; border-radius:999px; display:inline-flex; align-items:center; gap:5px; }
.pcard .browse{ font-size:.84rem; font-weight:700; color:var(--red); display:inline-flex; align-items:center; gap:6px; margin-top:6px; }
.rec-more{ text-align:center; margin-top:36px; }

/* VISA ASSISTANCE */
.visa{ padding:0 28px 80px; }
.visa-grid{ max-width:1160px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:44px; align-items:center; background:var(--surface-alt); border-radius:24px; padding:52px; }
@media (max-width:900px){ .visa-grid{ grid-template-columns:1fr; padding:32px; } }
.visa-content .kicker{ font-family:var(--font-mono); font-size:.74rem; color:var(--red-deep); text-transform:uppercase; letter-spacing:.08em; margin-bottom:12px; }
.visa-content h2{ font-size:clamp(1.4rem,1rem + 1.6vw,1.9rem); margin-bottom:14px; }
.visa-content p{ color:var(--muted); max-width:46ch; margin-bottom:20px; }
.visa-list{ list-style:none; margin:0 0 24px; padding:0; display:grid; gap:12px; }
.visa-list li{ display:flex; gap:10px; align-items:flex-start; font-size:.9rem; }
.visa-list li i{ color:var(--navy); margin-top:2px; }
.visa-cards{ display:grid; gap:14px; }
.visa-card{ background:#fff; border-radius:14px; padding:18px 20px; display:flex; align-items:center; gap:14px; border:1px solid var(--border); }
.visa-card .icwrap{ width:44px; height:44px; border-radius:10px; background:linear-gradient(135deg,var(--sky),var(--navy)); color:#fff; display:flex; align-items:center; justify-content:center; flex:none; }
.visa-card b{ display:block; font-size:.92rem; }
.visa-card span{ font-size:.8rem; color:var(--muted); }

/* GLANCE GRID
   Each card's real destination photo is set inline as
   background-image (style="--photo:url(...)") from the PHP loop, since
   it's a different image per card. The brand-color gradient that used
   to be the entire card background is kept as a scrim layered under the
   photo via background-image's multi-layer syntax, both for legibility
   of the white text and as a fallback tint if a photo is ever missing. */
.glance{ padding:0 28px 80px; }
.glance-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(240px,1fr)); gap:18px; max-width:1200px; margin:0 auto; }
.gcard{
  position:relative; border-radius:16px; padding:22px 24px; color:#fff;
  display:flex; flex-direction:column; gap:14px; min-height:190px;
  justify-content:flex-end; overflow:hidden;
  background-image: linear-gradient(180deg, rgba(10,15,40,.15) 0%, rgba(10,15,40,.75) 100%), var(--photo);
  background-size:cover; background-position:center;
  transition:transform .25s ease, box-shadow .25s ease;
}
.gcard:hover{ transform:translateY(-4px); box-shadow:0 16px 34px -12px rgba(10,15,40,.45); }
.gcard:not([style*="--photo"]):nth-child(4n+1), .gcard:nth-child(4n+1){ background-color:#0a6fb0; }
.gcard:nth-child(4n+2){ background-color:#171a54; }
.gcard:nth-child(4n+3){ background-color:#a3151a; }
.gcard:nth-child(4n+4){ background-color:#0a6fb0; }
.gcard .icwrap{ position:absolute; top:18px; left:20px; width:36px; height:36px; border-radius:10px; background:rgba(255,255,255,.22); backdrop-filter:blur(2px); display:flex; align-items:center; justify-content:center; font-size:.95rem; }
.gcard h4{ font-family:var(--font-display); font-size:1.08rem; font-weight:700; text-shadow:0 2px 8px rgba(0,0,0,.35); }
.gcard .price{ font-family:var(--font-mono); font-weight:700; font-size:1.05rem; }
.gcard .arrow{ position:absolute; top:16px; right:16px; width:30px; height:30px; border-radius:50%; background:rgba(255,255,255,.22); backdrop-filter:blur(2px); display:flex; align-items:center; justify-content:center; font-size:.8rem; }

/* CTA */
.cta-band{ margin:0 28px 40px; border-radius:24px; padding:64px 40px; text-align:center; background:linear-gradient(120deg, var(--navy) 0%, var(--sky) 100%); color:#fff; }
.cta-band h2{ color:#fff; font-size:clamp(1.5rem,1rem + 2vw, 2.1rem); margin-bottom:14px; }
.cta-band p{ color:rgba(255,255,255,.88); max-width:48ch; margin:0 auto 24px; }
.cta-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* FOOTER */
.footer{ background:var(--navy); color:#c3c8e6; padding:64px 28px 0; }
.foot-grid{ max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:32px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,.12); }
@media (max-width:900px){ .foot-grid{ grid-template-columns:1fr 1fr; } }
.foot-brand img{ height:38px; margin-bottom:14px; }
.foot-brand p{ font-size:.86rem; color:#a9aed0; max-width:32ch; }
.foot-social{ display:flex; gap:10px; margin-top:16px; }
.foot-social a{ width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; color:#fff; }
.foot-col h4{ font-family:var(--font-body); font-size:.92rem; font-weight:700; color:#fff; margin-bottom:16px; }
.foot-col ul{ list-style:none; margin:0; padding:0; display:grid; gap:10px; }
.foot-col a{ font-size:.86rem; color:#c3c8e6; }
.foot-col a:hover{ color:#fff; }
.foot-contact li{ display:flex; align-items:flex-start; gap:10px; font-size:.86rem; }
.foot-bottom{ max-width:1200px; margin:0 auto; padding:22px 0; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:.78rem; color:#9198bf; }

/* HOTEL TIER CARDS (hotels.php) */
.tier-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:26px; max-width:1200px; margin:0 auto; }
@media (max-width:900px){ .tier-grid{ grid-template-columns:1fr; } }
.tier-card{ border-radius:18px; overflow:hidden; border:1px solid var(--border); background:var(--surface); display:flex; flex-direction:column; }
.tier-card .photo{ position:relative; aspect-ratio:4/3; overflow:hidden; }
.tier-card .photo img{ width:100%; height:100%; object-fit:cover; }
.tier-card .tier-badge{ position:absolute; top:12px; left:12px; background:rgba(16,16,16,.55); backdrop-filter:blur(3px); color:#fff; font-size:.68rem; font-weight:800; text-transform:uppercase; letter-spacing:.06em; padding:6px 12px; border-radius:999px; }
.tier-card .body{ padding:20px 22px 22px; display:flex; flex-direction:column; gap:10px; flex:1; }
.tier-card h3{ font-size:1.1rem; font-family:var(--font-body); font-weight:700; }
.tier-card .price-range{ font-family:var(--font-mono); font-size:.82rem; color:var(--red-deep); font-weight:700; }
.tier-card p{ font-size:.87rem; color:var(--muted); margin:0; flex:1; }
.tier-card .view-rooms{ align-self:flex-start; margin-top:4px; background:none; border:1.5px solid var(--border); color:var(--ink); font-size:.82rem; font-weight:700; padding:9px 16px; border-radius:8px; cursor:pointer; display:inline-flex; align-items:center; gap:8px; transition:background-color .15s ease, border-color .15s ease; }
.tier-card .view-rooms:hover{ background:var(--surface-alt); border-color:var(--sky); }
.tier-note{ font-size:.8rem; color:var(--muted); text-align:center; max-width:640px; margin:22px auto 0; }

/* MINI-GUIDE CARDS (tours.php tour types, education.php study countries) */
.guide-grid{ display:grid; grid-template-columns:repeat(2, 1fr); gap:28px; max-width:1000px; margin:0 auto; }
@media (max-width:700px){ .guide-grid{ grid-template-columns:1fr; } }
.guide-card{ border-radius:18px; overflow:hidden; border:1px solid var(--border); background:var(--surface); }
.guide-card .photo{ aspect-ratio:16/10; overflow:hidden; }
.guide-card .photo img{ width:100%; height:100%; object-fit:cover; }
.guide-card .body{ padding:24px 26px 26px; }
.guide-card h3{ font-size:1.22rem; font-family:var(--font-body); font-weight:700; margin-bottom:10px; }
.guide-card p{ font-size:.92rem; color:var(--muted); margin:0; }

/* SHARED PHOTO LIGHTBOX (any page — see includes/footer.php + app.js) */
.lightbox{ position:fixed; inset:0; z-index:1000; display:none; align-items:center; justify-content:center; }
.lightbox.open{ display:flex; }
.lightbox-backdrop{ position:absolute; inset:0; background:rgba(8,10,25,.88); }
.lightbox-dialog{ position:relative; z-index:1; max-width:min(90vw, 900px); max-height:86vh; display:flex; flex-direction:column; align-items:center; }
.lightbox-img{ max-width:100%; max-height:74vh; border-radius:12px; object-fit:contain; box-shadow:0 30px 70px rgba(0,0,0,.5); }
.lightbox-caption{ color:#fff; font-size:.88rem; margin-top:14px; text-align:center; opacity:.85; }
.lightbox-close, .lightbox-nav{ position:absolute; width:44px; height:44px; border-radius:50%; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.25); color:#fff; display:flex; align-items:center; justify-content:center; cursor:pointer; font-size:1rem; transition:background-color .15s ease; }
.lightbox-close:hover, .lightbox-nav:hover{ background:rgba(255,255,255,.24); }
.lightbox-close{ top:-56px; right:0; }
.lightbox-close i{ transform:rotate(45deg); } /* reuse the plus icon, rotated 45deg, as an X */
.lightbox-nav.prev{ left:-60px; top:50%; transform:translateY(-50%); }
.lightbox-nav.next{ right:-60px; top:50%; transform:translateY(-50%); }
@media (max-width:760px){
  .lightbox-close{ top:-52px; right:0; }
  .lightbox-nav.prev{ left:8px; }
  .lightbox-nav.next{ right:8px; }
}

/* FORM / ADMIN (shared) */
.page-hero{ background:var(--navy); color:#fff; padding:56px 28px; text-align:center; }
.page-hero h1{ color:#fff; font-size:clamp(1.8rem,1rem + 2.4vw,2.6rem); }
.page-hero p{ color:#c3c8e6; margin-top:12px; }
.section{ padding:56px 28px; }
.card-plain{ background:var(--surface); border:1px solid var(--border); border-radius:16px; padding:28px; }
.alert{ padding:14px 18px; border-radius:10px; font-size:.9rem; margin-bottom:20px; }
.alert.success{ background:#e6f7ec; color:#0f6b32; border:1px solid #b7e6c6; }
.alert.error{ background:#fdeceb; color:var(--red-deep); border:1px solid #f6c4c1; }
table.admin-table{ width:100%; border-collapse:collapse; font-size:.88rem; }
table.admin-table th, table.admin-table td{ text-align:left; padding:12px 14px; border-bottom:1px solid var(--border); }
table.admin-table th{ font-family:var(--font-mono); text-transform:uppercase; font-size:.7rem; letter-spacing:.05em; color:var(--muted); }
.badge-status{ font-size:.72rem; font-weight:700; padding:4px 10px; border-radius:999px; text-transform:uppercase; }
.badge-status.new{ background:#fdeceb; color:var(--red-deep); }
.badge-status.claimed{ background:#eaf3ff; color:var(--navy); }
.badge-status.closed{ background:#eef2f0; color:#5b5f6b; }

@media (prefers-reduced-motion: no-preference){
  .reveal{ opacity:0; transform:translateY(18px); transition:opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1); }
  .reveal.is-visible{ opacity:1; transform:none; }
  .stagger.is-visible > *{ animation:staggerUp .5s cubic-bezier(.22,1,.36,1) both; }
  .stagger.is-visible > *:nth-child(1){ animation-delay:.02s; } .stagger.is-visible > *:nth-child(2){ animation-delay:.09s; }
  .stagger.is-visible > *:nth-child(3){ animation-delay:.16s; } .stagger.is-visible > *:nth-child(4){ animation-delay:.23s; }
  @keyframes staggerUp{ from{ opacity:0; transform:translateY(16px); } to{ opacity:1; transform:none; } }
}

/* LIVE CHAT WIDGET (assets/js/chat-widget.js) */
.chat-widget{ position:fixed; bottom:24px; right:24px; z-index:900; }
.chat-toggle{ position:relative; width:60px; height:60px; border-radius:50%; background:linear-gradient(135deg, var(--red), var(--red-deep)); color:#fff; border:none; font-size:1.4rem; box-shadow:0 14px 30px -8px rgba(230,35,42,.55); cursor:pointer; display:flex; align-items:center; justify-content:center; transition:transform .18s ease; }
.chat-toggle:hover{ transform:scale(1.06); }
.chat-dot{ display:none; position:absolute; top:4px; right:4px; width:14px; height:14px; border-radius:50%; background:var(--sky); border:2px solid #fff; }
.chat-panel{ position:absolute; bottom:76px; right:0; width:340px; max-width:calc(100vw - 48px); height:460px; max-height:70vh; background:#fff; border-radius:18px; box-shadow:0 30px 70px rgba(0,0,0,.28); display:none; flex-direction:column; overflow:hidden; }
.chat-panel.open{ display:flex; }
.chat-panel-header{ background:var(--navy); color:#fff; padding:16px 18px; display:flex; justify-content:space-between; align-items:flex-start; gap:10px; flex:none; }
.chat-panel-header b{ display:block; font-size:.94rem; font-family:var(--font-body); }
.chat-panel-header span{ display:block; font-size:.72rem; color:#b9c0e6; margin-top:3px; }
.chat-panel-header button{ background:rgba(255,255,255,.15); border:none; color:#fff; width:26px; height:26px; border-radius:50%; cursor:pointer; flex:none; }
.chat-panel-header button i{ display:block; transform:rotate(45deg); }
.chat-messages{ flex:1; overflow-y:auto; padding:16px; display:flex; flex-direction:column; gap:10px; background:var(--surface-alt); }
.chat-msg{ max-width:82%; padding:10px 14px; border-radius:14px; font-size:.86rem; line-height:1.42; }
.chat-msg-visitor{ align-self:flex-end; background:var(--red); color:#fff; border-bottom-right-radius:4px; }
.chat-msg-admin, .chat-msg-ai{ align-self:flex-start; background:#fff; border:1px solid var(--border); border-bottom-left-radius:4px; }
.chat-msg-label{ display:block; font-size:.66rem; font-weight:800; text-transform:uppercase; letter-spacing:.03em; margin-bottom:3px; }
.chat-msg-ai .chat-msg-label{ color:var(--sky); }
.chat-msg-admin .chat-msg-label{ color:var(--navy); }
.chat-msg-system{ align-self:center; color:var(--muted); font-size:.8rem; text-align:center; max-width:100%; padding:4px 8px; }
.chat-form{ display:flex; gap:8px; padding:12px; border-top:1px solid var(--border); background:#fff; flex:none; }
.chat-form input{ flex:1; border:1.5px solid var(--border); border-radius:10px; padding:10px 12px; font-size:.86rem; font-family:var(--font-body); min-width:0; }
.chat-form input:focus{ outline:2px solid var(--sky); border-color:var(--sky); }
.chat-form button{ width:40px; height:40px; border-radius:10px; background:var(--red); color:#fff; border:none; cursor:pointer; flex:none; }
.chat-form button:hover{ background:var(--red-deep); }
@media (max-width:480px){
  .chat-widget{ bottom:16px; right:16px; }
  .chat-panel{ width:calc(100vw - 32px); right:-8px; }
}
