:root{
  --bg: #eaf6ff;
  --surface: #ffffff;
  --card: #ffffff;
  --ink: #0b1c2c;
  --muted: #4a647c;
  --blue-900: #083253;
  --blue-700: #0a4b7a;
  --blue-600: #0b62a0;
  --sky: #eaf6ff;
  --gold: #f1a500;
  --gold-2: #ffbf2f;
  --line: rgba(10, 60, 105, 0.16);
  --shadow: 0 10px 22px rgba(8, 50, 83, 0.12);
  --radius: 12px;
  --max: 1140px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

a{ color: var(--blue-700); text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{ width:min(var(--max), calc(100% - 32px)); margin-inline:auto; }

.skip-link{
  position:absolute;
  left:-999px;
  top:8px;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border-radius:10px;
}
.skip-link:focus{ left:16px; z-index:9999; }

/* Header */
.site-header{ position:sticky; top:0; z-index:1000; }

.topbar{
  background: var(--blue-900);
  color: rgba(255,255,255,0.92);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  font-size:14px;
}
.topbar-left{ opacity:0.92; }
.topbar-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  background: var(--gold);
  color:#1a1a1a;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.3px;
  font-size:12px;
  border:1px solid rgba(0,0,0,0.08);
}
.topbar-cta:hover{ text-decoration:none; filter:brightness(1.02); }

.navwrap{
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 240px;
  color: var(--ink);
}
.brand:hover{ text-decoration:none; }
.brand-logo{
  width:42px;
  height:42px;
  border-radius:10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display:grid;
  place-items:center;
  overflow:hidden;
}
.brand-logo img{ width:100%; height:100%; object-fit:contain; padding:6px; }
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-name{ font-weight:900; letter-spacing:0.2px; color: var(--blue-900); }
.brand-tagline{ color: var(--muted); font-size:12px; }

.site-nav{ flex:1; }
.nav-list{
  list-style:none;
  display:flex;
  gap:8px;
  margin:0;
  padding:0;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav-list a{
  display:inline-flex;
  padding:8px 10px;
  border-radius:10px;
  color: var(--blue-900);
  border: 1px solid transparent;
  font-size:14px;
}
.nav-list a[aria-current="page"]{
  background: rgba(11, 98, 160, 0.10);
  border-color: rgba(11, 98, 160, 0.22);
}
.nav-list a:hover{
  text-decoration:none;
  background: rgba(8, 50, 83, 0.05);
  border-color: rgba(8, 50, 83, 0.10);
}

@media (max-width: 980px){
  .nav-inner{ flex-direction:column; align-items:stretch; }
  .nav-list{ justify-content:flex-start; }
}

/* Hero */
.hero{
  position:relative;
  padding: 52px 0 34px;
  background-color: var(--blue-900);
  color:#fff;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(8, 50, 83, 0.55);
  pointer-events:none;
}
.hero-inner{ position:relative; }
.hero-kicker{
  margin:0 0 10px;
  opacity:0.92;
  text-transform:uppercase;
  letter-spacing: 1.2px;
  font-size:12px;
}
.hero-title{ margin:0; font-size: clamp(30px, 4vw, 46px); line-height:1.08; }
.hero-sub{ margin: 12px 0 0; max-width: 68ch; opacity:0.95; }
.hero-actions{ display:flex; gap:10px; margin-top: 16px; flex-wrap:wrap; }

.page-home .hero{ background-image: url("../images/backgrounds/smarttraveler.jpg"); background-size:cover; background-position:center; }
.page-about .hero{ background-image: url("../images/backgrounds/holland-america-line.jpg"); background-size:cover; background-position:center; }
.page-destinations .hero{ background-image: url("../images/backgrounds/caribbean-super-specials.jpg"); background-size:cover; background-position:center; }
.page-providers .hero{ background-image: url("../images/backgrounds/holland-america-line.jpg"); background-size:cover; background-position:center; }
.page-resources .hero{ background-image: url("../images/backgrounds/cta-4-bg.jpg"); background-size:cover; background-position:center; }
.page-offers .hero{ background-image: url("../images/backgrounds/daily-deal.jpg"); background-size:cover; background-position:center; }

/* Content */
.site-main{ padding: 0 0 54px; }
.section{ padding: 24px 0; }
.surface{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

h1,h2,h3{ color: #ffba00; }
h2{ font-size: clamp(20px, 2.2vw, 30px); margin: 0 0 10px; }
h3{ font-size: 18px; margin: 16px 0 8px; }
p{ margin: 10px 0; }
.small{ font-size: 13px; }
.muted{ color: var(--muted); }

.grid{ display:grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.col-4{ grid-column: span 4; }
.col-6{ grid-column: span 6; }
.col-8{ grid-column: span 8; }
.col-12{ grid-column: span 12; }
@media (max-width: 920px){
  .col-4,.col-6,.col-8{ grid-column: span 12; }
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.30);
  font-weight: 800;
}
.btn:hover{ text-decoration:none; filter: brightness(1.02); }
.btn-primary{
  background: var(--gold);
  color: #1a1a1a;
  border-color: rgba(0,0,0,0.08);
}
.btn-ghost{
  background: rgba(255,255,255,0.14);
  color:#fff;
}

.hr{ height:1px; background: var(--line); border:0; margin: 18px 0; }

/* Cards */
.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}

.kicker{
  margin:0 0 8px;
  color: var(--muted);
  text-transform:uppercase;
  letter-spacing: 1.1px;
  font-size:12px;
}

/* Image cards */
.img-card{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:#fff;
}
.img-card .img{
  width:100%;
  height: 220px;
  object-fit: cover;
}
.img-card .cap{
  padding: 12px 14px;
}
.img-card .cap h3{ margin:0 0 6px; }

/* Logo grid */
.logo-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 920px){
  .logo-grid{ grid-template-columns: repeat(2, 1fr); }
}
.logo-tile{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px;
  display:grid;
  place-items:center;
  min-height: 120px;
}
.logo-tile img{
  max-height: 84px;
  width:100%;
  object-fit: contain;
}

/* Details (FAQ) */
.details{
  border: 1px solid var(--line);
  border-radius: 10px;
  background:#fff;
  margin: 10px 0;
  overflow:hidden;
}
.details summary{
  cursor:pointer;
  font-weight: 800;
  padding: 12px 14px;
  list-style:none;
  color: var(--blue-900);
}
.details summary::-webkit-details-marker{ display:none; }
.details[open] summary{ background: rgba(11, 98, 160, 0.06); }
.details .details-body{ padding: 0 14px 14px; color: var(--ink); }

/* CTA band (like the original orange strip) */
.cta-band{
  background: var(--gold);
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  color:#1a1a1a;
}
.cta-band .cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 0;
  flex-wrap:wrap;
}
.cta-band .cta-title{ font-weight: 900; }
.cta-band .btn{ border-color: rgba(0,0,0,0.18); }

/* Tables and lists */
.link-list{ list-style:none; padding:0; margin:0; }
.link-list li{ margin: 8px 0; }

.table{
  width:100%;
  border-collapse: collapse;
  font-size: 14px;
}
.table th,.table td{ border: 1px solid var(--line); padding: 10px; vertical-align: top; }
.table th{ background: rgba(11, 98, 160, 0.06); text-align:left; }

/* Footer */
.site-footer{
  background: #ffffff;
  border-top: 1px solid var(--line);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
  padding: 26px 0;
}
.footer-title{ margin:0 0 10px; font-size: 16px; color: var(--blue-900); }
.footer-bottom{
  border-top: 1px solid var(--line);
  padding: 14px 0;
}
@media (max-width: 980px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* Small helpers */
.note{
  background: rgba(11, 98, 160, 0.06);
  border: 1px solid rgba(11, 98, 160, 0.18);
  border-radius: 10px;
  padding: 12px 14px;
}

.banner{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  background:#fff;
}
.banner img{ width:100%; height:auto; }

/* Topbar logo */
.topbar-left{ display:flex; align-items:center; gap:10px; }
.topbar-left span{ opacity:0.92; }
.topbar-logo{ width:auto; height:18px; display:block; }

/* Badge row */
.press-row{ display:flex; flex-wrap:wrap; gap:12px; align-items:center; }
.press-row img{ max-height: 36px; width:auto; object-fit:contain; filter: none; opacity: 0.92; }
