/* =========================================================
   CONCOURSE — B2B MICE & Business Travel
   "Getaway" upbeat travel theme — design tokens + components
   ========================================================= */

:root{
  /* --- Color tokens — bright, upbeat travel palette --- */
  --ink:        #FFFFFF;   /* base = white/cream, no more dark mode */
  --concourse:  #FF6B4A;   /* signature coral/sunset — primary accent */
  --concourse-2:#FF8A65;   /* lighter coral for gradients */
  --paper:      #FFF8F1;   /* warm cream, alt light sections */
  --paper-2:    #FFEDE0;   /* deeper cream for cards on paper bg */
  --brass:      #FFB020;   /* signature accent — sunny amber */
  --brass-dim:  #E89A0C;
  --jade:       #0FA3A3;   /* secondary accent — ocean teal, links, tags */
  --jade-dim:   #0B8484;
  --signal:     #FF4757;   /* rare use — urgency/limited/deals */
  --ivory:      #FFFFFF;
  --navy:       #16324F;   /* deep navy for dark sections + text */
  --navy-2:     #1C3E63;
  --line-dark:  rgba(255,255,255,0.16);
  --line-light: rgba(22,50,79,0.10);
  --text-dark:  #16324F;
  --text-light: #FFFFFF;
  --text-muted-dark: rgba(22,50,79,0.62);
  --text-muted-light: rgba(255,255,255,0.78);

  /* --- Type --- */
  --font-display: 'Baloo 2', 'Poppins', sans-serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Nunito Sans', sans-serif; /* repurposed: playful theme drops monospace look */

  /* --- Layout --- */
  --max: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 16px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  background:var(--ink);
  color:var(--text-dark);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; }

.container{ max-width:var(--max); margin:0 auto; padding:0 var(--gutter); }

h1,h2,h3,h4{ font-family:var(--font-display); font-weight:700; margin:0; line-height:1.12; letter-spacing:-0.005em; }
h2{ font-size:clamp(28px,4vw,44px); }
h3{ font-size:clamp(20px,2.4vw,26px); }
p{ margin:0; }

.eyebrow{
  font-family:var(--font-body);
  font-weight:800;
  font-size:12.5px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--jade);
  display:flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{ content:'✦'; font-size:13px; color:var(--brass); display:inline-block; }

section{ position:relative; }
.section-pad{ padding:96px 0; }
@media (max-width:720px){ .section-pad{ padding:64px 0; } }

.on-paper{ background:var(--paper); color:var(--text-dark); }
.on-paper .eyebrow{ color:var(--jade-dim); }
.on-ink{ background:var(--navy); color:var(--text-light); }
.on-ink .eyebrow{ color:var(--brass); }
.on-ink .eyebrow::before{ color:var(--brass); }
.on-concourse{ background:var(--concourse); color:var(--text-light); }

.lede{ font-size:clamp(16px,1.6vw,19px); color:var(--text-muted-dark); max-width:640px; }
.on-ink .lede{ color:var(--text-muted-light); }

/* --- Buttons --- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:15px 30px;
  font-family:var(--font-body);
  font-size:14px;
  font-weight:800;
  letter-spacing:0.01em;
  border-radius:100px;
  border:2px solid transparent;
  cursor:pointer;
  white-space:nowrap;
  transition:transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--concourse); color:#fff; box-shadow:0 10px 24px rgba(255,107,74,0.35); }
.btn-primary:hover{ background:var(--brass); box-shadow:0 12px 26px rgba(255,176,32,0.4); }
.btn-ghost-light{ border-color:rgba(255,255,255,0.5); color:var(--text-light); }
.btn-ghost-light:hover{ border-color:var(--brass); color:var(--brass); background:rgba(255,255,255,0.06); }
.btn-ghost-dark{ border-color:var(--line-light); color:var(--text-dark); }
.btn-ghost-dark:hover{ border-color:var(--concourse); color:var(--concourse); }
.btn-row{ display:flex; gap:14px; flex-wrap:wrap; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,0.92);
  border-bottom:1px solid var(--line-light);
}
/* backdrop-filter is scoped to wide screens only: on an ancestor, backdrop-filter
   creates a new containing block for position:fixed descendants, which can
   interfere with fixed/absolute-positioned children. Desktop keeps the blur. */
@media (min-width:1361px){
  .site-header{ backdrop-filter:blur(10px); }
}
.nav-wrap{ display:flex; align-items:center; justify-content:space-between; padding:14px var(--gutter); max-width:1400px; margin:0 auto; gap:18px; position:relative; }
.logo{ font-family:var(--font-display); font-size:23px; font-weight:800; letter-spacing:0.01em; color:var(--navy); display:flex; align-items:baseline; gap:8px;}
.logo span{ font-family:var(--font-body); font-size:10px; font-weight:700; letter-spacing:0.14em; color:var(--concourse); text-transform:uppercase; }
.nav-links{ display:flex; gap:19px; align-items:center; }
.nav-links a{
  font-size:13.5px; font-weight:700; letter-spacing:0.01em; color:var(--text-muted-dark);
  position:relative; padding:4px 0; white-space:nowrap;
}
.nav-links a:hover, .nav-links a.active{ color:var(--concourse); }
.nav-links a.active::after{ content:''; position:absolute; left:0; right:0; bottom:-4px; height:3px; border-radius:3px; background:var(--brass); }
.nav-cta{ display:flex; align-items:center; gap:14px; flex-shrink:0; white-space:nowrap; }
.nav-toggle{ display:none; background:none; border:2px solid var(--line-light); color:var(--navy); padding:8px 10px; border-radius:10px; flex-shrink:0; cursor:pointer; }

/* Persistent compact logo shown only in the mobile top bar (left-aligned,
   next to the hamburger). Hidden on desktop, where the logo instead sits
   inline inside the centered nav (see .logo-centered below). */
.logo-mobile-bar{ display:none; align-items:center; gap:10px; flex-shrink:0; }
.logo-mobile-img{ height:38px; width:auto; display:block; }
.logo-mobile-text{ font-family:var(--font-display); font-size:17px; font-weight:800; color:var(--navy); line-height:1.15; display:block; }
.logo-mobile-text em{ display:block; font-style:normal; font-family:var(--font-body); font-size:9px; font-weight:700; letter-spacing:0.16em; color:var(--concourse); text-transform:uppercase; }

/* Collapse to a compact mobile header + dropdown card below 1361px — with a
   logo + full link set + CTA button all in one row there isn't room for a
   comfortable single-row layout on laptop-width screens, and squeezing it
   caused the CTA button to overlap the last nav link. Below this breakpoint
   the header becomes a slim bar (logo left, hamburger right) and the full
   link list opens as its own dropdown card instead of a full-screen drawer. */
@media (max-width:1360px){
  .logo-mobile-bar{ display:flex; }
  .nav-links-centered .logo-centered{ display:none; } /* already shown in the persistent bar above */
  .nav-links{
    position:absolute; top:100%; left:0; right:0; margin-top:1px;
    background:#fff;
    flex-direction:column; align-items:stretch; gap:0;
    padding:6px 0 12px;
    max-height:0; overflow:hidden;
    opacity:0; visibility:hidden;
    transition:max-height .28s ease, opacity .2s ease;
    box-shadow:0 20px 34px rgba(10,22,36,0.16);
    border-bottom-left-radius:14px; border-bottom-right-radius:14px;
  }
  .nav-links.open{
    max-height:min(70vh, 620px); overflow-y:auto; opacity:1; visibility:visible;
    -webkit-overflow-scrolling:touch;
  }
  .nav-links a{ width:100%; padding:15px var(--gutter); border-bottom:1px solid var(--line-light); white-space:normal; font-size:15px; }
  .nav-toggle{ display:inline-flex; }
  .nav-cta .btn-primary{ padding:10px 16px; font-size:12px; }
}

/* =========================================================
   HERO + DEPARTURES BOARD (signature element)
   ========================================================= */
.hero{
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(255,176,32,0.25), transparent 60%),
    radial-gradient(900px 500px at -5% 110%, rgba(15,163,163,0.18), transparent 55%),
    linear-gradient(180deg, #FFF8F1, #FFFFFF);
  padding:76px 0 90px;
  overflow:hidden;
}
.hero-grid{ display:grid; grid-template-columns:1.15fr 0.85fr; gap:56px; align-items:center; }
@media (max-width:980px){ .hero-grid{ grid-template-columns:1fr; gap:44px; } }

.hero h1{ font-size:clamp(34px,5.4vw,60px); margin:18px 0 20px; color:var(--navy); }
.hero h1 em{ font-style:normal; color:var(--concourse); }

.board{
  background:#fff;
  border:1px solid var(--line-light);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(22,50,79,0.14);
}
.board-head{
  display:flex; justify-content:space-between; align-items:center;
  padding:16px 20px; background:var(--concourse); border-bottom:1px solid var(--line-light);
  font-family:var(--font-body); font-weight:800; font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:#fff;
}
.board-row{
  display:grid; grid-template-columns:34px 1fr 74px 100px; gap:12px; align-items:center;
  padding:14px 20px; font-family:var(--font-body); font-size:14px; font-weight:600;
  border-bottom:1px solid var(--line-light);
  color:var(--text-muted-dark);
}
.board-row:last-child{ border-bottom:none; }
.board-row .flag{ font-size:18px; }
.board-row .dest{ color:var(--navy); font-weight:800; letter-spacing:0.01em; }
.board-row .code{ color:var(--jade); font-weight:800; }
.board-status{
  display:inline-flex; align-items:center; gap:6px; font-size:11px; font-weight:800; letter-spacing:0.06em;
  color:var(--brass-dim);
}
.board-status::before{ content:''; width:7px; height:7px; border-radius:50%; background:var(--brass); animation:blink 1.8s infinite; }
@keyframes blink{ 0%,100%{ opacity:1; } 50%{ opacity:0.25; } }

.hero-stats{ display:flex; gap:34px; margin-top:34px; flex-wrap:wrap; }
.hero-stat b{ display:block; font-family:var(--font-display); font-size:30px; font-weight:800; color:var(--concourse); }
.hero-stat span{ font-size:12px; font-weight:700; color:var(--text-muted-dark); letter-spacing:0.03em; }
.on-ink .hero-stat span{ color:var(--text-muted-light); }
.on-ink .hero-stat b{ color:var(--brass); }

/* =========================================================
   SERVICE / FEATURE GRIDS
   ========================================================= */
.grid{ display:grid; gap:22px; }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-6{ grid-template-columns:repeat(6,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
@media (max-width:980px){ .grid-3,.grid-4,.grid-6{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .grid-2,.grid-3,.grid-4,.grid-6{ grid-template-columns:1fr; } }

.card{
  background:#fff; border:1px solid var(--line-light);
  border-radius:20px; padding:32px 28px; transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  box-shadow:0 6px 20px rgba(22,50,79,0.05);
}
.card:hover{ transform:translateY(-6px); border-color:var(--brass); box-shadow:0 20px 40px rgba(22,50,79,0.12); }
.on-ink .card{ background:var(--navy-2); border-color:var(--line-dark); box-shadow:none; }
.on-paper .card{ background:#fff; }
.card .icon{ width:40px; height:40px; color:var(--concourse); margin-bottom:18px; }
.card h3{ margin-bottom:10px; color:var(--navy); }
.on-ink .card h3{ color:#fff; }
.card p{ color:var(--text-muted-dark); font-size:14.5px; }
.on-ink .card p{ color:var(--text-muted-light); }
.card ul{ margin-top:14px; display:flex; flex-direction:column; gap:8px; }
.card ul li{ font-size:13.5px; font-weight:600; color:var(--text-muted-dark); padding-left:20px; position:relative; }
.on-ink .card ul li{ color:var(--text-muted-light); }
.card ul li::before{ content:'✓'; position:absolute; left:0; color:var(--jade); font-weight:800; }
.on-ink .card ul li::before{ color:var(--brass); }

.section-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:30px; margin-bottom:44px; flex-wrap:wrap; }
.section-head h2{ margin-top:14px; max-width:560px; color:var(--navy); }
.on-ink .section-head h2{ color:#fff; }

/* Numbered steps */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; counter-reset:step; }
@media (max-width:900px){ .steps{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .steps{ grid-template-columns:1fr; } }
.step{ padding:0 26px 0 0; border-right:2px dashed var(--line-light); }
.step:last-child{ border-right:none; }
@media (max-width:900px){ .step{ border-right:none; border-bottom:2px dashed var(--line-light); padding:0 0 26px 0; margin-bottom:26px; } }
.step .num{
  display:inline-flex; align-items:center; justify-content:center;
  width:38px; height:38px; border-radius:50%;
  font-family:var(--font-display); color:#fff; background:var(--concourse); font-size:15px; font-weight:800;
}
.on-ink .step .num{ background:var(--brass); color:var(--navy); }
.step h4{ font-family:var(--font-display); font-size:19px; font-weight:700; margin:14px 0 8px; color:var(--navy); }
.on-ink .step h4{ color:#fff; }
.step p{ font-size:13.5px; color:var(--text-muted-dark); }
.on-ink .step p{ color:var(--text-muted-light); }

/* =========================================================
   COUNTRY STRIP (reused component)
   ========================================================= */
.country-strip{ display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
@media (max-width:900px){ .country-strip{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:560px){ .country-strip{ grid-template-columns:repeat(2,1fr); } }
.country-chip{
  border:2px solid var(--line-light); border-radius:18px; padding:24px 16px; text-align:center;
  transition:border-color .2s ease, transform .2s ease, background .2s ease; background:#fff;
}
.country-chip:hover{ border-color:var(--concourse); transform:translateY(-4px) scale(1.02); background:var(--paper-2); }
.country-chip .flag{ font-size:34px; display:block; margin-bottom:10px; }
.country-chip .name{ font-family:var(--font-body); font-weight:800; font-size:13px; letter-spacing:0.03em; color:var(--navy); }
.on-paper .country-chip{ background:#fff; border-color:var(--line-light); }

/* =========================================================
   DESTINATION / PACKAGE CARDS (sightseeing, hotels, cruises)
   ========================================================= */
.dest-tabs{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:36px; }
.dest-tab{
  font-family:var(--font-body); font-weight:800; font-size:13px; letter-spacing:0.02em;
  padding:11px 20px; border:2px solid var(--line-light); border-radius:30px; cursor:pointer;
  background:#fff; color:var(--text-muted-dark);
  transition:background .18s ease, color .18s ease, border-color .18s ease;
}
.dest-tab.active, .dest-tab:hover{ background:var(--concourse); color:#fff; border-color:var(--concourse); }

.pkg-group{ margin-bottom:60px; }
.pkg-group-head{ display:flex; align-items:center; gap:16px; margin-bottom:22px; flex-wrap:wrap; }
.pkg-group-head .flag{ font-size:32px; }
.pkg-group-head h3{ font-size:22px; color:var(--navy); }
.pkg-group-head .meta{ font-family:var(--font-body); font-weight:700; font-size:12.5px; color:var(--jade-dim); letter-spacing:0.01em; }

.pkg-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
@media (max-width:1080px){ .pkg-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .pkg-grid{ grid-template-columns:1fr; } }

.pkg-card{
  background:#fff; border:1px solid var(--line-light); border-radius:20px; overflow:hidden;
  display:flex; flex-direction:column;
  box-shadow:0 6px 18px rgba(22,50,79,0.06);
  transition:transform .22s ease, box-shadow .22s ease;
}
.pkg-card:hover{ transform:translateY(-6px); box-shadow:0 20px 36px rgba(22,50,79,0.14); }
.pkg-card .img-wrap{ position:relative; aspect-ratio:4/3; overflow:hidden; }
.pkg-card .img-wrap img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.pkg-card:hover .img-wrap img{ transform:scale(1.08); }
.pkg-card .duration{
  position:absolute; top:12px; left:12px; background:var(--brass); color:var(--navy);
  font-family:var(--font-body); font-weight:800; font-size:11.5px; padding:6px 12px; border-radius:20px; letter-spacing:0.02em;
}
.pkg-card .body{ padding:20px; flex:1; display:flex; flex-direction:column; }
.pkg-card .loc{ font-family:var(--font-body); font-weight:800; font-size:11.5px; color:var(--jade); margin-bottom:6px; letter-spacing:0.02em; }
.pkg-card h4{ font-family:var(--font-display); font-weight:700; font-size:19px; margin-bottom:10px; color:var(--navy); }
.pkg-card .tags{ display:flex; flex-wrap:wrap; gap:6px; margin-bottom:18px; }
.pkg-card .tags span{ font-size:11px; font-weight:700; background:var(--paper-2); color:var(--concourse); padding:5px 10px; border-radius:20px; }
.pkg-card .actions{ margin-top:auto; display:flex; gap:10px; }
.pkg-card .actions a{ flex:1; text-align:center; padding:11px 8px; font-size:12.5px; }

/* =========================================================
   LOGO MARQUEE / CLIENTS
   ========================================================= */
.marquee{ overflow:hidden; border-top:1px solid var(--line-dark); border-bottom:1px solid var(--line-dark); }
.marquee-track{ display:flex; gap:64px; padding:26px 0; width:max-content; animation:scroll 34s linear infinite; }
.marquee-track span{ font-family:var(--font-body); font-weight:800; font-size:14px; letter-spacing:0.03em; color:var(--text-muted-light); white-space:nowrap; text-transform:uppercase; }
@keyframes scroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media (max-width:980px){ .testi-grid{ grid-template-columns:1fr; } }
.testi{ background:#fff; border:1px solid var(--line-light); border-radius:20px; padding:30px; box-shadow:0 6px 20px rgba(22,50,79,0.06); position:relative; }
.testi::before{ content:'"'; position:absolute; top:14px; right:24px; font-family:var(--font-display); font-size:56px; color:var(--paper-2); font-weight:800; line-height:1; }
.testi p.quote{ font-family:var(--font-body); font-weight:700; font-size:16px; color:var(--navy); line-height:1.55; margin-bottom:18px; position:relative; }
.testi .who{ font-family:var(--font-body); font-weight:800; font-size:12.5px; color:var(--jade-dim); letter-spacing:0.01em; }

/* =========================================================
   WHY CHOOSE US (8-tile)
   ========================================================= */
.why-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
@media (max-width:900px){ .why-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .why-grid{ grid-template-columns:1fr; } }
.why-tile{ background:var(--navy-2); border-radius:18px; padding:30px 26px; transition:transform .2s ease, background .2s ease; }
.why-tile:hover{ transform:translateY(-4px); background:var(--concourse); }
.why-tile .num{ font-family:var(--font-display); font-size:13px; font-weight:800; color:var(--brass); }
.why-tile:hover .num{ color:#fff; }
.why-tile h4{ font-family:var(--font-display); font-weight:700; font-size:18px; margin:14px 0 8px; color:#fff; }
.why-tile p{ font-size:13.5px; color:var(--text-muted-light); }
.why-tile:hover p{ color:rgba(255,255,255,0.9); }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq{ max-width:820px; }
.faq-item{ border-bottom:2px solid var(--line-light); }
.on-ink .faq-item{ border-bottom-color:var(--line-dark); }
.faq-q{
  display:flex; justify-content:space-between; align-items:center; gap:20px;
  padding:22px 0; cursor:pointer; font-family:var(--font-display); font-weight:700; font-size:17px;
}
.faq-q .plus{
  display:inline-flex; align-items:center; justify-content:center;
  width:30px; height:30px; border-radius:50%; background:var(--brass); color:var(--navy);
  font-family:var(--font-body); font-weight:800; font-size:18px; transition:transform .2s ease; flex-shrink:0;
}
.faq-item.open .faq-q .plus{ transform:rotate(45deg); background:var(--concourse); color:#fff; }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-a p{ padding:0 0 22px; color:var(--text-muted-dark); font-size:14.5px; max-width:680px; }
.on-ink .faq-a p{ color:var(--text-muted-light); }
.faq-item.open .faq-a{ max-height:400px; }

/* =========================================================
   FORMS
   ========================================================= */
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:700px){ .form-grid{ grid-template-columns:1fr; } }
.field{ display:flex; flex-direction:column; gap:8px; }
.field.full{ grid-column:1 / -1; }
.field label{ font-family:var(--font-body); font-weight:800; font-size:12px; letter-spacing:0.02em; color:var(--text-muted-dark); }
.on-ink .field label{ color:var(--text-muted-light); }
.field input, .field select, .field textarea{
  background:#fff; border:2px solid var(--line-light); border-radius:12px; padding:13px 16px;
  font-family:var(--font-body); font-size:14.5px; color:var(--text-dark);
}
.on-ink .field input, .on-ink .field select, .on-ink .field textarea{ background:var(--navy-2); border-color:var(--line-dark); color:var(--text-light); }
.field textarea{ resize:vertical; min-height:110px; }
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--concourse); }

/* =========================================================
   FOOTER
   ========================================================= */
footer{ background:var(--navy); color:var(--text-light); border-top:6px solid var(--brass); padding:70px 0 26px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; margin-bottom:50px; }
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-grid h5{ font-family:var(--font-display); font-weight:700; font-size:14px; letter-spacing:0.02em; color:var(--brass); margin-bottom:18px; }
.footer-grid li{ margin-bottom:10px; font-size:13.5px; font-weight:600; color:var(--text-muted-light); }
.footer-grid li a:hover{ color:var(--brass); }
.footer-brand p{ color:var(--text-muted-light); font-size:14px; max-width:280px; margin-top:14px; }
.social-row{ display:flex; gap:12px; margin-top:20px; }
.social-row a{ width:36px; height:36px; border:2px solid var(--line-dark); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:800; transition:background .2s ease, border-color .2s ease; }
.social-row a:hover{ border-color:var(--brass); background:var(--brass); color:var(--navy); }
.footer-bottom{ border-top:1px solid var(--line-dark); padding-top:24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:12.5px; color:var(--text-muted-light); }
.footer-bottom a:hover{ color:var(--brass); }

/* Floating action buttons */
.fab-stack{ position:fixed; right:22px; bottom:22px; display:flex; flex-direction:column; gap:12px; z-index:200; }
.fab{ width:54px; height:54px; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 10px 24px rgba(22,50,79,0.3); font-size:22px; transition:transform .2s ease; }
.fab:hover{ transform:scale(1.08); }
.fab-call{ background:var(--concourse); color:#fff; }
.fab-wa{ background:#25D366; color:#fff; }

/* Page hero (inner pages) */
.page-hero{ padding:64px 0 56px; background:
    radial-gradient(900px 500px at 90% -20%, rgba(255,176,32,0.28), transparent 55%),
    linear-gradient(180deg, var(--navy-2), var(--navy)); color:#fff; }
.page-hero h1{ color:#fff; }
.breadcrumb{ font-family:var(--font-body); font-weight:700; font-size:12.5px; color:var(--text-muted-light); margin-top:16px; }
.breadcrumb a:hover{ color:var(--brass); }

/* Gallery / portfolio masonry */
.masonry{ columns:4 220px; column-gap:16px; }
@media (max-width:700px){ .masonry{ columns:2 160px; } }
.masonry img{ margin-bottom:16px; border-radius:14px; width:100%; }

.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }

/* =========================================================
   SITE HEADER — CENTERED LOGO NAV (Zeemax International)
   Additive rules only — used on every page's header now.
   The full-bleed hero rules further below stay scoped to
   index.html; every other page keeps its own page-hero.
   ========================================================= */

/* Centered logo nav (all pages) */
.nav-links-centered{ justify-content:center; }
.nav-links-centered .logo-centered{
  display:flex; align-items:center; justify-content:center;
  padding:0 10px; margin:0 2px; flex-shrink:0;
}
.nav-links-centered .logo-centered-img{
  height:46px; width:auto; display:block;
}
@media (max-width:1360px){
  .nav-links-centered{ justify-content:flex-start; }
}

/* Full-bleed centered hero (index.html only) */
.hero-fullbleed{
  background-size:cover; background-position:center; background-repeat:no-repeat;
  padding:150px 0 120px; display:flex; align-items:center; justify-content:center;
  text-align:center;
}
.hero-fullbleed-inner{ max-width:820px; margin:0 auto; }
.hero-fullbleed .eyebrow{ color:var(--brass); justify-content:center; }
.hero-fullbleed h1{ color:#fff; margin:18px 0 20px; }
.hero-fullbleed h1 em{ font-style:normal; color:var(--brass); }
.hero-fullbleed .lede{ color:rgba(255,255,255,0.86); max-width:680px; margin:0 auto; }
.hero-stats-centered{ justify-content:center; margin-top:40px; }
.hero-stats-centered .hero-stat span{ color:rgba(255,255,255,0.78); }
.hero-stats-centered .hero-stat b{ color:var(--brass); }
@media (max-width:720px){
  .hero-fullbleed{ padding:110px 0 80px; }
}
