/* =====================================================
   Horizon Theme — vibrant travel agency blog
   Sky blue · sunset orange · tropical coral · white
   ===================================================== */

:root {
  --bg:          #f0f9ff;   /* fresh sky white          */
  --bg-white:    #ffffff;
  --bg-muted:    #e0f2fe;   /* light sky               */
  --border:      #bae6fd;   /* sky border              */
  --text:        #0c2d3e;   /* deep ocean ink          */
  --text-muted:  #2d6e89;   /* ocean teal              */
  --text-light:  #6ba8c0;   /* sea foam                */
  --accent:      #0ea5e9;   /* bright tropical blue    */
  --accent-bg:   #e0f2fe;   /* sky mist                */
  --accent-dark: #0284c7;   /* deeper sky              */
  --gold:        #f97316;   /* vibrant sunset orange   */
  --gold-bg:     #fff7ed;   /* warm sunrise glow       */
  --coral:       #f43f5e;   /* tropical coral pink     */
  --max-w:       1200px;
  --read-w:      740px;
  --header-h:    64px;
  --radius:      6px;
  --font-sans:   -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-serif:  Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* ── Layout wrapper ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

/* Tri-color horizon stripe at the bottom of header */
.site-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--accent) 0%, var(--gold) 50%, var(--coral) 100%);
  opacity: 0.65;
  z-index: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}

.site-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -.3px;
  color: var(--text);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: var(--radius);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-muted); }

/* ── Search ── */
.nav-search { display: flex; align-items: center; gap: 6px; }

.search-input-sm {
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  color: var(--text);
  width: 180px;
  outline: none;
  transition: border-color .15s, width .2s;
}
.search-input-sm:focus { border-color: var(--accent); width: 220px; }

.search-btn-sm {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  color: var(--text-muted);
  padding: 4px;
  line-height: 1;
}

/* ── Main ── */
.site-main {
  min-height: calc(100vh - var(--header-h) - 140px);
  padding: 48px 0 72px;
}
/* Homepage hero flushes against the header — no top gap */
.site-main:has(.agency-hero) {
  padding-top: 0;
}

/* ── Ad zones ── */
.ad-zone { max-width: var(--max-w); margin: 0 auto 28px; padding: 0 24px; }
.ad-zone-footer { margin: 28px auto 0; }
.ad-unit { text-align: center; }
.ad-referral-link {
  display: inline-block;
  padding: 8px 20px;
  background: var(--accent-bg);
  color: var(--accent-dark);
  border: 1px solid rgba(0,119,182,.3);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  transition: background .15s;
}
.ad-referral-link:hover { background: #d4ecf7; }

/* ══════════════════════════════════════
   HERO POST — Cinematic full-bleed
══════════════════════════════════════ */
.hero-post {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 520px;
  margin-bottom: 64px;
  /* fallback gradient when no image */
  background: linear-gradient(145deg, #0369a1 0%, var(--accent) 55%, #38bdf8 100%);
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0, 80, 140, .22);
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.hero-post:hover .hero-img { transform: scale(1.04); }

/* Cinematic gradient — dark at bottom, clear at top */
.hero-post::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 28, 48, 0.92) 0%,
    rgba(12, 28, 48, 0.52) 40%,
    rgba(12, 28, 48, 0.12) 68%,
    transparent            100%
  );
  z-index: 1;
}

.hero-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 56px 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 760px;
}

.hero-body .category-badge { margin-bottom: 20px; }

.hero-title {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.5px;
  color: #fff;
  margin-bottom: 18px;
}
.hero-title a { color: inherit; }
.hero-title a:hover { opacity: .88; }

.hero-excerpt {
  font-size: 16px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  margin-bottom: 8px;
  max-width: 560px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, .52);
}

.hero-cta {
  display: inline-block;
  margin-top: 22px;
  padding: 11px 28px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s;
}
.hero-cta:hover {
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .65);
}

/* ══════════════════════════════════════
   SECTION TITLE — The Horizon divider
══════════════════════════════════════ */
.section-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 32px;
}
.section-title::before,
.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ══════════════════════════════════════
   DESTINATION CARDS — Post grid
══════════════════════════════════════ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

/* Destination card — image fills, text overlays */
.post-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 320px;
  /* fallback gradient for posts without images */
  background: linear-gradient(145deg, var(--accent-dark) 0%, var(--accent) 100%);
  box-shadow: 0 4px 20px rgba(0, 80, 140, .10);
  transition: transform .25s ease, box-shadow .25s ease;
  display: block;
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 80, 140, .22);
}

/* Cinematic overlay on cards */
.post-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 28, 48, 0.88) 0%,
    rgba(12, 28, 48, 0.38) 52%,
    rgba(12, 28, 48, 0.02) 100%
  );
  z-index: 1;
  transition: background .3s ease;
}
.post-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(12, 28, 48, 0.92) 0%,
    rgba(12, 28, 48, 0.55) 58%,
    rgba(12, 28, 48, 0.08) 100%
  );
}

/* Image fills the card */
.card-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .card-img { transform: scale(1.07); }

/* Text body at card bottom */
.card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px 22px;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
}

/* No image: body fills the full card so text sits at top-left naturally */
.post-card:not(:has(.card-img-wrap)) .card-body {
  position: relative;
  bottom: auto;
  height: 100%;
  min-height: 200px;
  padding: 26px 24px;
  justify-content: flex-start;
}
.card-body .category-badge { margin-bottom: 10px; align-self: flex-start; }

.card-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.2px;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-title a { color: inherit; }
.card-title a:hover { opacity: .85; }

.card-excerpt {
  font-size: 13px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.55;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, .48);
  margin-top: auto;
}

/* ══════════════════════════════════════
   BADGES
══════════════════════════════════════ */
.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-bg);
  border: 1px solid rgba(0, 119, 182, .3);
  padding: 3px 10px;
  border-radius: 20px;
  transition: background .15s;
}
.category-badge:hover { background: #d4ecf7; }

/* Category badge on dark backgrounds */
.hero-body .category-badge,
.card-body .category-badge {
  color: #fff;
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .3);
  backdrop-filter: blur(4px);
}
.hero-body .category-badge:hover,
.card-body .category-badge:hover {
  background: rgba(255, 255, 255, .25);
}

.ai-badge {
  font-size: 10px;
  font-weight: 700;
  background: rgba(109, 40, 217, .18);
  color: #c4b5fd;
  border: 1px solid rgba(196, 181, 253, .3);
  padding: 1px 7px;
  border-radius: 3px;
  letter-spacing: .04em;
}
/* ai-badge on light background (single post header) */
.post-meta-bar .ai-badge {
  background: #ede9fe;
  color: #7c3aed;
  border-color: #c4b5fd;
}

/* ══════════════════════════════════════
   SINGLE POST
══════════════════════════════════════ */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--gold));
  z-index: 200;
  transition: width .1s linear;
}

.single-post {
  max-width: var(--read-w);
  margin: 0 auto;
  padding: 0 24px;
}

.post-header {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.post-header .category-badge { margin-bottom: 20px; }

.post-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.5px;
  color: var(--text);
  margin-bottom: 22px;
}

.post-meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

/* Passport stamp tags */
.tag-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  padding: 3px 12px;
  border-radius: 3px;
  transition: border-color .15s, color .15s;
}
.tag-pill:hover { border-color: var(--accent); color: var(--accent); }

.post-featured-img {
  margin: 0 -24px 40px;
  max-width: calc(100% + 48px);
  border-radius: 10px;
  overflow: hidden;
}
.post-featured-img img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

/* ── Post content typography ── */
.post-content {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  font-family: var(--font-sans);
}

/* Large gold serif drop cap */
.post-content > p:first-child::first-letter {
  font-family: var(--font-serif);
  font-size: 4.5em;
  font-weight: 700;
  line-height: .78;
  float: left;
  margin: 8px 12px 0 0;
  color: var(--gold);
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -.3px;
  line-height: 1.3;
  margin: 2.2em 0 .8em;
  color: var(--text);
}
.post-content h2 { font-size: 26px; }
.post-content h3 { font-size: 21px; }
.post-content h4 { font-size: 18px; }

.post-content p { margin-bottom: 1.5em; }
.post-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.post-content a:hover { color: var(--accent-dark); }
.post-content strong { font-weight: 700; }
.post-content em { font-style: italic; }
.post-content ul, .post-content ol { padding-left: 1.7em; margin-bottom: 1.5em; }
.post-content li { margin-bottom: .5em; }

/* Travel journal blockquote */
.post-content blockquote {
  position: relative;
  border-left: 3px solid var(--gold);
  margin: 2.5em 0;
  padding: 24px 28px 24px 40px;
  background: var(--gold-bg);
  border-radius: 0 8px 8px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--text);
  line-height: 1.72;
}
.post-content blockquote::before {
  content: '\201C';
  position: absolute;
  top: -6px;
  left: 14px;
  font-size: 72px;
  color: var(--gold);
  opacity: 0.32;
  font-family: var(--font-serif);
  line-height: 1;
}
.post-content blockquote p { margin-bottom: 0; }

.post-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 3em 0;
}

.post-content code {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: .88em;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--accent-dark);
}
.post-content pre {
  background: #1a2433;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 2em 0;
  overflow-x: auto;
}
.post-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: #e8eaf0;
  font-size: 14px;
  line-height: 1.65;
}
.post-content img {
  width: 100%;
  border-radius: 8px;
  margin: 2em 0;
}
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-size: 15px;
}
.post-content th, .post-content td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
}
.post-content th { background: var(--bg-muted); font-weight: 700; }
.post-content tr:nth-child(even) td { background: var(--bg); }

/* ── Share buttons ── */
.post-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 16px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--bg-white);
  color: var(--text);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.share-btn:hover { background: var(--bg-muted); border-color: var(--accent); color: var(--accent); }
.share-btn-x { border-color: #1a1a1a; }
.share-btn-x:hover { background: #1a1a1a; color: #fff !important; border-color: #1a1a1a; }

/* ── Related posts ── */
.related-section {
  max-width: var(--read-w);
  margin: 56px auto 0;
  padding: 0 24px;
  border-top: 1px solid var(--border);
  padding-top: 44px;
}
.related-section .section-title { margin-bottom: 24px; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.related-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 200px;
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  transition: transform .22s, box-shadow .22s;
  cursor: pointer;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 80, 140, .2);
}
.related-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 28, 48, .85) 0%, rgba(12, 28, 48, .15) 100%);
  z-index: 1;
}
.related-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.related-card:hover .related-card-img { transform: scale(1.05); }
.related-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px;
  z-index: 2;
  color: #fff;
}
.related-card-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 5px;
}
.related-card-title a { color: inherit; }
.related-card-title a:hover { opacity: .8; }
.related-card-date { font-size: 11px; color: rgba(255, 255, 255, .52); }

/* ── Category header ── */
.category-header {
  padding: 40px 0 32px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.category-header h1 {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -.5px;
  margin-bottom: 10px;
}
.category-header p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
.category-count {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-bg);
  border: 1px solid rgba(0, 119, 182, .2);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ── Search ── */
.search-hero {
  text-align: center;
  padding: 48px 24px 36px;
  margin-bottom: 36px;
}
.search-hero h1 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -.4px;
}
.search-form {
  display: flex;
  gap: 10px;
  max-width: 580px;
  margin: 0 auto;
}
.search-input {
  flex: 1;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 11px 20px;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-bg);
}
.btn-search {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
}
.btn-search:hover { background: var(--accent-dark); }
.search-results-info {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

/* ── Custom page ── */
.custom-page {
  max-width: var(--read-w);
  margin: 0 auto;
  padding: 0 24px;
}
.custom-page h1 {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -.5px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.page-content { font-size: 16px; line-height: 1.85; }
.page-content p { margin-bottom: 1.5em; }
.page-content h2, .page-content h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  margin: 2em 0 .75em;
}
.page-content a { color: var(--accent); text-decoration: underline; }

/* ── Pagination ── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 20px 0 8px;
}
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-white);
  transition: border-color .15s, color .15s, background .15s;
}
.page-link:hover { border-color: var(--accent); color: var(--accent); }
.page-link.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.page-link.page-nav { font-size: 18px; font-weight: 400; }
.page-link.page-ellipsis { border-color: transparent; background: transparent; cursor: default; pointer-events: none; }

/* ── Sub navigation ── */
.site-subnav {
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border);
}
.site-subnav-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: auto;
}
.subnav-link {
  display: inline-block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.subnav-link:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ── Language dropdown ── */
.lang-dropdown { position: relative; }
.lang-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 10px;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: color .15s, border-color .15s, background .15s;
}
.lang-dropdown-btn:hover { color: var(--text); background: var(--bg-muted); }
.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  z-index: 200;
  overflow: hidden;
}
.lang-dropdown-menu.open { display: block; }
.lang-option {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  transition: background .12s;
}
.lang-option:hover { background: var(--bg-muted); }
.lang-option.lang-active { font-weight: 600; color: var(--accent); }

/* ── User navigation ── */
.user-nav { display: flex; align-items: center; gap: .5rem; }
.nav-link-auth {
  font-size: .82rem;
  padding: .28rem .7rem;
  border-radius: 4px;
  text-decoration: none;
  color: var(--accent);
  border: 1px solid var(--accent);
  transition: all .2s;
}
.nav-link-auth:hover { background: var(--accent); color: #fff; }
.nav-link-register { background: var(--accent); color: #fff !important; }
.nav-link-register:hover { background: var(--accent-dark) !important; border-color: var(--accent-dark); }
.nav-link-logout { border-color: var(--border); color: var(--text-light) !important; }
.nav-link-logout:hover { background: var(--bg-muted); color: var(--text-muted) !important; }

/* ── User dropdown ── */
.user-dropdown-wrap { position: relative; }
.user-dropdown-btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .3rem .7rem .3rem .35rem;
  cursor: pointer;
  font-size: .85rem;
  color: var(--text-muted);
  transition: background .15s;
}
.user-dropdown-btn:hover { background: var(--bg-muted); }
.user-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  flex-shrink: 0;
}
.user-caret { font-size: .65rem; color: var(--text-light); transition: transform .2s; }
.user-dropdown-btn[aria-expanded="true"] .user-caret { transform: rotate(180deg); }
.user-dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + .4rem);
  min-width: 190px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
  z-index: 999;
  overflow: hidden;
}
.user-dropdown-menu.open { display: block; }
.user-dropdown-header {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-muted);
}
.user-dropdown-header strong { display: block; font-size: .875rem; color: var(--text); }
.user-dropdown-header small { font-size: .75rem; color: var(--text-light); text-transform: capitalize; }
.user-dropdown-item { display: block; padding: .6rem 1rem; font-size: .875rem; color: var(--text-muted); text-decoration: none; transition: background .15s; }
.user-dropdown-item:hover { background: var(--bg-muted); color: var(--text); }
.user-dropdown-logout { color: var(--coral); border-top: 1px solid var(--border); }
.user-dropdown-logout:hover { background: #fef2f0; color: var(--coral); }

/* ── Footer ── */
.site-footer {
  background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 60%, #38bdf8 100%);
  padding: 40px 24px;
  text-align: center;
}
.site-footer-brand {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
}
.site-footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .03em;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-post { min-height: 400px; }
  .hero-body { padding: 36px 32px; max-width: 100%; }
  .hero-title { font-size: 32px; }
  .hero-excerpt { display: none; }
}

@media (max-width: 640px) {
  .hero-post { min-height: 320px; border-radius: 10px; }
  .hero-body { padding: 24px 20px; }
  .hero-title { font-size: 24px; }
  .hero-cta { display: none; }
  .post-title { font-size: 28px; }
  .posts-grid { grid-template-columns: 1fr; }
  .post-card { min-height: 260px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .search-input-sm { width: 130px; }
  .post-content > p:first-child::first-letter { font-size: 3.5em; }
  .post-featured-img { margin: 0 0 28px; max-width: 100%; border-radius: 6px; }
  .site-main { padding: 28px 0 56px; }
}

/* ══════════════════════════════════════
   PRODUCT QUICK-LINKS — core business
══════════════════════════════════════ */
.product-strip {
  background: var(--bg-white);
  padding: 32px 0 36px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(14,165,233,.08);
}

.product-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 14px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.product-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 12px 20px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--text-muted);
  white-space: nowrap;
  text-decoration: none;
  transition: color .18s, border-color .18s, background .18s, transform .18s, box-shadow .18s;
}
.product-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-bg);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(14,165,233,.18);
}

.product-link-icon {
  font-size: 36px;
  line-height: 1;
  display: block;
}
.product-link-label {
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 640px) {
  .product-links {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
  }
  .product-link { padding: 18px 8px 16px; }
  .product-link-icon { font-size: 28px; }
  .product-link-label { font-size: 11px; }
}

/* ══════════════════════════════════════
   TRAVEL AGENCY HOMEPAGE — Hero
══════════════════════════════════════ */
.agency-hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 110px; /* room for stats bar */
  background: linear-gradient(145deg, #0369a1 0%, #0ea5e9 35%, #38bdf8 60%, #f97316 85%, #fbbf24 100%);
}

.agency-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 35%, rgba(251,191,36,.22) 0%, transparent 55%),
              linear-gradient(to bottom, rgba(3,105,161,.18) 0%, rgba(3,105,161,.52) 100%);
  pointer-events: none;
}

.agency-hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px 32px;
  max-width: 840px;
}

/* Orange trusted badge */
.agency-hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(249,115,22,.85);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 28px;
  box-shadow: 0 3px 14px rgba(249,115,22,.45);
}

/* Big brand name */
.agency-hero-title {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 3px 28px rgba(0,0,0,.22);
}

/* Fixed punchy tagline */
.agency-hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: rgba(255,255,255,.85);
  margin-bottom: 18px;
  letter-spacing: .02em;
}

/* SiteDesc — what the business does */
.agency-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Product tabs inside hero */
.hero-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  max-width: 820px;
}
.hero-product-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 16px 22px;
  background: rgba(255,255,255,.16);
  border: 1.5px solid rgba(255,255,255,.28);
  border-radius: 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  min-width: 80px;
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.hero-product-tab:hover {
  background: rgba(255,255,255,.3);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.hero-product-icon {
  font-size: 32px;
  line-height: 1;
  display: block;
}

/* Trust pills */
.agency-hero-features {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.agency-hero-feature {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.24);
  padding: 7px 16px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

/* CTA row */
.agency-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.agency-btn-primary {
  display: inline-block;
  padding: 15px 38px;
  background: var(--gold);
  color: #fff;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 22px rgba(249,115,22,.48);
}
.agency-btn-primary:hover {
  background: #ea6c0a;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(249,115,22,.58);
}

.agency-btn-ghost {
  display: inline-block;
  padding: 15px 38px;
  background: rgba(255,255,255,.13);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.42);
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s;
}
.agency-btn-ghost:hover {
  background: rgba(255,255,255,.23);
  border-color: rgba(255,255,255,.72);
}

/* Stats bar — frosted glass pinned to bottom of hero */
.agency-hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  background: rgba(3,69,110,.52);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.16);
}
.agency-hero-stat {
  flex: 1;
  text-align: center;
  padding: 22px 12px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.agency-hero-stat:last-child { border-right: none; }
.agency-hero-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
}
.agency-hero-stat span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
}

.agency-hero-scroll {
  position: absolute;
  bottom: 122px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  z-index: 2;
  animation: heroScrollBounce 2s ease-in-out infinite;
}
@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Responsive */
@media (max-width: 900px) {
  .agency-hero { padding-bottom: 96px; }
  .agency-hero-title { font-size: 52px; }
  .agency-hero-tagline { font-size: 18px; }
  .agency-hero-stat strong { font-size: 26px; }
  .agency-hero-scroll { bottom: 108px; }
}
@media (max-width: 640px) {
  .agency-hero { min-height: 85vh; padding-bottom: 86px; }
  .agency-hero-title { font-size: 36px; }
  .agency-hero-tagline { font-size: 15px; }
  .agency-hero-features { display: none; }
  .agency-hero-scroll { display: none; }
  .agency-hero-stat { padding: 14px 6px; }
  .agency-hero-stat strong { font-size: 20px; }
  .agency-hero-stat span { font-size: 9px; }
}

/* ══════════════════════════════════════
   DESTINATIONS — category tiles
══════════════════════════════════════ */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 56px;
}

.destination-tile {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 160px;
  /* gradient fallback — per-tile background-image overrides in production */
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 55%, #38bdf8 100%);
  cursor: pointer;
  transition: transform .22s, box-shadow .22s;
  display: block;
}
.destination-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,80,140,.22);
}

.destination-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,16,28,.88) 0%,
    rgba(8,16,28,.3) 60%,
    transparent 100%
  );
  transition: background .25s;
}
.destination-tile:hover .destination-tile-overlay {
  background: linear-gradient(
    to top,
    rgba(8,16,28,.94) 0%,
    rgba(8,16,28,.5) 70%,
    rgba(8,16,28,.1) 100%
  );
}

.destination-tile-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 18px;
  z-index: 2;
  color: #fff;
}

.destination-tile-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 3px;
}

.destination-tile-desc {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.destination-tile-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 16px;
  color: rgba(255,255,255,.4);
  transition: color .2s, transform .2s;
}
.destination-tile:hover .destination-tile-arrow {
  color: var(--gold);
  transform: translate(2px,-2px);
}

/* ══════════════════════════════════════
   FEATURED PACKAGES — top 3 posts
══════════════════════════════════════ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 64px;
}

.featured-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s, box-shadow .22s;
  position: relative;
}
.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,80,140,.14);
}

/* Reuse card-img-wrap/card-img for image area */
.featured-card .card-img-wrap {
  position: relative;
  height: 220px;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
}
.featured-card .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: static;
  transition: transform .5s;
}
.featured-card:hover .card-img { transform: scale(1.05); }

.featured-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.featured-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.2px;
  margin-bottom: 10px;
  color: var(--text);
}
.featured-title a { color: inherit; transition: color .15s; }
.featured-title a:hover { color: var(--accent); }

.featured-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 18px;
}

.featured-read-btn {
  display: inline-block;
  align-self: flex-start;
  padding: 9px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  transition: background .15s, transform .15s;
}
.featured-read-btn:hover {
  background: var(--accent-dark);
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   WHY CHOOSE US — pitch section
══════════════════════════════════════ */
.why-section {
  background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 40%, #38bdf8 70%, #f97316 100%);
  padding: 72px 0;
  margin: 64px 0;
  position: relative;
  overflow: hidden;
}
/* decorative radial glow */
.why-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(251,191,36,.35) 0%, transparent 70%);
  pointer-events: none;
}
.why-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(244,63,94,.25) 0%, transparent 70%);
  pointer-events: none;
}

.why-section .section-title {
  color: rgba(255,255,255,.5);
  margin-bottom: 40px;
  position: relative; z-index: 1;
}
.why-section .section-title::before,
.why-section .section-title::after {
  background: rgba(255,255,255,.2);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  position: relative; z-index: 1;
}

.why-card {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  transition: background .2s, transform .2s;
}
.why-card:hover {
  background: rgba(255,255,255,.22);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(255,255,255,.3));
}

.why-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.why-desc {
  font-size: 14px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   RESPONSIVE — homepage sections
══════════════════════════════════════ */
@media (max-width: 900px) {
  .agency-hero-title { font-size: 46px; }
  .agency-hero-sub { font-size: 16px; }
  .featured-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .agency-hero { min-height: 80vh; }
  .agency-hero-title { font-size: 34px; }
  .agency-hero-eyebrow { display: none; }
  .agency-hero-scroll { display: none; }
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .why-section { padding: 48px 0; }
}

/* ── RTL support ── */
[dir="rtl"] body { font-family: Tahoma, Arial, sans-serif; }
[dir="rtl"] .site-nav,
[dir="rtl"] .nav-links,
[dir="rtl"] .post-meta,
[dir="rtl"] .post-meta-bar { flex-direction: row-reverse; }
[dir="rtl"] .card-body,
[dir="rtl"] .hero-body,
[dir="rtl"] .post-header,
[dir="rtl"] .post-content { text-align: right; }
[dir="rtl"] .post-content > p:first-child::first-letter { float: right; margin: 8px 0 0 12px; }
[dir="rtl"] .post-content blockquote { border-left: none; border-right: 3px solid var(--gold); border-radius: 8px 0 0 8px; }
[dir="rtl"] .post-content blockquote::before { left: auto; right: 14px; }

/* ══════════════════════════════════════
   MOBILE HAMBURGER NAV
══════════════════════════════════════ */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 5px 10px;
  font-size: 18px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
  transition: background .15s, color .15s;
}
.nav-toggle:hover { background: var(--bg-muted); color: var(--text); }

@media (max-width: 700px) {
  .nav-toggle { display: block; }

  .site-nav { gap: 10px; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 2px solid var(--accent);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 16px;
    gap: 10px;
    z-index: 99;
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
  }
  .nav-links.open { display: flex; }

  .nav-search { width: 100%; }
  .search-input-sm {
    width: 100% !important;
    flex: 1;
    border-radius: var(--radius);
    padding: 8px 14px;
  }
  .search-btn-sm { font-size: 16px; }

  .user-nav {
    display: flex;
    gap: 8px;
  }
  .nav-link-auth {
    flex: 1;
    text-align: center;
    padding: 9px 12px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--border);
  }
  .nav-link-register {
    background: var(--accent);
    color: #fff !important;
    border-color: var(--accent);
  }
  .nav-link-register:hover { background: var(--accent-dark) !important; }

  .lang-dropdown { width: 100%; }
  .lang-dropdown-btn { width: 100%; justify-content: center; text-align: center; }
  .lang-dropdown-menu { position: static; width: 100%; box-shadow: none; border: 1px solid var(--border); }

  .user-dropdown-wrap { width: 100%; }
  .user-dropdown-btn { width: 100%; justify-content: center; }
  .user-dropdown-menu { position: static; width: 100%; box-shadow: none; border: 1px solid var(--border); }
}

/* ══════════════════════════════════════
   SUBNAV — scrollable on mobile
══════════════════════════════════════ */
@media (max-width: 700px) {
  .site-subnav-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
    padding-bottom: 2px;
  }
  .site-subnav-inner::-webkit-scrollbar { display: none; }
}

/* ══════════════════════════════════════
   SEARCH PAGE — stack on mobile
══════════════════════════════════════ */
@media (max-width: 640px) {
  .search-form {
    flex-direction: column;
    gap: 8px;
  }
  .search-input { border-radius: var(--radius); width: 100%; }
  .btn-search { border-radius: var(--radius); width: 100%; padding: 12px; }
}

/* ══════════════════════════════════════
   VERY SMALL SCREENS — 480px
══════════════════════════════════════ */
@media (max-width: 480px) {
  /* Destinations — single column */
  .destinations-grid { grid-template-columns: 1fr; }

  /* Why section — single column */
  .why-grid { grid-template-columns: 1fr; }

  /* Stats bar — 2 × 2 grid instead of 4 in a row */
  .agency-hero-stats {
    flex-wrap: wrap;
    padding-bottom: 0;
  }
  .agency-hero-stat {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .agency-hero-stat:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.1); }
  .agency-hero-stat:nth-last-child(-n+2) { border-bottom: none; }

  /* Adjust hero bottom padding for 2-row stats bar */
  .agency-hero { padding-bottom: 160px; }

  /* Hero product tabs — smaller */
  .hero-product-tab {
    padding: 12px 10px;
    gap: 6px;
    min-width: 68px;
  }
  .hero-product-icon { font-size: 26px; }

  /* Agency hero title */
  .agency-hero-title { font-size: 28px; letter-spacing: -.5px; }
  .agency-hero-tagline { font-size: 14px; }

  /* Featured card body */
  .featured-body { padding: 16px 18px 18px; }
  .featured-title { font-size: 17px; }

  /* Related posts — single column on very small */
  .related-grid { grid-template-columns: 1fr; }

  /* Post title smaller */
  .post-title { font-size: 24px; }

  /* Container padding tighter */
  .container { padding: 0 14px; }
  .single-post { padding: 0 14px; }
}

/* ══════════════════════════════════════
   PROFILE FORM — mobile single column
   (overrides inline style in profile.html)
══════════════════════════════════════ */
@media (max-width: 520px) {
  .profile-form-row { grid-template-columns: 1fr !important; }
  .profile-page { margin: 1rem auto; }
  .profile-card { padding: 1.25rem; }
  .profile-form-actions { flex-direction: column; }
  .btn-profile-save, .btn-profile-logout { width: 100%; text-align: center; }
}
