/* ============================================================
   TRAVEL PLANNER INDIA — Royal Heritage Theme
   Palette: Deep Maroon + Gold + Ivory
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --maroon:        #6B1A2B;
  --maroon-dark:   #4A0F1E;
  --maroon-mid:    #8B2239;
  --maroon-light:  #B84060;
  --gold:          #C9922A;
  --gold-light:    #E8B95A;
  --gold-pale:     #FBF3E2;
  --gold-bright:   #F5C842;
  --ivory:         #FAF6EE;
  --ivory-dark:    #F0E8D8;
  --cream:         #FDF8F0;
  --dark:          #1A0A0E;
  --text:          #2C1A20;
  --text-muted:    #7A5A62;
  --white:         #FFFFFF;
  --border:        rgba(201,146,42,0.25);
  --border-maroon: rgba(107,26,43,0.2);
  --shadow:        0 8px 40px rgba(107,26,43,0.12);
  --shadow-lg:     0 20px 60px rgba(107,26,43,0.2);
  --shadow-gold:   0 8px 32px rgba(201,146,42,0.25);
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Jost', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--cream); line-height: 1.7; overflow-x: clip; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--maroon); border-radius: 3px; }

/* ── CONTAINER ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── SECTION HELPERS ── */
.section { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
  padding: 0 20px;
}
.section-label::before,
.section-label::after {
  content: '✦';
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 0.55rem;
  color: var(--gold);
  opacity: 0.7;
  padding-left: 4px;
}
.section-label::before { left: 0; }
/* .section-label::after  { right: 0; } */

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--maroon-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub  { max-width: 560px; margin: 0 auto; color: var(--text-muted); font-size: 1.05rem; }
.section-cta  { text-align: center; margin-top: 48px; }

/* ── DECORATIVE DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.divider::after { background: linear-gradient(to left, transparent, var(--gold)); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-mid));
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 2px solid var(--maroon);
  box-shadow: 0 4px 20px rgba(107,26,43,0.3);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,185,90,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(107,26,43,0.4); }
.btn-primary:hover::after { opacity: 1; }

.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-dark);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,146,42,0.4); }

.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.92rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: var(--gold-light); color: var(--gold-light); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: var(--maroon-dark);
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.2rem;
}
.logo-icon { color: var(--gold); font-size: 1rem; }
.logo strong { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  transition: color 0.3s;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-dark) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.84rem;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: white; transition: all 0.3s; border-radius: 2px; }
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--maroon-dark);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(201,146,42,0.2);
}
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu .nav-cta {
  margin-top: 12px;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-dark) !important;
  border-radius: 50px;
  padding: 11px 24px;
  font-weight: 700;
  border: none;
}
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1599661046289-e31897846e41?w=1800&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(74,15,30,0.93) 0%, rgba(107,26,43,0.78) 55%, rgba(26,10,14,0.7) 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(201,146,42,0.07) 1px, transparent 1px),
    radial-gradient(circle, rgba(232,185,90,0.04) 1px, transparent 1px);
  background-size: 40px 40px, 20px 20px;
  background-position: 0 0, 10px 10px;
}
.hero-border {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201,146,42,0.15);
  pointer-events: none;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1180px;
  margin: 0 auto;
  padding: 130px 24px 90px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease both;
}
.hero-label::before, .hero-label::after { content: '——'; opacity: 0.5; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.8rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-title em { color: var(--gold-bright); font-style: italic; text-shadow: 0 0 40px rgba(245,200,66,0.3); }
.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.12rem;
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.85;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp 0.8s 0.45s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.6s ease both;
}
.stat { display: flex; flex-direction: column; }
.stat strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-light);
  line-height: 1;
  font-weight: 700;
}
.stat span { font-size: 0.78rem; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; margin-top: 3px; }
.stat-div  { width: 1px; height: 48px; background: rgba(201,146,42,0.3); }

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  animation: bounce 2.5s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(201,146,42,0.5), transparent);
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--maroon-dark);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(201,146,42,0.25);
  border-bottom: 1px solid rgba(201,146,42,0.25);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.marquee-track span {
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.marquee-track span.dot { color: var(--gold); font-size: 0.5rem; }

/* ── PACKAGES ── */
.packages-section { background: var(--cream); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(107,26,43,0.07);
}
.package-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.card-img {
  height: 230px;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.package-card:hover .card-img { transform: scale(1.03); }
.rajasthan-img { background-image: url('https://images.unsplash.com/photo-1599661046289-e31897846e41?w=600&q=75'); }
.kerala-img    { background-image: url('https://storage.googleapis.com/stateless-www-justwravel-com/2024/12/2745d95c-backwaters-kerala.jpg'); }
.ladakh-img    { background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=600&q=75'); }
.goa-img       { background-image: url('https://images.unsplash.com/photo-1512343879784-a960bf40e7f2?w=600&q=75'); }
.agra-img      { background-image: url('https://images.unsplash.com/photo-1564507592333-c60657eea523?w=600&q=75'); }
.andaman-img   { background-image: url('https://images.unsplash.com/photo-1510414842594-a61c69b5ae57?w=600&q=75'); }
.himachal-img  { background-image: url('https://images.unsplash.com/photo-1626621341517-bbf3d9990a23?w=600&q=75'); }
.varanasi-img  { background-image: url('https://images.unsplash.com/photo-1561361058-c24cecae35ca?w=600&q=75'); }
.kashmir-img   { background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/e/e1/Dal_Lake_Hazratbal_Srinagar.jpg/1280px-Dal_Lake_Hazratbal_Srinagar.jpg'); }

.card-img::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(74,15,30,0.8) 0%, rgba(74,15,30,0.1) 50%, transparent 100%);
}
.card-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.pkg-duration {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
}
.card-body { padding: 22px 24px 24px; }
.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  color: var(--maroon-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.card-body p { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.6; }
/* card-footer defined below */
.pkg-price { display: flex; flex-direction: column; }
.pkg-price .from { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.pkg-price .amount {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--maroon);
}
.pkg-price .per { font-size: 0.72rem; color: var(--text-muted); }
.btn-card {
  background: var(--maroon);
  color: white;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-card:hover { background: var(--gold); color: var(--maroon-dark); transform: translateY(-1px); }

/* ── HERITAGE STRIP ── */
.heritage-strip {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 50%, var(--maroon-dark) 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.heritage-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,146,42,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
.heritage-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.heritage-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(201,146,42,0.2);
  transition: background 0.3s;
}
.heritage-item:hover { background: rgba(255,255,255,0.1); }
.h-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.heritage-item h4 { color: var(--white); font-size: 0.92rem; font-weight: 600; margin-bottom: 3px; }
.heritage-item p  { color: rgba(255,255,255,0.6); font-size: 0.78rem; }

/* ── ENQUIRY / FORM ── */
.enquiry-section { background: var(--ivory); }
.enquiry-wrap {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 64px;
  align-items: start;
}
.enquiry-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--maroon-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.enquiry-left h2 em { color: var(--maroon); font-style: italic; }
.enquiry-left p   { color: var(--text-muted); margin-bottom: 28px; line-height: 1.8; }
.enquiry-benefits { display: flex; flex-direction: column; gap: 12px; }
.enquiry-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}
.enquiry-benefits li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.enquiry-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full-width { grid-column: 1/-1; margin-bottom: 20px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--maroon-dark);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(107,26,43,0.15);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--ivory);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(107,26,43,0.1);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 90px; }
.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-mid));
  color: white;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 12px;
  box-shadow: 0 4px 20px rgba(107,26,43,0.3);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(107,26,43,0.4); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-note { font-size: 0.76rem; color: var(--text-muted); text-align: center; }

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L35 20 L50 20 L38 29 L43 44 L30 35 L17 44 L22 29 L10 20 L25 20 Z' fill='rgba(201,146,42,0.04)'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}
.testimonials-section .section-title { color: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,146,42,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}
.testi-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.testi-card.featured {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
}
.testi-quote {
  font-size: 3.5rem;
  line-height: 0.8;
  color: var(--gold-light);
  font-family: var(--font-display);
  margin-bottom: 16px;
  opacity: 0.6;
}
.testi-card.featured .testi-quote { color: var(--maroon-dark); opacity: 0.3; }
.testi-stars { color: var(--gold-light); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card.featured .testi-stars { color: var(--maroon); }
.testi-card p { color: rgba(255,255,255,0.82); font-size: 0.93rem; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-card.featured p { color: var(--maroon-dark); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px;
  background: rgba(201,146,42,0.2);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid rgba(201,146,42,0.3);
  flex-shrink: 0;
}
.testi-card.featured .testi-avatar { background: rgba(107,26,43,0.15); color: var(--maroon); }
.testi-author strong { color: white; display: block; font-size: 0.9rem; }
.testi-card.featured .testi-author strong { color: var(--maroon-dark); }
.testi-author span { color: rgba(255,255,255,0.5); font-size: 0.76rem; }
.testi-card.featured .testi-author span { color: var(--maroon-light); }

/* ── GALLERY ── */
.gallery-section { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.08); }
.gallery-item::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(74,15,30,0.6), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}
.gallery-item:hover::before { opacity: 1; }
.gallery-caption {
  position: absolute;
  bottom: 14px; left: 14px;
  z-index: 2;
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 60%, var(--maroon-dark) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(201,146,42,0.1) 0%, transparent 60%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero h1 em { color: var(--gold-light); font-style: italic; }
.page-hero > div > p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; }

.breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 20px; }
.breadcrumb a, .breadcrumb span { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep  { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--gold-light); }

/* ── ABOUT PAGE ── */
.about-story { background: var(--cream); }
.about-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; height: 460px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  background: var(--maroon) url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?w=700&q=75') center/cover;
  position: relative;
}
.about-img-main::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(201,146,42,0.3);
  border-radius: calc(var(--radius-xl) + 8px);
}
.about-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-dark);
  padding: 22px 26px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.about-img-badge strong { display: block; font-family: var(--font-display); font-size: 2.5rem; line-height: 1; font-weight: 900; }
.about-img-badge span   { font-size: 0.78rem; font-weight: 600; }

.about-text .section-label { text-align: left; display: block; }
.about-text h2 { font-family: var(--font-display); font-size: clamp(1.9rem,3.5vw,2.7rem); color: var(--maroon-dark); margin-bottom: 16px; line-height: 1.2; }
.about-text h2 em { color: var(--maroon); font-style: italic; }
.about-text p  { color: var(--text-muted); margin-bottom: 16px; line-height: 1.85; }
.about-values  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.value-item { display: flex; gap: 12px; align-items: flex-start; }
.value-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, rgba(201,146,42,0.15), rgba(201,146,42,0.08));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
  border: 1px solid rgba(201,146,42,0.2);
}
.value-item h5 { color: var(--maroon-dark); font-size: 0.92rem; font-weight: 600; margin-bottom: 2px; }
.value-item p  { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

.team-section { background: var(--ivory); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  padding-bottom: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-img {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  font-size: 4rem; margin-bottom: 20px;
}
.team-card h4 { font-family: var(--font-display); font-size: 1.2rem; color: var(--maroon-dark); margin-bottom: 4px; }
.team-card .role { color: var(--gold); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.team-card p { color: var(--text-muted); font-size: 0.85rem; padding: 0 20px; line-height: 1.7; }

/* ── WHY CHOOSE US ── */
.why-intro { background: var(--cream); }
.why-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px solid var(--border-maroon);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.why-card:hover::after { transform: scaleX(1); }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.why-icon { font-size: 2.2rem; margin-bottom: 14px; }
.why-card h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--maroon-dark); margin-bottom: 10px; }
.why-card p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; }

.comparison-section { background: linear-gradient(135deg, var(--maroon-dark), var(--maroon)); padding: 80px 0; }
.comparison-section .section-title { color: var(--white); }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,146,42,0.2);
}
.comparison-table th { padding: 18px 20px; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.comparison-table th:first-child { background: transparent; color: rgba(255,255,255,0.6); text-align: left; }
.comparison-table th:nth-child(2) { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--maroon-dark); }
.comparison-table th:nth-child(3) { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.comparison-table td { padding: 15px 20px; font-size: 0.88rem; color: rgba(255,255,255,0.75); border-top: 1px solid rgba(255,255,255,0.06); text-align: center; }
.comparison-table td:first-child { text-align: left; color: rgba(255,255,255,0.9); font-weight: 500; }
.comparison-table tr:hover td { background: rgba(255,255,255,0.04); }
.check { color: #4ade80; font-size: 1rem; }
.cross { color: #f87171; font-size: 1rem; }

/* ── CONTACT ── */
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: 2.2rem; color: var(--maroon-dark); margin-bottom: 14px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.c-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-mid));
  color: var(--gold-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-item strong { display: block; color: var(--maroon-dark); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-item p { color: var(--text-muted); font-size: 0.95rem; margin: 0; line-height: 1.7; }
.map-placeholder {
  margin-top: 32px; height: 200px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.9rem; gap: 8px;
  border: 1px dashed rgba(201,146,42,0.3);
}

/* ── POLICY ── */
.policy-section { background: var(--cream); }
.policy-content {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.policy-meta {
  background: linear-gradient(135deg, rgba(107,26,43,0.06), rgba(201,146,42,0.06));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-bottom: 32px;
  font-size: 0.84rem;
  color: var(--text-muted);
}
.policy-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--maroon-dark);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}
.policy-content h2:first-of-type { margin-top: 0; }
.policy-content p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.85; font-size: 0.95rem; }
.policy-content ul { margin: 10px 0 14px 20px; }
.policy-content ul li { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 8px; list-style: disc; line-height: 1.75; }
.policy-content strong { color: var(--text); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon), var(--maroon-dark));
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(201,146,42,0.1) 0%, transparent 50%),
                    radial-gradient(circle at 70% 50%, rgba(201,146,42,0.08) 0%, transparent 50%);
}
.cta-banner-inner { text-align: center; position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}
.cta-banner h2 em { color: var(--gold-light); font-style: italic; }
.cta-banner p { color: rgba(255,255,255,0.65); margin-bottom: 36px; font-size: 1.05rem; }
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  padding: 70px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold), var(--maroon-light), var(--gold), var(--maroon));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.87rem;
  margin: 16px 0 22px;
  line-height: 1.8;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  font-weight: 700;
  transition: all 0.3s;
}
.footer-socials a:hover {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-mid));
  border-color: var(--maroon);
  color: white;
  transform: translateY(-2px);
}
.footer-col h4 {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,146,42,0.2);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { color: rgba(255,255,255,0.5); font-size: 0.87rem; line-height: 1.6; }
.footer-col ul li a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: var(--gold); }

/* ── WHATSAPP BUTTON ── */
.whatsapp-btn {
  position: fixed;
  bottom: 80px; right: 20px;
  width: 48px; height: 48px;
  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: all 0.3s;
  text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-btn svg { width: 22px; height: 22px; fill: white; }
.whatsapp-tooltip {
  position: absolute;
  right: 58px;
  background: var(--dark);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 20px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-mid));
  color: white;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(107,26,43,0.35);
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(107,26,43,0.5); background: var(--gold); }

/* ── POPUP ── */
#tpiPopup {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px; pointer-events: none;
}
.tpi-popup-overlay {
  position: fixed; inset: 0;
  background: rgba(26,10,14,0.82);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: all; cursor: pointer;
}
#tpiPopup.tpi-popup-visible .tpi-popup-overlay { opacity: 1; }
#tpiPopup.tpi-popup-hiding .tpi-popup-overlay  { opacity: 0; }
.tpi-popup-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 52px 44px 44px;
  max-width: 460px; width: 100%;
  text-align: center;
  box-shadow: 0 40px 100px rgba(74,15,30,0.45);
  pointer-events: all;
  transform: translateY(50px) scale(0.92);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), opacity 0.35s ease;
  overflow: hidden;
}
#tpiPopup.tpi-popup-visible .tpi-popup-box { transform: translateY(0) scale(1); opacity: 1; }
#tpiPopup.tpi-popup-hiding  .tpi-popup-box { transform: translateY(30px) scale(0.96); opacity: 0; transition: transform 0.3s ease, opacity 0.28s ease; }
.tpi-popup-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--maroon), var(--gold), var(--maroon-light), var(--gold), var(--maroon));
  background-size: 300% 100%;
  animation: shimmer 2.5s linear infinite;
}
.tpi-popup-dismiss {
  position: absolute; top: 16px; right: 18px;
  background: var(--ivory); border: 1px solid var(--border);
  border-radius: 50%; width: 32px; height: 32px;
  font-size: 0.9rem; color: var(--text-muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.tpi-popup-dismiss:hover { background: var(--maroon); color: white; border-color: var(--maroon); }
.tpi-popup-icon { width: 80px; height: 80px; margin: 0 auto 20px; animation: popIn 0.5s 0.25s cubic-bezier(0.34,1.56,0.64,1) both; }
.tpi-popup-icon svg { width: 80px; height: 80px; }
.tpi-popup-tag {
  display: inline-block;
  background: rgba(107,26,43,0.08);
  color: var(--maroon);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 50px; margin-bottom: 12px; border: 1px solid var(--border-maroon);
  animation: fadeUp 0.4s 0.3s ease both;
}
.tpi-popup-title { font-family: var(--font-display); font-size: 1.9rem; color: var(--maroon-dark); margin-bottom: 12px; animation: fadeUp 0.4s 0.35s ease both; }
.tpi-popup-msg { color: var(--text-muted); font-size: 0.93rem; line-height: 1.75; margin-bottom: 24px; animation: fadeUp 0.4s 0.4s ease both; }
.tpi-popup-msg strong { color: var(--maroon); }
.tpi-popup-details { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; animation: fadeUp 0.4s 0.45s ease both; }
.tpi-popup-detail-item {
  background: var(--ivory); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.tpi-popup-detail-item span  { font-size: 0.88rem; font-weight: 700; color: var(--maroon-dark); }
.tpi-popup-detail-item small { font-size: 0.75rem; color: var(--text-muted); }
.tpi-popup-close-btn {
  display: block; width: 100%;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-mid));
  color: white; padding: 13px 32px;
  border-radius: 50px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 700;
  border: none; cursor: pointer; transition: all 0.3s;
  animation: fadeUp 0.4s 0.5s ease both;
  box-shadow: 0 4px 20px rgba(107,26,43,0.3);
}
.tpi-popup-close-btn:hover { background: var(--gold); color: var(--maroon-dark); transform: translateY(-2px); }
.tpi-popup-confetti { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; overflow: hidden; }
.confetti-piece { position: absolute; width: 8px; height: 8px; border-radius: 2px; animation: confettiFall 1.8s ease-out forwards; opacity: 0; }
.cp-0  { background: var(--maroon);      left:8%;  animation-delay:0.2s;  transform:rotate(30deg); }
.cp-1  { background: var(--gold);        left:15%; animation-delay:0.35s; width:6px;height:6px;border-radius:50%; }
.cp-2  { background: var(--gold-light);  left:25%; animation-delay:0.15s; }
.cp-3  { background: var(--maroon-mid);  left:33%; animation-delay:0.4s;  transform:rotate(60deg); }
.cp-4  { background: var(--gold);        left:42%; animation-delay:0.25s; width:5px;height:10px; }
.cp-5  { background: var(--gold-bright); left:50%; animation-delay:0.3s;  border-radius:50%; }
.cp-6  { background: var(--maroon);      left:58%; animation-delay:0.1s;  transform:rotate(45deg); }
.cp-7  { background: var(--gold);        left:67%; animation-delay:0.45s; }
.cp-8  { background: var(--maroon-light);left:75%; animation-delay:0.2s;  width:6px;border-radius:50%; }
.cp-9  { background: var(--gold-light);  left:83%; animation-delay:0.38s; transform:rotate(20deg); }
.cp-10 { background: var(--maroon);      left:90%; animation-delay:0.12s; }
.cp-11 { background: var(--gold);        left:5%;  animation-delay:0.5s;  border-radius:50%;width:5px;height:5px; }
.cp-12 { background: var(--gold-light);  left:20%; animation-delay:0.6s;  transform:rotate(75deg); }
.cp-13 { background: var(--maroon-mid);  left:38%; animation-delay:0.55s; width:5px;height:9px; }
.cp-14 { background: var(--gold);        left:55%; animation-delay:0.65s; border-radius:50%; }
.cp-15 { background: var(--gold-light);  left:70%; animation-delay:0.48s; transform:rotate(50deg); }
.cp-16 { background: var(--maroon);      left:85%; animation-delay:0.7s; }
.cp-17 { background: var(--gold);        left:95%; animation-delay:0.42s; border-radius:50%;width:6px;height:6px; }

.tpi-toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1e1e1e; color: white; padding: 14px 24px;
  border-radius: 50px; font-size: 0.9rem; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3); z-index: 99998;
  opacity: 0; transition: all 0.35s ease; white-space: nowrap; max-width: 90vw;
}
.tpi-toast-error { border-left: 4px solid #ef4444; border-radius: 8px; }
.tpi-toast-show  { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-8px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes popIn {
  from { transform: scale(0.3) rotate(-10deg); opacity: 0; }
  to   { transform: scale(1) rotate(0);       opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 300% 0%; }
}
@keyframes confettiFall {
  0%   { opacity: 1; transform: translateY(-10px) rotate(0); }
  100% { opacity: 0; transform: translateY(180px) rotate(360deg); }
}

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .packages-grid, .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .heritage-strip-grid { grid-template-columns: repeat(2,1fr); }
  .why-features-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .packages-grid { grid-template-columns: 1fr; }
  .heritage-strip-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .enquiry-wrap { grid-template-columns: 1fr; gap: 40px; }
  .enquiry-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-img-badge { bottom: 16px; right: 16px; }
  .about-values { grid-template-columns: 1fr; }
  .why-features-grid, .team-grid { grid-template-columns: 1fr; }
  .policy-content { padding: 32px 24px; }
  .comparison-table { font-size: 0.8rem; }
  .comparison-table th, .comparison-table td { padding: 11px 10px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .stat-div  { display: none; }
  .heritage-strip-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child, .gallery-item:nth-child(4) { grid-column: span 1; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
}

/* ── NAV TWO-ROW STRUCTURE ── */
.nav-row-main {
  width: 100%;
}
.nav-row-pkg {
  width: 100%;
  border-top: 1px solid rgba(201,146,42,0.2);
  background: rgba(50,8,18,0.45);
  transition: background 0.4s ease;
}
.navbar.scrolled .nav-row-pkg {
  background: rgba(30,4,12,0.6);
}
.nav-pkg-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* overflow-x: auto; */
  scrollbar-width: none;
  gap: 0;
}
.nav-pkg-inner::-webkit-scrollbar { display: none; }
.nav-pkg-inner a {
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 18px;
  white-space: nowrap;
  transition: color 0.25s;
  display: inline-block;
}
.nav-pkg-inner a:hover { color: var(--gold-light); }
.pkg-sep {
  color: var(--gold);
  font-size: 0.42rem;
  opacity: 0.4;
  flex-shrink: 0;
  line-height: 1;
}

/* ── MOBILE PKG LINKS ── */
.mobile-pkg-link {
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.55) !important;
  padding: 8px 0 8px 16px !important;
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
}
.mobile-pkg-link:hover { color: var(--gold-light) !important; }

/* ── DUAL CARD BUTTONS ── */
.card-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.card-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.btn-card-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #25D366;
  color: #fff !important;
  border-radius: var(--radius);
  padding: 11px 12px;
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-card-wa:hover { background: #1db954; transform: translateY(-2px); }
.btn-card-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--maroon) !important;
  border: 1.5px solid var(--maroon);
  border-radius: var(--radius);
  padding: 11px 12px;
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-card-detail:hover { background: var(--maroon); color: #fff !important; transform: translateY(-2px); }

@media (max-width: 768px) {
  .nav-row-pkg { display: none; }
}

/* DETAIL LAYOUT */
.pkg-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; }
@media(max-width:900px){ .pkg-detail-layout { grid-template-columns: 1fr; } }

.pkg-hero-img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-lg); }
.pkg-meta-tags { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0; }
.pkg-tag { padding: 6px 16px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.pkg-tag-badge { background: var(--maroon); color: white; }
.pkg-tag-gold { background: var(--gold); color: white; }
.pkg-tag-outline { border: 1.5px solid var(--border-maroon); color: var(--maroon); background: transparent; }

.pkg-section-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--maroon-dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--border); display: flex; align-items: center; gap: 10px; }
.pkg-section-title::before { content: '✦'; color: var(--gold); font-size: 0.85rem; }

.highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media(max-width:600px){ .highlights-grid { grid-template-columns: 1fr; } }
.highlight-item { display: flex; align-items: flex-start; gap: 10px; padding: 14px 16px; background: var(--gold-pale); border-radius: var(--radius); border-left: 3px solid var(--gold); }
.highlight-item .hi-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.highlight-item p { font-size: 0.88rem; line-height: 1.5; color: var(--text); margin: 0; }

/* Itinerary */
.itinerary-list { display: flex; flex-direction: column; gap: 0; }
.itinerary-item { display: grid; grid-template-columns: 80px 1fr; gap: 0; position: relative; }
.itinerary-item:not(:last-child) .itin-line { position: relative; }
.itinerary-item:not(:last-child) .itin-line::after { content: ''; position: absolute; left: 50%; top: 44px; bottom: -20px; width: 2px; background: var(--border); transform: translateX(-50%); }
.itin-day-col { display: flex; flex-direction: column; align-items: center; padding-top: 4px; }
.itin-day-badge { background: var(--maroon); color: white; font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 10px; border-radius: 8px; white-space: nowrap; margin-bottom: 8px; min-width: 60px; text-align: center; }
.itin-line { flex: 1; width: 2px; background: transparent; margin: 0 auto; }
.itin-content { padding: 4px 0 32px 20px; }
.itin-content h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--maroon-dark); margin-bottom: 6px; }
.itin-content p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* Inclusions */
.inc-exc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px;}
@media(max-width:600px){ .inc-exc-grid { grid-template-columns: 1fr; } }
.inc-box, .exc-box { border-radius: var(--radius-lg); padding: 28px 24px; }
.inc-box { background: #f0fff4; border: 1.5px solid #b7f5c8; }
.exc-box { background: #fff5f5; border: 1.5px solid #fed7d7; }
.inc-box h4 { color: #276749; font-size: 1rem; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.exc-box h4 { color: #9b2c2c; font-size: 1rem; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.inc-box li, .exc-box li { font-size: 0.875rem; padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,0.06); display: flex; align-items: flex-start; gap: 8px; }
.inc-box li::before { content: '✓'; color: #276749; font-weight: 700; flex-shrink: 0; }
.exc-box li::before { content: '✕'; color: #9b2c2c; font-weight: 700; flex-shrink: 0; }

/* Sidebar */
.pkg-sidebar { background: white; border-radius: var(--radius-xl); border: 1.5px solid var(--border); box-shadow: var(--shadow); padding: 32px 28px; }
.pkg-detail-layout > div:last-child { display: flex; flex-direction: column; }
.sidebar-price { text-align: center; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.sidebar-price .starting { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.sidebar-price .amount { display: block; font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1.1; margin: 4px 0; }
.sidebar-price .per { font-size: 0.8rem; color: var(--text-muted); }
.sidebar-info { list-style: none; padding: 0; margin: 0 0 28px; }
.sidebar-info li { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--ivory-dark); font-size: 0.875rem; }
.sidebar-info li span:first-child { color: var(--text-muted); }
.sidebar-info li span:last-child { font-weight: 600; color: var(--text); text-align: right; max-width: 55%; }
.sidebar-btns { display: flex; flex-direction: column; gap: 12px; }
.btn-enquire { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--maroon); color: white; padding: 14px 20px; border-radius: var(--radius); font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; cursor: pointer; border: none; transition: background 0.3s; text-decoration: none; }
.btn-enquire:hover { background: var(--maroon-dark); }
.btn-wa { display: flex; align-items: center; justify-content: center; gap: 8px; background: #25d366; color: white; padding: 13px 20px; border-radius: var(--radius); font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: background 0.3s; }
.btn-wa:hover { background: #1da851; }
.overview-text p { font-size: 0.95rem; line-height: 1.85; color: var(--text-muted); margin-bottom: 14px; }
.overview-text p:last-child { margin-bottom: 0; }


/* ── SIDEBAR TRUST BADGES ── */
.sidebar-trust-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 24px;
  margin-top: 20px;
  border: 1.5px solid var(--border);
}
.sidebar-trust-title {
  font-family: var(--font-display);
  color: var(--maroon-dark);
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.sidebar-trust-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sidebar-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.trust-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.sidebar-trust-list li div strong {
  display: block;
  font-size: 0.85rem;
  color: var(--maroon-dark);
  font-weight: 600;
  margin-bottom: 2px;
}
.sidebar-trust-list li div p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* ── SIDEBAR TESTIMONIAL ── */
.sidebar-testi-box {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  border-radius: var(--radius-xl);
  padding: 24px;
  margin-top: 20px;
}
.sidebar-testi-stars {
  color: var(--gold-light);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.sidebar-testi-quote {
  color: rgba(255,255,255,0.85);
  font-size: 0.84rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.sidebar-testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-testi-avatar {
  width: 38px; height: 38px;
  background: rgba(201,146,42,0.25);
  border: 1px solid rgba(201,146,42,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.sidebar-testi-author strong {
  display: block;
  color: white;
  font-size: 0.85rem;
}
.sidebar-testi-author span {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}