/*
Theme Name: Plan My Budget Trip
Version: 1.0
*/

/* ===============================
   BASE RESET
================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1f2937;
  background: #ffffff;
  line-height: 1.6;
}

/* ===============================
   GLOBAL ELEMENTS
================================ */
a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px;
}

/* ===============================
   HEADER
================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  font-weight: 800;
  font-size: 1.1rem;
  color: #0f766e;
}

.cta-btn {
  background: #0f766e;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

/* ===============================
   HERO
================================ */
.hero {
  background: linear-gradient(135deg, #f0fdfa, #ecfeff);
  padding: 64px 0;
  text-align: center;
}

.hero h1 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.hero p {
  color: #4b5563;
  max-width: 640px;
  margin: 0 auto 24px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* ===============================
   BUTTONS
================================ */
.btn-primary {
  background: #0f766e;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-block;
}

.btn-secondary {
  border: 2px solid #0f766e;
  color: #0f766e;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-outline {
  border: 2px solid #0f766e;
  color: #0f766e;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
}

/* ===============================
   VALUE STRIP
================================ */
.value-strip {
  background: #ecfeff;
  padding: 24px 0;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: center;
  font-weight: 600;
}

/* ===============================
   HOW IT WORKS
================================ */
.how-it-works {
  padding: 64px 0;
  text-align: center;
}

.how-it-works h2 {
  font-size: 1.6rem;
  margin-bottom: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.grid-3 h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.center-btn {
  margin-top: 32px;
}

/* ===============================
   DESTINATIONS
================================ */
.destinations {
  padding: 44px 0;
  background: #f9fafb;
}

.destinations h2 {
  text-align: center;
  margin-bottom: 22px;
  font-size: 1.6rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-weight: 600;
}

/* ===============================
   PLANNER TEASER
================================ */
.planner {
  padding: 64px 0;
  text-align: center;
}

.planner h2 {
  margin-bottom: 12px;
}

.planner p {
  color: #6b7280;
  margin-bottom: 24px;
}

/* ===============================
   BOOKING CTA
================================ */
.booking-cta {
  padding: 48px 0;
  background: #ffffff;
}

.booking-cta .grid-3 {
  gap: 16px;
}

/* ===============================
   FINAL CTA
================================ */
.final-cta {
  padding: 72px 0;
  background: #0f766e;
  color: #ffffff;
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 20px;
}

/* ===============================
   FOOTER
================================ */
.footer {
  background: #111827;
  color: #d1d5db;
  text-align: center;
  padding: 32px 16px;
}

.footer a {
  color: #9ca3af;
  font-size: 0.9rem;
}

/* ===============================
   DESKTOP BREAKPOINT
================================ */
@media (min-width: 768px) {

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ===============================
   HOMEPAGE – PREMIUM UPGRADE
================================ */

/* HERO */
.hero-premium {
  background: linear-gradient(180deg, #eafaf7, #ffffff);
  padding: 64px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-subtext {
  color: #475569;
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.hero-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* VALUE STRIP */
.value-strip {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 18px 0;
  font-weight: 600;
  color: #334155;
}

/* SECTION BASE */
.premium-section {
  padding: 72px 0;
}

.section-intro {
  max-width: 640px;
  margin: 0 auto 36px;
  color: #475569;
}

/* HOW IT WORKS */
.hiw-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 28px;
  text-align: center;
}

.hiw-card img {
  max-width: 120px;
  margin-bottom: 14px;
}

.hiw-card h3 {
  margin-bottom: 6px;
}

/* DESTINATIONS */
.dest-card {
  display: block;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform .2s ease;
}

.dest-card:hover {
  transform: translateY(-4px);
}

.dest-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.dest-card span {
  display: block;
  padding: 14px;
  font-weight: 700;
}

/* BOOKING CTA */
.booking-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.booking-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.booking-card span {
  display: block;
  padding: 14px;
  font-weight: 700;
}

/* FINAL CTA */
.final-cta {
  background: #0f766e;
  color: #ffffff;
  padding: 64px 20px;
  text-align: center;
}

.final-cta h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

/* HOMEPAGE FAQ */
.homepage-seo p {
  max-width: 760px;
  margin-bottom: 14px;
}

.faq-item {
  margin-top: 20px;
}

.faq-item h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

/* =====================================================
   GLOBAL FULL-WIDTH + COMPACT SYSTEM
===================================================== */

/* Universal container fix */
.container {
  max-width: 1280px;
  padding-left: clamp(16px, 3vw, 32px);
  padding-right: clamp(16px, 3vw, 32px);
  margin-left: auto;
  margin-right: auto;
}

/* Reduce section vertical gaps globally */
section {
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(40px, 6vw, 72px);
}

/* =====================================================
   HERO – COMPACT FULL SCREEN
===================================================== */

.hero-premium {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #eafaf7, #ffffff);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 48px);
}

.hero-content h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.15;
}

.hero-subtext {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  max-width: 520px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* =====================================================
   VALUE STRIP – TIGHTENED
===================================================== */

.value-strip {
  padding: 14px 0;
  font-size: 0.9rem;
}

/* =====================================================
   HOW IT WORKS – COMPACT CARDS
===================================================== */

.hiw-card {
  padding: 22px;
}

.hiw-card img {
  max-width: 96px;
  margin-bottom: 10px;
}

.hiw-card p {
  font-size: 0.92rem;
}

/* =====================================================
   DESTINATIONS – FULL WIDTH GRID
===================================================== */

.destinations .grid-2 {
  gap: clamp(16px, 3vw, 32px);
}

.dest-card img {
  height: 180px;
}

.dest-card span {
  padding: 12px;
  font-size: 0.95rem;
}

/* =====================================================
   BOOKING CTA – COMPACT & BALANCED
===================================================== */

.booking-card img {
  height: 160px;
}

.booking-card span {
  padding: 12px;
  font-size: 0.95rem;
}

/* =====================================================
   SEO + FAQ – READABLE BUT TIGHT
===================================================== */

.homepage-seo p {
  max-width: 820px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item {
  margin-top: 16px;
}

.faq-item h4 {
  font-size: 1rem;
}

/* =====================================================
   FINAL CTA – FULL WIDTH BUT COMPACT
===================================================== */

.final-cta {
  padding: clamp(48px, 6vw, 64px) 20px;
}

.final-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
}

/* =====================================================
   RESPONSIVE BREAKPOINTS (CROSS-BROWSER SAFE)
===================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-premium {
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .hero-subtext {
    font-size: 0.9rem;
  }
}

/* =========================================
   HOW IT WORKS – IMAGE FIX & ALIGNMENT
========================================= */

.how-it-works .hiw-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 260px;
}

/* Image wrapper behavior */
.how-it-works .hiw-card img {
  width: 100%;
  max-width: 140px;
  height: auto;
  margin-bottom: 14px;
  object-fit: contain;
  display: block;
}

/* Tighten heading spacing */
.how-it-works .hiw-card h3 {
  margin-top: 6px;
  margin-bottom: 6px;
}

/* Improve paragraph readability */
.how-it-works .hiw-card p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #475569;
  max-width: 240px;
}

/* Ensure equal visual balance across cards */
.how-it-works .grid-3 {
  align-items: stretch;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .how-it-works .hiw-card {
    min-height: auto;
  }

  .how-it-works .hiw-card img {
    max-width: 120px;
  }
}
.how-it-works .hiw-card img {
  background: #f8fafc;
  padding: 10px;
  border-radius: 12px;
}
/* =========================================
   POPULAR DESTINATIONS – IMAGE FIX
========================================= */

.destinations .dest-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.destinations .dest-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.destinations .dest-card span {
  padding: 12px 14px;
  font-size: 0.95rem;
  line-height: 1.3;
  flex-grow: 1;
}

/* =========================================
   BOOKING CTA – IMAGE PROPORTION FIX
========================================= */

.booking-cta .booking-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.booking-cta .booking-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.booking-cta .booking-card span {
  padding: 12px;
  font-size: 0.95rem;
  font-weight: 600;
}
/* =========================================
   HOMEPAGE – FINAL VISUAL CONSISTENCY
========================================= */

/* Reduce excessive vertical gaps */
.premium-section {
  padding-top: clamp(48px, 6vw, 64px);
  padding-bottom: clamp(48px, 6vw, 64px);
}

/* Normalize section headings */
.premium-section h2 {
  font-size: clamp(1.5rem, 2.8vw, 1.9rem);
  margin-bottom: 10px;
}

/* Normalize intro text */
.section-intro {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Grid tightening */
.grid-2,
.grid-3 {
  gap: clamp(16px, 3vw, 28px);
}

/* Card radius consistency */
.hiw-card,
.dest-card,
.booking-card {
  border-radius: 16px;
}

/* Remove visual heaviness */
.dest-card,
.booking-card {
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

/* =========================================
   GLOBAL SECTION SPACING REDUCTION
========================================= */

/* Reduce vertical gaps between sections */
section {
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(28px, 4vw, 48px);
}

/* Reduce premium section padding further */
.premium-section {
  padding-top: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(32px, 4vw, 56px);
}

/* Tighten headings spacing */
section h2 {
  margin-bottom: 8px;
}

.section-intro {
  margin-bottom: 24px;
}

/* Remove extra spacing caused by stacked margins */
section > *:last-child {
  margin-bottom: 0;
}

/* =========================================
   HOW IT WORKS – IMAGE SIZE FIX
========================================= */

.how-it-works .hiw-card {
  padding: 24px;
  min-height: 300px;
}

/* Make images larger and dominant */
.how-it-works .hiw-card img {
  width: 100%;
  max-width: 200px;   /* Increased from 120–140 */
  height: auto;
  margin-bottom: 16px;
  object-fit: contain;
}

/* Slightly stronger heading */
.how-it-works .hiw-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

/* Keep text compact */
.how-it-works .hiw-card p {
  font-size: 0.9rem;
  max-width: 260px;
}
.how-it-works .hiw-card img {
  background: #f8fafc;
  padding: 12px;
  border-radius: 14px;
}

/* =====================================================
   FINAL HOMEPAGE POLISH – LAST 5%
===================================================== */

/* ---------------------------------
   1. SECTION TRANSITION SMOOTHING
---------------------------------- */

/* Soft divider effect between sections */
section:not(.hero-premium):not(.final-cta) {
  border-top: 1px solid rgba(0,0,0,0.03);
}

/* Remove divider from first visible section */
.hero-premium + section {
  border-top: none;
}

/* ---------------------------------
   2. HEADING + CONTENT RHYTHM
---------------------------------- */

section h2 {
  letter-spacing: -0.01em;
}

.section-intro {
  opacity: 0.9;
}

/* Reduce visual jump after headings */
section h2 + .section-intro {
  margin-top: 6px;
}

/* ---------------------------------
   3. CARD MICRO-INTERACTION (UX CUE)
---------------------------------- */

/* Subtle lift on hover – desktop only */
@media (hover: hover) {
  .hiw-card:hover,
  .dest-card:hover,
  .booking-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.08);
  }
}

/* ---------------------------------
   4. HOW IT WORKS – FINAL BALANCE
---------------------------------- */

.how-it-works .hiw-card {
  gap: 6px;
}

/* Ensure image-text harmony */
.how-it-works .hiw-card img {
  margin-top: 4px;
}

/* ---------------------------------
   5. VALUE STRIP – MORE PREMIUM FEEL
---------------------------------- */

.value-strip {
  background: linear-gradient(
    90deg,
    rgba(234,250,247,0.6),
    rgba(234,250,247,0.9),
    rgba(234,250,247,0.6)
  );
}

.value-strip div {
  font-size: 0.88rem;
}

/* ---------------------------------
   6. DESTINATION CARD TITLE TIGHTEN
---------------------------------- */

.dest-card span {
  letter-spacing: -0.01em;
}

/* ---------------------------------
   7. BOOKING CTA – TOOL, NOT AD
---------------------------------- */

.booking-card span {
  background: #ffffff;
}

/* ---------------------------------
   8. SEO + FAQ SECTION READABILITY
---------------------------------- */

.homepage-seo {
  background: #fafafa;
  border-radius: 18px;
}

.homepage-seo h3 {
  margin-top: 28px;
}

/* ---------------------------------
   9. FINAL CTA TRANSITION
---------------------------------- */

.final-cta {
  background: linear-gradient(180deg, #0f766e, #0b5f58);
}

/* ---------------------------------
   10. GLOBAL TEXT RENDERING POLISH
---------------------------------- */

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =====================================================
   HOMEPAGE – SEO CONTENT INTEGRATION
===================================================== */

/* ---------- HERO SUPPORT TEXT ---------- */
.hero-support {
  max-width: 520px;
  margin-top: 16px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #475569;
}

/* ---------- VALUE STRIP SUPPORT TEXT ---------- */
.value-strip-text {
  max-width: 900px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 0.9rem;
  color: #475569;
}

/* ---------- HOW IT WORKS SUPPORT TEXT ---------- */
.how-it-works-text {
  max-width: 760px;
  margin: 32px auto 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #475569;
}

.how-it-works-text p {
  margin-bottom: 12px;
}

/* ---------- DESTINATIONS INTRO TEXT ---------- */
.destinations-intro {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #475569;
}

/* ---------- BOOKING INTRO TEXT ---------- */
.booking-intro {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #475569;
}

/* ---------- SEO + FAQ SECTION ---------- */
.homepage-seo {
  background: #fafafa;
  border-radius: 18px;
}

.homepage-seo p {
  max-width: 820px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 14px;
}

/* FAQ items */
.faq-item {
  max-width: 820px;
  margin-top: 20px;
}

.faq-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.faq-item p {
  font-size: 0.9rem;
  color: #475569;
}

/* ---------- FINAL CTA SUPPORT TEXT ---------- */
.final-cta-text {
  max-width: 640px;
  margin: 12px auto 24px;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* =====================================================
   MOBILE OPTIMIZATION (TEXT COMPRESSION)
===================================================== */

@media (max-width: 768px) {
  .hero-support,
  .value-strip-text,
  .how-it-works-text,
  .destinations-intro,
  .booking-intro,
  .homepage-seo p {
    font-size: 0.9rem;
  }

  .how-it-works-text {
    margin-top: 24px;
  }
}
/* =====================================================
   FINAL MICRO-SPACING & GROUPING POLISH
   (Do not edit above rules)
===================================================== */

/* ---------------------------------
   GLOBAL SECTION RHYTHM TIGHTENING
---------------------------------- */

/* Reduce perceived vertical gaps */
section {
  padding-top: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(24px, 3vw, 40px);
}

/* Sections with editorial weight */
.premium-section {
  padding-top: clamp(32px, 4vw, 52px);
  padding-bottom: clamp(32px, 4vw, 52px);
}

/* ---------------------------------
   HERO → VALUE STRIP CONNECTION
---------------------------------- */

.hero-premium {
  padding-bottom: clamp(32px, 4vw, 48px);
}

.hero-premium + .value-strip {
  margin-top: -10px;
}

/* ---------------------------------
   VALUE STRIP GROUPING
---------------------------------- */

.value-strip {
  border-radius: 14px;
}

.value-strip-text {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 0.88rem;
}

/* ---------------------------------
   HOW IT WORKS – SECTION GROUPING
---------------------------------- */

.how-it-works .grid-3 {
  margin-bottom: 20px;
}

.how-it-works-text {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.04);
}

/* ---------------------------------
   SECTION HEADINGS COMPRESSION
---------------------------------- */

section h2 {
  margin-bottom: 6px;
}

.section-intro {
  margin-bottom: 20px;
  font-size: 0.9rem;
}

/* ---------------------------------
   DESTINATIONS SECTION TIGHTENING
---------------------------------- */

.destinations-intro {
  margin-bottom: 18px;
}

.destinations .grid-2 {
  margin-bottom: 12px;
}

/* ---------------------------------
   BOOKING CTA – STRONGER VISUAL SEPARATION
---------------------------------- */

.booking-cta {
  background: #f9fafb;
  border-radius: 18px;
}

.booking-intro {
  margin-bottom: 20px;
}

/* ---------------------------------
   SEO + FAQ SECTION COMPRESSION
---------------------------------- */

.homepage-seo {
  padding-top: 28px;
  padding-bottom: 28px;
}

.homepage-seo h3 {
  margin-top: 20px;
}

.faq-item {
  margin-top: 14px;
}

/* ---------------------------------
   FINAL CTA COMPRESSION & EMPHASIS
---------------------------------- */

.final-cta {
  padding-top: clamp(36px, 4vw, 52px);
  padding-bottom: clamp(36px, 4vw, 52px);
}

.final-cta-text {
  margin-bottom: 16px;
}

/* ---------------------------------
   MOBILE-SPECIFIC TIGHTENING
---------------------------------- */

@media (max-width: 768px) {
  section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .premium-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .section-intro {
    margin-bottom: 16px;
  }
}
/* =====================================================
   FINAL AUTHORITATIVE NORMALIZATION LAYER
   (This block resolves earlier conflicts safely)
===================================================== */

/* ---------------------------
   GLOBAL SECTION SPACING
---------------------------- */
section {
  padding-top: clamp(28px, 3vw, 44px);
  padding-bottom: clamp(28px, 3vw, 44px);
}

/* Editorial-weight sections */
.premium-section {
  padding-top: clamp(32px, 4vw, 52px);
  padding-bottom: clamp(32px, 4vw, 52px);
}

/* ---------------------------
   HERO (FINAL TRUTH)
---------------------------- */
.hero-premium {
  min-height: 70vh;
  padding-top: clamp(48px, 6vw, 64px);
  padding-bottom: clamp(40px, 6vw, 56px);
}

.hero-grid {
  gap: clamp(24px, 4vw, 48px);
}

.hero-content h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.15;
}

.hero-subtext {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  max-width: 520px;
}

/* ---------------------------
   VALUE STRIP
---------------------------- */
.value-strip {
  padding: 14px 0;
  border-radius: 14px;
}

.value-strip-text {
  margin-top: 10px;
  font-size: 0.88rem;
}

/* ---------------------------
   HOW IT WORKS (FINAL)
---------------------------- */
.how-it-works .hiw-card {
  padding: 24px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.how-it-works .hiw-card img {
  max-width: 200px;
  padding: 12px;
  background: #f8fafc;
  border-radius: 14px;
  margin-bottom: 16px;
}

.how-it-works .hiw-card p {
  max-width: 260px;
  font-size: 0.9rem;
}

/* ---------------------------
   DESTINATION CARDS
---------------------------- */
.dest-card img {
  height: 180px;
  object-fit: cover;
}

.dest-card span {
  font-size: 0.95rem;
  padding: 12px 14px;
}

/* ---------------------------
   BOOKING CTA CARDS
---------------------------- */
.booking-card img {
  height: 140px;
  object-fit: cover;
}

.booking-card span {
  font-size: 0.95rem;
  padding: 12px;
}

/* ---------------------------
   SEO + FAQ
---------------------------- */
.homepage-seo {
  padding-top: 28px;
  padding-bottom: 28px;
}

.homepage-seo p,
.faq-item {
  max-width: 820px;
}

/* ---------------------------
   FINAL CTA
---------------------------- */
.final-cta {
  padding-top: clamp(36px, 4vw, 52px);
  padding-bottom: clamp(36px, 4vw, 52px);
}

/* ---------------------------
   MOBILE FINAL SAFETY
---------------------------- */
@media (max-width: 768px) {
  section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .premium-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .hero-premium {
    min-height: auto;
  }
}

.faq-item {
  margin-top: 12px;
}

.faq-item h4 {
  line-height: 1.4;
}

/* =====================================================
   SEO CONTENT + FAQ – PREMIUM LAYOUT
===================================================== */

.homepage-seo {
  background: linear-gradient(180deg, #fafafa, #ffffff);
  border-radius: 20px;
  padding: clamp(36px, 5vw, 56px);
}

/* Main heading */
.homepage-seo h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: 24px;
}

/* Editorial content block */
.homepage-seo > .container > p {
  max-width: 820px;
  margin: 0 auto 14px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #374151;
}

/* Subtle divider between editorial & FAQ */
.homepage-seo h3 {
  text-align: center;
  font-size: 1.25rem;
  margin-top: 40px;
  margin-bottom: 24px;
  position: relative;
}

.homepage-seo h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #0f766e;
  margin: 12px auto 0;
  border-radius: 3px;
}

/* FAQ grid */
.homepage-seo .faq-item {
  max-width: 820px;
  margin: 0 auto 16px;
  padding: 16px 18px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
}

/* FAQ question */
.homepage-seo .faq-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111827;
}

/* FAQ answer */
.homepage-seo .faq-item p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #4b5563;
}

/* Slight hover cue (desktop only) */
@media (hover: hover) {
  .homepage-seo .faq-item:hover {
    border-color: #0f766e;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  }
}

/* Mobile tightening */
@media (max-width: 768px) {
  .homepage-seo {
    padding: 28px 20px;
  }

  .homepage-seo > .container > p {
    font-size: 0.9rem;
  }

  .homepage-seo .faq-item {
    padding: 14px 16px;
  }
}

/* =========================================
   HEADER NAV – PREMIUM
========================================= */

.header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.main-nav {
  display: none;
  gap: 20px;
  font-weight: 600;
}

.main-nav a {
  color: #374151;
  font-size: 0.9rem;
}

.main-nav a:hover {
  color: #0f766e;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
}

/* =========================================
   FOOTER – PREMIUM GRID
========================================= */

.footer {
  background: #111827;
  color: #d1d5db;
  padding: 48px 20px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #9ca3af;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.85rem;
  color: #9ca3af;
}

/* Footer responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   INDIA MEGA MENU – PREMIUM
===================================================== */

.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.has-mega > a {
  cursor: pointer;
}

/* Mega container */
.mega-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 960px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  padding: 32px;
  display: none;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
  z-index: 999;
}

/* Show on hover */
.has-mega:hover .mega-menu {
  display: grid;
}

/* Visual column */
.mega-visual h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.mega-visual p {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 14px;
}

.mega-cta {
  font-weight: 700;
  color: #0f766e;
}

/* Columns */
.mega-col h4 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #111827;
}

.mega-col a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #374151;
}

.mega-col a:hover {
  color: #0f766e;
}

/* Mobile: hide mega menu */
@media (max-width: 1024px) {
  .mega-menu {
    display: none !important;
  }
}

/* =====================================================
   INTERNATIONAL MEGA MENU – PREMIUM
===================================================== */

.mega-international {
  width: 1000px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

/* Visual image */
.mega-international .mega-visual img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 14px;
}

/* Visual text */
.mega-international .mega-visual h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.mega-international .mega-visual p {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 12px;
}

/* CTA */
.mega-international .mega-cta {
  font-weight: 700;
  color: #0f766e;
}

/* Column headings */
.mega-international .mega-col h4 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #111827;
}

/* Links */
.mega-international .mega-col a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #374151;
}

.mega-international .mega-col a:hover {
  color: #0f766e;
}

/* Hide mega menu on mobile */
@media (max-width: 1024px) {
  .mega-international {
    display: none !important;
  }
}

/* =====================================================
   MOBILE NAVIGATION – ACCORDION STYLE
===================================================== */

.mobile-nav {
  display: none;
  padding: 16px;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
}

/* Mobile only */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }
}

/* Accordion styling */
.mobile-nav details {
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 0;
}

.mobile-nav summary {
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

/* Arrow indicator */
.mobile-nav summary::after {
  content: "▾";
  float: right;
  transition: transform 0.2s ease;
}

.mobile-nav details[open] summary::after {
  transform: rotate(180deg);
}

/* Links */
.mobile-nav a {
  display: block;
  padding: 8px 0;
  font-size: 0.95rem;
  color: #374151;
}

.mobile-nav a:hover {
  color: #0f766e;
}

/* CTA button */
.mobile-cta {
  margin-top: 16px;
  background: #0f766e;
  color: #ffffff;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  font-weight: 700;
}
/* =====================================================
   FOOTER MEGA NAV – PREMIUM
===================================================== */

.footer {
  background: #111827;
  color: #d1d5db;
  padding: 56px 20px 28px;
}

.footer-mega {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #9ca3af;
  margin-top: 10px;
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #9ca3af;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.85rem;
  color: #9ca3af;
}

.footer-bottom a {
  color: #9ca3af;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-mega {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .footer-mega {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   INDIA HUB – PREMIUM CONSOLIDATED SYSTEM
===================================================== */

/* -------------------------------
   GLOBAL SPACING SYSTEM
-------------------------------- */

.hub-page section {
  position: relative;
  padding-top: clamp(32px, 4vw, 52px);
  padding-bottom: clamp(32px, 4vw, 52px);
  background-clip: padding-box;
}

.hub-page .container {
  padding-left: clamp(16px, 3vw, 28px);
  padding-right: clamp(16px, 3vw, 28px);
}

.hub-section {
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.03);
}

.hub-section:first-of-type {
  border-top: none;
}

.hub-section.soft-bg {
  background: linear-gradient(180deg, #fafafa, #ffffff);
}

/* Subtle depth wash */
.hub-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.015),
    rgba(0,0,0,0)
  );
  pointer-events: none;
}

/* -------------------------------
   HERO SYSTEM
-------------------------------- */

.premium-hero {
  background: linear-gradient(180deg, #eafaf7 0%, #ffffff 100%);
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(40px, 5vw, 64px);
}

.hub-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.hub-hero-content h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.hub-intro {
  max-width: 560px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.hub-hero-content .btn-primary {
  margin-top: 6px;
}

.hub-hero-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* -------------------------------
   DESTINATION GRID SYSTEM
-------------------------------- */

/* =====================================================
   DESTINATION IMAGE GRID – PREMIUM STABLE LAYOUT
===================================================== */

.hub-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 36px;
}

/* Card container */
.hub-image-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 8px 24px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover polish */
@media (hover:hover) {
  .hub-image-card:hover {
    transform: translateY(-4px);
    box-shadow:
      0 14px 36px rgba(0,0,0,0.10);
  }
}

/* Image */
.hub-image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Title bar */
.hub-image-card span {
  display: block;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a;
  background: #ffffff;
}

/* CTA link under grid */
.hub-grid-footer {
  margin-top: 28px;
}

.hub-grid-footer a {
  font-weight: 600;
  color: #0f766e;
}

/* =====================================================
   DESTINATION GRID – PREMIUM INTERACTION LAYER
===================================================== */

/* Full clickable card */
.hub-image-card {
  position: relative;
  cursor: pointer;
  will-change: transform;
}

/* Make entire card clickable */
.hub-image-card a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* Image wrapper */
.hub-image-media {
  position: relative;
  overflow: hidden;
}

/* Image */
.hub-image-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .6s ease, filter .6s ease;
}

/* Lazy blur placeholder */
.hub-image-media img[data-loaded="false"] {
  filter: blur(16px);
  transform: scale(1.08);
}

/* Remove blur when loaded */
.hub-image-media img[data-loaded="true"] {
  filter: blur(0);
  transform: scale(1.02);
}

/* Gradient overlay */
.hub-image-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.05) 40%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

/* Title overlay */
.hub-image-title {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  z-index: 2;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(6px);
  transition: all .4s ease;
}

/* Hover interactions */
@media (hover:hover) {
  .hub-image-card:hover {
    transform: translateY(-6px) scale(1.01);
  }

  .hub-image-card:hover .hub-image-media img {
    transform: scale(1.08);
  }

  .hub-image-card:hover .hub-image-media::after {
    opacity: 1;
  }

  .hub-image-card:hover .hub-image-title {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Typography spacing refinement */
.hub-image-card span {
  padding: 16px 18px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Mobile tuning */
@media (max-width: 768px) {

  .hub-image-title {
    font-size: 0.95rem;
  }

  .hub-image-card:hover {
    transform: none;
  }
}

/* -------------------------------
   Responsive
-------------------------------- */

@media (max-width: 900px) {
  .hub-image-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hub-image-card img {
    height: 200px;
  }
}

/* =====================================================
   CINEMATIC IMAGE ENHANCEMENT LAYER
===================================================== */

/* Force cinematic ratio */
.hub-image-media {
  aspect-ratio: 16 / 6;
  background: #000;
}

/* Image cinematic color grading */
.hub-image-media img {
  filter:
    contrast(1.08)
    saturate(1.12)
    brightness(0.96);
  transition:
    transform 1.2s cubic-bezier(.22,.61,.36,1),
    filter .8s ease;
}

/* Subtle vignette overlay */
.hub-image-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.25) 100%
  );
  opacity: .9;
  pointer-events: none;
  z-index: 1;
}

/* Cinematic gradient depth */
.hub-image-media::after {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15) 45%,
    rgba(0,0,0,0.05) 65%,
    transparent 85%
  );
}

/* Title cinematic glow */
.hub-image-title {
  text-shadow:
    0 2px 12px rgba(0,0,0,0.55);
}

/* Hover cinematic motion */
@media (hover:hover) {
  .hub-image-card:hover .hub-image-media img {
    transform: scale(1.14);
    filter:
      contrast(1.15)
      saturate(1.18)
      brightness(1.02);
  }
}

/* Mobile tuning */
@media (max-width: 768px) {
  .hub-image-media {
    aspect-ratio: 4 / 3;
  }
}
/* =====================================================
   TRAVEL STYLES – PREMIUM SELECTOR STRIP
===================================================== */

.hub-travel-styles {
  background: linear-gradient(180deg, #fafafa, #ffffff);
}

.hub-section-intro {
  max-width: 520px;
  margin-top: 6px;
  margin-bottom: 28px;
  color: #475569;
  font-size: 0.95rem;
}

/* Grid */
.hub-style-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

/* Card */
.hub-style-card {
  position: relative;
  padding: 16px 18px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
  text-decoration: none;
  color: #0f172a;
  box-shadow:
    0 4px 14px rgba(0,0,0,0.04);
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
  will-change: transform;
}

/* Label */
.hub-style-label {
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  display: block;
}

/* Hover interaction */
@media (hover:hover) {
  .hub-style-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(15,118,110,0.35);
    box-shadow:
      0 10px 28px rgba(0,0,0,0.10);
  }
}

/* Active / focus polish */
.hub-style-card:focus-visible {
  outline: none;
  border-color: #0f766e;
  box-shadow:
    0 0 0 3px rgba(15,118,110,0.15),
    0 10px 28px rgba(0,0,0,0.10);
}

/* Mobile tuning */
@media (max-width: 768px) {

  .hub-style-grid {
    gap: 14px;
  }

  .hub-style-card {
    padding: 14px 14px;
  }

}

/* -------------------------------
   PILL SYSTEM
-------------------------------- */

.hub-pill-grid a:hover {
  background: #ffffff;
  border-color: #0f766e;
  color: #0f766e;
  box-shadow: 0 6px 14px rgba(0,0,0,0.05);
}

/* =====================================================
   INTERNAL GUIDES – COMPACT PREMIUM GRID
===================================================== */

.hub-internal-guides {
  background: linear-gradient(180deg, #fafafa, #ffffff);
}

.hub-internal-header {
  max-width: 720px;
  margin-bottom: 28px;
}

.hub-internal-header p {
  color: #475569;
  font-size: 0.95rem;
  margin-top: 6px;
}

/* Grid layout */
.hub-internal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
}

/* Card */
.hub-guide-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.05);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
  will-change: transform;
}

/* Hover */
@media (hover:hover) {
  .hub-guide-card:hover {
    transform: translateY(-3px) scale(1.01);
    border-color: rgba(15,118,110,0.35);
    box-shadow: 0 14px 32px rgba(0,0,0,0.10);
  }
}

/* Thumbnail */
.hub-guide-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.hub-guide-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tag */
.hub-guide-tag {
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 3px 8px;
  font-size: 0.62rem;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(0,0,0,0.7);
  color: #ffffff;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hub-guide-tag.trending {
  background: linear-gradient(135deg, #dc2626, #f97316);
}

.hub-guide-tag.popular {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
}

/* Text */
.hub-guide-title {
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.hub-guide-meta {
  font-size: 0.75rem;
  color: #64748b;
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(16px) scale(.97);
  transition: all .7s cubic-bezier(.22,.61,.36,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Mobile */
@media (max-width: 900px) {
  .hub-internal-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------
   Budget Badge
-------------------------------- */

.hub-budget-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  padding: 4px 10px;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: #ffffff;
  letter-spacing: .02em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  pointer-events: none;
}

/* -------------------------------
   TYPOGRAPHY
-------------------------------- */

.hub-page h2 {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hub-page p {
  color: #475569;
}

.hub-page p + p {
  margin-top: 10px;
}

/* =====================================================
   FAQ – PREMIUM ACCORDION SYSTEM
===================================================== */

.hub-faq {
  background: linear-gradient(180deg, #fafafa, #ffffff);
}

.hub-faq-header {
  max-width: 640px;
  margin-bottom: 28px;
}

.hub-faq-header p {
  color: #475569;
  font-size: 0.95rem;
  margin-top: 6px;
}

/* Grid */
.hub-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
}

/* Item */
.faq-item {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  overflow: hidden;
}

/* Question */
.faq-question {
  width: 100%;
  padding: 16px 18px;
  background: none;
  border: none;
  text-align: left;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-question:focus {
  outline: none;
}

/* Icon */
.faq-icon {
  font-size: 1.2rem;
  line-height: 1;
  opacity: .5;
  transition: transform .3s ease, opacity .3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 18px;
}

.faq-answer p {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.55;
}

/* Active */
.faq-item.is-open .faq-answer {
  max-height: 240px;
  padding-bottom: 16px;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  opacity: 1;
}

/* Hover polish */
@media (hover:hover) {
  .faq-item:hover {
    border-color: rgba(15,118,110,0.25);
  }
}

/* Mobile */
@media (max-width: 900px) {
  .hub-faq-grid {
    grid-template-columns: 1fr;
  }
}


/* -------------------------------
   CTA SYSTEM
-------------------------------- */

.hub-cta {
  background: linear-gradient(180deg, #0f766e, #0b5f58);
  color: #ffffff;
  border-radius: 20px;
  padding: clamp(36px, 5vw, 56px);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.1);
}

.hub-cta h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}

/* -------------------------------
   RESPONSIVE OPTIMIZATION
-------------------------------- */

@media (max-width: 900px) {
  .hub-hero-grid {
    grid-template-columns: 1fr;
  }

  .hub-hero-image {
    order: -1;
  }

  .hub-hero-image img {
    transform: none;
  }
}

@media (max-width: 768px) {

  .hub-page section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .hub-image-card,
  .dest-card {
    border-radius: 14px;
  }

  .hub-image-card img,
  .dest-card img {
    height: 180px;
  }

  .hub-image-card span,
  .dest-card span {
    font-size: 0.95rem;
    padding: 12px 14px;
  }

  .hub-pill-grid a {
    padding: 7px 12px;
    font-size: 0.82rem;
  }
}

/* =====================================================
   Mobile Horizontal Slider – Internal Guides
===================================================== */

@media (max-width: 900px) {

  .hub-internal-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 78%);
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .hub-guide-card {
    scroll-snap-align: start;
  }

  /* Hide scrollbar (optional) */
  .hub-internal-grid::-webkit-scrollbar {
    display: none;
  }

}
/* ________________________________________ */


/* =====================================================
   HOMEPAGE SEO + FAQ – PREMIUM LAYOUT
===================================================== */

.homepage-seo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.homepage-seo-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

.homepage-seo-content p + p {
  margin-top: 14px;
}

.homepage-seo-faq h3 {
  margin-bottom: 14px;
  font-weight: 800;
}

/* Reduce FAQ density on homepage */
.homepage-seo-faq .hub-faq-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

/* Mobile */
@media (max-width: 900px) {
  .homepage-seo-grid {
    grid-template-columns: 1fr;
  }
}
/* =====================================================
   LIVE BUDGET CALCULATOR TEASER
===================================================== */
.home-calculator-teaser {
  background: linear-gradient(180deg, #f0fdfa, #ffffff);
}

.teaser-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
}

.teaser-mock {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.teaser-mock span {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .teaser-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   TESTIMONIAL
===================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  font-size: 0.85rem;
}

.testimonial-card strong {
  display: block;
  margin-top: 8px;
  color: #0f766e;
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   DESTINATION ARTICLE — FULL SCREEN PREMIUM SYSTEM
===================================================== */

/* Layout container */
.destination-article {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 72px) clamp(16px, 3vw, 32px);
}

/* =====================================================
   HERO
===================================================== */

.dest-article-hero {
  padding-bottom: 6px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.dest-article-hero h1 {
  font-size: clamp(2.3rem, 3.6vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.025em;
  max-width: 900px;
}

.dest-hero-summary {
  margin-top: 8px;
  max-width: 820px;
  background: linear-gradient(180deg, #ecfeff, #ffffff);
  border-left: 4px solid #0f766e;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 600;
}

/* =====================================================
   GALLERY — CINEMATIC STRIP
===================================================== */

.dest-gallery {
  margin: 56px 0 72px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(380px, 1fr);
  gap: 20px;
  padding-bottom: 6px;
}

.gallery-track img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 26px;
  scroll-snap-align: center;
  box-shadow: 0 18px 42px rgba(0,0,0,0.18);
  transition: transform .35s ease;
}

.gallery-track img:hover {
  transform: scale(1.045);
}

/* =====================================================
   SNAPSHOT STRIP
===================================================== */

.dest-snapshot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 52px;
}

.snapshot-card {
  background: linear-gradient(180deg, #ffffff, #f9fafb);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.snapshot-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(0,0,0,0.12);
}

.snapshot-card span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #64748b;
}

.snapshot-card strong {
  display: block;
  margin-top: 8px;
  font-weight: 900;
  font-size: 1.05rem;
}


/* =====================================================
   SECTION SYSTEM
===================================================== */

/* Compact vertical rhythm */
.destination-article section {
  margin-bottom: 10px;
}

/* Tighter grouping for stacked sections */
.dest-section + .dest-section,
.dest-breakdown + .dest-section,
.dest-section + .dest-breakdown {
  margin-top: 10px;
}

/* Hero spacing refinement */
.dest-article-hero {
  margin-bottom: 10px;
}

/* Gallery breathing only */
.dest-gallery {
  margin: 30px 0 38px;
}

/* CTA emphasis spacing */
.booking-section {
  margin-top: 28px;
}


.destination-article h2 {
  font-size: clamp(1.45rem, 2vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}

/* =====================================================
   CONTENT LISTS
===================================================== */

.dest-list {
  list-style: none;
  padding: 0;
}

.dest-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 05px;
  line-height: 1.55;
}

.dest-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  top: 0;
  color: #0f766e;
  font-weight: 900;
}

/* =====================================================
   COST BREAKDOWN
===================================================== */

.breakdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.breakdown-item {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.breakdown-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}

.breakdown-item span {
  font-size: 0.72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #64748b;
}

.breakdown-item strong {
  display: block;
  margin-top: 8px;
  font-weight: 900;
  font-size: 1.05rem;
  color: #0f766e;
}

.dest-highlight {
  margin-top: 18px;
  font-weight: 700;
}

/* =====================================================
   FAQ
===================================================== */

.dest-faq {
  background: #f9fafb;
  padding: 12px;
  border-radius: 28px;
}

/* =========================================
   FAQ ACCORDION – PREMIUM UX ANIMATION
========================================= */

.hub-faq-grid {
  display: grid;
  gap: 14px;
}

/* Card shell */
.faq-item {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

/* Elevated when open */
.faq-item.is-open {
  box-shadow:
    0 10px 30px rgba(0,0,0,0.08),
    0 2px 8px rgba(0,0,0,0.04);
}

/* Question button */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-question:hover {
  background: #f8fafc;
}

/* Icon animation */
.faq-icon {
  display: inline-flex;
  font-size: 1.1rem;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  opacity: 0.8;
}

/* Answer wrapper */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Inner spacing */
.faq-answer p {
  padding: 0 18px 16px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #475569;
}

/* Touch optimization */
@media (max-width: 768px) {
  .faq-question {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }
}

/* =====================================================
   RELATED DESTINATIONS
===================================================== */

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.related-card {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  padding: 18px;
  border-radius: 22px;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

/* =====================================================
   CTA
===================================================== */

.booking-section {
  background: linear-gradient(180deg, #ecfeff, #ffffff);
  padding: 26px 26px;
  border-radius: 32px;
  text-align: center;
}

.destination-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}

.destination-cta a {
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.destination-cta .hotel {
  background: #0f766e;
  color: #fff;
}

.destination-cta .flight {
  background: #111827;
  color: #fff;
}

.destination-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}

/* =====================================================
   STICKY CTA
===================================================== */

.sticky-cta {
  position: fixed;
  bottom: calc(env(safe-area-inset-bottom) + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #0f766e;
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  display: flex;
  gap: 14px;
  align-items: center;
  z-index: 999;
  box-shadow: 0 12px 36px rgba(0,0,0,0.28);
}

.sticky-btn {
  background: #ffffff;
  color: #0f766e;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1024px) {

  .dest-snapshot,
  .breakdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-track img {
    height: 280px;
  }
}

@media (max-width: 640px) {

  .destination-article {
    padding: 28px 16px;
  }

  .gallery-track {
    grid-auto-columns: 82%;
  }

  .gallery-track img {
    height: 220px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .calc-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .sticky-cta {
    display: none;
  }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all .6s cubic-bezier(.22,.61,.36,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.sticky-cta {
  transition: opacity .3s ease, transform .3s ease;
}

/* =====================================================
   RELATED DESTINATIONS — PREMIUM IMAGE CARD UPGRADE
   (Additive only, safe patch)
===================================================== */

.related-cards {
  margin-top: 18px;
}

.related-cards .section-intro {
  max-width: 720px;
  margin-bottom: 20px;
  color: #475569;
}

/* Grid balance */
.related-grid {
  gap: clamp(16px, 2.5vw, 28px);
}

/* Card shell */
.related-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 0; /* override text padding safely */
  background: #ffffff;
  box-shadow:
    0 10px 26px rgba(0,0,0,0.10),
    0 2px 6px rgba(0,0,0,0.05);
  transition: transform .28s ease, box-shadow .28s ease;
}

/* Hover lift */
@media (hover: hover) {
  .related-card:hover {
    transform: translateY(-4px);
    box-shadow:
      0 18px 46px rgba(0,0,0,0.18),
      0 4px 12px rgba(0,0,0,0.08);
  }
}

/* Image control */
.related-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

/* Subtle zoom */
@media (hover: hover) {
  .related-card:hover img {
    transform: scale(1.04);
  }
}

/* Title bar */
.related-card span {
  display: block;
  padding: 12px 12px;
  font-weight: 900;
  font-size: 0.95rem;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border-top: 1px solid rgba(0,0,0,0.05);
  color: #0f172a;
  text-align: center;
}

/* Mobile tuning */
@media (max-width: 768px) {
  .related-card img {
    height: 180px;
  }

  .related-card span {
    font-size: 0.9rem;
    padding: 12px 14px;
  }
}
/* =====================================================
   RELATED DESTINATIONS — FINAL PREMIUM MICRO POLISH
===================================================== */

/* Section framing */
.related-cards {
  position: relative;
}

.related-cards::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.02),
    rgba(0,0,0,0)
  );
  pointer-events: none;
}

/* Visual separation cue */
.related-grid {
  padding-top: 4px;
}

/* Subtle overlay hint on image */
.related-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.00) 55%,
    rgba(0,0,0,0.06) 100%
  );
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

@media (hover: hover) {
  .related-card:hover::after {
    opacity: 1;
  }
}

/* Title micro-contrast */
.related-card span {
  letter-spacing: -0.01em;
}

/* Slight tactile feedback */
@media (hover: hover) {
  .related-card:active {
    transform: translateY(-1px) scale(0.995);
  }
}
