:root {
  --teal: #0AB89D; --teal-deep: #065C50; --gold: #E8A33D; --coral: #FF6B5C;
  --sand: #FBF7F0; --sand-deep: #F3ECDE; --ink: #1A2B2A; --ink-soft: #5C6E6C;
  --white: #FFFFFF; --radius: 14px;
  --shadow: 0 8px 30px rgba(6,92,80,.08); --shadow-lg: 0 24px 60px rgba(6,92,80,.14);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', -apple-system, sans-serif; background: var(--sand); color: var(--ink); line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, .display { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.15; color: var(--ink); letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 999px; border: none; font-size: 15px; font-weight: 600; cursor: pointer; font-family: inherit; transition: transform .15s, box-shadow .15s; }
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(232,163,61,.4); }
.btn-outline { background: transparent; border: 1.5px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-white { background: var(--white); color: var(--teal-deep); }
.btn-lg { padding: 16px 36px; font-size: 16px; box-shadow: 0 12px 28px rgba(232,163,61,.35); }
.btn-lg:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(232,163,61,.45); }

.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 6px; }

/* Quiet secondary contact line — supports the primary CTA, doesn't compete with it */
.hero-quick-contact { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.hero-quick-contact a { display: flex; align-items: center; gap: 6px; color: var(--teal-deep); }
.hero-quick-contact a:hover { text-decoration: underline; }
.hero-quick-contact a.hqc-wa { color: #1DA851; }
.hqc-divider { color: var(--ink-soft); font-weight: 400; font-size: 13px; }

/* ── Top utility bar ── */
.topbar { background: var(--teal-deep); color: rgba(255,255,255,.9); font-size: 12.5px; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-left span { display: flex; align-items: center; gap: 5px; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-right a:hover { color: var(--gold); }

/* ── Header ── */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(251,247,240,.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(6,92,80,.08); }
.site-header .container { display: flex; align-items: center; gap: 18px; height: 80px; }
.site-logo img { height: 44px; }
.site-nav { display: flex; gap: 3px; margin-left: 6px; font-size: 13.5px; font-weight: 600; }
.site-nav > a, .nav-dropdown > a { color: var(--ink-soft); position: relative; padding: 9px 12px; border-radius: 999px; display: flex; align-items: center; gap: 6px; transition: background .15s, color .15s; }
.site-nav > a i:first-child, .nav-dropdown > a i:first-child { font-size: 16px; color: var(--teal); opacity: .75; transition: opacity .15s; }
.site-nav > a:hover, .site-nav > a.active, .nav-dropdown:hover > a { color: var(--teal-deep); background: var(--sand-deep); }
.site-nav > a:hover i:first-child, .site-nav > a.active i:first-child, .nav-dropdown:hover > a i:first-child { opacity: 1; }
.site-nav > a.active { background: var(--sand-deep); font-weight: 700; }
.chev { font-size: 11px !important; color: var(--ink-soft) !important; opacity: 1 !important; margin-left: -2px; transition: transform .15s; }
.nav-dropdown:hover .chev { transform: rotate(180deg); }

/* ── Nav dropdown ── */
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: pointer; }
.nav-dropdown-panel {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg); padding: 10px;
  min-width: 220px; opacity: 0; visibility: hidden; transition: opacity .18s, transform .18s;
  z-index: 50;
}
.nav-dropdown-panel::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: #fff; border-radius: 2px;
}
.nav-dropdown:hover .nav-dropdown-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-panel a {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--ink); white-space: nowrap;
}
.nav-dropdown-panel a:hover { background: var(--sand); color: var(--teal-deep); }
.nav-dropdown-panel a i { font-size: 16px; color: var(--teal); width: 18px; }
.header-cta { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.header-phone { display: flex; flex-direction: column; align-items: flex-end; }
.header-phone .lbl { font-size: 10.5px; color: var(--ink-soft); }
.header-phone .num { font-size: 14px; font-weight: 700; color: var(--teal-deep); }

/* ── Hero with search widget ── */
.hero { position: relative; padding: 44px 0 0; overflow: hidden; }
.hero-bg-shape { position: absolute; top: -180px; right: -200px; width: 640px; height: 640px; background: radial-gradient(circle, rgba(10,184,157,.14) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero-content { text-align: center; position: relative; padding-bottom: 40px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--white); padding: 7px 16px; border-radius: 999px; font-size: 12.5px; font-weight: 700; color: var(--teal-deep); box-shadow: var(--shadow); margin-bottom: 20px; }
.hero h1 { font-size: 46px; margin-bottom: 14px; }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero-sub { font-size: 16.5px; color: var(--ink-soft); max-width: 560px; margin: 0 auto 8px; }

/* Search widget tabs */

/* ── Quick services row ── */
.quick-services { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin: 36px 0 0; }
.qs-item { background: #fff; border-radius: 14px; padding: 20px 12px; text-align: center; box-shadow: var(--shadow); transition: transform .15s; cursor: pointer; }
.qs-item:hover { transform: translateY(-4px); }
.qs-icon { width: 46px; height: 46px; background: var(--sand); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-size: 22px; }
.qs-item span { font-size: 12.5px; font-weight: 700; }

.trust-strip { background: var(--teal-deep); color: #fff; padding: 30px 0; margin-top: 50px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.trust-num { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 700; color: var(--gold); }
.trust-label { font-size: 12px; opacity: .85; margin-top: 3px; }

.section { padding: 64px 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; gap: 20px; }
.section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.section-head h2 { font-size: 30px; }
.tabs-toggle { display: flex; gap: 4px; background: var(--sand-deep); border-radius: 999px; padding: 4px; }
.tabs-toggle button { border: none; background: none; padding: 8px 18px; border-radius: 999px; font-size: 12.5px; font-weight: 700; cursor: pointer; color: var(--ink-soft); }
.tabs-toggle button.active { background: #fff; color: var(--teal-deep); box-shadow: 0 2px 8px rgba(0,0,0,.08); }

/* Package cards — boarding pass signature */
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pkg-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-photo { position: relative; height: 150px; overflow: hidden; }
.pkg-photo img { width: 100%; height: 100%; object-fit: cover; }
.pkg-badge { position: absolute; top: 10px; left: 10px; background: var(--coral); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.pkg-price-tag { position: absolute; top: 10px; right: 10px; background: var(--white); padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; color: var(--teal-deep); box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.pkg-perf { position: relative; height: 0; border-top: 2px dashed rgba(6,92,80,.18); margin: 0 16px; }
.pkg-perf::before, .pkg-perf::after { content: ''; position: absolute; top: -8px; width: 16px; height: 16px; background: var(--sand); border-radius: 50%; }
.pkg-perf::before { left: -24px; } .pkg-perf::after { right: -24px; }
.pkg-body { padding: 15px; flex: 1; display: flex; flex-direction: column; }
.pkg-dest { font-size: 10.5px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 3px; }
.pkg-title { font-size: 15.5px; margin-bottom: 10px; line-height: 1.3; }
.pkg-foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 10px; border-top: 1px solid var(--sand-deep); }
.pkg-price { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 700; color: var(--teal-deep); }
.pkg-price small { font-family: inherit; font-size: 10px; font-weight: 500; color: var(--ink-soft); display:block; }
.pkg-arrow { width: 30px; height: 30px; background: var(--sand-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.pkg-card:hover .pkg-arrow { background: var(--gold); }

/* Destination Guide cards — editorial style, deliberately distinct from
   package cards (no price/perforation) since guides are informational,
   not something to purchase directly */
.guide-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.guide-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow); display: block; transition: transform .2s, box-shadow .2s; }
.guide-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.guide-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.guide-card:hover img { transform: scale(1.08); }
.guide-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,20,17,0) 35%, rgba(6,20,17,.88) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; }
.guide-title { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.guide-teaser { font-size: 12px; color: rgba(255,255,255,.85); margin-bottom: 10px; line-height: 1.4; }
.guide-link { font-size: 12px; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: 4px; }

/* Destination pills */
.dest-strip { display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px; }
.dest-pill { text-align: center; }
.dest-pill-img { width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow); margin-bottom: 10px; border: 3px solid var(--white); }
.dest-pill-img img { width: 100%; height: 100%; object-fit: cover; }
.dest-pill-name { font-weight: 700; font-size: 12.5px; }

/* Theme chips */
.theme-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.theme-chip { background: #fff; border: 1px solid var(--sand-deep); border-radius: 12px; padding: 12px 18px; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow); }
.theme-chip small { display: block; font-weight: 400; color: var(--ink-soft); font-size: 11px; margin-top: 2px; }

/* Why us */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { background: #fff; border-radius: 16px; padding: 24px; box-shadow: var(--shadow); }
.why-icon { width: 46px; height: 46px; background: var(--sand); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px; }
.why-card h4 { font-size: 15.5px; margin-bottom: 6px; }
.why-card p { font-size: 13px; color: var(--ink-soft); }

/* Certifications */
.cert-strip { display: flex; justify-content: center; align-items: center; gap: 50px; flex-wrap: wrap; padding: 30px 0; }
.cert-item { text-align: center; }
.cert-item .cert-badge { width: 56px; height: 56px; background: var(--sand); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 8px; }
.cert-item span { font-size: 11.5px; font-weight: 700; color: var(--ink-soft); }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card { background: #fff; border-radius: 16px; padding: 24px; box-shadow: var(--shadow); }
.testi-stars { color: var(--gold); margin-bottom: 10px; font-size: 14px; }
.testi-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testi-person { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; }
.testi-name { font-weight: 700; font-size: 13px; }
.testi-loc { font-size: 11px; color: var(--ink-soft); }

/* Relationship manager banner */
.rm-banner { background: linear-gradient(120deg, var(--teal-deep), var(--teal)); border-radius: 24px; padding: 36px 44px; display: flex; align-items: center; gap: 24px; color: #fff; }
.rm-avatar { width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; border: 3px solid rgba(255,255,255,.3); }
.rm-banner h3 { color: #fff; font-size: 21px; margin-bottom: 4px; }
.rm-banner p { opacity: .9; font-size: 13.5px; }

/* Sister brands */
.sister-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sister-card { background: #fff; border-radius: 14px; padding: 20px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px; }
.sister-icon { width: 44px; height: 44px; background: var(--sand); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.sister-card h4 { font-size: 14px; margin-bottom: 2px; }
.sister-card p { font-size: 11.5px; color: var(--ink-soft); }

.cta-banner { background: linear-gradient(120deg, var(--teal-deep), var(--teal)); border-radius: 28px; padding: 50px; text-align: center; color: #fff; }
.cta-banner h2 { color: #fff; font-size: 28px; margin-bottom: 10px; }
.cta-banner p { opacity: .9; margin-bottom: 22px; }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 50px 0 0; margin-top: 60px; }
.footer-top-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.footer-logo { margin-bottom: 12px; }
.footer-logo img { height: 40px; filter: brightness(0) invert(1); opacity: .95; }
.footer-col h4 { color: #fff; font-size: 12.5px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .04em; }
.footer-col a, .footer-col p { display: block; font-size: 12.5px; margin-bottom: 9px; color: rgba(255,255,255,.6); }
.footer-col a:hover { color: var(--gold); }
.footer-office { font-size: 12px; margin-bottom: 16px; line-height: 1.7; }
.footer-office strong { color: #fff; display: block; margin-bottom: 3px; font-size: 12.5px; }
.footer-certs { display: flex; gap: 24px; align-items: center; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }
.footer-certs .fc-badge { display: flex; align-items: center; gap: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: 11.5px; display: flex; justify-content: space-between; }

.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 200; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,.4); font-size: 26px; color: #fff; }
.rm-float { position: fixed; bottom: 90px; right: 24px; z-index: 199; background: #fff; border-radius: 14px; padding: 10px 14px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; max-width: 220px; font-size: 11.5px; }
.rm-float-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; font-size: 13px; }

/* ══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE
   ══════════════════════════════════════════════════════════ */

/* Hamburger menu (hidden on desktop) */
.mobile-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--ink); cursor: pointer; padding: 4px; }
.mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(6,20,17,.5); z-index: 998; }
.mobile-nav-overlay.show { display: block; }
.mobile-nav-panel {
  position: fixed; top: 0; right: -300px; width: 280px; height: 100%; background: #fff;
  z-index: 999; transition: right .25s ease; padding: 20px; overflow-y: auto;
}
.mobile-nav-panel.show { right: 0; }
.mobile-nav-panel a { display: block; padding: 12px 8px; font-size: 14.5px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--sand-deep); }
.mnav-section-label { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); padding: 14px 8px 6px; }
.mobile-nav-close { display: flex; justify-content: flex-end; margin-bottom: 10px; }
.mobile-nav-close button { background: var(--sand); border: none; width: 34px; height: 34px; border-radius: 50%; font-size: 18px; cursor: pointer; }

@media (max-width: 900px) {
  .container { padding: 0 16px; }

  /* Topbar: hide hours, keep phone + login */
  .topbar-left span:nth-child(2) { display: none; }
  .topbar { font-size: 11px; }

  /* Header */
  .site-header .container { height: 64px; gap: 12px; }
  .site-logo img { height: 34px; }
  .site-nav { display: none; }
  .mobile-toggle { display: block; margin-left: auto; }
  .header-cta { margin-left: 0; gap: 8px; }
  .header-phone { display: none; }
  .header-cta .btn-primary { padding: 9px 16px; font-size: 12.5px; }

  /* Hero */
  .hero { padding: 24px 0 0; }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 14px; padding: 0 8px; }
  .hero-eyebrow { font-size: 11px; padding: 6px 12px; }
  .hero-actions { padding: 0 8px; }
  .hero-actions .btn-lg { width: 100%; justify-content: center; padding: 15px; }
  .hero-quick-contact { flex-direction: column; gap: 6px; font-size: 13px; }
  .hqc-divider { display: none; }

  /* Search widget: stack tabs + form to single column */

  /* Quick services: 3 columns */
  .quick-services { grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 24px; }
  .qs-item { padding: 14px 8px; }
  .qs-icon { width: 38px; height: 38px; font-size: 18px; margin-bottom: 6px; }
  .qs-item span { font-size: 11px; }

  /* Trust strip: 2 columns */
  .trust-strip { padding: 22px 0; margin-top: 30px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 10px; }
  .trust-num { font-size: 22px; }
  .trust-label { font-size: 10.5px; }

  /* Section spacing */
  .section { padding: 40px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .section-head h2 { font-size: 23px; }

  /* Package grid: 2 columns */
  .pkg-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pkg-title { font-size: 13.5px; }
  .pkg-price { font-size: 15px; }
  .pkg-photo { height: 110px; }

  /* Destination guides: 2 columns */
  .guide-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .guide-title { font-size: 16px; }
  .guide-teaser { font-size: 11px; }

  /* Destinations: horizontal scroll instead of squished grid */
  .dest-strip { display: flex; overflow-x: auto; gap: 16px; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
  .dest-pill { flex: 0 0 84px; }

  /* Theme chips already wrap — just shrink */
  .theme-chip { font-size: 12px; padding: 10px 14px; }

  /* Why-us: single column */
  .why-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Certifications: smaller, wrap tighter */
  .cert-strip { gap: 24px 20px; padding: 10px 0; }
  .cert-item .cert-badge { width: 44px; height: 44px; font-size: 18px; }
  .cert-item span { font-size: 10px; }

  /* Testimonials: single column */
  .testi-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Relationship manager banner: stack vertically */
  .rm-banner { flex-direction: column; text-align: center; padding: 28px 20px; gap: 16px; }
  .rm-banner h3 { font-size: 17px; }
  .rm-banner .btn { width: 100%; justify-content: center; }

  /* Sister services: single column */
  .sister-grid { grid-template-columns: 1fr; gap: 10px; }

  /* CTA banner */
  .cta-banner { padding: 32px 20px; border-radius: 20px; }
  .cta-banner h2 { font-size: 22px; }

  /* Footer: 2 columns, office/logo full width */
  .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .footer-top-grid > div:first-child { grid-column: 1 / -1; }
  .footer-certs { flex-wrap: wrap; gap: 14px; justify-content: center; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  /* Floating widgets: shrink, avoid overlap with content */
  .rm-float { max-width: 170px; padding: 8px 10px; font-size: 10.5px; bottom: 84px; }
  .rm-float-avatar { width: 28px; height: 28px; font-size: 11px; }
  .wa-float { width: 48px; height: 48px; font-size: 22px; bottom: 18px; right: 18px; }
}

@media (max-width: 480px) {
  .quick-services { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 24px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   AI TRIP PLANNER — homepage section
   ══════════════════════════════════════════════════════════ */
.ai-planner-card {
  position: relative; background: #fff; border-radius: 28px; padding: 40px 44px;
  box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid rgba(10,184,157,.12);
  max-width: 900px; margin: 28px auto 0;
}
.ai-planner-glow {
  position: absolute; top: -120px; left: -80px; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,163,61,.16) 0%, rgba(10,184,157,.10) 45%, transparent 75%);
  pointer-events: none;
}
.ai-planner-head { position: relative; text-align: center; max-width: 560px; margin: 0 auto 28px; }
.ai-badge {
  display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(120deg, var(--teal), var(--teal-deep));
  color: #fff; padding: 6px 14px; border-radius: 999px; font-size: 11.5px; font-weight: 700; margin-bottom: 14px;
}
.ai-planner-head h2 { font-size: 28px; margin-bottom: 8px; }
.ai-highlight { color: var(--gold); }
.ai-planner-head p { font-size: 14.5px; color: var(--ink-soft); }

.ai-chat-demo { position: relative; max-width: 720px; margin: 0 auto; }
.ai-input-row { display: flex; gap: 10px; margin-bottom: 14px; }
.ai-input-box {
  flex: 1; display: flex; align-items: center; gap: 10px; background: var(--sand); border: 1.5px solid var(--sand-deep);
  border-radius: 14px; padding: 15px 18px; font-size: 14px; color: var(--ink);
}
.ai-input-icon { color: var(--teal); font-size: 18px; flex-shrink: 0; }
.ai-typed-text { flex: 1; }
.ai-cursor { color: var(--teal); font-weight: 400; animation: blink 1s step-start infinite; }
@keyframes blink { 50% { opacity: 0; } }
.ai-ask-btn { flex-shrink: 0; padding: 15px 24px; }

.ai-prompt-chips { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; font-size: 12.5px; color: var(--ink-soft); }
.ai-chip {
  background: var(--sand); border: 1px solid var(--sand-deep); border-radius: 999px; padding: 7px 14px;
  font-size: 12px; font-weight: 600; color: var(--teal-deep); cursor: pointer; font-family: inherit;
}
.ai-chip:hover { background: var(--sand-deep); }

.ai-response { display: flex; gap: 14px; background: linear-gradient(135deg, #F7FDFC, #FBF9F3); border-radius: 16px; padding: 20px; border: 1px solid rgba(10,184,157,.14); }
.ai-response-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px;
}
.ai-response-body p { font-size: 13.5px; color: var(--ink); margin-bottom: 14px; line-height: 1.6; }
.ai-response-cards { display: flex; flex-direction: column; gap: 8px; }
.ai-mini-card { display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 12px; padding: 10px; box-shadow: 0 4px 14px rgba(0,0,0,.06); }
.ai-mini-card img { width: 52px; height: 52px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.ai-mini-card > i { color: var(--gold); font-size: 16px; flex-shrink: 0; }
.ai-mini-title { font-size: 13.5px; font-weight: 700; }
.ai-mini-meta { font-size: 11.5px; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.ai-match { background: #E1F5E0; color: #1E6B1E; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 999px; }

/* Floating AI Assistant widget (stacked above WhatsApp float) */
.ai-float {
  position: fixed; bottom: 90px; right: 24px; z-index: 201; width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep)); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(10,184,157,.4); font-size: 24px; color: #fff; cursor: pointer; border: none;
}
.ai-float-pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--teal); opacity: .5; animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.7); opacity: 0; } }

.ai-chat-panel {
  position: fixed; bottom: 158px; right: 24px; z-index: 202; width: 340px; max-height: 460px;
  background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden;
  display: none; flex-direction: column; border: 1px solid rgba(10,184,157,.15);
}
.ai-chat-panel.show { display: flex; }
.ai-chat-panel-head {
  background: linear-gradient(120deg, var(--teal-deep), var(--teal)); color: #fff; padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
}
.ai-chat-panel-avatar { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; }
.ai-chat-panel-head div h4 { color: #fff; font-size: 13.5px; margin-bottom: 1px; }
.ai-chat-panel-head div span { font-size: 10.5px; opacity: .85; display: flex; align-items: center; gap: 4px; }
.ai-online-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; display: inline-block; }
.ai-chat-panel-close { margin-left: auto; background: none; border: none; color: #fff; font-size: 18px; cursor: pointer; opacity: .8; }
.ai-chat-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; background: var(--sand); }
.ai-msg { max-width: 80%; padding: 10px 14px; border-radius: 14px; font-size: 12.5px; line-height: 1.5; }
.ai-msg-bot { background: #fff; align-self: flex-start; border-bottom-left-radius: 4px; box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.ai-msg-user { background: var(--teal); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.ai-chat-input-row { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--sand-deep); background: #fff; }
.ai-chat-input-row input { flex: 1; border: 1px solid var(--sand-deep); border-radius: 999px; padding: 9px 14px; font-size: 12.5px; font-family: inherit; }
.ai-chat-input-row button { width: 36px; height: 36px; border-radius: 50%; background: var(--teal); color: #fff; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; }

@media (max-width: 900px) {
  .ai-planner-card { padding: 26px 20px; border-radius: 20px; }
  .ai-planner-head h2 { font-size: 21px; }
  .ai-input-row { flex-direction: column; }
  .ai-ask-btn { width: 100%; justify-content: center; }
  .ai-response { flex-direction: column; }
  .ai-chat-panel { width: calc(100vw - 32px); right: 16px; bottom: 148px; }
  .ai-float { bottom: 82px; right: 16px; width: 50px; height: 50px; font-size: 20px; }
}

/* ══════════════════════════════════════════════════════════
   SMART PACKAGE RECOMMENDATIONS
   ══════════════════════════════════════════════════════════ */
.ai-eyebrow { display: inline-flex; align-items: center; gap: 5px; color: var(--teal-deep) !important; }
.reco-context { font-size: 13px; color: var(--ink-soft); margin-top: 2px; }
.reco-context strong { color: var(--ink); }

.reco-card { border: 1px solid rgba(10,184,157,.15); }
.reco-badge {
  position: absolute; top: 10px; left: 10px; display: flex; align-items: center; gap: 4px;
  background: linear-gradient(120deg, var(--teal), var(--teal-deep)); color: #fff;
  font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 999px;
}
.reco-reason {
  display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--teal-deep);
  background: #F0FBF9; padding: 5px 9px; border-radius: 6px; margin-bottom: 10px; font-weight: 600;
}
.reco-reason i { font-size: 12px; flex-shrink: 0; }

@media (max-width: 900px) {
  .reco-reason { font-size: 10px; padding: 4px 7px; }
  .reco-badge { font-size: 9px; padding: 3px 8px; }
}

/* ══════════════════════════════════════════════════════════
   INNER PAGES — shared components (breadcrumb, listing, detail, guide)
   ══════════════════════════════════════════════════════════ */
.page-breadcrumb { background: var(--sand-deep); padding: 12px 0; font-size: 12.5px; color: var(--ink-soft); }
.page-breadcrumb a { color: var(--teal-deep); font-weight: 600; }
.page-breadcrumb i { font-size: 11px; margin: 0 4px; vertical-align: middle; }
.page-breadcrumb span { color: var(--ink); font-weight: 600; }

/* Listing page hero */
.listing-hero { padding: 36px 0 8px; text-align: center; }
.listing-hero h1 { font-size: 34px; margin-bottom: 6px; }
.listing-hero p { color: var(--ink-soft); font-size: 14px; margin-bottom: 22px; }
.listing-ai-bar {
  max-width: 640px; margin: 0 auto; display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1.5px solid rgba(10,184,157,.2); border-radius: 999px;
  padding: 8px 8px 8px 20px; box-shadow: var(--shadow);
}
.listing-ai-bar i.ti-sparkles { color: var(--teal); font-size: 18px; flex-shrink: 0; }
.listing-ai-bar input { flex: 1; border: none; outline: none; font-size: 13.5px; font-family: inherit; background: transparent; }
.listing-ai-bar button { border-radius: 999px; padding: 10px 20px; flex-shrink: 0; }

/* Layout: filters + results */
.listing-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.filters-panel { background: #fff; border: 1px solid var(--sand-deep); border-radius: 16px; padding: 20px; position: sticky; top: 96px; }
.filters-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.filters-head h3 { font-size: 15px; }
.filters-clear { background: none; border: none; color: var(--teal-deep); font-size: 11.5px; font-weight: 700; cursor: pointer; font-family: inherit; }
.filter-group { padding: 14px 0; border-bottom: 1px solid var(--sand-deep); }
.filter-group:last-child { border-bottom: none; }
.filter-label { display: block; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--ink-soft); margin-bottom: 10px; }
.filter-check { display: flex; align-items: center; gap: 8px; font-size: 13px; padding: 5px 0; cursor: pointer; }
.filter-check span { margin-left: auto; color: var(--ink-soft); font-size: 11.5px; }
.filter-more { display: block; font-size: 12px; color: var(--teal-deep); font-weight: 600; margin-top: 6px; }
.filter-slider { width: 100%; accent-color: var(--teal); margin-bottom: 6px; }
.filter-range-labels { display: flex; justify-content: space-between; font-size: 10.5px; color: var(--ink-soft); }

.listing-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.listing-count { font-size: 13.5px; }
.listing-count strong { color: var(--teal-deep); }
.listing-sort { display: flex; align-items: center; gap: 8px; font-size: 12.5px; }
.listing-sort select { border: 1px solid var(--sand-deep); border-radius: 8px; padding: 7px 10px; font-family: inherit; font-size: 12.5px; }
.listing-grid { grid-template-columns: repeat(3, 1fr); }

.listing-pagination { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 32px; }
.page-btn { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--sand-deep); background: #fff; font-size: 13px; font-weight: 600; cursor: pointer; }
.page-btn.active { background: var(--teal); color: #fff; border-color: var(--teal); }
.page-btn:disabled { opacity: .4; cursor: not-allowed; }

@media (max-width: 900px) {
  .listing-layout { grid-template-columns: 1fr; }
  .filters-panel { position: static; }
  .listing-grid { grid-template-columns: repeat(2, 1fr); }
  .listing-hero h1 { font-size: 24px; }
  .listing-ai-bar { flex-wrap: wrap; border-radius: 16px; padding: 12px; }
  .listing-ai-bar button { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .listing-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   PACKAGE DETAIL PAGE
   ══════════════════════════════════════════════════════════ */
.pd-gallery-section { padding: 20px 0 0; }
.pd-gallery { display: grid; grid-template-columns: 1fr 200px; gap: 10px; height: 420px; border-radius: 20px; overflow: hidden; }
.pd-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-gallery-thumbs { display: grid; grid-template-rows: repeat(3, 1fr); gap: 10px; }
.pd-gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pd-gallery-more { background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; border-radius: 8px; }
.pd-gallery-thumbs img:first-child { border-top-right-radius: 12px; }

.pd-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.pd-header { margin-bottom: 24px; }
.pd-dest-line { display: flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 6px; }
.pd-header h1 { font-size: 34px; margin-bottom: 10px; }
.pd-meta-row { display: flex; gap: 20px; font-size: 13.5px; color: var(--ink-soft); flex-wrap: wrap; }
.pd-meta-row span { display: flex; align-items: center; gap: 5px; }

.pd-tabs { display: flex; gap: 4px; margin-bottom: 26px; border-bottom: 1px solid var(--sand-deep); overflow-x: auto; }
.pd-tab { padding: 10px 18px; font-weight: 600; font-size: 13.5px; cursor: pointer; border-bottom: 2px solid transparent; color: var(--ink-soft); white-space: nowrap; }
.pd-tab.active { color: var(--teal-deep); border-color: var(--gold); }
.pd-tab-content { display: none; }
.pd-tab-content.active { display: block; }

.faq-item { border-bottom: 1px solid var(--sand-deep); padding: 14px 0; }
.faq-q { font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 6px; cursor: pointer; }
.faq-a { font-size: 13.5px; color: var(--ink-soft); margin-top: 8px; padding-left: 20px; line-height: 1.6; }

/* Sticky booking sidebar */
.pd-sidebar { position: sticky; top: 96px; }
.pd-book-card { background: #fff; border-radius: 18px; padding: 24px; box-shadow: var(--shadow-lg); margin-bottom: 14px; }
.pd-price-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.pd-price-from { font-size: 11px; color: var(--ink-soft); }
.pd-price-big { font-family: 'Fraunces', serif; font-size: 26px; font-weight: 700; color: var(--teal-deep); }
.pd-price-big small { font-family: inherit; font-size: 11px; font-weight: 500; color: var(--ink-soft); }
.pd-match-badge { display: flex; align-items: center; gap: 4px; background: linear-gradient(120deg, var(--teal), var(--teal-deep)); color: #fff; font-size: 10px; font-weight: 700; padding: 5px 10px; border-radius: 999px; white-space: nowrap; }
.pd-book-form .form-group { margin-bottom: 10px; }
.pd-book-form label { display: block; font-size: 10.5px; font-weight: 700; color: var(--ink-soft); margin-bottom: 4px; text-transform: uppercase; }
.pd-book-form input { width: 100%; border: 1px solid var(--sand-deep); border-radius: 8px; padding: 9px 11px; font-size: 13px; font-family: inherit; }
.pd-price-breakdown { background: var(--sand); border-radius: 10px; padding: 12px 14px; margin: 14px 0; }
.pbd-row { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--ink-soft); padding: 4px 0; }
.pbd-total { border-top: 1px solid var(--sand-deep); margin-top: 6px; padding-top: 8px; font-weight: 700; color: var(--ink); font-size: 14px; }
.pd-trust-mini { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--sand-deep); font-size: 11px; color: var(--ink-soft); }
.pd-trust-mini span { display: flex; align-items: center; gap: 6px; }
.pd-rm-card { background: #fff; border-radius: 16px; padding: 16px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px; }

@media (max-width: 900px) {
  .pd-gallery { grid-template-columns: 1fr; height: auto; }
  .pd-gallery-main img { height: 240px; }
  .pd-gallery-thumbs { grid-template-columns: repeat(4, 1fr); grid-template-rows: none; height: 70px; }
  .pd-layout { grid-template-columns: 1fr; }
  .pd-sidebar { position: static; }
  .pd-header h1 { font-size: 24px; }
  .pd-meta-row { gap: 10px; font-size: 12px; }
}

/* ══════════════════════════════════════════════════════════
   DESTINATION GUIDE DETAIL PAGE
   ══════════════════════════════════════════════════════════ */
.dg-hero { position: relative; height: 360px; overflow: hidden; }
.dg-hero img { width: 100%; height: 100%; object-fit: cover; }
.dg-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,20,17,.15) 0%, rgba(6,20,17,.8) 100%); display: flex; align-items: flex-end; padding-bottom: 32px; }
.dg-hero-eyebrow { color: var(--gold); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.dg-hero-content h1 { color: #fff; font-size: 38px; margin-bottom: 6px; }
.dg-hero-content p { color: rgba(255,255,255,.9); font-size: 15px; }

.dg-facts { background: #fff; border-bottom: 1px solid var(--sand-deep); padding: 18px 0; }
.dg-facts-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.dg-fact { display: flex; align-items: center; gap: 10px; }
.dg-fact i { font-size: 22px; color: var(--teal); }
.dg-fact span { display: block; font-size: 10.5px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .03em; }
.dg-fact strong { font-size: 13.5px; }

.dg-layout { display: grid; grid-template-columns: 1fr 300px; gap: 32px; align-items: start; }
.dg-block { margin-bottom: 36px; }
.dg-block h2 { font-size: 22px; margin-bottom: 12px; }
.dg-block p { font-size: 14.5px; line-height: 1.85; color: var(--ink-soft); }

.dg-attr-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.dg-attr-card { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.dg-attr-card img { width: 100%; height: 130px; object-fit: cover; }
.dg-attr-card div { padding: 12px; }
.dg-attr-card h4 { font-size: 14px; margin-bottom: 4px; }
.dg-attr-card p { font-size: 12px; color: var(--ink-soft); }

.dg-howto { display: flex; flex-direction: column; gap: 16px; }
.dg-howto-item { display: flex; gap: 14px; }
.dg-howto-item i { font-size: 24px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.dg-howto-item strong { display: block; font-size: 14px; margin-bottom: 3px; }
.dg-howto-item p { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }

.dg-sidebar { position: sticky; top: 96px; }
.dg-cta-card { background: linear-gradient(135deg, var(--teal-deep), var(--teal)); border-radius: 18px; padding: 24px; color: #fff; }
.dg-cta-card h4 { color: #fff; font-size: 17px; margin-bottom: 8px; }
.dg-cta-card p { font-size: 13px; opacity: .9; margin-bottom: 16px; line-height: 1.6; }
.dg-cta-card .btn-outline { border-color: rgba(255,255,255,.5); color: #fff; }

@media (max-width: 900px) {
  .dg-hero { height: 240px; }
  .dg-hero-content h1 { font-size: 26px; }
  .dg-facts-grid { justify-content: flex-start; }
  .dg-fact { flex: 1 1 45%; }
  .dg-layout { grid-template-columns: 1fr; }
  .dg-sidebar { position: static; }
  .dg-attr-grid { grid-template-columns: 1fr; }
}

/* Itinerary day list — used on package detail page's Itinerary tab */
.itin-day { display: flex; gap: 16px; margin-bottom: 22px; }
.itin-day-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: 'Fraunces', serif;
  flex-shrink: 0; font-size: 15px;
}
.itin-day-body h4 { font-size: 16px; margin-bottom: 5px; }
.itin-day-body p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   DESTINATION GUIDE — expanded sections
   ══════════════════════════════════════════════════════════ */

/* Hero tags */
.dg-hero-tags { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.dg-tag { display: flex; align-items: center; gap: 5px; background: rgba(255,255,255,.15); backdrop-filter: blur(4px); color: #fff; font-size: 11.5px; font-weight: 600; padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.25); }

/* Quick facts with images */
.dg-fact-img { display: flex; align-items: center; gap: 10px; }
.dg-fact-img img { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.dg-fact-img span { display: block; font-size: 10.5px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .03em; }
.dg-fact-img strong { font-size: 13.5px; }

/* Why Visit */
.dg-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 18px; }
.dg-why-card { background: #fff; border: 1px solid var(--sand-deep); border-radius: 14px; padding: 18px; }
.dg-why-icon { width: 40px; height: 40px; background: var(--sand); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 19px; color: var(--teal); margin-bottom: 10px; }
.dg-why-card h4 { font-size: 14.5px; margin-bottom: 5px; }
.dg-why-card p { font-size: 12.5px; color: var(--ink-soft); line-height: 1.55; }

/* Best time seasons */
.dg-season-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.dg-season-card { background: #fff; border: 1px solid var(--sand-deep); border-radius: 14px; padding: 16px; }
.dg-season-best { border-color: var(--teal); background: #F7FDFC; position: relative; }
.dg-season-head { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.dg-season-head i { font-size: 18px; color: var(--gold); }
.dg-season-badge { margin-left: auto; background: var(--teal); color: #fff; font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 999px; }
.dg-season-card p { font-size: 12px; color: var(--ink-soft); line-height: 1.55; }

/* Photo gallery */
.dg-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 120px; gap: 8px; }
.dg-gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.dg-gallery-grid img:first-child { grid-row: span 2; grid-column: span 2; height: 100%; }
.dg-gallery-more { background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; border-radius: 10px; }

/* Suggested itineraries */
.dg-itin-grid { display: flex; flex-direction: column; gap: 10px; }
.dg-itin-card { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--sand-deep); border-radius: 14px; padding: 14px 18px; transition: box-shadow .15s, transform .15s; }
.dg-itin-card:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.dg-itin-days { width: 44px; height: 44px; border-radius: 12px; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-weight: 700; font-size: 17px; flex-shrink: 0; }
.dg-itin-card > div:nth-child(2) { flex: 1; }
.dg-itin-card h4 { font-size: 14px; margin-bottom: 2px; }
.dg-itin-card p { font-size: 12px; color: var(--ink-soft); }
.dg-itin-card > i { color: var(--gold); font-size: 18px; }

/* Visa section */
.dg-visa-card { background: #fff; border: 1px solid var(--sand-deep); border-radius: 20px; padding: 30px; }
.dg-visa-note { background: #FEF3D9; color: #7A5A0C; font-size: 12px; padding: 10px 14px; border-radius: 10px; margin-bottom: 20px; display: flex; align-items: flex-start; gap: 8px; }
.dg-visa-note i { flex-shrink: 0; margin-top: 1px; }
.dg-visa-grid { display: flex; gap: 20px; align-items: flex-start; }
.dg-visa-icon { width: 56px; height: 56px; background: var(--sand); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--teal); flex-shrink: 0; }
.dg-visa-body h3 { font-size: 19px; margin-bottom: 8px; }
.dg-visa-body > p { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 16px; }
.dg-visa-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.dg-visa-facts span { display: block; font-size: 10px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 3px; }
.dg-visa-facts strong { font-size: 13px; }

/* Related blogs */
.dg-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dg-blog-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); display: block; transition: transform .2s; }
.dg-blog-card:hover { transform: translateY(-4px); }
.dg-blog-card img { width: 100%; height: 150px; object-fit: cover; }
.dg-blog-body { padding: 14px 16px; }
.dg-blog-date { font-size: 10.5px; color: var(--teal); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.dg-blog-body h4 { font-size: 14px; margin-top: 6px; line-height: 1.4; }

/* Enquiry form + WhatsApp CTA */
.dg-enquiry-wrap { background: #fff; border-radius: 28px; box-shadow: var(--shadow-lg); padding: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.dg-enquiry-info h2 { font-size: 28px; margin: 8px 0 12px; }
.dg-enquiry-info > p { font-size: 14px; color: var(--ink-soft); margin-bottom: 18px; }
.dg-enquiry-perks { display: flex; flex-direction: column; gap: 8px; }
.dg-enquiry-perks span { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink); }
.dg-enquiry-perks i { color: var(--teal); font-size: 15px; }
.dg-enquiry-form { background: var(--sand); border-radius: 18px; padding: 24px; }
.dg-enquiry-form .form-group { margin-bottom: 12px; }
.dg-enquiry-form label { display: block; font-size: 11px; font-weight: 700; color: var(--ink-soft); margin-bottom: 4px; text-transform: uppercase; }
.dg-enquiry-form input, .dg-enquiry-form textarea { width: 100%; border: 1px solid var(--sand-deep); border-radius: 8px; padding: 10px 12px; font-size: 13px; font-family: inherit; background: #fff; }

@media (max-width: 900px) {
  .dg-hero-tags { gap: 6px; }
  .dg-tag { font-size: 10px; padding: 5px 10px; }
  .dg-fact-img { flex: 1 1 45%; }
  .dg-why-grid { grid-template-columns: 1fr; }
  .dg-season-grid { grid-template-columns: 1fr; }
  .dg-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 100px; }
  .dg-gallery-grid img:first-child { grid-column: span 2; }
  .dg-visa-grid { flex-direction: column; }
  .dg-visa-facts { grid-template-columns: repeat(2, 1fr); }
  .dg-blog-grid { grid-template-columns: 1fr; }
  .dg-enquiry-wrap { grid-template-columns: 1fr; padding: 24px; border-radius: 20px; gap: 24px; }
  .dg-enquiry-info h2 { font-size: 22px; }
}
