/* ============================================================
   Orchid Vacations — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:   #3a2a1a;
  --green-light: #5c4430;
  --gold:    #c9a84c;
  --cream:   #faf8f4;
  --dark:    #1c1c1c;
  --gray:    #6b7280;
  --light:   #f3f4f6;
  --white:   #ffffff;
  --radius:  10px;
  --shadow:  0 4px 24px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

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

/* ---------- Utility ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-green  { color: var(--green); }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto 48px;
}

/* ---------- Announcement Bar ---------- */
.announcement-bar {
  background: #3a2a1a;
  color: var(--white);
  text-align: center;
  padding: 9px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.announcement-bar span { color: var(--gold); font-weight: 700; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid #e8e4dc;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-text .brand-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.04em;
}

.nav-logo-text .brand-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

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

.nav-links > li { position: relative; }

.nav-links > li > a,
.nav-links > li > button {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 6px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s, background 0.2s;
}

.nav-links > li > a:hover,
.nav-links > li > button:hover {
  color: var(--green);
  background: #f5efe7;
}

.nav-links > li > a.active { color: var(--green); font-weight: 600; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid #e8e4dc;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 190px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  list-style: none;
  padding: 6px 0;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 9px 18px;
  font-size: 0.875rem;
  color: var(--dark);
  transition: background 0.15s, color 0.15s;
}

.dropdown li a:hover {
  background: #f5efe7;
  color: var(--green);
}

.dropdown-group-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  padding: 8px 18px 4px;
}

.dropdown-group-label:not(:first-child) {
  margin-top: 4px;
  border-top: 1px solid #e8e4dc;
  padding-top: 10px;
}

.chevron {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.2s;
}

.has-dropdown:hover .chevron { transform: rotate(-135deg) translateY(-2px); }

/* CTA button in nav */
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 6px !important;
}
.nav-cta:hover { background: #b8933e !important; }

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: clamp(420px, 70vh, 680px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.hero-label {
  display: inline-block;
  background: rgba(201,168,76,0.25);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(58,42,26,0.35); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: #b8933e; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline-green:hover { background: var(--green); color: var(--white); }

/* ---------- Cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.13); }

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

.card-body {
  padding: 22px;
}

.card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.card-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.card-text {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
}
.card-link:hover { color: var(--green-light); }
.card-link::after { content: '→'; }

/* ---------- About Section ---------- */
.about-section { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-text p { color: var(--gray); margin-bottom: 16px; }
.about-text p:last-of-type { margin-bottom: 24px; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.stat {
  text-align: center;
  padding: 16px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 4px;
}

/* ---------- Gallery Grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-grid.two-col { grid-template-columns: repeat(2, 1fr); }
.gallery-grid.four-col { grid-template-columns: repeat(4, 1fr); }

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s, opacity 0.3s;
  cursor: pointer;
}

.gallery-grid img:hover { transform: scale(1.02); opacity: 0.92; }

.gallery-grid .span-2 { grid-column: span 2; }
.gallery-grid .tall img { height: 360px; }


/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1px solid #e8e4dc;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }

.review-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cream);
}

.review-name { font-weight: 600; font-size: 0.9rem; }
.review-meta { font-size: 0.75rem; color: var(--gray); }

/* ---------- Contact Section ---------- */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 12px; }
.contact-info p { color: var(--gray); margin-bottom: 28px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--green);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item-label { font-size: 0.75rem; color: var(--gray); font-weight: 500; }
.contact-item-value { font-weight: 600; font-size: 0.95rem; }

.social-links { display: flex; gap: 12px; margin-top: 24px; }

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.social-link:hover { background: var(--green-light); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; fill: currentColor; }

/* Contact Form */
.contact-form { background: var(--white); padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form h3 { margin-bottom: 20px; font-size: 1.3rem; }

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 7px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(58,42,26,0.1);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ---------- Contact Cards ---------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid #e8e4dc;
  border-radius: var(--radius);
  padding: 36px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  color: var(--dark);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.11);
}

.contact-card .contact-icon {
  width: 52px;
  height: 52px;
  font-size: 1.4rem;
  background: var(--green);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.contact-card .contact-item-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-card .contact-item-value {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

@media (max-width: 900px) {
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .contact-cards { grid-template-columns: 1fr 1fr; gap: 14px; }
  .contact-card { padding: 24px 14px; }
}

/* ---------- Page Hero (for inner pages) ---------- */
.page-hero {
  position: relative;
  height: clamp(320px, 45vh, 500px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--white);
}

.page-hero .hero-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}

.page-hero .hero-title { font-size: clamp(1.8rem, 4vw, 3rem); }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  opacity: 0.8;
  margin-bottom: 12px;
}
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.breadcrumb span { opacity: 0.6; }

/* ---------- Destination Content ---------- */
.dest-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.dest-intro.reverse { direction: rtl; }
.dest-intro.reverse > * { direction: ltr; }

.dest-text h2 { margin-bottom: 16px; }
.dest-text p { color: var(--gray); margin-bottom: 14px; }

.dest-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Highlights / Features ---------- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.highlight {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 3px solid var(--green);
}

.highlight-icon { font-size: 2rem; margin-bottom: 12px; }
.highlight h4 { margin-bottom: 8px; font-size: 1rem; }
.highlight p { font-size: 0.85rem; color: var(--gray); }

/* ---------- Memories / Full Gallery ---------- */
.memories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.memories-grid .mem-item {
  overflow: hidden;
  border-radius: 8px;
}

.memories-grid .mem-item.wide { grid-column: span 2; }
.memories-grid .mem-item.tall { grid-row: span 2; }

.memories-grid .mem-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.memories-grid .mem-item:hover img { transform: scale(1.05); }

/* ---------- Footer ---------- */
.footer {
  background: #241a10;
  color: rgba(255,255,255,0.85);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 14px;
  opacity: 0.75;
}

.footer-logo { height: 40px; width: auto; filter: brightness(1.2); }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.875rem; opacity: 0.75; transition: opacity 0.2s; }
.footer-col ul li a:hover { opacity: 1; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  opacity: 0.55;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.footer-social a:hover { background: var(--green); }
.footer-social svg { width: 16px; height: 16px; fill: white; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid,
  .dest-intro { grid-template-columns: 1fr; gap: 36px; }
  .dest-intro.reverse { direction: ltr; }
  .about-img, .dest-img { height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .memories-grid { grid-template-columns: repeat(2, 1fr); }
  .memories-grid .mem-item.wide { grid-column: span 1; }
}

@media (max-width: 680px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 200px; }
  .gallery-grid .span-2 { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .memories-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .hero-actions { flex-direction: column; align-items: center; }

  /* Mobile nav open */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid #e8e4dc;
    padding: 12px 16px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 4px;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: #f5efe7;
    border-radius: 6px;
    padding: 4px 0;
  }
}

/* ---------- Misc ---------- */
.stars { color: var(--gold); }
.divider { height: 1px; background: #e8e4dc; margin: 0; }
.bg-cream { background: var(--cream); }
.bg-green { background: var(--green); }

.badge {
  display: inline-block;
  background: var(--cream);
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray);
  margin: 3px;
}

.cta-strip {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 56px 24px;
}

.cta-strip h2 { color: var(--white); margin-bottom: 12px; }
.cta-strip p { opacity: 0.85; margin-bottom: 24px; }

/* ---------- Itinerary Timeline ---------- */
.itinerary-timeline { margin-top: 48px; }

.itinerary-day {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0;
  position: relative;
}

.itinerary-day:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 44px;
  bottom: -1px;
  width: 2px;
  background: linear-gradient(to bottom, #c9a84c44, #c9a84c11);
}

.day-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}

.day-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a1a2e;
  color: #c9a84c;
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

.day-circle span { font-size: 0.58rem; opacity: 0.8; letter-spacing: 0.05em; text-transform: uppercase; }

.day-content {
  padding: 0 0 40px 20px;
}

.day-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  padding-top: 8px;
}

.day-location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 10px;
}

.day-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.75;
}

.day-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.day-tag {
  background: #f5f0e8;
  color: #7a5c2e;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

@media (max-width: 600px) {
  .itinerary-day { grid-template-columns: 52px 1fr; }
  .day-circle { width: 34px; height: 34px; font-size: 0.72rem; }
  .itinerary-day:not(:last-child)::before { left: 26px; }
}

/* Orchid Vacations itinerary colour overrides */
.orchid-itinerary .day-circle { background: var(--green); color: #fff; }
.orchid-itinerary .day-location { color: var(--green); }
.orchid-itinerary .itinerary-day:not(:last-child)::before { background: linear-gradient(to bottom, rgba(58,42,26,0.25), rgba(58,42,26,0.04)); }
.orchid-itinerary .day-tag { background: #f5efe7; color: #6b4226; }

/* ---------- Inclusions ---------- */
.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

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

.inclusion-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray);
  padding: 7px 0;
  border-bottom: 1px solid #f0ece4;
  line-height: 1.5;
}

.inclusion-list li .inc-icon { flex-shrink: 0; margin-top: 1px; font-size: 0.85rem; }
.inc-yes { color: #2d8a4e; }
.inc-no  { color: #c0392b; }

@media (max-width: 600px) {
  .inclusions-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Whatsapp float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  transition: transform 0.2s;
}

.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--white);
  color: var(--dark);
  padding: 32px 0;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stats-bar-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
}

.stats-bar-label {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 4px;
  letter-spacing: 0.06em;
}

@media (max-width: 680px) {
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Card Type Variants ---------- */
.card.card-intl { border-top: 3px solid var(--gold); }
.card.card-dom  { border-top: 3px solid var(--green); }
.card-label.intl { color: #a8742e; }
.card-label.dom  { color: var(--green); }

/* ---------- Brand Switcher ---------- */
.brand-switcher {
  background: #f7f4f1;
  border-bottom: 1px solid #e6dcd2;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.brand-switcher-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  text-decoration: none;
  color: #7a6a5a;
  border-bottom: 3px solid transparent;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.brand-switcher-item.active {
  color: #3a2a1a;
  border-bottom-color: #3a2a1a;
  font-weight: 600;
}
.brand-switcher-item:not(.active):hover {
  background: rgba(58,42,26,0.06);
  color: #3a2a1a;
}
.brand-switcher-sep {
  width: 1px;
  background: #e6dcd2;
  margin: 8px 0;
}
.brand-switcher-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
}
.brand-switcher-desc {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 1px;
}
.brand-switcher-item.active .brand-switcher-desc { opacity: 0.8; }
.brand-switcher-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
@media (max-width: 520px) {
  .brand-switcher-item { padding: 10px 16px; gap: 7px; }
  .brand-switcher-desc { display: none; }
}
