/* ===================================================
   THE SAFFRON COURT — Complete Stylesheet
   Luxury Travel Experiences
   =================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --saffron: #f97316;
  --saffron-dark: #c2410c;
  --saffron-light: #fb923c;
  --gold: #d4a853;
  --gold-light: #f0dfb8;
  --gold-dark: #b8922e;
  --cream: #fdfbf7;
  --cream-dark: #f5ede4;
  --charcoal: #1a1410;
  --charcoal-light: #2d2018;
  --warm-brown: #8d652e;
  --burgundy: #6b2d2d;
  --nav-height: 80px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --shadow-sm: 0 4px 20px rgba(26, 20, 16, 0.05);
  --shadow-md: 0 12px 40px rgba(26, 20, 16, 0.08);
  --shadow-lg: 0 20px 60px rgba(26, 20, 16, 0.12);
  --shadow-glow: 0 8px 30px rgba(249, 115, 22, 0.3);
  --shadow-gold: 0 8px 30px rgba(212, 168, 83, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 999px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
  padding-top: var(--nav-height);
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  body { padding-top: 64px; }
  :root { --nav-height: 64px; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--warm-brown); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===== SECTION TAGS & LINES ===== */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.75rem;
}
.section-line {
  width: 60px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  margin: 1rem 0;
}
.section-line-center { margin-left: auto; margin-right: auto; }
section { scroll-margin-top: calc(var(--nav-height) + 20px); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  border: none;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--charcoal);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  border: none;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gold);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: rgba(212, 168, 83, 0.1);
  box-shadow: 0 0 30px rgba(212, 168, 83, 0.15);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--charcoal);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  border: none;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,0.2); }

/* ===== NAVIGATION ===== */
.sticky-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(26, 20, 16, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 168, 83, 0.15);
  transition: all 0.3s ease;
}
.sticky-nav.scrolled {
  background: rgba(26, 20, 16, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-weight: 800;
  font-size: 0.8rem;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}
.nav-logo-sub {
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  color: rgba(253, 251, 247, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.nav-link:hover { color: var(--gold); background: rgba(212, 168, 83, 0.08); }
.nav-link.active { color: var(--gold); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.nav-cta {
  display: inline-flex;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.nav-cta:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  bottom: 0;
  background: rgba(26, 20, 16, 0.98);
  backdrop-filter: blur(16px);
  padding: 2rem 1.5rem;
  z-index: 999;
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.3s ease;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); opacity: 1; }
.mobile-nav a {
  display: block;
  color: rgba(253, 251, 247, 0.7);
  padding: 0.85rem 0;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(212, 168, 83, 0.08);
  transition: all 0.2s ease;
}
.mobile-nav a:hover { color: var(--gold); padding-left: 0.5rem; }
.mobile-nav .mobile-cta {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white;
  border-radius: var(--radius-md);
  font-weight: 600;
  border: none;
}

@media (max-width: 1024px) {
  .nav-links .nav-link { padding: 0.5rem 0.6rem; font-size: 0.78rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .mobile-nav-toggle { display: flex !important; }
  .mobile-nav { display: block; }
}

/* ===== HERO ===== */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1410 0%, #2d2018 50%, #1a1410 100%);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(212,168,83,0.12)"/><circle cx="20" cy="30" r="0.5" fill="rgba(249,115,22,0.08)"/><circle cx="80" cy="20" r="0.7" fill="rgba(212,168,83,0.1)"/></svg>');
  background-size: 200px 200px;
}
.page-hero .container { position: relative; z-index: 2; padding: 4rem 1.5rem; }
.page-hero h1 {
  font-size: 3.5rem;
  color: var(--cream);
  margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(253, 251, 247, 0.6);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: rgba(253, 251, 247, 0.4);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .page-hero { min-height: 40vh; }
  .page-hero h1 { font-size: 2.2rem; }
  .page-hero p { font-size: 0.95rem; }
}

/* ===== CARDS ===== */
.card {
  background: white;
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: var(--shadow-sm);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 168, 83, 0.3);
}
.card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
}
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(26,20,16,0.85) 100%);
}
.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(26, 20, 16, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(212, 168, 83, 0.2);
}
.card-duration {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: white;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.card-body { padding: 1.5rem; }
.card-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.card-tag {
  font-size: 0.7rem;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(249, 115, 22, 0.1);
  color: var(--saffron-dark);
  font-weight: 500;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.card-text {
  color: rgba(26, 20, 16, 0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 168, 83, 0.1);
}
.card-link {
  color: var(--saffron);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s;
}
.card-link:hover { color: var(--saffron-dark); }

/* ===== DESTINATION CARD ===== */
.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
}
.dest-card:hover { transform: scale(1.02); }
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26,20,16,0.9) 100%);
  transition: opacity 0.3s;
}
.dest-card-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: white;
  width: 100%;
}
.dest-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.dest-card-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.dest-card-stats {
  display: flex;
  gap: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* ===== TESTIMONIAL CARD ===== */
.testimonial-card {
  background: white;
  border: 1px solid rgba(212, 168, 83, 0.12);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  border-color: rgba(212, 168, 83, 0.25);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.testimonial-text {
  color: rgba(26, 20, 16, 0.65);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-size: 0.9rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron-dark);
  font-weight: 700;
  font-size: 0.85rem;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.testimonial-location {
  font-size: 0.75rem;
  color: rgba(26, 20, 16, 0.35);
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 3rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(212, 168, 83, 0.1);
  margin-bottom: 3rem;
}
.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.page-header h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ===== FLOATING BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--charcoal);
  border: 1px solid rgba(212, 168, 83, 0.3);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--saffron); border-color: var(--saffron); color: white; transform: translateY(-3px); }

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron));
  z-index: 1001;
  transition: width 0.1s ease;
  width: 0%;
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 50%, var(--charcoal) 100%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(253, 251, 247, 0.4);
  font-weight: 300;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-number { font-size: 2rem; }
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--saffron-dark), var(--saffron));
  text-align: center;
  color: white;
}
.newsletter-section h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.newsletter-section p {
  opacity: 0.8;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 0.5rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-md);
  border: none;
  font-size: 0.9rem;
  outline: none;
}
.newsletter-form button {
  padding: 0.9rem 2rem;
  background: var(--charcoal);
  color: var(--gold);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.3s;
}
.newsletter-form button:hover { background: var(--charcoal-light); }

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: rgba(253, 251, 247, 0.6);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212, 168, 83, 0.08);
}
.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: rgba(253, 251, 247, 0.45);
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212, 168, 83, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--saffron); color: white; border-color: var(--saffron); }
.footer-heading {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(253, 251, 247, 0.45);
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(253, 251, 247, 0.25);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: inherit; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== FILTER / SEARCH BAR ===== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: white;
  border: 1px solid rgba(212, 168, 83, 0.12);
  border-radius: var(--radius-md);
  align-items: center;
}
.filter-bar select,
.filter-bar input {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-size: 0.85rem;
  color: var(--charcoal);
  outline: none;
  min-width: 140px;
}
.filter-bar select:focus,
.filter-bar input:focus {
  border-color: var(--saffron);
}
.filter-bar .btn-primary { padding: 0.65rem 1.5rem; font-size: 0.8rem; }

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212, 168, 83, 0.2);
  font-size: 0.85rem;
  color: var(--charcoal);
  transition: all 0.3s;
}
.pagination a:hover, .pagination a.active {
  background: var(--saffron);
  color: white;
  border-color: var(--saffron);
}

/* ===== SECTION SPACING ===== */
.section { padding: 5rem 0; }
.section-dark { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%); }
@media (max-width: 768px) {
  .section { padding: 3rem 0; }
}

/* ===== GRID HELPERS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ===== BLOG CARD ===== */
.blog-card {
  background: white;
  border: 1px solid rgba(212, 168, 83, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.blog-card-body { padding: 1.5rem; }
.blog-card-meta {
  font-size: 0.75rem;
  color: rgba(26, 20, 16, 0.4);
  margin-bottom: 0.5rem;
  display: flex;
  gap: 1rem;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.blog-card-excerpt {
  font-size: 0.85rem;
  color: rgba(26, 20, 16, 0.55);
  line-height: 1.7;
}

/* ===== ACCORDION ===== */
.accordion { border-top: 1px solid rgba(212, 168, 83, 0.12); }
.accordion-item { border-bottom: 1px solid rgba(212, 168, 83, 0.12); }
.accordion-header {
  cursor: pointer;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}
.accordion-header:hover { color: var(--saffron); }
.accordion-icon { transition: transform 0.3s; font-size: 1.3rem; color: var(--saffron); }
.accordion-header.open .accordion-icon { transform: rotate(45deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  opacity: 0;
  padding: 0;
}
.accordion-content.open { max-height: 500px; opacity: 1; padding: 0 0 1.25rem 0; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 20, 16, 0.8);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  text-align: center;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
}
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,20,16,0.85) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
}

/* ===== CONTACT FORM ===== */
.contact-form-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 168, 83, 0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212, 168, 83, 0.1);
  border-radius: var(--radius-md);
  color: var(--cream);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: var(--gold);
}
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: rgba(253, 251, 247, 0.2);
}
.contact-form-card select option { background: var(--charcoal); color: var(--cream); }
.contact-form-card label {
  display: block;
  color: rgba(253, 251, 247, 0.45);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== ITINERARY TIMELINE ===== */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--saffron), var(--gold));
}
.timeline-item { position: relative; padding-bottom: 2.5rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  transform: translateX(-50%);
}
.timeline-day {
  font-size: 0.75rem;
  color: var(--saffron);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.timeline-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.timeline-desc {
  font-size: 0.85rem;
  color: rgba(26, 20, 16, 0.55);
  line-height: 1.7;
}

/* ===== TEAM CARDS ===== */
.team-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border: 1px solid rgba(212, 168, 83, 0.12);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}
.team-role {
  font-size: 0.8rem;
  color: var(--saffron);
  font-weight: 500;
  margin: 0.25rem 0 0.75rem;
}
.team-bio {
  font-size: 0.85rem;
  color: rgba(26, 20, 16, 0.55);
  line-height: 1.6;
}

/* ===== PRICING TABLE ===== */
.pricing-card {
  background: white;
  border: 1px solid rgba(212, 168, 83, 0.12);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s;
  position: relative;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--saffron);
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.1);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--saffron);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--saffron);
  margin-bottom: 0.25rem;
}
.pricing-duration {
  font-size: 0.85rem;
  color: rgba(26, 20, 16, 0.4);
  margin-bottom: 1.5rem;
}
.pricing-features {
  text-align: left;
  margin-bottom: 1.5rem;
}
.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.88rem;
  color: rgba(26, 20, 16, 0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-features li::before {
  content: '✓';
  color: var(--saffron);
  font-weight: 700;
}

/* ===== PAGE TRANSITION ===== */
.page-transition {
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE EXTRAS ===== */
@media (max-width: 480px) {
  .back-to-top { bottom: 1rem; right: 1rem; width: 40px; height: 40px; }
  .filter-bar { flex-direction: column; }
  .filter-bar select, .filter-bar input { width: 100%; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
}
