
:root:root {
  /* Palette adopted from Route N Advanced: royal navy + gold on ivory */
  --primary: #0c2d84;
  --primary-dark: #041752;
  --primary-mid: #07226a;
  --primary-light: #3772bb;

  --accent: #e5b23f;
  --accent-light: #f3dca1;
  --accent-gold: #f6dd90;
  --accent-gradient: linear-gradient(100deg, #d99e3f, #f6dd90);
  --bg-page: #fcfaf4;
  --bg-light: #f7ebca;
  --bg-muted: #eaeff7;
  --card: #ffffff;
  --text-light: #fbf8f0;
  --text-dark: #041752;
  --text-mid: #07226a;
  --text-muted-dark: #4f5e77;
  --text-muted-light: #b9c6dd;
  --muted: rgba(251,248,240,0.75);
  --muted-soft: rgba(251,248,240,0.48);
  --border: rgba(4,23,82,0.15);
  --border-mid: rgba(251,248,240,0.22);
  --border-light: #d6dfec;
  --border-card: #d6dfec;
  --border-gold: rgba(229,178,63,0.45);
  --radius: 0.75rem;
  --shadow-sm: 0 1px 4px rgba(4,23,82,0.07);
  --shadow: 0 8px 26px -14px rgba(4,23,82,0.28);
  --shadow-md: 0 24px 60px -28px rgba(4,23,82,0.45);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg-page); color: var(--text-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; }
.text-gradient-gold { background: linear-gradient(135deg, #f6dd90, var(--accent-gold), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.header { position: sticky; top: 0; z-index: 100; background: var(--primary-dark); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 0.6rem 1.5rem; backdrop-filter: blur(10px); }
.header-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.header-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.header-logo img { height: 30px; width: auto; max-width: 40px; border-radius: 0; object-fit: contain; background: transparent; }
.header-logo .logo-word { display: flex; flex-direction: column; line-height: 1.1; color: #fff; }
.header-logo .logo-word strong { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; letter-spacing: 0.01em; }
.header-logo .logo-word em { font-style: normal; font-size: 0.5rem; letter-spacing: 0.22em; color: rgba(255,255,255,0.72); margin-top: 2px; }
.header-nav { display: none; gap: 2rem; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.header-nav a { color: white; text-decoration: none; transition: color 0.2s; }
.header-nav a:hover { color: var(--accent); }
@media(min-width:768px) { .header-nav { display: flex; } }
/* Mobile navigation */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 4px; width: 40px; height: 36px; padding: 0 8px; background: transparent; border: 1px solid rgba(255,255,255,0.25); border-radius: 8px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; width: 100%; background: #fff; border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { display: none; }
@media(max-width:767px) {
  .nav-toggle { display: flex; }
  .header .header-cta { display: none !important; }
  .header.nav-open .mobile-nav { display: flex; flex-direction: column; gap: 0.25rem; padding: 0.75rem 0 0.25rem; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 0.6rem; }
  .mobile-nav a { color: #fff; text-decoration: none; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.65rem 0.25rem; }
  .mobile-nav a.btn { margin-top: 0.4rem; text-transform: none; letter-spacing: 0; }
}

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.6rem 1.5rem; border-radius: var(--radius); font-weight: 700; font-size: 0.85rem; cursor: pointer; transition: all 0.2s; border: none; text-decoration: none; }
.btn:active { transform: scale(0.97); }
.btn-accent { background: var(--accent-gradient); color: white; font-weight: 800; box-shadow: 0 2px 8px rgba(229,178,63,0.3); }
.btn-accent:hover { background: var(--accent-light); box-shadow: 0 4px 12px rgba(229,178,63,0.4); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.7); }
.btn-outline:hover { background: white; color: var(--primary); }

/* Hero */
.hero { text-align: center; padding: 5rem 1.5rem 3rem; background: var(--primary); }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 400; margin-bottom: 0.5rem; line-height: 1.1; color: white; }
.hero h1 .gold { font-style: italic; color: transparent; background: var(--accent-gradient); -webkit-background-clip: text; background-clip: text; }
.hero .subtitle { font-size: 0.9rem; color: var(--muted); margin-top: 1rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; }
.hero .divider { width: 60px; height: 3px; background: var(--accent); margin: 1.5rem auto; border-radius: 2px; }

/* Intro */
.intro { background: var(--primary); padding: 2rem 1.5rem 3rem; text-align: center; }
.intro-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 1rem; padding: 2.5rem 2rem; max-width: 800px; margin: 0 auto; color: white; }
.intro-card h2 { font-size: 1.5rem; font-style: italic; margin-bottom: 1rem; color: white; }
.intro-card h2 .gold { font-weight: 700; color: var(--accent-gold); }
.intro-card p { color: rgba(255,255,255,0.78); font-size: 0.95rem; line-height: 1.8; }



/* Stats Row */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 800px; margin: 2rem auto; }
.stat-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 0.75rem; padding: 1.5rem 1rem; text-align: center; color: white; }
.stat-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.stat-title { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.25rem; color: var(--accent-gold); }
.stat-value { font-size: 1.1rem; font-weight: 800; color: white; margin-bottom: 0.2rem; font-family: 'Inter', sans-serif; }
.stat-sub { font-size: 0.75rem; color: rgba(255,255,255,0.65); }
@media(max-width:640px) { .stats-row { grid-template-columns: 1fr; } }

/* CTA Row */
.cta-row { display: flex; gap: 1rem; justify-content: center; margin: 2rem 0 3rem; flex-wrap: wrap; }
.promo-banner { background: linear-gradient(135deg, #3772bb, #0c2d84); border: 2px solid var(--accent); border-radius: 1rem; padding: 2rem; text-align: center; max-width: 700px; margin: 2rem auto; }
.promo-banner .promo-title { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; }
.promo-banner .promo-highlight { font-size: 1.1rem; font-weight: 700; margin: 1rem 0; color: white; }
.promo-banner .promo-highlight .gold { color: transparent; background: var(--accent-gradient); -webkit-background-clip: text; background-clip: text; font-weight: 800; }
.promo-banner .promo-value { font-size: 0.9rem; color: var(--accent); font-weight: 600; }
.promo-banner .promo-note { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-style: italic; margin-top: 0.5rem; }
.promo-banner .countdown-label { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1rem; }
.promo-banner .countdown-label span { background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.countdown-boxes { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.countdown-box { display: flex; flex-direction: column; align-items: center; }
.countdown-box .cd-value { width: 60px; height: 60px; border-radius: 0.5rem; border: 1.5px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 900; font-family: 'Inter', monospace; color: white; }
.countdown-box.highlight .cd-value { background: rgba(255,255,255,0.1); color: #fcd34d; }
.countdown-box .cd-label { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-top: 0.3rem; }
.promo-banner .lock-text { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }

/* Age-Based Pricing Badges & Summary */
.badge { display: inline-block; font-size: 0.6rem; font-weight: 800; padding: 0.15rem 0.5rem; border-radius: 0.25rem; margin-left: 0.4rem; text-transform: uppercase; background: #e5b23f; color: #041752; }
.badge-infant { background: #a78bfa; color: white; }
.badge-child { background: #34d399; color: #064e3b; }
.badge-senior { background: #e5b23f; color: #041752; }
.discount-row { display: flex; justify-content: space-between; align-items: center; padding: 0.4rem 0; font-size: 0.8rem; color: rgba(255,255,255,0.9); }
.discount-row .discount-text { color: #4ade80; font-size: 0.75rem; font-weight: 600; margin-left: 0.3rem; }
.discount-breakdown { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 0.5rem; padding: 0.75rem 1rem; margin-bottom: 1rem; }
.discount-breakdown-title { font-size: 0.75rem; font-weight: 700; color: var(--accent); margin-bottom: 0.5rem; }
.installment-sub-header { font-size: 0.78rem; color: rgba(255,255,255,0.7); padding: 0.3rem 0; }
.installment-sub-header .badge { font-size: 0.55rem; padding: 0.1rem 0.4rem; border-radius: 0.2rem; }
.installment-divider { border-top: 1px solid rgba(255,255,255,0.15); margin: 0.5rem 0; }
.pricing-summary-box { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); border-radius: 0.75rem; padding: 1rem 1.25rem; margin-bottom: 1.5rem; }
.pricing-summary-box h4 { font-size: 0.85rem; font-weight: 700; color: var(--accent); margin-bottom: 0.75rem; }
.pricing-row-item { display: flex; justify-content: space-between; align-items: center; padding: 0.35rem 0; font-size: 0.85rem; color: rgba(255,255,255,0.9); border-bottom: 1px solid rgba(255,255,255,0.06); }
.pricing-row-item:last-child { border-bottom: none; }
.pricing-row-item.total { font-weight: 700; color: white; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 0.5rem; margin-top: 0.25rem; }
.pricing-row-item .original { text-decoration: line-through; color: rgba(255,255,255,0.4); font-size: 0.75rem; margin-right: 0.3rem; }
.pricing-row-item .discount-text { color: #4ade80; font-size: 0.75rem; margin-left: 0.3rem; }
.savings-banner { background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.3); border-radius: 0.4rem; padding: 0.5rem 0.75rem; font-size: 0.8rem; color: #4ade80; font-weight: 600; margin-top: 0.5rem; }
.pricing-note { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 0.5rem; font-style: italic; }

/* Features Section */
.features { background: #ffffff; padding: 5rem 1.5rem; color: var(--text-dark); border-top: 3px solid var(--accent); }
.features .section-badge { display: inline-block; font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; background: var(--primary); color: white; padding: 0.4rem 1rem; border-radius: 2rem; margin-bottom: 1rem; }
.features h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--primary); margin-bottom: 0.75rem; }
.features .features-sub { color: var(--text-muted-dark); font-size: 0.95rem; max-width: 600px; margin: 0 auto 3rem; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.feature-card { background: white; border-radius: 1rem; padding: 2rem 1.5rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border-card); transition: box-shadow 0.2s; }
.feature-card:hover { box-shadow: var(--shadow); }
.feature-card .icon-circle { width: 48px; height: 48px; border-radius: 0.6rem; background: var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.2rem; }
.feature-card h3 { font-size: 1.05rem; color: var(--accent); margin-bottom: 0.75rem; font-weight: 700; font-family: 'Inter', sans-serif; }
.feature-card p { font-size: 0.85rem; color: var(--text-muted-dark); line-height: 1.7; }
.feature-card .highlight-box { background: #fffbeb; border: 1px solid rgba(229,178,63,0.4); border-radius: 0.5rem; padding: 0.75rem; margin-top: 1rem; text-align: center; }
.feature-card .highlight-box .price { font-size: 1.5rem; font-weight: 900; color: var(--accent); font-family: 'Inter', sans-serif; }
.feature-card .highlight-box .note { font-size: 0.75rem; color: var(--accent); }
.feature-card .red-text { color: #dc2626; font-weight: 700; }
@media(max-width:768px) { .features-grid { grid-template-columns: 1fr; } }

/* Itinerary Section */
.itinerary { background: var(--primary); padding: 5rem 1.5rem; }
.itinerary .section-badge { display: inline-block; font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; background: rgba(255,255,255,0.12); color: white; padding: 0.4rem 1rem; border-radius: 2rem; margin-bottom: 1rem; border: 1px solid rgba(255,255,255,0.18); }
.itinerary h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-style: italic; margin-bottom: 0.75rem; color: white; }
.itinerary .section-sub { color: rgba(255,255,255,0.7); font-size: 0.95rem; max-width: 600px; margin: 0 auto 2rem; }
.itinerary-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.map-panel { position: sticky; top: 80px; }
@media(max-width:900px) { .itinerary-layout { grid-template-columns: 1fr; } .map-panel { position: static; top: auto; } }


.map-panel img { width: 100%; border-radius: 1rem; box-shadow: var(--shadow); }
.city-tabs { display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }
.city-tab { padding: 0.4rem 0.8rem; border-radius: 2rem; font-size: 0.75rem; font-weight: 700; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.85); cursor: pointer; transition: all 0.2s; }
.city-tab.active, .city-tab:hover { background: var(--accent); color: white; border-color: var(--accent); }
.day-tabs { display: none; }
.day-tab { display: none; }
/* Day slideshow controls inside the itinerary box */
.day-nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; margin-bottom: 1.25rem; border-bottom: 1px solid var(--border-light); }
.day-nav-btn { display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; flex-shrink: 0; border-radius: 999px; border: 1px solid var(--border-gold); background: var(--accent-gradient); color: var(--primary-dark); font-size: 1rem; font-weight: 800; cursor: pointer; transition: all 0.2s; box-shadow: var(--shadow-sm); }
.day-nav-btn:hover:not(:disabled) { filter: brightness(1.06); transform: translateY(-1px); }
.day-nav-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.day-nav-center { text-align: center; line-height: 1.2; }
.day-nav-count { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); }
.day-nav-sub { font-size: 0.7rem; color: var(--text-muted-light); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.15rem; }
.day-dots { display: flex; justify-content: center; gap: 0.35rem; flex-wrap: wrap; margin-top: 1.5rem; }
.day-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--border-card); border: none; padding: 0; cursor: pointer; transition: all 0.2s; }
.day-dot:hover { background: var(--accent-light); }
.day-dot.active { background: var(--accent); width: 22px; }
/* Hero banner image */
.hero-banner { position: relative; width: 100%; height: clamp(240px, 42vw, 520px); overflow: hidden; background: var(--primary-dark); }
.hero-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(16,37,155,0.25) 0%, rgba(16,37,155,0.05) 45%, var(--primary) 100%); }
.hero-banner-caption { position: absolute; left: 0; right: 0; bottom: 1.25rem; z-index: 2; text-align: center; color: white; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }

/* Hero with overlaid headline */
.hero-overlay { height: clamp(460px, 72vh, 780px); display: flex; align-items: center; justify-content: center; }
.hero-overlay::after { background: linear-gradient(to bottom, rgba(8,22,88,0.62) 0%, rgba(8,22,88,0.42) 35%, rgba(8,22,88,0.78) 78%, var(--primary) 100%); }
.hero-overlay img { position: absolute; inset: 0; }
.hero-banner-inner { position: relative; z-index: 3; text-align: center; padding: 0 1.5rem; max-width: 1080px; }
.hero-banner-inner .eyebrow { color: var(--accent-gold); font-size: clamp(0.5rem, 0.95vw, 0.68rem); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 1.5rem; white-space: nowrap; text-shadow: 0 2px 14px rgba(0,0,0,0.5); }
.hero-banner-inner h1 { font-family: 'Playfair Display', serif; color: #fff; font-size: clamp(2.1rem, 6vw, 4.2rem); line-height: 1.15; margin: 0 0 1.5rem; text-shadow: 0 4px 28px rgba(0,0,0,0.55); font-weight: 500; }
.hero-banner-inner h1 .line-1 { display: block; font-style: normal; }
.hero-banner-inner h1 .line-2 { display: block; font-style: italic; margin-top: 0.15em; }
.hero-banner-inner .gold { color: var(--accent-gold); }
.hero-banner-inner .divider { width: 70px; height: 2px; margin: 0 auto; background: var(--accent-gradient); }

/* Mobile refinements */
@media(max-width:640px) {
  .hero-overlay { height: clamp(380px, 68vh, 560px); }
  .hero-banner-inner { padding: 0 1rem; }
  .hero-banner-inner .eyebrow { white-space: normal; font-size: 0.62rem; letter-spacing: 0.1em; line-height: 1.8; margin-bottom: 1rem; }
  .hero-banner-inner h1 { font-size: clamp(1.7rem, 8.5vw, 2.4rem); margin-bottom: 1rem; }
  .intro-card { padding: 1.75rem 1.15rem !important; }
  .intro-card h2 { font-size: 1.2rem !important; }
  .intro-card p { font-size: 0.88rem !important; }
  .promo-banner { padding: 1.25rem; }
  .countdown-boxes { gap: 0.4rem; }
  .day-content { padding: 1.25rem; }
  .day-nav-count { font-size: 0.62rem; }
  section { padding-left: 1rem; padding-right: 1rem; }
  img, table { max-width: 100%; }
}


.day-tab.active { background: var(--accent); color: white; border-color: var(--accent); }
.day-tab:hover { background: rgba(255,255,255,0.15); color: white; }
.day-content { background: white; border: 1px solid var(--border-card); border-radius: 1rem; padding: 2rem; box-shadow: var(--shadow-md); }
.day-content .day-label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 0.5rem; }
.day-content h3 { font-size: 1.3rem; font-style: italic; margin-bottom: 1rem; color: var(--primary); }
.day-content .description { font-size: 0.9rem; color: var(--text-muted-dark); line-height: 1.8; margin-bottom: 1.5rem; }
.day-content .description strong { color: var(--text-dark); font-weight: 700; }
.day-content .collage-img { width: 100%; border-radius: 0.75rem; margin-bottom: 1.5rem; box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.day-content .info-section { margin-bottom: 1rem; }
.day-content .info-title { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; color: var(--accent); font-family: 'Inter', sans-serif; }
.day-content .info-list { list-style: none; padding: 0; }
.day-content .info-list li { font-size: 0.85rem; color: var(--text-muted-dark); padding: 0.25rem 0; padding-left: 1rem; position: relative; }
.day-content .info-list li::before { content: "•"; position: absolute; left: 0; color: var(--accent); font-weight: bold; }
.day-content .meals-badge { display: inline-flex; align-items: center; gap: 0.3rem; background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; font-size: 0.8rem; font-weight: 600; padding: 0.3rem 0.8rem; border-radius: 2rem; }
.day-content .travel-time { font-size: 0.8rem; color: var(--text-muted-dark); font-style: italic; margin-top: 0.5rem; }
.day-content .optional-box { background: #fffce6; border: 1px solid rgba(229,178,63,0.4); border-radius: 0.5rem; padding: 0.75rem 1rem; margin-top: 1rem; }
.day-content .optional-box .opt-title { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; color: var(--accent); margin-bottom: 0.3rem; font-family: 'Inter', sans-serif; }
.day-content .optional-box p { font-size: 0.8rem; color: var(--text-muted-dark); }
.day-content .note-text { font-size: 0.75rem; color: #94a3b8; font-style: italic; margin-top: 1rem; }



/* Pricing Section */
.pricing { background: var(--bg-light); padding: 5rem 1.5rem; color: var(--text-dark); text-align: center; }
.pricing .section-badge { display: inline-block; font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; background: var(--primary); color: white; padding: 0.4rem 1rem; border-radius: 2rem; margin-bottom: 1rem; }
.pricing h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--primary); margin-bottom: 0.75rem; font-family: 'Playfair Display', serif; }
.pricing .section-sub { color: var(--text-muted-dark); font-size: 0.95rem; max-width: 600px; margin: 0 auto 3rem; }
.pricing-card { background: white; border-radius: 1.2rem; overflow: hidden; box-shadow: var(--shadow-md); margin-top: 2rem; border: 1px solid var(--border-card); }
.pricing-header { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 0; background: white; }
.pricing-header-intro { padding: 2rem 1.5rem; text-align: left; border-right: 1px solid var(--border-card); display: flex; flex-direction: column; justify-content: center; }
.pricing-header-intro h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 0.5rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.pricing-header-intro p { font-size: 0.85rem; color: var(--text-muted-dark); line-height: 1.6; }
.pricing-header-col { padding: 2rem 1rem; border-left: 1px solid var(--border-card); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; }
.pricing-header-col .col-badge { font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.25rem 0.75rem; border-radius: 1rem; border: 1.5px solid var(--primary); color: var(--primary); }
.pricing-header-col.best-seller-col .col-badge { background: var(--accent-gradient); color: white; border: none; }
.pricing-header-col.best-seller-col .col-sub-badge { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.2rem 0.6rem; border-radius: 0.5rem; background: #fff8cc; color: #7a5800; }
.pricing-header-col .col-amount { font-size: 1.8rem; font-weight: 900; color: var(--primary); font-family: 'Inter', sans-serif; }
.pricing-header-col.best-seller-col .col-amount { color: var(--accent); }
.pricing-header-col .col-sub { font-size: 0.75rem; color: var(--text-muted-dark); font-style: italic; }
.pricing-header-col .view-schedule-btn { display: inline-block; padding: 0.5rem 1.2rem; border-radius: 0.5rem; font-size: 0.75rem; font-weight: 700; cursor: pointer; text-decoration: none; transition: all 0.2s; margin-top: 0.3rem; border: none; }
.pricing-header-col .view-schedule-btn.dark { background: var(--primary); color: white; }
.pricing-header-col .view-schedule-btn.gold { background: var(--accent-gradient); color: white; }
.pricing-header-col .view-schedule-btn:hover { transform: scale(0.97); opacity: 0.9; }
.pricing-rows { }
.pricing-row-item { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; border-bottom: 1px solid var(--border-light); }
.pricing-row-item:last-child { border-bottom: none; }
.pricing-row-item .row-label { padding: 1rem 1.5rem; font-weight: 700; color: var(--primary); font-size: 0.9rem; display: flex; align-items: center; }
.pricing-row-item .row-value { padding: 1rem; text-align: center; font-size: 0.85rem; color: var(--text-muted-dark); display: flex; align-items: center; justify-content: center; }
.pricing-row-item .row-value .check-badge { color: var(--primary-light); font-weight: 700; font-size: 0.85rem; }
.pricing-row-item .row-value .discount-badge { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 0.4rem; font-size: 0.75rem; font-weight: 700; border: 1.5px solid var(--accent); color: var(--accent); }
.pricing-row-item .row-value .free-badge { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 0.4rem; font-size: 0.75rem; font-weight: 700; border: 1.5px solid #dc2626; color: #dc2626; }
.pricing-view-link { text-align: center; padding: 2rem; border-top: 1px solid var(--border-card); }
.pricing-view-link a { color: var(--primary); font-weight: 600; font-size: 0.9rem; text-decoration: none; border-bottom: 1.5px solid var(--accent); padding-bottom: 2px; }
.pricing-view-link a:hover { color: var(--accent); border-color: var(--accent); }
@media(max-width:768px) { .pricing-header { grid-template-columns: 1fr; } .pricing-header-intro { border-right: none; border-bottom: 1px solid #e8edf5; } .pricing-header-col { border-left: none; border-bottom: 1px solid #e8edf5; } .pricing-row-item { grid-template-columns: 1fr; } .pricing-row-item .row-label { border-bottom: none; padding-bottom: 0.25rem; justify-content: center; } .pricing-row-item .row-value { border-left: none; padding-top: 0.25rem; } }

/* Reservation Form */
.reservation { background: var(--primary); padding: 5rem 1.5rem; color: white; }
.reservation .section-badge { display: inline-block; font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; background: rgba(255,255,255,0.12); color: white; padding: 0.4rem 1rem; border-radius: 2rem; margin-bottom: 1rem; border: 1px solid rgba(255,255,255,0.18); }
.reservation h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-style: italic; margin-bottom: 0.75rem; color: white; }
.reservation .section-sub { color: rgba(255,255,255,0.72); font-size: 0.9rem; max-width: 600px; margin: 0 auto 2rem; }
.form-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 1.2rem; padding: 2.5rem 2rem; max-width: 800px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
@media(max-width:640px) { .form-grid, .form-grid-2 { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 0.5rem; padding: 0.7rem 0.9rem; font-size: 0.9rem; color: white; font-family: 'Inter', sans-serif; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group input::placeholder { color: rgba(255,255,255,0.3); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; }
.form-group select option { background: var(--primary-dark); color: white; }

/* Package & Payment Toggles */
.toggle-section { margin-bottom: 2rem; }
.toggle-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.toggle-group { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.toggle-group-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem; }
@media(max-width:640px) { .toggle-group-3 { grid-template-columns: 1fr; } }
.toggle-option { background: rgba(255,255,255,0.03); border: 2px solid var(--border); border-radius: 0.5rem; padding: 0.8rem; cursor: pointer; transition: all 0.2s; text-align: center; }
.toggle-option input { display: none; }
.toggle-option input:checked + label { background: transparent; color: white; border: 2px solid var(--accent); }
.toggle-option label { display: block; font-size: 0.8rem; font-weight: 700; cursor: pointer; padding: 0.5rem; border-radius: 0.4rem; transition: all 0.2s; }

/* Footer */
footer { background: var(--primary-dark); border-top: 3px solid var(--accent); padding: 3rem 1.5rem 1rem; color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2rem; }
.footer-content h4 { color: white; margin-bottom: 0.75rem; font-size: 0.9rem; }
.footer-content p { font-size: 0.8rem; line-height: 1.6; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid var(--border); font-size: 0.75rem; }
@media(max-width:768px) { .footer-content { grid-template-columns: 1fr; } }

/* Toast */
.toast { position: fixed; bottom: 2rem; right: 2rem; background: rgba(0,0,0,0.8); color: white; padding: 1rem 1.5rem; border-radius: 0.5rem; font-size: 0.9rem; opacity: 0; transition: opacity 0.3s; z-index: 1000; }
.toast.show { opacity: 1; }

.traveler-block { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.15); border-radius: 0.75rem; padding: 1.5rem; margin-bottom: 1.5rem; }
.traveler-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); margin-bottom: 1rem; }

.confirmation-modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.7); z-index: 1000; align-items: center; justify-content: center; }
.confirmation-modal.show { display: flex; }
.confirmation-content { background: white; border-radius: 1rem; padding: 2rem; max-width: 600px; color: var(--text-dark); }
.confirmation-content h2 { color: var(--primary); margin-bottom: 1rem; }
.confirmation-content p { margin-bottom: 1rem; line-height: 1.8; }
.confirmation-buttons { display: flex; gap: 1rem; justify-content: flex-end; margin-top: 2rem; }
.confirmation-buttons button { padding: 0.7rem 1.5rem; border-radius: 0.5rem; border: none; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.confirmation-buttons .btn-confirm { background: var(--primary); color: white; }
.confirmation-buttons .btn-confirm:hover { background: var(--primary-dark); }
.confirmation-buttons .btn-cancel { background: #e5e7eb; color: var(--primary); }
.confirmation-buttons .btn-cancel:hover { background: #d1d5db; }

/* ===== BOOKING CONFIRMATION ===== */
.booking-confirmation { max-width: 850px; margin: 2rem auto; background: #fff; border-radius: 0.75rem; box-shadow: 0 8px 40px rgba(0,0,0,0.2); font-family: 'Inter', sans-serif; color: #041752; }
.bc-header { background: linear-gradient(135deg, #0c2d84, #3772bb); color: white; padding: 1.5rem 2rem 1.25rem; border-radius: 0.75rem 0.75rem 0 0; }
.bc-header-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.bc-header-left { display: flex; align-items: center; gap: 0.75rem; }
.bc-header-left img { height: 48px; width: 48px; border-radius: 8px; object-fit: cover; border: 2px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); }
.bc-header-left h2 { font-size: 1.1rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin: 0; font-family: 'Inter', sans-serif; }
.bc-header-left .sub { font-size: 0.7rem; color: rgba(255,255,255,0.7); margin-top: 2px; }
.bc-header-right { text-align: right; }
.bc-badge { display: inline-block; background: #e5b23f; color: #0c2d84; font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; padding: 0.3rem 0.75rem; border-radius: 3px; }
.bc-header-right .date { font-size: 0.65rem; color: rgba(255,255,255,0.6); margin-top: 0.4rem; }
.bc-header-contact { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.15); font-size: 0.7rem; color: rgba(255,255,255,0.7); }
.bc-body { padding: 2rem; }
.bc-section-title { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: #0c2d84; margin-bottom: 1rem; margin-top: 1.5rem; display: flex; align-items: center; gap: 0.5rem; font-family: 'Inter', sans-serif; }
.bc-section-title::before { content: ''; width: 4px; height: 20px; background: #0c2d84; border-radius: 2px; flex-shrink: 0; }
.bc-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2rem; background: #f8fafc; border-radius: 0.75rem; padding: 1.25rem 1.5rem; border: 1px solid #e8edf5; margin-bottom: 2rem; }
.bc-detail-item label { display: block; font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #6b7a94; margin-bottom: 0.2rem; }
.bc-detail-item p { font-size: 0.85rem; font-weight: 700; color: #041752; margin: 0; }
.bc-detail-item p.highlight { color: #0c2d84; }
.bc-table { width: 100%; border-collapse: collapse; font-size: 0.75rem; margin-bottom: 2rem; border: 1px solid #e8edf5; border-radius: 0.5rem; overflow: hidden; }
.bc-table thead tr { background: rgba(4,23,82,0.05); }
.bc-table th { padding: 0.6rem 0.75rem; text-align: left; font-weight: 700; color: #0c2d84; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid #e8edf5; }
.bc-table td { padding: 0.5rem 0.75rem; border-bottom: 1px solid #f1f5f9; color: #374151; }
.bc-table tbody tr:last-child td { border-bottom: none; }
.bc-table .font-bold { font-weight: 700; }
.bc-table .mono { font-family: 'Inter', monospace; color: #6b7a94; }
.bc-pricing-section { margin-bottom: 2rem; }
.bc-pricing-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; border: 1px solid #e8edf5; border-radius: 0.5rem; overflow: hidden; }
.bc-pricing-table thead tr { background: rgba(4,23,82,0.05); }
.bc-pricing-table th { padding: 0.6rem 1rem; font-weight: 700; color: #0c2d84; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid #e8edf5; text-align: left; }
.bc-pricing-table td { padding: 0.6rem 1rem; border-bottom: 1px solid #f1f5f9; color: #374151; }
.bc-pricing-table .total-row td { font-weight: 900; background: rgba(4,23,82,0.04); border-top: 2px solid #e8edf5; border-bottom: none; }
.bc-pricing-table .text-right { text-align: right; }
.bc-pricing-table .text-center { text-align: center; }
.bc-pricing-table .font-bold { font-weight: 700; }
.bc-benefits { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.bc-benefit { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.75rem 1rem; background: #f0fdf4; border: 1px solid #a7f3d0; border-radius: 0.5rem; }
.bc-benefit .icon { font-size: 1rem; color: #16a34a; font-weight: 700; flex-shrink: 0; }
.bc-benefit .title { font-size: 0.85rem; font-weight: 700; color: #041752; }
.bc-benefit .desc { font-size: 0.75rem; color: #6b7a94; margin-top: 0.15rem; }
.bc-separator { height: 1px; background: #e8edf5; margin: 2rem 0; }
.bc-bank-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
@media(max-width:640px) { .bc-bank-grid { grid-template-columns: 1fr; } }
.bc-bank-card { background: #f8fafc; border: 1px solid #e8edf5; border-radius: 0.75rem; padding: 1rem 1.25rem; }
.bc-bank-card .bank-name { font-size: 0.85rem; font-weight: 800; color: #0c2d84; text-transform: uppercase; letter-spacing: 0.05em; }
.bc-bank-card .bank-full { font-size: 0.7rem; color: #6b7a94; margin-top: 0.15rem; }
.bc-bank-card .bank-acct-name { font-size: 0.7rem; color: #374151; margin-top: 0.25rem; }
.bc-bank-card .bank-number { font-size: 1.1rem; font-weight: 900; color: #041752; margin-top: 0.5rem; letter-spacing: 0.05em; font-family: 'Inter', monospace; }
.bc-payment-schedule-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; border: 1px solid #e8edf5; border-radius: 0.5rem; overflow: hidden; margin-bottom: 1rem; }
.bc-payment-schedule-table thead tr { background: rgba(4,23,82,0.05); }
.bc-payment-schedule-table th { padding: 0.6rem 1rem; font-weight: 700; color: #0c2d84; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid #e8edf5; text-align: left; }
.bc-payment-schedule-table td { padding: 0.5rem 1rem; border-bottom: 1px solid #f1f5f9; color: #374151; }
.bc-payment-schedule-table .total-row td { font-weight: 900; background: rgba(4,23,82,0.04); border-top: 2px solid #e8edf5; border-bottom: none; }
.bc-reminders { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.bc-reminder { font-size: 0.8rem; color: #374151; line-height: 1.6; padding: 0.75rem 1rem; background: #f8fafc; border-left: 3px solid #0c2d84; border-radius: 0 0.5rem 0.5rem 0; }
.bc-tc-scroll { max-height: 300px; overflow-y: auto; background: #f8fafc; border: 1px solid #e8edf5; border-radius: 0.75rem; padding: 1.25rem; margin-bottom: 1.5rem; font-size: 0.75rem; line-height: 1.7; color: #374151; }
.bc-tc-scroll h3 { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: #041752; margin: 1.25rem 0 0.5rem; padding-bottom: 0.3rem; border-bottom: 1px solid #e2e8f0; }
.bc-tc-scroll h3:first-child { margin-top: 0; }
.bc-tc-scroll p { margin-bottom: 0.5rem; text-align: justify; }
.bc-agreement { margin: 1.5rem 0; padding: 1.25rem; background: #f8fafc; border: 2px solid #e2e8f0; border-radius: 0.75rem; transition: border-color 0.2s; }
.bc-agreement.checked { border-color: #16a34a; background: #f0fdf4; }
.bc-agreement label { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; font-size: 0.8rem; color: #041752; line-height: 1.5; }
.bc-agreement input[type="checkbox"] { margin-top: 3px; width: 18px; height: 18px; accent-color: #0c2d84; flex-shrink: 0; cursor: pointer; }
.bc-signature-section { margin-bottom: 2rem; }
.bc-signature-intro { font-size: 0.75rem; color: #6b7a94; line-height: 1.6; margin-bottom: 1.5rem; }
.bc-signature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media(max-width:640px) { .bc-signature-grid { grid-template-columns: 1fr; } }
.bc-sig-label { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: #6b7a94; margin-bottom: 0.5rem; }
.bc-sig-canvas-wrap { position: relative; border: 2px solid #e2e8f0; border-radius: 0.75rem; background: #fff; height: 120px; overflow: hidden; transition: border-color 0.2s; }
.bc-sig-canvas-wrap.has-signature { border-color: #16a34a; }
.bc-sig-canvas-wrap canvas { width: 100%; height: 100%; display: block; cursor: crosshair; }
.bc-sig-placeholder { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 0.7rem; color: #94a3b8; pointer-events: none; text-align: center; }
.bc-sig-actions { display: flex; justify-content: flex-end; margin-top: 0.4rem; }
.bc-sig-clear { font-size: 0.65rem; color: #ef4444; cursor: pointer; border: none; background: none; font-weight: 700; padding: 0.2rem 0.5rem; border-radius: 4px; }
.bc-sig-clear:hover { background: #fef2f2; }
.bc-sig-info { margin-top: 0.75rem; padding-top: 0.5rem; border-top: 1px solid #e8edf5; }
.bc-sig-info .name { font-size: 0.8rem; font-weight: 700; color: #041752; }
.bc-sig-info .date { font-size: 0.65rem; color: #6b7a94; margin-top: 0.15rem; }
.bc-sig-consultant { border: 2px dashed #e2e8f0; border-radius: 0.75rem; background: #fafbfc; height: 120px; display: flex; align-items: center; justify-content: center; }
.bc-sig-consultant p { font-size: 0.7rem; color: #94a3b8; font-style: italic; }
.bc-submit-section { text-align: center; margin: 1.5rem 0; }
.bc-submit-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; background: #0c2d84; color: white; border: none; border-radius: 0.5rem; font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: all 0.2s; box-shadow: 0 4px 12px rgba(4,23,82,0.3); }
.bc-submit-btn:hover:not(:disabled) { background: #3772bb; transform: translateY(-1px); }
.bc-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.bc-submit-status { font-size: 0.75rem; margin-top: 0.75rem; }
.bc-submit-status.ready { color: #16a34a; font-weight: 700; }
.bc-submit-status.pending { color: #6b7a94; }
.bc-package-print { display: none; }
.bc-footer { background: #f8fafc; border-top: 1px solid #e8edf5; padding: 1.5rem 2rem; border-radius: 0 0 0.75rem 0.75rem; text-align: center; }
.bc-footer .company { font-size: 0.8rem; font-weight: 700; color: #041752; margin-bottom: 0.3rem; }
.bc-footer p { font-size: 0.7rem; color: #6b7a94; margin-bottom: 0.2rem; }
.bc-actions { display: flex; gap: 1rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }
.bc-actions .btn-print { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1.5rem; background: #0c2d84; color: white; border: none; border-radius: 0.5rem; font-size: 0.85rem; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.bc-actions .btn-print:hover:not(:disabled) { background: #3772bb; }
.bc-actions .btn-new { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1.5rem; background: #f1f5f9; color: #374151; border: none; border-radius: 0.5rem; font-size: 0.85rem; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.bc-actions .btn-new:hover { background: #e2e8f0; }
@media print {
  @page { size: A4 portrait; margin: 12mm 10mm 12mm 10mm; }
  html, body { width: 100%; margin: 0; padding: 0; }
  body > *:not(#bc-overlay) { display: none !important; }
  #bc-overlay { display: block !important; position: static !important; background: white !important; width: 100% !important; max-width: 100% !important; padding: 0 !important; margin: 0 !important; box-shadow: none !important; }
  .bc-inner { width: 100% !important; max-width: 100% !important; padding: 0 !important; margin: 0 !important; }
  .bc-package-buttons { display: none !important; }
  .bc-package-print { display: block !important; }
  .bc-actions { display: none !important; }
  .bc-submit-section { display: none !important; }
  .bc-sig-clear { display: none !important; }
  .bc-sig-placeholder { display: none !important; }
  .bc-tc-scroll { max-height: none !important; overflow: visible !important; }
  .bc-agreement { display: none !important; }
  /* Table: fit full width, smaller font, no overflow */
  .bc-table { width: 100% !important; table-layout: fixed !important; font-size: 0.62rem !important; border-collapse: collapse !important; overflow: hidden !important; }
  .bc-table th, .bc-table td { padding: 0.3rem 0.35rem !important; font-size: 0.62rem !important; word-break: break-word !important; overflow-wrap: break-word !important; white-space: normal !important; }
  /* Column widths for passenger table */
  .bc-table th:nth-child(1), .bc-table td:nth-child(1) { width: 4% !important; }
  .bc-table th:nth-child(2), .bc-table td:nth-child(2) { width: 12% !important; }
  .bc-table th:nth-child(3), .bc-table td:nth-child(3) { width: 10% !important; }
  .bc-table th:nth-child(4), .bc-table td:nth-child(4) { width: 12% !important; }
  .bc-table th:nth-child(5), .bc-table td:nth-child(5) { width: 7% !important; }
  .bc-table th:nth-child(6), .bc-table td:nth-child(6) { width: 7% !important; }
  .bc-table th:nth-child(7), .bc-table td:nth-child(7) { width: 14% !important; }
  .bc-table th:nth-child(8), .bc-table td:nth-child(8) { width: 20% !important; }
  .bc-table th:nth-child(9), .bc-table td:nth-child(9) { width: 14% !important; }
  /* Prevent page breaks inside key blocks */
  .bc-section-title { page-break-after: avoid !important; }
  .bc-details-grid { page-break-inside: avoid !important; }
  .bc-detail-item { page-break-inside: avoid !important; }
  /* Details grid: 2-column on print */
  .bc-details-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 0.75rem !important; }
  /* Header: keep on one line */
  .bc-header { page-break-inside: avoid !important; }
  .bc-header-contact { flex-wrap: nowrap !important; gap: 0.5rem !important; font-size: 0.65rem !important; }
  /* Overflow wrappers */
  div[style*="overflow-x:auto"] { overflow: visible !important; }
}

/* ---- Hero glass cards + perk strip ---- */
.hero-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }
.hero-card { flex: 1 1 190px; max-width: 240px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16); border-radius: 0.6rem; padding: 1rem 1.1rem; backdrop-filter: blur(8px); text-align: center; }
.hero-card strong { display: block; font-family: 'Playfair Display', serif; font-weight: 500; font-size: 1.05rem; color: var(--accent-gold); }
.hero-card span { display: block; margin-top: 0.3rem; font-size: 0.72rem; color: rgba(255,255,255,0.75); }

.hero-perks { background: #f7f2e6; padding: 1.4rem 1.5rem; }
.hero-perks-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem 1.5rem; }
.hero-perk { display: flex; align-items: flex-start; gap: 0.6rem; }
.hero-perk .hp-icon { font-size: 1rem; line-height: 1.4; }
.hero-perk strong { display: block; font-size: 0.82rem; color: var(--primary); font-weight: 700; }
.hero-perk span { display: block; font-size: 0.72rem; color: rgba(0,0,0,0.55); margin-top: 2px; }

@media (max-width: 640px) {
  .hero-cards { gap: 0.6rem; margin-top: 1.4rem; }
  .hero-card { flex: 1 1 100%; max-width: none; padding: 0.75rem 0.9rem; }
  .hero-card strong { font-size: 0.95rem; }
  .hero-perks-inner { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
}
.hero-perk svg.hp-icon { width: 18px; height: 18px; flex: 0 0 18px; color: var(--primary); margin-top: 2px; }

@media (max-width: 640px) {

}

/* ===== Inclusions & Services page ===== */
.pkg-page { background: var(--primary); padding: 5rem 1.5rem; color: #fff; }
.pkg-page h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.5rem); }
.pkg-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: start; }
.pkg-card { background: #fff; border-radius: 1rem; padding: 1.5rem; box-shadow: 0 18px 40px rgba(0,0,0,0.18); }
.pkg-card-head { display: flex; align-items: center; gap: 0.6rem; padding-bottom: 0.9rem; margin-bottom: 1rem; border-bottom: 1px solid #e5e7eb; }
.pkg-card-head h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin: 0; color: var(--primary); }
.pkg-mark { font-size: 1.2rem; font-weight: 900; }
.pkg-mark.in, .pkg-list .in { color: #16a34a; }
.pkg-mark.ex, .pkg-list .ex { color: #ef4444; }
.pkg-mark.opt, .pkg-list .opt { color: #b8860b; }
.pkg-card-in .pkg-card-head h3 { color: #16a34a; }
.pkg-card-ex .pkg-card-head h3 { color: #ef4444; }
.pkg-card-opt .pkg-card-head h3 { color: #b8860b; }
.pkg-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.pkg-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.9rem; color: #374151; line-height: 1.6; }
.pkg-list li > span:first-child { flex-shrink: 0; font-weight: 700; margin-top: 0.1rem; }
@media (max-width: 640px) { .pkg-page { padding: 3rem 1rem; } }

/* ==================== Itinerary — sellable redesign ==================== */
.itinerary { position: relative; background: linear-gradient(180deg, var(--primary-dark), var(--primary) 45%, var(--primary-dark)); }
.itin-head { text-align: center; max-width: 780px; margin: 0 auto; }
.itinerary h2 { font-style: normal; letter-spacing: -0.01em; }
.itinerary h2 .gold { font-style: italic; color: transparent; background: var(--accent-gradient); -webkit-background-clip: text; background-clip: text; }
.itin-stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0.75rem; margin: 2rem auto 0; max-width: 620px; }
.itin-stat { background: rgba(255,255,255,0.06); border: 1px solid rgba(229,178,63,0.28); border-radius: 0.85rem; padding: 0.85rem 0.5rem; text-align: center; }
.itin-stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.5rem; line-height: 1; color: var(--accent-gold); }
.itin-stat span { display: block; margin-top: 0.35rem; font-size: 0.58rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.62); }

.map-frame { position: relative; border-radius: 1.1rem; overflow: hidden; border: 1px solid rgba(229,178,63,0.3); box-shadow: var(--shadow-md); }
.map-frame img { display: block; border-radius: 0; box-shadow: none; }
.map-tag { position: absolute; top: 0.85rem; left: 0.85rem; background: var(--accent-gradient); color: var(--primary-dark); font-size: 0.58rem; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 999px; }
.city-tabs-label { margin: 1.4rem 0 0.6rem; font-size: 0.58rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.city-tabs { margin-top: 0; }
.city-tab { display: inline-flex; align-items: center; gap: 0.4rem; }
.city-tab i { display: inline-flex; align-items: center; justify-content: center; width: 1.05rem; height: 1.05rem; border-radius: 999px; background: rgba(255,255,255,0.16); font-style: normal; font-size: 0.6rem; font-weight: 900; }
.city-tab.active, .city-tab:hover { background: var(--accent-gradient); color: var(--primary-dark); border-color: transparent; }
.city-tab.active i, .city-tab:hover i { background: rgba(4,23,82,0.18); color: var(--primary-dark); }
.map-cta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1.4rem; padding: 1rem 1.15rem; border-radius: 1rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); }
.map-cta strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.15rem; color: #fff; }
.map-cta span { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.62); margin-top: 0.15rem; }

.day-content { padding: 1.75rem; border-radius: 1.25rem; border-color: rgba(229,178,63,0.35); }
.day-head { display: flex; align-items: flex-start; gap: 1rem; }
.day-badge { flex-shrink: 0; width: 3.4rem; padding: 0.5rem 0; border-radius: 0.85rem; text-align: center; background: var(--accent-gradient); box-shadow: 0 8px 20px -10px rgba(229,178,63,0.9); }
.day-badge span { display: block; font-size: 0.52rem; font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(4,23,82,0.75); }
.day-badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.5rem; line-height: 1.1; color: var(--primary-dark); }
.day-head-main { flex: 1; min-width: 0; }
.day-kicker { font-size: 0.6rem; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary-light); }
.day-content .day-head h3 { margin: 0.35rem 0 0; font-size: 1.25rem; font-style: italic; color: var(--primary); }
.day-head .day-nav { border: none; padding: 0; margin: 0; gap: 0.4rem; flex-shrink: 0; }
.day-progress { height: 4px; border-radius: 999px; background: var(--bg-muted); margin: 1.15rem 0 1.35rem; overflow: hidden; }
.day-progress span { display: block; height: 100%; border-radius: 999px; background: var(--accent-gradient); transition: width 0.35s ease; }

.day-figure { margin: 0 0 1.35rem; }
.day-content .day-figure .collage-img { margin-bottom: 0.5rem; }
.day-figure figcaption { font-size: 0.7rem; font-style: italic; color: var(--text-muted-dark); text-align: center; }

.highlight-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.highlight-chips .chip { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.75rem; font-weight: 600; color: var(--text-mid); background: var(--bg-muted); border: 1px solid var(--border-light); padding: 0.35rem 0.7rem; border-radius: 999px; }
.highlight-chips .chip::before { content: ""; width: 5px; height: 5px; border-radius: 999px; background: var(--accent); }

.day-content .optional-box { background: linear-gradient(135deg, rgba(246,221,144,0.28), rgba(229,178,63,0.12)); border: 1px solid rgba(229,178,63,0.5); border-radius: 0.85rem; padding: 0.9rem 1.1rem; margin-top: 1.25rem; }
.opt-list { list-style: none; padding: 0; margin: 0; }
.opt-list li { position: relative; padding-left: 1.1rem; font-size: 0.82rem; color: var(--text-mid); font-weight: 600; padding-top: 0.15rem; padding-bottom: 0.15rem; }
.opt-list li::before { content: "\2726"; position: absolute; left: 0; color: var(--accent); }

.day-facts { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0.6rem; margin-top: 1.25rem; }
.day-fact { display: flex; gap: 0.6rem; align-items: flex-start; background: #fff; border: 1px solid var(--border-light); border-radius: 0.75rem; padding: 0.65rem 0.8rem; }
.day-fact.wide { grid-column: 1 / -1; }
.day-fact .df-ico { font-size: 0.9rem; line-height: 1.3; }
.day-fact em { display: block; font-style: normal; font-size: 0.55rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted-dark); }
.day-fact b { display: block; font-size: 0.78rem; font-weight: 700; color: var(--text-dark); margin-top: 0.15rem; line-height: 1.4; }

.day-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; padding-top: 1.1rem; border-top: 1px solid var(--border-light); }
.day-content .day-footer .note-text { margin: 0; flex: 1; min-width: 200px; }
.day-cta { color: var(--primary-dark) !important; white-space: nowrap; }

@media(max-width:600px) {
  .itin-stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .day-facts { grid-template-columns: 1fr; }
  .day-head { flex-wrap: wrap; }
  .day-head .day-nav { width: 100%; justify-content: flex-end; }
  .day-cta { width: 100%; }
}

/* ===== Itinerary day grid (4 per row) ===== */
.day-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; margin-top: 2.25rem; align-items: stretch; }
@media (max-width: 1200px) { .day-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 900px) { .day-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .day-grid { grid-template-columns: 1fr; } }

.day-card { background: #fff; border: 1px solid var(--border-card); border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow-md); display: flex; flex-direction: column; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.day-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(12,45,132,0.18); }
.dc-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; flex: 0 0 auto; }
.dc-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.day-card:hover .dc-media img { transform: scale(1.05); }
.dc-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,45,132,0.55), rgba(12,45,132,0) 55%); }
.dc-day { position: absolute; left: 0.75rem; bottom: 0.75rem; z-index: 2; background: var(--accent); color: #10204d; font-family: 'Inter', sans-serif; font-size: 0.65rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.35rem 0.75rem; border-radius: 999px; }

.dc-body { padding: 1.15rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1 1 auto; }
.dc-kicker { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); font-family: 'Inter', sans-serif; }
.dc-title { font-size: 1.05rem; line-height: 1.35; font-style: italic; color: var(--primary); margin: 0; }
.dc-desc { font-size: 0.88rem; line-height: 1.65; color: var(--text-muted-dark); }
.dc-desc strong { color: var(--text-dark); font-weight: 700; }
.dc-block-title { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-family: 'Inter', sans-serif; margin-bottom: 0.45rem; }
.day-card .highlight-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.day-card .chip { font-size: 0.72rem; font-weight: 600; padding: 0.3rem 0.65rem; border-radius: 999px; background: rgba(12,45,132,0.06); border: 1px solid rgba(12,45,132,0.12); color: var(--primary); }
.day-card .optional-box { background: #fffce6; border: 1px solid rgba(229,178,63,0.45); border-radius: 0.6rem; padding: 0.75rem 0.9rem; margin-top: auto; }
.day-card .opt-title { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-family: 'Inter', sans-serif; margin-bottom: 0.4rem; }
.day-card .opt-list { list-style: none; padding: 0; margin: 0; }
.day-card .opt-list li { position: relative; padding-left: 0.9rem; font-size: 0.78rem; color: var(--text-muted-dark); line-height: 1.55; }
.day-card .opt-list li::before { content: "\2022"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }
.day-card .day-facts { display: grid; gap: 0.5rem; }
.day-card .day-fact { display: flex; gap: 0.5rem; align-items: flex-start; background: rgba(12,45,132,0.04); border-radius: 0.55rem; padding: 0.55rem 0.65rem; }
.day-card .df-ico { font-size: 0.9rem; line-height: 1.2; color: var(--accent); }
.day-card .day-fact em { display: block; font-style: normal; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.day-card .day-fact b { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-dark); line-height: 1.5; }
.day-card .note-text { font-size: 0.7rem; color: #94a3b8; font-style: italic; }

/* ==================== FAQ PAGE ==================== */
.faq-wrap { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.75rem; }
@media (max-width: 860px) { .faq-wrap { grid-template-columns: 1fr; } }
.faq-group { background: #fff; border: 1px solid var(--border-card); border-radius: 1rem; padding: 1.4rem 1.5rem; box-shadow: var(--shadow-md); }
.faq-group-title { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); font-family: 'Inter', sans-serif; margin: 0 0 0.9rem; }
.faq-item { border-top: 1px solid rgba(12,45,132,0.1); }
.faq-item:first-of-type { border-top: none; }
.faq-item summary { list-style: none; cursor: pointer; padding: 0.85rem 2rem 0.85rem 0; position: relative; font-weight: 700; font-size: 0.92rem; color: var(--primary); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0.2rem; top: 50%; transform: translateY(-50%); font-size: 1.15rem; font-weight: 700; color: var(--accent); line-height: 1; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item summary:hover { color: var(--accent); }
.faq-a { padding: 0 0 1rem; font-size: 0.88rem; line-height: 1.7; color: var(--text-muted-dark); }
.faq-cta { margin-top: 2.5rem; text-align: center; }
.faq-cta p { font-size: 0.95rem; color: var(--text-muted-dark); margin-bottom: 0.9rem; }
