/* ===== DESTINATION PAGES ===== */

/* HERO */
.dest-hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 48px 96px;
  position: relative;
  overflow: hidden;
}
.dest-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  z-index: 0;
}
.dest-hero-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.dest-hero-inner { max-width: 900px; margin: 0 auto; }

.dest-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.dest-headline {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.dest-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 700px;
}

.dest-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-ghost-dark {
  display: inline-block;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost-dark:hover { color: var(--white); border-bottom-color: var(--white); }

.dest-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.dest-meta-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}
.dest-meta-sep { opacity: 0.3; }

/* SECTIONS */
.dest-section { background: var(--offwhite); padding: 80px 48px; }
.dest-section-alt { background: var(--cream); }
.dest-section-inner { max-width: 900px; margin: 0 auto; }

.dest-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 16px;
}

.dest-section-headline {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.dest-section-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 680px;
}

.dest-subhead {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  margin-top: 48px;
}

/* ASSUMPTIONS */
.dest-assumptions {
  background: var(--white);
  border: 1px solid rgba(13,27,42,0.1);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 40px;
}
.da-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 16px;
}
.da-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}
.da-item { display: flex; flex-direction: column; gap: 2px; }
.da-key { font-size: 12px; font-weight: 600; color: var(--navy); }
.da-val { font-size: 13px; color: var(--muted); }

/* TIER CARDS */
.dest-tier-card {
  background: var(--white);
  border: 1px solid rgba(13,27,42,0.1);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
}
.dtc-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 8px;
}
.dtc-profile {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(13,27,42,0.07);
}
.dtc-numbers { margin-bottom: 20px; }
.dtcn-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.dtcn-scenario { font-size: 13px; font-weight: 600; color: var(--navy); min-width: 160px; }
.dtcn-bars { flex: 1; height: 6px; background: rgba(13,27,42,0.08); border-radius: 3px; }
.dtcn-bar { height: 100%; border-radius: 3px; }
.dtcn-bar-stay { background: var(--red); }
.dtcn-bar-leave { background: var(--green); }
.dtcn-metric {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
  padding: 4px 0;
}
.dtcn-metric strong { color: var(--navy); font-weight: 600; }
.dtc-delta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--green-bg);
  border: 1px solid rgba(45,122,79,0.15);
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 12px;
}
.dtc-delta-label { font-size: 13px; color: var(--muted); }
.dtc-delta-value { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--green); }
.dtc-footnote { font-size: 12px; color: var(--muted); font-style: italic; line-height: 1.5; }

/* CALC REF */
.dest-calc-ref {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  background: var(--cream);
  border: 1px solid rgba(13,27,42,0.08);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 8px;
  line-height: 1.6;
}
.dest-calc-ref svg { flex-shrink: 0; color: var(--gold-dim); margin-top: 2px; }
.dest-calc-ref a { color: var(--gold-dim); font-weight: 600; text-decoration: none; }
.dest-calc-ref a:hover { text-decoration: underline; }

/* TABLES */
.dest-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 16px;
  margin-bottom: 8px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(13,27,42,0.1);
}
.dest-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 14px 20px;
  text-align: left;
}
.dest-table td {
  background: var(--white);
  padding: 14px 20px;
  color: var(--ink);
  border-bottom: 1px solid rgba(13,27,42,0.07);
  font-size: 13px;
  line-height: 1.5;
  vertical-align: top;
}
.dest-table tr:last-child td { border-bottom: none; }
.dest-table tr:nth-child(even) td { background: var(--cream); }
.dest-table-row-high td { background: rgba(154,107,0,0.06) !important; }
.dest-table-row-highlight td { background: rgba(45,122,79,0.06) !important; }
.dest-table-note { font-size: 12px; color: var(--muted); font-style: italic; margin-top: 8px; }
.dest-table a { color: var(--gold-dim); text-decoration: none; }
.dest-table a:hover { text-decoration: underline; }

/* RISK BADGES */
.dest-risk {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 20px;
}
.dest-risk-high { background: rgba(139,46,46,0.12); color: #8B2E2E; }
.dest-risk-medium { background: rgba(154,107,0,0.12); color: var(--amber); }
.dest-risk-low { background: rgba(45,122,79,0.12); color: var(--green); }

.dest-highlight-green { color: var(--green); }

/* INFO BOXES */
.dest-info-box {
  background: var(--white);
  border: 1px solid rgba(13,27,42,0.1);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 12px;
}
.dest-info-box-amber {
  border-color: rgba(154,107,0,0.25);
  background: var(--amber-bg);
}
.dib-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 8px;
}
.dest-info-box p, .dest-info-box-amber p { font-size: 14px; color: var(--ink); line-height: 1.6; }
.dest-info-box a, .dest-info-box-amber a { color: var(--gold-dim); text-decoration: none; }
.dest-info-box a:hover, .dest-info-box-amber a:hover { text-decoration: underline; }

/* CALLOUTS */
.dest-callout {
  background: var(--offwhite);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.6;
  margin: 24px 0;
}
.dest-callout-navy {
  background: var(--navy);
  color: var(--white);
  border-left-color: var(--gold);
}
.dest-callout-navy strong { color: var(--gold); }
.dest-callout-red {
  background: var(--red-bg);
  border-left-color: var(--red);
  color: var(--ink);
}
.dest-callout-red strong { color: var(--red); }
.dest-callout a { color: var(--gold-dim); text-decoration: none; }
.dest-callout-navy a { color: var(--gold); }

.dest-ref { font-size: 12px; color: var(--muted); margin-top: 8px; }
.dest-ref a { color: var(--gold-dim); text-decoration: none; }
.dest-ref a:hover { text-decoration: underline; }

/* GOLDEN VISA ROUTES */
.dest-golden-routes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.dgr-card {
  background: var(--white);
  border: 1px solid rgba(13,27,42,0.1);
  border-radius: 12px;
  padding: 24px;
}
.dgr-icon { font-size: 28px; margin-bottom: 12px; }
.dgr-name { font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 8px; }
.dgr-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* MISTAKES */
.dest-mistakes {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(13,27,42,0.1);
  border-radius: 16px;
  overflow: hidden;
}
.dm-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(13,27,42,0.07);
  background: var(--white);
}
.dm-item:last-child { border-bottom: none; }
.dm-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  padding: 28px 20px;
  border-right: 1px solid rgba(13,27,42,0.07);
  text-align: center;
}
.dm-content { padding: 28px 32px; }
.dm-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.dm-body { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.dm-mitigate {
  background: var(--green-bg);
  border: 1px solid rgba(45,122,79,0.15);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
}
.dm-mitigate strong { color: var(--green); }

/* NO DTA GRID */
.dest-no-dta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.dnda-item {
  background: var(--white);
  border: 1px solid rgba(13,27,42,0.1);
  border-radius: 12px;
  padding: 28px;
}
.dnda-icon { font-size: 28px; margin-bottom: 12px; }
.dnda-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.dnda-body { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.dnda-ref { font-size: 12px; color: var(--muted); }
.dnda-ref a { color: var(--gold-dim); text-decoration: none; }
.dnda-ref a:hover { text-decoration: underline; }

/* CHECKLIST */
.dest-checklist-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.dcc-group {
  background: var(--white);
  border: 1px solid rgba(13,27,42,0.1);
  border-radius: 12px;
  padding: 20px 24px;
}
.dcc-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 14px;
}
.dcc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.dcc-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--ink); line-height: 1.5; }
.dcc-check { color: var(--gold); flex-shrink: 0; font-size: 14px; }

.dest-checklist-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.dca-note { font-size: 14px; color: var(--muted); }
.dca-note a { color: var(--gold-dim); text-decoration: none; font-weight: 600; }
.dca-note a:hover { text-decoration: underline; }

/* COMPARE CTA */
.dest-compare-cta { margin-top: 32px; }

/* FAQ */
.dest-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(13,27,42,0.1);
  border-radius: 16px;
  overflow: hidden;
}
.df-item {
  background: var(--white);
  border-bottom: 1px solid rgba(13,27,42,0.07);
  padding: 24px 28px;
}
.df-item:last-child { border-bottom: none; }
.df-q {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.df-a { font-size: 14px; color: var(--muted); line-height: 1.7; }
.df-a a { color: var(--gold-dim); text-decoration: none; }
.df-a a:hover { text-decoration: underline; }

/* CTA BAND */
.dest-cta-band {
  background: var(--navy);
  padding: 80px 48px;
}
.dest-cta-band-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dcb-text {}
.dcb-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.dcb-headline {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.dcb-sub { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.dcb-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.dcb-btn-secondary {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s, border-color 0.2s;
}
.dcb-btn-secondary:hover { color: var(--white); border-bottom-color: var(--white); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .dest-hero { padding: 56px 24px 72px; }
  .dest-hero-inner { max-width: 100%; }
  .dest-headline { font-size: 34px; }
  .dest-sub { font-size: 15px; }
  .dest-section { padding: 56px 24px; }
  .dest-section-inner { max-width: 100%; }
  .dest-section-headline { font-size: 28px; }
  .dest-section-desc { font-size: 15px; }
  .dest-subhead { font-size: 20px; }
  .da-grid { grid-template-columns: 1fr; }
  .dest-golden-routes { grid-template-columns: 1fr; }
  .dest-no-dta-grid { grid-template-columns: 1fr; }
  .dest-checklist-categories { grid-template-columns: 1fr; }
  .dest-cta-band { padding: 56px 24px; }
  .dest-cta-band-inner { grid-template-columns: 1fr; gap: 40px; }
  .dcb-headline { font-size: 28px; }
  .dm-item { grid-template-columns: 56px 1fr; }
  .dm-num { font-size: 22px; padding: 20px 16px; }
  .dm-content { padding: 20px 20px; }
  .dest-tier-card { padding: 24px 20px; }
  .dtcn-scenario { min-width: 120px; font-size: 12px; }
  .dest-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -24px; padding: 0 24px; }
  .dest-table-wrap table { min-width: 600px; }
  .dest-table th, .dest-table td { padding: 10px 12px; }
  .dest-hero-actions { flex-direction: column; align-items: flex-start; }
  .dest-hero-meta { gap: 6px; }
}

@media (max-width: 480px) {
  .dest-hero { padding: 48px 16px 64px; }
  .dest-headline { font-size: 28px; }
  .dest-hero-meta { flex-direction: column; align-items: flex-start; gap: 6px; }
  .dest-meta-sep { display: none; }
  .dest-section { padding: 48px 16px; }
  .dest-section-headline { font-size: 24px; }
  .dest-subhead { font-size: 18px; }
  .dest-cta-band { padding: 48px 16px; }
  .dcb-headline { font-size: 24px; }
  .dtc-delta { flex-direction: column; align-items: flex-start; gap: 8px; }
  .dtc-delta-value { font-size: 18px; }
  .dest-checklist-cta { flex-direction: column; align-items: flex-start; }
}

/* ===== DESTINATIONS HUB ===== */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.hub-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(13,27,42,0.1);
  border-radius: 16px;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
}
.hub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(13,27,42,0.1);
  border-color: rgba(154,107,0,0.3);
}

.hub-card--other {
  background: var(--navy);
  border-color: rgba(255,255,255,0.12);
}
.hub-card--other:hover {
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.hc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.hc-flag { font-size: 32px; line-height: 1; }

.hc-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 20px;
}
.hc-badge--gold { background: rgba(154,107,0,0.15); color: var(--gold-dim); }
.hc-badge--green { background: rgba(45,122,79,0.15); color: var(--green); }

.hc-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.hub-card--other .hc-name { color: var(--white); }

.hc-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.hub-card--other .hc-tagline { color: rgba(255,255,255,0.6); }

.hc-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  flex: 1;
}
.hc-highlights li {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  padding-left: 14px;
  position: relative;
}
.hc-highlights li::before {
  content: '·';
  position: absolute;
  left: 3px;
  color: var(--gold);
  font-weight: 700;
}
.hub-card--other .hc-highlights li { color: rgba(255,255,255,0.5); }
.hub-card--other .hc-highlights li::before { color: var(--gold); }

.hc-arrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dim);
  letter-spacing: 0.02em;
}
.hub-card--other .hc-arrow { color: var(--gold); }

.hc-cta-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hub-grid { grid-template-columns: 1fr; }
}