/* =============================================
   MATHURA VRINDAVAN TOUR PACKAGES — main.css
   Single master stylesheet for the entire site.

   TABLE OF CONTENTS
   1.  CSS Variables & Site Tokens
   2.  Reset & Base
   3.  Typography
   4.  Utility classes (.container, .section-tag, etc.)
   5.  Header / Topbar / Nav
   6.  Mobile Menu
   7.  Footer
   8.  Floating Buttons (WhatsApp + Scroll-top)
   9.  Homepage sections
   10. Package detail pages
   11. Component-related (stats, trust strip, etc.)
   12. Blog / Destination pages (basic shell)
   13. Responsive breakpoints
   ============================================= */


:root {
  --saffron: #ff9500;
  --deep-saffron: #ff6a00;
  --maroon: #8B1A1A;
  --gold: #D4A017;
  --gold-light: #F5C518;
  --cream: #FFF8F0;
  --dark: #1A1A1A;
  --gray: #555;
  --light-gray: #f4f4f4;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.18);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Georgia', serif;
  line-height: 1.3;
  color: var(--maroon);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

a {
  color: var(--saffron);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--maroon); }

p { margin-bottom: 1rem; color: var(--gray); }

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 14px;
}

/* ---- HEADER / NAV ---- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

.top-bar {
  background: var(--maroon);
  color: var(--white);
  text-align: center;
  padding: 6px 20px;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}

.top-bar a { color: var(--gold-light); }
.top-bar a:hover { color: var(--white); }

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
/* logo image — constrained to nav height */
.logo img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.logo-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  flex-shrink: 0;
}

.logo-text h1 {
  font-size: 1.1rem;
  color: var(--maroon);
  line-height: 1.2;
  margin: 0;
}

.logo-text span {
  font-size: 0.72rem;
  color: var(--saffron);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
}

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

.nav-links a {
  color: var(--dark);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  font-family: Arial, sans-serif;
  letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--saffron);
  background: rgba(255,107,0,0.07);
}

.nav-cta {
  background: linear-gradient(135deg, var(--saffron), var(--deep-saffron)) !important;
  color: var(--white) !important;
  border-radius: 25px !important;
  padding: 10px 22px !important;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--maroon), #6B1010) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,107,0,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--maroon);
  border-radius: 3px;
  transition: var(--transition);
  display: block;
}

/* ---- HERO SECTION ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a0a00 0%, #3d1500 30%, #5c2000 60%, #8B3a00 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,107,0,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212,160,23,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(139,26,26,0.2) 0%, transparent 40%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(255,165,0,0.08) 0%, transparent 25%),
    radial-gradient(circle at 85% 15%, rgba(255,165,0,0.06) 0%, transparent 25%);
  opacity: 0.6;
}

/* Decorative circles */
.hero::after {
  content: '🕉';
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18rem;
  opacity: 0.04;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  50% { transform: translateY(-54%) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.2);
  border: 1px solid rgba(255,107,0,0.4);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: Arial, sans-serif;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-text h1 span {
  color: var(--gold-light);
  display: block;
}

.hero-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--deep-saffron) 100%);
  color: var(--white);
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  font-family: Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(255,106,0,0.35);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.22);
  letter-spacing: 0.2px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffab2d 0%, #ff7c1f 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255,106,0,0.42);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  font-family: Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  background: rgba(255,255,255,0.05);
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: Arial, sans-serif;
}

.hero-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 36px;
  color: var(--white);
}

.hero-card h3 {
  color: var(--gold-light);
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.hero-card > p {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.quick-form .form-group {
  margin-bottom: 16px;
}

.quick-form label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
  font-family: Arial, sans-serif;
  letter-spacing: 0.5px;
}

.quick-form input,
.quick-form select {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
  font-family: Arial, sans-serif;
}

.quick-form input::placeholder { color: rgba(255,255,255,0.4); }

.quick-form input:focus,
.quick-form select:focus {
  border-color: var(--saffron);
  background: rgba(255,107,0,0.1);
}

.quick-form select option { background: #3d1500; color: var(--white); }

.quick-form .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ---- TRUST STRIP ---- */
.trust-strip {
  background: var(--maroon);
  padding: 20px;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-family: Arial, sans-serif;
}

.trust-item span:first-child { font-size: 1.4rem; }

/* ---- SECTIONS ---- */
section { padding: 80px 20px; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 { margin-bottom: 14px; }

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 2px;
  margin: 0 auto 20px;
}

/* ---- PACKAGES ---- */
.packages { background: var(--cream); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.pkg-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.pkg-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pkg-img-1 { background: linear-gradient(135deg, #8B1A1A, #D4520F); }
.pkg-img-2 { background: linear-gradient(135deg, #1a4a7a, #2d7cc1); }
.pkg-img-3 { background: linear-gradient(135deg, #2d7a2d, #52a852); }
.pkg-img-4 { background: linear-gradient(135deg, #5a1a8a, #9b4dd6); }
.pkg-img-5 { background: linear-gradient(135deg, #7a4a00, #c47a00); }
.pkg-img-6 { background: linear-gradient(135deg, #1a6a6a, #2db8b8); }

.pkg-icon {
  font-size: 5rem;
  opacity: 0.4;
  position: absolute;
}

.pkg-emoji {
  font-size: 3.5rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.pkg-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--saffron);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: Arial, sans-serif;
  letter-spacing: 0.5px;
}

.pkg-badge.popular {
  background: var(--maroon);
}

.pkg-body {
  padding: 24px;
}

.pkg-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.pkg-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--gray);
  font-family: Arial, sans-serif;
}

.pkg-body h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.3;
}

.pkg-body p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.pkg-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.include-tag {
  background: rgba(255,107,0,0.08);
  color: var(--saffron);
  border: 1px solid rgba(255,107,0,0.2);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-family: Arial, sans-serif;
}

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f0e8e8;
}

.pkg-price {
  display: flex;
  flex-direction: column;
}

.price-from {
  font-size: 0.72rem;
  color: var(--gray);
  font-family: Arial, sans-serif;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--maroon);
  line-height: 1;
}

.price-per {
  font-size: 0.72rem;
  color: var(--gray);
  font-family: Arial, sans-serif;
}

.pkg-btn {
  background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
  color: var(--white);
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 0.88rem;
  font-weight: bold;
  font-family: Arial, sans-serif;
  transition: var(--transition);
}

.pkg-btn:hover {
  background: linear-gradient(135deg, var(--maroon), #6B1010);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139,26,26,0.3);
}

/* ---- DESTINATIONS ---- */
.destinations { background: var(--white); }

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

.dest-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: var(--transition);
}

.dest-card:hover { transform: scale(1.02); }
.dest-card:hover .dest-overlay { opacity: 1; }

.dest-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.dest-bg-1 { background: linear-gradient(160deg, #8B1A1A 0%, #D4520F 50%, #FF8C42 100%); }
.dest-bg-2 { background: linear-gradient(160deg, #1a3d6b 0%, #2d6fb5 50%, #5ba3e0 100%); }
.dest-bg-3 { background: linear-gradient(160deg, #2d5a2d 0%, #4a9a4a 50%, #7dc87d 100%); }
.dest-bg-4 { background: linear-gradient(160deg, #6b3d00 0%, #c46f00 50%, #f59b30 100%); }

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  opacity: 0.7;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.dest-name {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
}

.dest-count {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-family: Arial, sans-serif;
}

/* ---- WHY CHOOSE US ---- */
.why-us { background: linear-gradient(135deg, var(--maroon) 0%, #5c1010 100%); }

.why-us .section-header h2 { color: var(--white); }
.why-us .section-header p { color: rgba(255,255,255,0.75); }
.why-us .section-divider { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border-radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}

.feature-card h3 {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin: 0;
}

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.quote-mark {
  font-size: 4rem;
  color: var(--saffron);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
  font-family: Georgia, serif;
}

.stars {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.review-text {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

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

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  font-weight: bold;
  color: var(--white);
}

.av-1 { background: linear-gradient(135deg, var(--saffron), var(--maroon)); }
.av-2 { background: linear-gradient(135deg, #2d7a2d, #1a4a7a); }
.av-3 { background: linear-gradient(135deg, #7a4a00, #5a1a8a); }
.av-4 { background: linear-gradient(135deg, var(--maroon), #7a0000); }
.av-5 { background: linear-gradient(135deg, #1a6a6a, var(--saffron)); }
.av-6 { background: linear-gradient(135deg, #5a1a8a, #c47a00); }

.reviewer-info strong {
  display: block;
  color: var(--dark);
  font-size: 0.95rem;
}

.reviewer-info span {
  font-size: 0.8rem;
  color: var(--gray);
  font-family: Arial, sans-serif;
}

/* ---- ITINERARY ---- */
.itinerary-section { background: var(--white); }

.itinerary-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-btn {
  padding: 10px 24px;
  border: 2px solid var(--saffron);
  border-radius: 25px;
  background: transparent;
  color: var(--saffron);
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  font-family: Arial, sans-serif;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--saffron);
  color: var(--white);
}

.itinerary-content { display: none; }
.itinerary-content.active { display: block; }

.day-card {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  background: var(--cream);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.day-number {
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  color: var(--white);
  min-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.day-number span:first-child {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  font-family: Arial, sans-serif;
}

.day-number strong {
  font-size: 2rem;
  line-height: 1;
  display: block;
}

.day-details {
  padding: 20px;
  flex: 1;
}

.day-details h4 {
  color: var(--maroon);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.day-details p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--gray);
}

.day-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.highlight-tag {
  background: rgba(139,26,26,0.08);
  color: var(--maroon);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-family: Arial, sans-serif;
}

/* ---- GALLERY ---- */
.gallery { background: var(--dark); }
.gallery .section-header h2 { color: var(--white); }
.gallery .section-header p { color: rgba(255,255,255,0.65); }
.gallery .section-divider { background: linear-gradient(90deg, var(--gold), var(--saffron)); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 12px;
}

.gal-item {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.gal-item:hover { transform: scale(1.03); opacity: 0.85; }

.gal-item:nth-child(1) { grid-column: 1 / 3; background: linear-gradient(135deg, #8B1A1A, #c73e3e); }
.gal-item:nth-child(2) { background: linear-gradient(135deg, #1a4a7a, #3a8fd4); }
.gal-item:nth-child(3) { background: linear-gradient(135deg, #2d7a00, #5acc00); }
.gal-item:nth-child(4) { grid-row: 1 / 3; background: linear-gradient(135deg, #6b4a00, #d4960a); }
.gal-item:nth-child(5) { background: linear-gradient(135deg, #5a1a8a, #a040e0); }
.gal-item:nth-child(6) { background: linear-gradient(135deg, #1a5a5a, #30aaaa); }
.gal-item:nth-child(7) { background: linear-gradient(135deg, #8B1A1A, #6b0000); }

.gal-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
  padding: 12px 14px 10px;
  font-size: 0.82rem;
  font-family: Arial, sans-serif;
}

/* ---- BLOG / TRAVEL TIPS ---- */
.blog { background: var(--cream); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.blog-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.blog-img-1 { background: linear-gradient(135deg, #8B1A1A, #D4520F); }
.blog-img-2 { background: linear-gradient(135deg, #1a4a7a, #5ba3e0); }
.blog-img-3 { background: linear-gradient(135deg, #2d5a2d, #7dc87d); }

.blog-body { padding: 22px; }

.blog-tag {
  display: inline-block;
  background: rgba(255,107,0,0.1);
  color: var(--saffron);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-family: Arial, sans-serif;
  margin-bottom: 10px;
}

.blog-body h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.blog-body p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 14px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--gray);
  font-family: Arial, sans-serif;
}

.blog-read-more {
  color: var(--saffron);
  font-weight: bold;
  font-size: 0.85rem;
  font-family: Arial, sans-serif;
}

.blog-read-more:hover { color: var(--maroon); }

/* ---- FAQ ---- */
.faq { background: var(--white); }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid #e8d8d8;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  color: var(--maroon);
  font-family: Georgia, serif;
  transition: var(--transition);
}

.faq-question:hover { background: var(--cream); }

.faq-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--saffron);
}

.faq-item.open .faq-arrow { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: var(--cream);
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 16px 24px;
  font-size: 0.92rem;
  color: var(--gray);
  margin: 0;
}

/* ---- CONTACT / BOOKING ---- */
.booking { background: linear-gradient(135deg, var(--saffron) 0%, var(--maroon) 100%); }

.booking .section-header h2 { color: var(--white); }
.booking .section-header p { color: rgba(255,255,255,0.8); }
.booking .section-divider { background: rgba(255,255,255,0.5); }

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.booking-info h3 {
  color: var(--gold-light);
  margin-bottom: 24px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: rgba(255,255,255,0.9);
}

.contact-icon {
  font-size: 1.6rem;
  min-width: 40px;
  text-align: center;
}

.contact-item strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
  font-family: Arial, sans-serif;
}

.contact-item a { color: rgba(255,255,255,0.9); }
.contact-item a:hover { color: var(--gold-light); }

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-family: Arial, sans-serif;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(255,255,255,0.22);
  color: var(--white);
  transform: translateY(-2px);
}

.booking-form {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

.booking-form h3 {
  color: var(--maroon);
  margin-bottom: 6px;
}

.booking-form > p {
  font-size: 0.88rem;
  margin-bottom: 24px;
  color: var(--gray);
}

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

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 6px;
  font-family: Arial, sans-serif;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
  font-family: Arial, sans-serif;
  background: var(--white);
  color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}

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

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
  color: var(--white);
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  font-family: Arial, sans-serif;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.form-submit:hover {
  background: linear-gradient(135deg, var(--maroon), #6B1010);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(139,26,26,0.4);
}

/* ---- MAP STRIP ---- */
.map-strip { padding: 0; }
.map-strip iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

/* ---- FOOTER ---- */
footer {
  background: #0d0505;
  color: rgba(255,255,255,0.75);
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo img {
  height: 44px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
}
.footer-brand .logo-text h1 {
  color: var(--white);
  font-size: 1.1rem;
}

.footer-brand .logo-text span { color: var(--saffron); }

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin: 16px 0 20px;
  line-height: 1.7;
}

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

.cert-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-family: Arial, sans-serif;
  letter-spacing: 0.5px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--saffron);
  display: inline-block;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  font-family: Arial, sans-serif;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--saffron);
  padding-left: 4px;
}

.footer-links a::before {
  content: '›';
  color: var(--saffron);
  font-weight: bold;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-family: Arial, sans-serif;
}

.footer-bottom a { color: rgba(255,165,0,0.7); }
.footer-bottom a:hover { color: var(--saffron); }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.whatsapp-btn {
  background: #25D366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  text-decoration: none;
  animation: pulse-green 2.5s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  color: var(--white);
}

.whatsapp-tooltip {
  background: var(--white);
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: bold;
  font-family: Arial, sans-serif;
  box-shadow: var(--shadow);
  white-space: nowrap;
  display: none;
}

.whatsapp-float:hover .whatsapp-tooltip { display: block; }

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ---- SCROLL TO TOP ---- */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 998;
  background: var(--maroon);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--saffron); color: var(--white); transform: translateY(-2px); }

/* ---- OFFER BANNER ---- */
.offer-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 50%, var(--maroon) 100%);
  padding: 48px 20px;
  text-align: center;
}

.offer-section h2 { color: var(--white); margin-bottom: 12px; }
.offer-section p { color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }

.offer-code {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 2px dashed rgba(255,255,255,0.6);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 24px;
  font-family: 'Courier New', monospace;
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none;
  background: var(--white);
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  z-index: 999;
  border-top: 3px solid var(--saffron);
}

.mobile-menu.open { display: block; }

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu ul a {
  display: block;
  padding: 12px 16px;
  color: var(--dark);
  font-family: Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  transition: var(--transition);
}

.mobile-menu ul a:hover {
  background: var(--cream);
  color: var(--saffron);
}

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

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

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

  .gal-item:nth-child(1) { grid-column: 1 / 3; }
  .gal-item:nth-child(4) { grid-row: auto; }
}

@media (max-width: 768px) {
  section { padding: 56px 16px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 16px;
  }

  .hero-card { order: -1; }

  .hero-stats {
    gap: 20px;
  }

  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }

  .hero::after { display: none; }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row { grid-template-columns: 1fr; }

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

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

  .gal-item:nth-child(1),
  .gal-item:nth-child(4) { grid-column: auto; grid-row: auto; }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .trust-inner { gap: 20px; }

  .booking-form { padding: 24px; }

  .day-card { flex-direction: column; }
  .day-number { flex-direction: row; min-width: auto; padding: 14px 20px; gap: 10px; }
}

@media (max-width: 480px) {
  .dest-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat { min-width: 80px; }
}

/* =============================================
   COMPONENT CONTAINERS
   ============================================= */

/* Reserve space so page content doesn't jump when header loads */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  min-height: 115px;
  background: rgba(255,255,255,0.97);
}

/* =============================================
   PACKAGE DETAIL PAGE STYLES
   ============================================= */

/* ---- BREADCRUMB ---- */
.breadcrumb-bar {
  background: transparent;
  border-bottom: none;
  padding: 0 0 14px;
  margin-top: 0;
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-family: Arial, sans-serif;
}

.breadcrumb-inner a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}

.breadcrumb-inner a:hover { color: #ffd59a; }

.breadcrumb-sep { color: rgba(255,255,255,0.55); }

.breadcrumb-inner span:last-child {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

/* ---- PACKAGE HERO BANNER ---- */
.pkg-hero {
  background: #2b1a10 url("../images/Mathura Vrindavan Tours Packages.webp") center center / cover no-repeat;
  padding: 48px 20px 40px;
  margin-top: 115px;
  position: relative;
  overflow: hidden;
}

.pkg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.66) 45%, rgba(0,0,0,0.46) 100%),
    radial-gradient(ellipse at 12% 55%, rgba(255,107,0,0.12) 0%, transparent 60%);
}

.pkg-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pkg-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,0,0.2);
  border: 1px solid rgba(255,107,0,0.4);
  color: var(--gold-light);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: Arial, sans-serif;
}

.pkg-hero h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  max-width: 820px;
}

.pkg-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.pkg-hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-family: Arial, sans-serif;
}

.pkg-hero-meta .icon { font-size: 1.1rem; }

.pkg-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.pkg-start-price {
  color: var(--gold-light);
  font-size: 1.1rem;
  font-family: Arial, sans-serif;
}

.pkg-start-price strong {
  font-size: 1.8rem;
  font-weight: bold;
  display: inline-block;
  margin: 0 2px;
}

/* ---- QUICK STATS BAR ---- */
.pkg-stats-bar {
  background: var(--white);
  border-bottom: 2px solid var(--cream);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.pkg-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}

.pkg-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-right: 1px solid #f0e8e8;
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.pkg-stat-item:last-child { border-right: none; }

.pkg-stat-icon { font-size: 1.5rem; margin-bottom: 4px; }

.pkg-stat-label {
  font-size: 0.72rem;
  color: var(--gray);
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.pkg-stat-value {
  font-size: 0.92rem;
  font-weight: bold;
  color: var(--saffron);
  font-family: Arial, sans-serif;
}

/* ---- PACKAGE PAGE LAYOUT ---- */
.pkg-page-layout {
  max-width: 1250px;
  margin: 0 auto;
  padding: 20px 4px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
  align-items: start;
}

.pkg-main-content { min-width: 0; }

/* ---- CONTENT SECTIONS ---- */
.content-section {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #f0e8e8;
}

.content-section h2 {
  font-size: 1.3rem;
  color: var(--saffron);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #fff0e6;
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-section h2 .sec-icon { font-size: 1.4rem; }

.pkg-photo-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 32px;
}

/* First image — full width, tall */
.gallery-cell:first-child {
  grid-column: 1 / 3;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  margin: 0;
}
.gallery-cell:first-child img {
  width: 100%; height: 100%;
  object-fit: contain;
  background: #f5ede0;
}

/* Other 2 — small thumbnails below */
.gallery-cell:not(:first-child) {
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
}
.gallery-cell:not(:first-child) img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.gallery-cell:not(:first-child) img:hover { transform: scale(1.06); }

/* Button reset */
.gallery-thumb { display: block; width: 100%; height: 100%; border: none; padding: 0; background: none; cursor: pointer; }

figcaption { font-size: 12px; color: #7A6252; text-align: center; padding: 4px 0; }

@media (max-width: 480px) {
  .gallery-cell:first-child { height: 240px; }
  .gallery-cell:not(:first-child) { height: 80px; }
}
/* ---- HIGHLIGHTS ---- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: var(--cream);
  border-radius: 8px;
  border-left: 3px solid var(--saffron);
}

.highlight-item .hi-icon { font-size: 1.2rem; flex-shrink: 0; }

.highlight-item p {
  font-size: 0.88rem;
  color: var(--dark);
  margin: 0;
  line-height: 1.5;
}

/* ---- ITINERARY ---- */
.itinerary-list { display: flex; flex-direction: column; gap: 0; }

.itin-day {
  display: flex;
  gap: 0;
  position: relative;
}

.itin-day:not(:last-child) .itin-timeline::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--saffron), #ffd5b0);
  transform: translateX(-50%);
}

.itin-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  flex-shrink: 0;
  position: relative;
  padding-bottom: 24px;
}

.itin-day-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-weight: bold;
  flex-shrink: 0;
  z-index: 1;
}

.itin-day-circle .d-label {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.85;
  line-height: 1;
}

.itin-day-circle .d-num {
  font-size: 1.1rem;
  line-height: 1;
}

.itin-content {
  flex: 1;
  padding: 4px 0 28px 20px;
}

.itin-content h4 {
  color: var(--saffron);
  font-size: 1rem;
  margin-bottom: 8px;
}

.itin-content p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 10px;
  line-height: 1.65;
}

.itin-times {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.time-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.83rem;
  color: var(--gray);
  font-family: Arial, sans-serif;
}

.time-row .t-time {
  color: var(--saffron);
  font-weight: bold;
  min-width: 72px;
  flex-shrink: 0;
}

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

.itin-tag {
  background: rgba(234,88,12,0.07);
  color: var(--deep-saffron);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-family: Arial, sans-serif;
}

/* ---- INCLUSIONS / EXCLUSIONS ---- */
.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.inc-col, .exc-col {
  border-radius: 10px;
  padding: 20px;
}

.inc-col {
  background: #f0faf0;
  border: 1px solid #c8e8c8;
}

.exc-col {
  background: #fff5f5;
  border: 1px solid #f0c8c8;
}

.inc-col h4 {
  color: #2d7a2d;
  font-size: 1rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.exc-col h4 {
  color: #a00;
  font-size: 1rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.inc-list, .exc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inc-list li, .exc-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--dark);
  line-height: 1.5;
}

.inc-list li::before {
  content: '✓';
  color: #2d7a2d;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1px;
}

.exc-list li::before {
  content: '✗';
  color: #c00;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- PRICING TABLE ---- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
}

.pricing-table thead tr {
  background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
  color: var(--white);
}

.pricing-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-table tbody tr:nth-child(even) { background: var(--cream); }
.pricing-table tbody tr:nth-child(odd) { background: var(--white); }

.pricing-table td {
  padding: 13px 16px;
  color: var(--dark);
  border-bottom: 1px solid #f0e8e8;
}

.pricing-table td:last-child {
  font-weight: bold;
  color: var(--maroon);
}

.pricing-table .popular-row {
  background: rgba(255,107,0,0.06) !important;
  border-left: 3px solid var(--saffron);
}

.pricing-table .popular-row td { color: var(--dark); }

.popular-badge-sm {
  background: var(--saffron);
  color: var(--white);
  font-size: 0.65rem;
  padding: 2px 7px;
  border-radius: 10px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ---- HOTEL OPTIONS ---- */
.hotel-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hotel-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8d8d8;
  transition: var(--transition);
}

.hotel-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.hotel-card-img {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
}

.hotel-card-img-1 { background: linear-gradient(135deg, #8B1A1A, #c73e3e); }
.hotel-card-img-2 { background: linear-gradient(135deg, #1a4a7a, #3a8fd4); }
.hotel-card-img-3 { background: linear-gradient(135deg, #4a2d00, #c47a00); }

.hotel-card-body { padding: 14px; }

.hotel-stars { color: var(--gold-light); font-size: 0.9rem; margin-bottom: 4px; }

.hotel-card-body h4 {
  font-size: 0.9rem;
  color: var(--maroon);
  margin-bottom: 4px;
}

.hotel-card-body p {
  font-size: 0.78rem;
  color: var(--gray);
  margin: 0;
}

/* ---- THINGS TO KNOW / CARRY ---- */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: var(--cream);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--dark);
  line-height: 1.5;
}

.tip-item .tip-icon { font-size: 1.1rem; flex-shrink: 0; }

/* ---- RELATED PACKAGES ---- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8d8d8;
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.related-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.related-card-img {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.related-card-body { padding: 12px; }

.related-card-body h4 {
  font-size: 0.88rem;
  color: var(--maroon);
  margin-bottom: 4px;
  line-height: 1.3;
}

.related-card-body .rel-meta {
  font-size: 0.78rem;
  color: var(--gray);
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rel-price {
  font-weight: bold;
  color: var(--saffron);
}

/* ── REVIEWS ── */
.pkg-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.pkg-review-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px 24px;
  border: 1px solid #f0e6d8;
  border-left: 4px solid var(--saffron);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pkg-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}

.pkg-review-card::before {
  content: '"';
  position: absolute;
  top: 12px; right: 18px;
  font-size: 60px;
  color: #f0e6d8;
  font-family: Georgia, serif;
  line-height: 1;
}

.pkg-review-card .stars {
  font-size: 14px;
  color: #F5A623;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.pkg-review-card p {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gray);
  margin-bottom: 14px;
  line-height: 1.7;
}

.pkg-review-card .reviewer-name {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--dark);
}

.pkg-review-card .reviewer-loc {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 2px;
}

@media (max-width: 640px) {
  .pkg-reviews-grid { grid-template-columns: 1fr; }
}

/* ---- FAQ (Package Page) ---- */
.pkg-faq-list { display: flex; flex-direction: column; gap: 10px; }

.pkg-faq-item {
  border: 1px solid #e8d8d8;
  border-radius: 10px;
  overflow: hidden;
}

.pkg-faq-q {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  font-weight: bold;
  color: var(--saffron);
  font-family: Georgia, serif;
  transition: var(--transition);
}

.pkg-faq-q:hover { background: var(--cream); }

.pkg-faq-q .faq-arrow { color: var(--saffron); transition: transform 0.3s; }
.pkg-faq-item.open .faq-arrow { transform: rotate(45deg); }

.pkg-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--cream);
}

.pkg-faq-item.open .pkg-faq-a { max-height: 250px; }

.pkg-faq-a p {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--gray);
  margin: 0;
}

/* ---- SIDEBAR ---- */
.pkg-sidebar { position: sticky; top: 130px; }

.price-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  border: 2px solid #f0e8e8;
  overflow: hidden;
  margin-bottom: 20px;
}

.price-card-header {
  background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
  padding: 18px 24px 16px;
  text-align: center;
}

.price-card-header .main-price {
  font-size: 2.6rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  display: block;
  margin: 0 0 4px 0;
}

.price-card-header .per-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-family: Arial, sans-serif;
  margin-bottom: 10px;
}

.price-card-header .quick-stats {
  display: flex;
  justify-content: space-around;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.price-card-header .quick-stats span {
  flex: 1;
  text-align: center;
}

.sbf-compact {
  padding: 20px 24px;
}

.quick-facts {
  display: none;
}

.quick-fact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-family: Arial, sans-serif;
}

.quick-fact .qf-label { color: var(--gray); }
.quick-fact .qf-value { font-weight: bold; color: var(--dark); }

.sbf-compact .form-group { margin-bottom: 12px; }

.sbf-compact label {
  display: block;
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--gray);
  margin-bottom: 4px;
  font-family: Arial, sans-serif;
}

.sbf-compact input,
.sbf-compact select {
  width: 100%;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.87rem;
  outline: none;
  transition: var(--transition);
  font-family: Arial, sans-serif;
  margin-bottom: 10px;
}

.sbf-compact input:focus,
.sbf-compact select:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}

.sidebar-book-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
  color: var(--white);
  border: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  font-family: Arial, sans-serif;
  margin-bottom: 8px;
}

.sidebar-book-btn:hover {
  background: linear-gradient(135deg, var(--deep-saffron), var(--saffron));
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 106, 0, 0.35);
}

.sidebar-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: #25D366;
  color: var(--white);
  border: none;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  font-family: Arial, sans-serif;
  text-decoration: none;
}

.sidebar-whatsapp-btn:hover {
  background: #1da851;
  color: var(--white);
  transform: translateY(-1px);
}

.sidebar-call-box {
  background: var(--cream);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  margin-bottom: 16px;
}

.sidebar-call-box .call-link {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  color: var(--maroon);
  text-decoration: none;
  margin-bottom: 4px;
}

.sidebar-call-box p {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 8px;
  font-family: Arial, sans-serif;
}

.sidebar-call-box a {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--maroon);
  font-family: Arial, sans-serif;
  display: block;
  margin-bottom: 6px;
}

.sidebar-call-box .call-hours {
  font-size: 0.75rem;
  color: var(--gray);
  font-family: Arial, sans-serif;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--white);
  border: 1px solid #ffd5b5;
  color: var(--gray);
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-family: Arial, sans-serif;
}

/* ---- TEMPLES COVERED ---- */
.tc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.tc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fffdf9, #fff5eb);
  border: 1px solid #ffd7b9;
  border-radius: 999px;
  padding: 10px 16px;
  min-height: 52px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: 0 2px 8px rgba(255,106,0,0.08);
  position: relative;
}

.tc-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255,106,0,0.16);
  border-color: #ffb98a;
}

.tc-item > div { text-align: center; }

.tc-item strong {
  display: block;
  font-size: 0.8rem;
  color: #c94b00;
  line-height: 1.2;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.tc-item span {
  font-size: 0.68rem;
  color: #8a8a8a;
  font-family: Arial, sans-serif;
  letter-spacing: 0.2px;
}

/* ---- TOUR MAP ---- */
.tour-map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ffd5b5;
  height: 340px;
}

.tour-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ---- COMPLETE DETAILS TOGGLE ---- */
.cd-visible p,
.cd-hidden p {
  font-size: 0.93rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 10px;
}

.cd-hidden {
  display: none;
  margin-top: 4px;
}

.cd-hidden.open { display: block; }

/* ---- RESPONSIVE — PACKAGE PAGE ---- */
@media (max-width: 1024px) {
  .pkg-page-layout {
    grid-template-columns: 1fr;
  }

  .pkg-sidebar {
    position: static;
    order: -1;
  }

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

@media (max-width: 768px) {
  .pkg-hero { margin-top: 80px; padding: 24px 16px 28px; }
  .pkg-hero h1 { font-size: 1.5rem; }

  .pkg-stats-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .pkg-stat-item { min-width: 110px; padding: 14px 16px; }

  .tc-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-map-wrap { height: 240px; }

  .highlights-grid { grid-template-columns: 1fr; }
  .inc-exc-grid { grid-template-columns: 1fr; }
  .hotel-options-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .pkg-reviews-grid { grid-template-columns: 1fr; }

  .pkg-page-layout { padding: 20px 16px; gap: 20px; }

  .content-section { padding: 20px 16px; }

  .itin-timeline { width: 60px; }
  .itin-day-circle { width: 38px; height: 38px; }
}

@media (max-width: 480px) {
  .related-grid { grid-template-columns: 1fr; }
  .pkg-hero-meta { gap: 12px; }
  .pricing-table { font-size: 0.8rem; }
  .pricing-table th, .pricing-table td { padding: 10px 10px; }
  .tc-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .itin-day { flex-direction: column; }

  .itin-timeline {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
  }

  .itin-day:not(:last-child) .itin-timeline::after { display: none; }

  .itin-day:not(:last-child) .itin-content {
    border-bottom: 1px solid #f5ece0;
  }

  .itin-timeline::after { content: none !important; }

  .itin-content {
    padding: 0 0 20px;
    width: 100%;
  }

  .time-row { gap: 8px; font-size: 0.8rem; }
  .time-row .t-time { min-width: 58px; font-size: 0.77rem; }
}
/* ── END OF SITE STYLES ── */

/* =============================================
   ADDITIONS FOR NEW SITE STRUCTURE
   ============================================= */



/* ── Page hero (shared shell for all inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #7a2e00 0%, #c44a00 50%, var(--saffron) 100%);
  padding: 100px 20px 56px;
  text-align: center;
  position: relative;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 640px; margin: 0 auto; }

/* ── Breadcrumb (already in style.css but needs .container version) ── */
.breadcrumb-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Coming-soon / empty-page placeholder ── */
.page-placeholder {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.page-placeholder h1 { color: var(--deep-saffron); margin-bottom: 12px; }
.page-placeholder p  { color: #777; font-family: Arial, sans-serif; max-width: 480px; margin: 0 auto 24px; }

/* ── Blog listing cards ── */
.blog-listing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  padding: 48px 0;
}

/* ── Destination listing cards ── */
.dest-listing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 48px 0;
}

/* ── Nav active state for inner pages ── */
.nav-links a.active {
  color: var(--saffron);
  background: rgba(255,107,0,0.07);
}

/* ── Mobile nav-menu active (toggled by main.js) ── */
.nav-links.active {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  z-index: 999;
  border-top: 3px solid var(--saffron);
}

/* ── Form utility (contact, booking pages) ── */
.form-success {
  background: #f0faf0;
  border: 1px solid #c8e8c8;
  color: #2d7a2d;
  padding: 16px 20px;
  border-radius: 10px;
  margin-top: 16px;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  display: none;
}
.form-success.visible { display: block; }

/* ── Responsive for new sections ── */
@media (max-width: 768px) {
  .page-hero { padding: 90px 16px 40px; }
  .blog-listing,
  .dest-listing { grid-template-columns: 1fr; }
}

/* =============================================
   POPUP — used on all pages via components.js
   ============================================= */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.popup-overlay.show { opacity: 1; visibility: visible; }
.popup-card {
  background: #fff; border-radius: 20px;
  width: 100%; max-width: 440px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s;
  position: relative;
}
.popup-overlay.show .popup-card { transform: translateY(0) scale(1); }
.popup-header {
  background: linear-gradient(135deg, var(--saffron), #cc4400);
  padding: 28px 24px 22px; text-align: center; position: relative;
}
.popup-header .p-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 14px; border-radius: 20px;
  font-family: Arial, sans-serif; margin-bottom: 10px;
}
.popup-header h3 { color: #fff; font-size: 1.3rem; margin-bottom: 6px; line-height: 1.3; }
.popup-header p  { color: rgba(255,255,255,0.85); font-size: 0.85rem; font-family: Arial, sans-serif; margin: 0; }
.popup-close {
  position: absolute; top: 12px; right: 14px;
  background: rgba(255,255,255,0.2); border: none; color: #fff;
  width: 28px; height: 28px; border-radius: 50%;
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.popup-close:hover { background: rgba(255,255,255,0.35); }
.popup-body { padding: 24px 24px 28px; }
.popup-offer-code {
  background: #fff9f5; border: 1.5px dashed var(--saffron);
  border-radius: 10px; text-align: center; padding: 12px; margin-bottom: 20px;
}
.popup-offer-code .poc-label {
  font-size: 0.72rem; color: #999; font-family: Arial, sans-serif;
  text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 4px;
}
.popup-offer-code .poc-code {
  font-size: 1.4rem; font-weight: 900; color: var(--deep-saffron);
  letter-spacing: 3px; font-family: 'Courier New', monospace;
}
.popup-ctas { display: flex; flex-direction: column; gap: 10px; }
.popup-cta-call {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--saffron), #cc4400);
  color: #fff; padding: 13px; border-radius: 10px;
  font-size: 0.97rem; font-weight: 700; font-family: Arial, sans-serif;
  text-decoration: none; transition: opacity 0.2s;
}
.popup-cta-call:hover { opacity: 0.9; color: #fff; }
.popup-cta-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: #fff; padding: 13px; border-radius: 10px;
  font-size: 0.97rem; font-weight: 700; font-family: Arial, sans-serif;
  text-decoration: none; transition: opacity 0.2s;
}
.popup-cta-wa:hover { opacity: 0.9; color: #fff; }
.popup-skip {
  display: block; text-align: center; margin-top: 14px;
  font-size: 0.78rem; color: #bbb; font-family: Arial, sans-serif;
  cursor: pointer; transition: color 0.2s;
}
.popup-skip:hover { color: #888; }

/* =============================================
   SEO CONTENT BLOCKS
   ============================================= */
.seo-block { padding: 56px 20px; border-bottom: 1px solid #f5ece4; }
.seo-block:nth-child(odd)  { background: #fff9f5; }
.seo-block:nth-child(even) { background: #fff; }
.seo-block-inner { max-width: 860px; margin: 0 auto; }
.seo-block-tag {
  display: inline-block; background: #fff0e6; color: var(--deep-saffron);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 20px;
  font-family: Arial, sans-serif; margin-bottom: 14px; border: 1px solid #ffd5b5;
}
.seo-block h2 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); color: #1a1a1a; margin-bottom: 18px; line-height: 1.35; }
.seo-block h2 em { font-style: normal; color: var(--deep-saffron); }
.seo-block .seo-text p, .seo-more p {
  font-size: 0.95rem; color: #555; line-height: 1.85; margin-bottom: 14px;
}
.seo-more { display: none; margin-top: 4px; }
.seo-more.open { display: block; }
.seo-toggle-btn {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  background: none; border: 1.5px solid var(--saffron); color: var(--saffron);
  padding: 9px 22px; border-radius: 22px; font-size: 0.85rem; font-weight: 700;
  cursor: pointer; font-family: Arial, sans-serif; transition: all 0.25s;
}
.seo-toggle-btn:hover, .seo-toggle-btn.open { background: var(--saffron); color: #fff; }

/* ── Divine section divider (replaces the plain bar) ── */
.section-divider {
  /* reset the old bar */
  width: 100%;
  max-width: 260px;
  height: 14px;
  background: none !important;
  border-radius: 0;
  margin: 6px auto 22px;
  /* hide the ✦ HTML text — ::after handles it */
  font-size: 0;
  color: transparent;
  position: relative;
}
/* horizontal fade line */
.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--saffron) 28%,
    #F5C518 50%,
    var(--saffron) 72%,
    transparent 100%
  );
}
/* center symbol */
.section-divider::after {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.58rem;
  line-height: 1;
  font-family: Arial, sans-serif;
  color: var(--saffron);
  letter-spacing: 0;
  /* tiny white halo so the line visually "stops" at the symbol */
  text-shadow:
    0 0 0 2px #fff,
    -3px 0 0 2px #fff,
     3px 0 0 2px #fff;
}

/* light variant — white lines for dark / coloured section backgrounds */
.section-divider.sd-light::before {
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255,255,255,0.55) 28%,
    rgba(245,197,24,0.75) 50%,
    rgba(255,255,255,0.55) 72%,
    transparent 100%
  );
}
.section-divider.sd-light::after {
  color: rgba(255,255,255,0.9);
  text-shadow:
    0 0 0 2px transparent,
    -3px 0 0 2px transparent,
     3px 0 0 2px transparent;
}

/* undo old per-section overrides that conflict */
.why-us .section-divider,
.gallery .section-divider,
.booking .section-divider { background: none !important; }


/* =============================================
   FIX 2 — HEADER: orange accent (orange-600)
   ============================================= */

/* Top info bar: maroon → orange-600 */
.top-bar {
  background: var(--saffron);
}
.top-bar a       { color: #fff; }
.top-bar a:hover { color: rgba(255,255,255,0.75); }

/* Logo text active colour */
.logo-text h1 { color: var(--saffron); }

/* Nav hover + active */
.nav-links a:hover,
.nav-links a.active {
  color: var(--saffron);
  background: rgba(234,88,12,0.08);
}

/* Book Now nav button */
.nav-cta {
  background: linear-gradient(135deg, var(--saffron), var(--deep-saffron)) !important;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--deep-saffron), #9a3008) !important;
  box-shadow: 0 4px 12px rgba(234,88,12,0.35);
}

/* Mobile hamburger bars */
.hamburger span { background: var(--saffron); }

/* Mobile menu top border */
.mobile-menu { border-top-color: var(--saffron); }
.mobile-menu ul a:hover { color: var(--saffron); }

/* =============================================
   FIX 3 — ALL ENQUIRY / BOOKING BUTTONS: orange-600
   ============================================= */

/* Homepage hero quick-form submit */
.quick-form .btn-primary,
.quick-form button[type="submit"] {
  background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
  color: #fff;
  box-shadow: 0 4px 14px rgba(234,88,12,0.35);
}
.quick-form .btn-primary:hover,
.quick-form button[type="submit"]:hover {
  background: linear-gradient(135deg, var(--deep-saffron), #9a3008);
}

/* Homepage full booking form submit */
.form-submit {
  background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
  color: #fff;
}
.form-submit:hover {
  background: linear-gradient(135deg, var(--deep-saffron), #9a3008);
  box-shadow: 0 4px 16px rgba(234,88,12,0.4);
  transform: translateY(-1px);
}

/* seo-toggle "Read More" buttons: orange */
.seo-toggle-btn { border-color: var(--saffron); color: var(--saffron); }
.seo-toggle-btn:hover, .seo-toggle-btn.open {
  background: var(--saffron); color: #fff;
}

/* Section tags */
.section-tag { background: linear-gradient(135deg, var(--saffron), #f97316); }
.section-divider::before {
  background: linear-gradient(to right, transparent, var(--saffron) 70%, #f97316);
}
.section-divider::after  { color: var(--saffron); }
.section-divider::after  {
  background: linear-gradient(to left, transparent, var(--saffron) 70%, #f97316);
  /* ::after is the symbol — keep color */
}

/* =============================================
   HEADER MOBILE REDESIGN
   ============================================= */

/* ── Top-bar structure ── */
.tb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.tb-left {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}
.tb-phone {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.tb-phone:hover { color: rgba(255,255,255,0.8); }
.tb-email {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.tb-email:hover { color: #fff; }
.tb-tagline {
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  font-family: Arial, sans-serif;
  white-space: nowrap;
}
.tb-sep {
  color: rgba(255,255,255,0.3);
  padding: 0 10px;
  font-size: 0.75rem;
}
.tb-icon { font-size: 0.85rem; }
.tb-wa {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #25D366;
  color: #fff;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: Arial, sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.tb-wa:hover { background: #1da851; color: #fff; }

/* ── Hamburger → X animation ── */
.hamburger span {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── Mobile menu footer (call + WhatsApp links) ── */
.mm-footer {
  display: none;
  border-top: 1px solid #f0e8e0;
  padding: 14px 16px 4px;
  gap: 12px;
  flex-direction: column;
}
.mm-footer a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.mm-footer a:first-child {
  background: #fff4ee;
  color: var(--saffron);
  border: 1px solid #ffd5b5;
}
.mm-footer a:last-child {
  background: #f0fff6;
  color: #25D366;
  border: 1px solid #c0ecd0;
}
.mm-cta {
  background: linear-gradient(135deg, var(--saffron), var(--deep-saffron)) !important;
  color: #fff !important;
  border-radius: 8px !important;
  margin-top: 4px;
  text-align: center;
  justify-content: center;
}
.mm-cta:hover { opacity: 0.9; }

/* ── MOBILE BREAKPOINT ── */
@media (max-width: 768px) {

  /* Top-bar: single line with phone + WhatsApp only */
  .top-bar { padding: 5px 14px; }
  .tb-sep-2,
  .tb-email,
  .tb-tagline,
  .tb-sep:not(:first-of-type) { display: none; }
  .tb-sep { display: none; } /* hide all seps on mobile */
  .tb-phone { font-size: 0.8rem; }

  /* Nav: tighter padding, smaller logo */
  nav { padding: 8px 14px; }

  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  .logo { gap: 8px; }
  .logo-text h1 { font-size: 0.9rem; line-height: 1.15; }
  .logo-text span { font-size: 0.62rem; letter-spacing: 0.5px; }

  /* Total header height on mobile: top-bar~26px + nav~54px = ~80px */
  #site-header { min-height: 80px; }
  .hero           { padding-top: 80px; }

  /* Mobile menu: position below new compact header */
  .mobile-menu {
    top: 80px;
    padding: 12px 14px 16px;
    border-radius: 0 0 14px 14px;
  }
  .mobile-menu ul a { padding: 10px 14px; font-size: 0.92rem; }
  .mm-footer { display: flex; }
}

@media (max-width: 400px) {
  .tb-wa { display: none; }   /* ultra-small: only phone in top bar */
  nav { padding: 8px 12px; }
  .logo-text h1 { font-size: 0.82rem; }
}

/* =============================================
   SECTION DIVIDER — DEFINITIVE / FINAL
   Flex-row: line ──── ✦ ──── line
   Works on any background, no halo tricks.
   ============================================= */

.section-divider {
  /* reset every previous conflicting rule */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: 200px !important;
  height: auto !important;
  margin: 0 auto !important;
  background: none !important;
  border-radius: 0 !important;
  position: static !important;
  /* show the ✦ text */
  font-size: 0.52rem !important;
  color: var(--saffron) !important;
  letter-spacing: 0 !important;
}

/* left gradient line */
.section-divider::before {
  content: '' !important;
  flex: 1 !important;
  height: 1.5px !important;
  background: linear-gradient(to right, transparent, var(--saffron)) !important;
  position: static !important;
  transform: none !important;
  top: auto !important; left: auto !important; right: auto !important;
  width: auto !important;
}

/* right gradient line */
.section-divider::after {
  content: '' !important;
  flex: 1 !important;
  height: 1.5px !important;
  background: linear-gradient(to left, transparent, var(--saffron)) !important;
  position: static !important;
  transform: none !important;
  font-size: 0 !important;   /* suppress any older symbol */
  top: auto !important; left: auto !important; right: auto !important;
  width: auto !important;
  text-shadow: none !important;
}

/* light variant — for dark / coloured section backgrounds */
.section-divider.sd-light {
  color: rgba(255,255,255,0.85) !important;
}
.section-divider.sd-light::before {
  background: linear-gradient(to right,  transparent, rgba(255,255,255,0.55)) !important;
}
.section-divider.sd-light::after {
  background: linear-gradient(to left, transparent, rgba(255,255,255,0.55)) !important;
}

/* ── Reorder divider to appear BELOW the h2 in section headers ── */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-header .section-tag    { order: 1; }
.section-header h2               { order: 2; margin-bottom: 4px; }
.section-header .section-divider { order: 3; margin: 8px auto 14px !important; }
.section-header p                { order: 4; }

/* =============================================
   POPULAR PACKAGES TABLE
   ============================================= */
.pkg-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid #ffd5b5;
  box-shadow: 0 4px 20px rgba(234,88,12,0.08);
}
.pkg-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  min-width: 680px;
}
.pkg-table thead tr {
  background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
  color: #fff;
}
.pkg-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.pkg-table td {
  padding: 13px 16px;
  vertical-align: middle;
  border-bottom: 1px solid #fff0e6;
}
.pkg-table tbody tr:last-child td { border-bottom: none; }
.pkg-table tbody tr            { background: #fff; transition: background 0.15s; }
.pkg-table tbody tr:hover      { background: #fff8f2 !important; }
.pkg-t-alt                     { background: #fffbf8 !important; }

.pkg-t-num  { color: #ddd; font-size: 0.75rem; font-weight: 700; width: 36px; text-align: center; }
.pkg-t-name { color: #1a1a1a; font-size: 0.86rem; }
.pkg-t-dur  { white-space: nowrap; }
.pkg-t-hl   { color: #999; font-size: 0.78rem; }
.pkg-t-price { white-space: nowrap; font-weight: 800; color: var(--saffron); font-size: 0.95rem; }
.pkg-t-price span { font-size: 0.67rem; color: #aaa; font-weight: 400; margin-left: 1px; }
.pkg-t-rm, .pkg-t-bk { white-space: nowrap; width: 1%; }

.dur-pill {
  display: inline-block;
  background: #fff3eb;
  color: var(--saffron);
  border: 1px solid #ffd5b5;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 700;
  white-space: nowrap;
}
.tbl-badge {
  display: inline-block;
  background: var(--saffron);
  color: #fff;
  font-size: 0.6rem;
  padding: 2px 7px;
  border-radius: 10px;
  margin-left: 6px;
  font-weight: 700;
  vertical-align: middle;
}
.tbl-read {
  display: inline-block;
  padding: 5px 14px;
  border: 1.5px solid var(--saffron);
  color: var(--saffron);
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.tbl-read:hover { background: var(--saffron); color: #fff; }
.tbl-book {
  display: inline-block;
  padding: 5px 16px;
  background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
  color: #fff;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.tbl-book:hover { background: linear-gradient(135deg,var(--deep-saffron),#9a3008); color:#fff; transform:translateY(-1px); }

@media (max-width: 768px) {
  .pkg-t-hl { display: none; }  /* hide highlights on mobile to save space */
  .pkg-table th, .pkg-table td { padding: 10px 10px; font-size: 0.8rem; }
}

/* =============================================
   ABOUT / CONTACT / LEGAL PAGES
   ============================================= */

/* ── Page hero (image bg version) ── */
.page-hero-img {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 40px;
  overflow: hidden;
  margin-top: 115px;
}
.page-hero-img .phi-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.page-hero-img .phi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(234,88,12,0.55) 0%,
    rgba(100,20,0,0.72) 100%
  );
}
.page-hero-img .phi-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.page-hero-img h1 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
  margin-bottom: 6px;
}
.page-hero-img .phi-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  font-family: Arial, sans-serif;
  margin: 0;
}

/* ── Page breadcrumb (inside hero) ── */
.page-breadcrumb {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}
.page-breadcrumb a   { color: rgba(255,255,255,0.75); text-decoration: none; }
.page-breadcrumb a:hover { color: #fff; }
.page-breadcrumb span:last-child { color: rgba(255,255,255,0.55); }
.page-breadcrumb .pb-sep { color: rgba(255,255,255,0.3); }

/* ── Page section wrapper ── */
.page-section {
  padding: 64px 20px;
}
.page-section.ps-cream  { background: #FFF8F0; }
.page-section.ps-white  { background: #fff; }
.page-section.ps-orange {
  background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
  color: #fff;
}

/* ── Content area placeholder ── */
.content-area {
  min-height: 80px;
}
.content-area p,
.content-area li { color: #555; line-height: 1.85; font-size: 0.95rem; margin-bottom: 14px; }
.content-area h3  { color: var(--saffron); font-size: 1.1rem; margin: 20px 0 10px; }

/* ── About page ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }

.about-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(234,88,12,0.15);
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--saffron);
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.about-text-col .section-tag { display: inline-block; margin-bottom: 10px; }
.about-text-col h2 { font-size: clamp(1.4rem, 3vw, 2rem); color: #1a1a1a; margin-bottom: 16px; }
.about-text-col h2 em { font-style: normal; color: var(--saffron); }

/* Founder section */
.founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.founder-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(234,88,12,0.15);
  text-align: center;
}
.founder-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.founder-name {
  background: var(--saffron);
  color: #fff;
  padding: 12px;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
}
.founder-name strong { display: block; font-size: 1rem; }

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.value-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid #ffd5b5;
  transition: box-shadow 0.25s, transform 0.25s;
}
.value-card:hover { box-shadow: 0 8px 28px rgba(234,88,12,0.12); transform: translateY(-3px); }
.value-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 12px;
}
.value-card h3 { color: var(--saffron); font-size: 1rem; margin-bottom: 8px; }
.value-card p  { color: #777; font-size: 0.85rem; margin: 0; font-family: Arial, sans-serif; }

/* Certs row */
.certs-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}
.cert-item {
  background: #fff;
  border: 1px solid #ffd5b5;
  border-radius: 10px;
  padding: 14px 24px;
  text-align: center;
  min-width: 140px;
}
.cert-item .ci-icon { font-size: 1.8rem; display: block; margin-bottom: 6px; }
.cert-item strong   { display: block; font-size: 0.8rem; color: var(--saffron); font-family: Arial, sans-serif; }
.cert-item span     { font-size: 0.7rem; color: #aaa; font-family: Arial, sans-serif; }

/* About stats strip */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
  overflow: hidden;
}
.about-stat {
  padding: 30px 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.about-stat:last-child { border-right: none; }
.about-stat .as-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-family: Arial, sans-serif;
  display: block;
}
.about-stat .as-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.78);
  font-family: Arial, sans-serif;
  margin-top: 5px;
  display: block;
}

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 52px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.contact-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  border: 1px solid #ffd5b5;
  box-shadow: 0 4px 24px rgba(234,88,12,0.08);
}
.contact-form-wrap h2 { color: var(--saffron); margin-bottom: 6px; font-size: 1.4rem; }
.contact-form-wrap > p { color: #888; font-size: 0.88rem; margin-bottom: 24px; font-family: Arial, sans-serif; }
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.ci-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #ffd5b5;
  border-radius: 12px;
  padding: 16px 18px;
}
.ci-card .cic-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ci-card strong { display: block; font-size: 0.78rem; color: var(--saffron); font-family: Arial, sans-serif; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.ci-card a, .ci-card p { color: #555; font-size: 0.88rem; font-family: Arial, sans-serif; margin: 0; text-decoration: none; }
.ci-card a:hover { color: var(--saffron); }
.contact-team-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(234,88,12,0.1);
}
.contact-team-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.contact-social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff3eb;
  color: var(--saffron);
  border: 1px solid #ffd5b5;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: Arial, sans-serif;
  text-decoration: none;
  transition: all 0.2s;
}
.cs-btn:hover { background: var(--saffron); color: #fff; border-color: var(--saffron); }

/* ── Legal pages ── */
.legal-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 130px;
  background: #fff;
  border: 1px solid #ffd5b5;
  border-radius: 12px;
  padding: 20px;
}
.legal-toc h4 {
  font-size: 0.82rem;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: Arial, sans-serif;
  margin-bottom: 14px;
}
.legal-toc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-toc ul a {
  font-size: 0.82rem;
  color: #666;
  font-family: Arial, sans-serif;
  text-decoration: none;
  display: block;
  padding: 5px 8px;
  border-radius: 6px;
  transition: all 0.2s;
}
.legal-toc ul a:hover { background: #fff3eb; color: var(--saffron); }

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #f5ece0;
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  color: var(--saffron);
  font-size: 1.15rem;
  margin-bottom: 14px;
  padding-left: 12px;
  border-left: 4px solid var(--saffron);
}
.legal-section h3 { color: #1a1a1a; font-size: 0.95rem; margin: 16px 0 8px; }
.legal-section p, .legal-section li {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.85;
  font-family: Arial, sans-serif;
  margin-bottom: 10px;
}
.legal-section ul { padding-left: 20px; }
.legal-date {
  display: inline-block;
  background: #fff3eb;
  color: var(--saffron);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-family: Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 32px;
  border: 1px solid #ffd5b5;
}

/* ── Thank You page ── */
.thankyou-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 20px;
}
.ty-icon { font-size: 4.5rem; display: block; margin-bottom: 20px; }
.ty-title { color: var(--saffron); margin-bottom: 12px; }
.ty-subtitle { color: #555; font-size: 1.05rem; margin-bottom: 36px; }
.ty-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 32px 0;
  text-align: left;
}
.ty-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid #f5ece0;
}
.ty-step:last-child { border-bottom: none; }
.ty-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: Arial, sans-serif;
  flex-shrink: 0;
  margin-top: 2px;
}
.ty-step-body h4 { color: #1a1a1a; font-size: 0.95rem; margin-bottom: 4px; }
.ty-step-body p  { color: #777; font-size: 0.85rem; font-family: Arial, sans-serif; margin: 0; }
.ty-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid.reverse { direction: ltr; }
  .founder-grid { grid-template-columns: 260px 1fr; gap: 32px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .page-hero-img { min-height: 260px; margin-top: 80px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .founder-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { padding: 22px 18px; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   NEW PACKAGE PAGE SECTIONS
   ============================================= */

/* ── What Happens After You Book ── */
.booking-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 8px;
}
.booking-steps::before {
  content: '';
  position: absolute;
  top: 23px;
  left: calc(10% + 8px);
  right: calc(10% + 8px);
  height: 2px;
  background: linear-gradient(90deg, var(--saffron), #f97316, var(--saffron));
  z-index: 0;
}
.booking-step          { text-align: center; padding: 0 6px; position: relative; }
.bs-circle {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  margin: 0 auto 10px;
  position: relative; z-index: 1;
  box-shadow: 0 4px 12px rgba(234,88,12,0.3);
}
.bs-step-num {
  position: absolute;
  top: -4px; right: -4px;
  width: 16px; height: 16px;
  background: #fff;
  color: var(--saffron);
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 900;
  font-family: Arial, sans-serif;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--saffron);
  line-height: 1;
}
.bs-title { font-size: 0.78rem; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; font-family: Arial, sans-serif; line-height: 1.3; }
.bs-desc  { font-size: 0.71rem; color: #999; line-height: 1.5; font-family: Arial, sans-serif; }

/* ── Best Time / Seasonal Tips ── */
.seasons-tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.season-tip-card { border-radius: 12px; overflow: hidden; border: 1px solid #f0e4d6; }
.stp-header {
  padding: 13px 16px;
  display: flex; align-items: center; gap: 12px;
}
.stp-icon { font-size: 1.6rem; flex-shrink: 0; }
.stp-title h4 { font-size: 0.88rem; color: #fff; margin: 0 0 2px; font-family: Arial, sans-serif; }
.stp-title span { font-size: 0.7rem; color: rgba(255,255,255,0.78); font-family: Arial, sans-serif; }
.stc-best     .stp-header { background: linear-gradient(135deg, var(--saffron), var(--deep-saffron)); }
.stc-festival .stp-header { background: linear-gradient(135deg, #7c3aed, #5b21b6); }
.stc-summer   .stp-header { background: linear-gradient(135deg, #dc2626, #991b1b); }
.stc-monsoon  .stp-header { background: linear-gradient(135deg, #059669, #047857); }
.stp-body    { padding: 12px 16px; background: #fff; }
.stp-body p  { font-size: 0.8rem; color: #666; margin: 0 0 8px; line-height: 1.6; }
.stp-recommend {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.72rem; font-weight: 700; font-family: Arial, sans-serif;
  padding: 3px 10px; border-radius: 20px;
}
.stc-best     .stp-recommend { background: #fff4ee; color: var(--saffron); }
.stc-festival .stp-recommend { background: #f5f3ff; color: #7c3aed; }
.stc-summer   .stp-recommend { background: #fff1f2; color: #dc2626; }
.stc-monsoon  .stp-recommend { background: #ecfdf5; color: #059669; }

/* ── Comparison Table ── */
.comparison-table-wrap { margin-top: 20px; overflow-x: auto; border-radius: 12px; border: 1px solid #ffd5b5; }
.comparison-table {
  width: 100%; border-collapse: collapse;
  font-family: Arial, sans-serif; font-size: 0.83rem; min-width: 520px;
}
.comparison-table thead tr th { padding: 12px 16px; text-align: center; font-size: 0.78rem; font-weight: 700; }
.comparison-table .ct-feature  { background: #fff9f5; color: #555; text-align: left; width: 38%; }
.comparison-table .ct-us       { background: linear-gradient(135deg, var(--saffron), var(--deep-saffron)); color: #fff; }
.comparison-table .ct-others   { background: #f4f4f4; color: #555; }
.comparison-table .ct-diy      { background: #efefef; color: #666; }
.comparison-table td           { padding: 10px 16px; border-bottom: 1px solid #fff0e6; text-align: center; }
.comparison-table td:first-child { text-align: left; font-weight: 600; color: #333; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: #fff9f5 !important; }
.comparison-table tr:hover td { background: #fff3ea !important; }
.ct-check { color: #16a34a; font-weight: 800; font-size: 1rem; }
.ct-warn  { color: #d97706; font-weight: 700; }
.ct-cross { color: #dc2626; font-weight: 700; font-size: 1rem; }

/* ── Traveller Tips From Past Guests ── */
.traveller-tips-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.traveller-tip-card {
  background: #fff9f5; border: 1px solid #ffd5b5;
  border-radius: 12px; padding: 16px;
  position: relative; overflow: hidden;
}
.traveller-tip-card::before {
  content: '"';
  position: absolute; top: 8px; left: 12px;
  font-size: 3rem; color: rgba(234,88,12,0.1);
  font-family: Georgia, serif; line-height: 1;
}
.ttp-tip {
  font-size: 0.85rem; color: #333;
  line-height: 1.65; margin-bottom: 12px;
  position: relative; z-index: 1;
  font-style: italic;
}
.ttp-tip strong { font-style: normal; color: var(--saffron); font-size: 0.78rem; display: block; margin-bottom: 4px; }
.ttp-meta { display: flex; align-items: center; gap: 9px; }
.ttp-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; flex-shrink: 0; font-family: Arial, sans-serif;
}
.ttp-name { font-size: 0.78rem; font-weight: 700; color: #1a1a1a; font-family: Arial, sans-serif; display: block; }
.ttp-from { font-size: 0.68rem; color: #bbb; font-family: Arial, sans-serif; }

/* ── Nearby Attractions ── */
.nearby-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.nearby-card {
  border-radius: 12px; overflow: hidden;
  border: 1px solid #f0e4d6;
  transition: all 0.25s; text-decoration: none; display: block;
}
.nearby-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(234,88,12,0.12); }
.nearby-card-img {
  height: 76px; display: flex; align-items: center;
  justify-content: center; font-size: 2.2rem;
}
.nearby-img-1 { background: linear-gradient(135deg, #8B1A1A, #c73e3e); }
.nearby-img-2 { background: linear-gradient(135deg, #1a4a7a, #3a8fd4); }
.nearby-img-3 { background: linear-gradient(135deg, #2d7a2d, #52a852); }
.nearby-img-4 { background: linear-gradient(135deg, #6b4a00, #d4960a); }
.nearby-img-5 { background: linear-gradient(135deg, #5a1a8a, #9b4dd6); }
.nearby-img-6 { background: linear-gradient(135deg, #1a6a6a, #2db8b8); }
.nearby-body   { padding: 11px 12px; }
.nearby-body h4 { font-size: 0.82rem; color: var(--saffron); margin-bottom: 2px; line-height: 1.3; font-family: Georgia, serif; }
.nearby-dist { font-size: 0.68rem; color: #bbb; font-family: Arial, sans-serif; margin-bottom: 4px; display: block; }
.nearby-body p { font-size: 0.75rem; color: #888; margin: 0; line-height: 1.5; }

/* Responsive */
@media (max-width: 768px) {
  .booking-steps  { grid-template-columns: 1fr 1fr; gap: 16px; }
  .booking-steps::before { display: none; }
  .seasons-tips-grid  { grid-template-columns: 1fr; }
  .traveller-tips-grid { grid-template-columns: 1fr; }
  .nearby-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .nearby-grid { grid-template-columns: 1fr; }
}

/* =============================================
   PACKAGE CTA BANNER — full-width, before footer
   ============================================= */
.pkg-cta-banner {
  background: linear-gradient(135deg, var(--deep-saffron) 0%, var(--saffron) 100%);
  padding: 64px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Om watermark */
.pkg-cta-banner::before {
  content: '🕉';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 24rem;
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* Glow accents */
.pkg-cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 10% 50%, rgba(245,197,24,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 50%, rgba(255,120,20,0.06) 0%, transparent 60%);
}

.pkg-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.pkg-cta-tag {
  display: inline-block;
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.35);
  color: #F5C518;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  margin-bottom: 18px;
}

.pkg-cta-banner h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.pkg-cta-banner h2 span { color: #F5C518; }

.pkg-cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.pkg-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.pkg-cta-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #F5C518, #d4a017);
  color: #1a0500;
  padding: 15px 32px;
  border-radius: 6px;
  font-size: 0.97rem;
  font-weight: 800;
  font-family: Arial, sans-serif;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(245,197,24,0.35);
  transition: all 0.25s;
  letter-spacing: 0.2px;
}
.pkg-cta-book:hover {
  background: linear-gradient(135deg, #ffd93d, #F5C518);
  color: #1a0500;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245,197,24,0.45);
}

.pkg-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 15px 28px;
  border-radius: 6px;
  font-size: 0.97rem;
  font-weight: 700;
  font-family: Arial, sans-serif;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
  transition: all 0.25s;
}
.pkg-cta-wa:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-2px);
}

.pkg-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
  padding: 15px 24px;
  border-radius: 6px;
  font-size: 0.97rem;
  font-weight: 600;
  font-family: Arial, sans-serif;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: all 0.25s;
}
.pkg-cta-call:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
  transform: translateY(-2px);
}

/* Trust strip inside banner */
.pkg-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.pkg-cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-family: Arial, sans-serif;
}

@media (max-width: 600px) {
  .pkg-cta-banner { padding: 48px 16px; }
  .pkg-cta-actions { flex-direction: column; align-items: stretch; }
  .pkg-cta-book, .pkg-cta-wa, .pkg-cta-call { justify-content: center; }
  .pkg-cta-trust { gap: 14px; }
}

/* ── Offer trigger button (floating, opens popup on click) ── */
.offer-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #ea580c, #c44008);
  color: #fff;
  border: none;
  padding: 7px 14px 7px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 14px rgba(234,88,12,0.45);
  transition: all 0.25s;
  white-space: nowrap;
  animation: pulse-offer 2.8s ease-in-out infinite;
  letter-spacing: 0.3px;
}
.offer-trigger:hover {
  background: linear-gradient(135deg, #c44008, #9a3008);
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(234,88,12,0.55);
  animation: none;
}
@keyframes pulse-offer {
  0%, 100% { box-shadow: 0 4px 14px rgba(234,88,12,0.45); }
  50%       { box-shadow: 0 4px 24px rgba(234,88,12,0.7), 0 0 0 6px rgba(234,88,12,0.12); }
}

/* ── Complete Details section — inner typography ── */
.cd-visible p,
.cd-hidden p {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 14px;
}
.cd-hidden h3 {
  font-size: 1.05rem;
  color: var(--saffron);
  margin: 22px 0 10px;
  font-family: Georgia, serif;
  line-height: 1.3;
}
.cd-hidden h3:first-child { margin-top: 4px; }

/* =============================================
   TEMPLE PAGES — All sections
   ============================================= */

/* ── Temple Hero ── */
.temple-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 115px;
}
.temple-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--deep-saffron), var(--saffron));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12rem;
  opacity: 0.18;
}
.temple-hero-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.temple-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,2,0,0.82) 0%, rgba(10,2,0,0.45) 55%, rgba(10,2,0,0.1) 100%);
}
.temple-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 36px;
  width: 100%;
}
.temple-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(var(--saffron), 0.15);
  background: rgba(255,149,0,0.18);
  border: 1px solid rgba(255,149,0,0.4);
  color: #F5C518;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  margin-bottom: 12px;
}
.temple-hero-content h1 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.temple-hero-desc {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  font-family: Arial, sans-serif;
  max-width: 640px;
}

/* ── Quick Info Bar ── */
.tib-strip {
  background: #fff;
  border-bottom: 1px solid #f5ece0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.tib-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  overflow-x: auto;
  scrollbar-width: none;
}
.tib-inner::-webkit-scrollbar { display: none; }
.tib-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 20px;
  border-right: 1px solid #f5ece0;
  flex: 1;
  min-width: 120px;
  text-align: center;
  white-space: nowrap;
}
.tib-item:last-child { border-right: none; }
.tib-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #bbb;
  font-family: Arial, sans-serif;
  margin-bottom: 3px;
}
.tib-value {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
  font-family: Arial, sans-serif;
}
.tib-icon { font-size: 1.1rem; margin-bottom: 4px; }

/* ── Temple page layout ── */
.temple-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}
.temple-main  { min-width: 0; }
.temple-aside { position: sticky; top: 80px; }

/* ── Temple content sections ── */
.temple-section {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid #f5ece0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.temple-section h2 {
  font-size: 1.25rem;
  color: var(--saffron);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #fff4e6;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.temple-section h3 {
  font-size: 1rem;
  color: #1a1a1a;
  margin: 18px 0 8px;
  font-family: Georgia, serif;
}
.temple-section p {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 12px;
}
.temple-section ul, .temple-section ol {
  margin: 8px 0 14px 20px;
  color: #555;
  font-size: 0.92rem;
  line-height: 1.9;
}

/* ── Timings Table ── */
.timings-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  margin-top: 8px;
}
.timings-table thead tr { background: linear-gradient(135deg, var(--deep-saffron), var(--saffron)); }
.timings-table th { padding: 11px 16px; color: #fff; text-align: left; font-size: 0.8rem; font-weight: 700; }
.timings-table tbody tr:nth-child(even) { background: #fff9f2; }
.timings-table tbody tr:nth-child(odd)  { background: #fff; }
.timings-table td { padding: 11px 16px; border-bottom: 1px solid #ffeedd; color: #333; }
.timings-table tr:last-child td { border-bottom: none; }
.timings-table td:last-child { font-weight: 700; color: var(--saffron); }
.timings-note {
  font-size: 0.78rem;
  color: #999;
  font-family: Arial, sans-serif;
  margin-top: 8px;
  font-style: italic;
}

/* ── Aarti Schedule ── */
.aarti-list { display: flex; flex-direction: column; gap: 10px; }
.aarti-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff9f2;
  border-radius: 10px;
  padding: 14px 16px;
  border-left: 3px solid var(--saffron);
}
.aarti-time {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--saffron);
  font-family: Arial, sans-serif;
  min-width: 72px;
  flex-shrink: 0;
  line-height: 1.4;
}
.aarti-info h4 { font-size: 0.9rem; color: #1a1a1a; margin-bottom: 2px; }
.aarti-info p  { font-size: 0.8rem; color: #888; margin: 0; line-height: 1.5; }
.aarti-special { display: inline-block; background: var(--saffron); color: #fff; font-size: 0.62rem; padding: 2px 7px; border-radius: 10px; margin-left: 8px; font-weight: 700; font-family: Arial, sans-serif; vertical-align: middle; }

/* ── Dos & Don'ts ── */
.dos-donts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.dos-col, .donts-col { border-radius: 10px; padding: 18px; }
.dos-col   { background: #f0faf0; border: 1px solid #c8e8c8; }
.donts-col { background: #fff5f5; border: 1px solid #f0c8c8; }
.dos-col h4   { color: #2d7a2d; font-size: 0.92rem; margin-bottom: 10px; }
.donts-col h4 { color: #a00;    font-size: 0.92rem; margin-bottom: 10px; }
.dos-col ul, .donts-col ul { margin: 0; padding-left: 16px; font-size: 0.83rem; line-height: 1.9; }
.dos-col li   { color: #2d5a2d; }
.donts-col li { color: #7a0000; }

/* ── Festival cards ── */
.festival-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.festival-card {
  background: linear-gradient(135deg, #fff9f2, #fff4e6);
  border: 1px solid #ffd5b5;
  border-radius: 10px;
  padding: 14px 16px;
}
.festival-card h4 { font-size: 0.9rem; color: var(--saffron); margin-bottom: 4px; }
.festival-card p  { font-size: 0.8rem; color: #777; margin: 0; line-height: 1.55; }
.festival-month   { font-size: 0.7rem; color: #bbb; font-family: Arial, sans-serif; margin-bottom: 6px; display: block; }

/* ── How to Reach ── */
.reach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.reach-card {
  background: #fff;
  border: 1px solid #f5ece0;
  border-radius: 10px;
  padding: 14px 16px;
}
.reach-card h4 { font-size: 0.88rem; color: var(--saffron); margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.reach-card p, .reach-card li { font-size: 0.8rem; color: #666; line-height: 1.6; }
.reach-card ul { margin: 4px 0 0 14px; }

/* ── Photo Gallery ── */
.temple-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 160px 120px;
  gap: 8px;
  border-radius: 12px;
  overflow: hidden;
}
.tg-cell {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  transition: opacity 0.2s;
}
.tg-cell:hover { opacity: 0.85; }
.tg-cell:first-child { grid-column: 1/3; grid-row: 1; font-size: 4rem; }
.tg-cell img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tg-cell .tg-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: #fff; font-size: 0.72rem; font-family: Arial, sans-serif; padding: 8px 10px 6px;
}
.tg-1 { background: linear-gradient(135deg, #8B1A1A, #c73e3e); }
.tg-2 { background: linear-gradient(135deg, #1a4a7a, #3a8fd4); }
.tg-3 { background: linear-gradient(135deg, #2d7a2d, #52a852); }
.tg-4 { background: linear-gradient(135deg, var(--deep-saffron), var(--saffron)); }
.tg-5 { background: linear-gradient(135deg, #6b4a00, #d4960a); }
.tg-6 { background: linear-gradient(135deg, #5a1a8a, #9b4dd6); }
.tg-7 { background: linear-gradient(135deg, #1a6a6a, #2db8b8); }
.tg-8 { background: linear-gradient(135deg, #4a1a00, #8B4A00); }

/* ── Visitor Reviews ── */
.temple-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.temple-review-card {
  background: #fff9f2;
  border: 1px solid #ffd5b5;
  border-radius: 12px;
  padding: 16px;
}
.trv-stars  { color: #F5A623; font-size: 0.85rem; margin-bottom: 6px; }
.trv-text   { font-size: 0.85rem; font-style: italic; color: #444; line-height: 1.65; margin-bottom: 10px; }
.trv-author { font-size: 0.78rem; font-weight: 700; color: #1a1a1a; font-family: Arial, sans-serif; }
.trv-date   { font-size: 0.7rem; color: #bbb; font-family: Arial, sans-serif; }

/* ── Temple FAQ ── */
.temple-faq-item {
  border: 1px solid #f5ece0;
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}
.temple-faq-q {
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  font-family: Georgia, serif;
  transition: all 0.2s;
  gap: 12px;
}
.temple-faq-q:hover { background: #fff9f2; color: var(--saffron); }
.temple-faq-q .tfq-arrow { color: var(--saffron); font-size: 1.1rem; flex-shrink: 0; transition: transform 0.3s; }
.temple-faq-item.open .tfq-arrow { transform: rotate(45deg); }
.temple-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; background: #fff9f2; }
.temple-faq-item.open .temple-faq-a { max-height: 300px; }
.temple-faq-a p { padding: 12px 18px; font-size: 0.88rem; color: #555; margin: 0; line-height: 1.7; }

/* ── Temple sidebar ── */
.temple-sidebar-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #f5ece0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  overflow: hidden;
  margin-bottom: 20px;
}
.tsc-header {
  background: linear-gradient(135deg, var(--deep-saffron), var(--saffron));
  padding: 16px 20px;
}
.tsc-header h3 { color: #fff; font-size: 1rem; margin: 0; }
.tsc-header p  { color: rgba(255,255,255,0.75); font-size: 0.78rem; margin: 4px 0 0; font-family: Arial, sans-serif; }
.tsc-body { padding: 18px 20px; }
.tsc-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.82rem;
  font-family: Arial, sans-serif;
  padding: 8px 0;
  border-bottom: 1px solid #fff0e6;
  gap: 12px;
}
.tsc-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.tsc-info-row .ti-label { color: #aaa; flex-shrink: 0; }
.tsc-info-row .ti-val   { font-weight: 700; color: #333; text-align: right; }
.temple-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, var(--deep-saffron), var(--saffron));
  color: #fff;
  padding: 13px;
  border: none;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  font-family: Arial, sans-serif;
  text-decoration: none;
  transition: all 0.25s;
  margin-top: 12px;
}
.temple-cta-btn:hover { opacity: 0.9; color: #fff; transform: translateY(-1px); }
.temple-cta-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #25D366;
  color: #fff;
  padding: 11px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  font-family: Arial, sans-serif;
  margin-top: 8px;
  transition: all 0.25s;
}
.temple-cta-wa:hover { background: #1da851; color: #fff; }

/* ── Temple CTA Strip ── */
.temple-cta-strip {
  background: linear-gradient(135deg, var(--deep-saffron), var(--saffron));
  padding: 48px 20px;
  text-align: center;
}
.temple-cta-strip h2 { color: #fff; margin-bottom: 10px; font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
.temple-cta-strip p  { color: rgba(255,255,255,0.82); margin-bottom: 24px; font-size: 0.97rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.temple-cta-actions  { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.temple-cta-action-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 26px; border-radius: 6px;
  font-size: 0.92rem; font-weight: 700; font-family: Arial, sans-serif;
  text-decoration: none; transition: all 0.25s;
}
.tca-primary { background: #fff; color: var(--deep-saffron); }
.tca-primary:hover { background: #fff9f0; color: var(--deep-saffron); transform: translateY(-2px); }
.tca-wa  { background: #25D366; color: #fff; }
.tca-wa:hover  { background: #1da851; color: #fff; transform: translateY(-2px); }
.tca-tel { background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.4); color: #fff; backdrop-filter: blur(4px); }
.tca-tel:hover { background: rgba(255,255,255,0.2); color: #fff; transform: translateY(-2px); }

/* ── Hub page temple cards ── */
.temple-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.temple-hub-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #f5ece0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.25s;
  text-decoration: none;
  display: block;
}
.temple-hub-card:hover { transform: translateY(-5px); box-shadow: 0 10px 32px rgba(255,149,0,0.15); }
.thc-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.thc-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.thc-city-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 0.65rem;
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.thc-body { padding: 18px; }
.thc-body h3 { font-size: 1rem; color: #1a1a1a; margin-bottom: 5px; line-height: 1.3; }
.thc-body p  { font-size: 0.8rem; color: #888; line-height: 1.55; margin-bottom: 12px; }
.thc-meta { display: flex; gap: 12px; font-size: 0.74rem; color: #bbb; font-family: Arial, sans-serif; }
.thc-link { display: inline-flex; align-items: center; gap: 5px; color: var(--saffron); font-size: 0.8rem; font-weight: 700; font-family: Arial, sans-serif; margin-top: 10px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .temple-layout { grid-template-columns: 1fr; }
  .temple-aside { position: static; }
  .temple-hub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .tib-inner { justify-content: flex-start; }
  .tib-item  { min-width: 110px; padding: 10px 14px; }
  .dos-donts, .reach-grid, .festival-grid { grid-template-columns: 1fr; }
  .temple-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .tg-cell:first-child { grid-column: 1/3; }
  .temple-reviews-grid { grid-template-columns: 1fr; }
  .temple-hero { min-height: 320px; }
}
@media (max-width: 580px) {
  .temple-hub-grid { grid-template-columns: 1fr; }
}

/* =============================================
   BLOG PAGES — Hub + Article
   ============================================= */

/* ── Blog Hub ─────────────────────────────── */
.blog-hub-hero {
  /* solid deep saffron + subtle noise texture feel via layered radials */
  background:
    radial-gradient(ellipse 80% 120% at 0%   80%, rgba(255,255,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 55% 80%  at 100%  0%,  rgba(245,197,24,0.12)  0%, transparent 55%),
    radial-gradient(ellipse 40% 60%  at 50%  120%, rgba(0,0,0,0.18)       0%, transparent 70%),
    #ea580c;
  padding: 64px 20px 56px;
  position: relative;
  overflow: hidden;
  margin-top: 115px;
}

/* thin gold accent line at the very top */
.blog-hub-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #F5C518 40%, #F5C518 60%, transparent);
}

/* decorative pen / feather mark — very subtle */
.blog-hub-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  background:
    radial-gradient(ellipse 80% 100% at 100% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.blog-hub-hero .container { position: relative; z-index: 1; }
.blog-hub-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-shadow: 0 1px 12px rgba(0,0,0,0.2);
  margin-bottom: 10px;
  line-height: 1.2;
}
.blog-hub-hero p {
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0;
}

/* Featured article card */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f5ece0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s, transform 0.25s;
  margin-bottom: 40px;
}
.blog-featured:hover { box-shadow: 0 12px 40px rgba(255,149,0,0.15); transform: translateY(-3px); }
.blog-featured-img {
  min-height: 280px;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem; position: relative;
}
.blog-featured-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.blog-featured-body { padding: 32px; background: #fff; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-body .cat-tag {
  display: inline-block; background: #fff4ee; color: var(--saffron);
  border: 1px solid #ffd5b5; border-radius: 20px;
  font-size: 0.72rem; font-weight: 700; font-family: Arial, sans-serif;
  padding: 3px 12px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px;
}
.blog-featured-body h2 { font-size: 1.5rem; color: #1a1a1a; margin-bottom: 10px; line-height: 1.3; }
.blog-featured-body p  { font-size: 0.9rem; color: #777; line-height: 1.7; margin-bottom: 16px; }
.blog-card-meta { font-size: 0.75rem; color: #bbb; font-family: Arial, sans-serif; display: flex; gap: 14px; align-items: center; }
.blog-card-meta .read-more-link { color: var(--saffron); font-weight: 700; margin-left: auto; font-size: 0.82rem; }

/* Blog cards grid */
.blog-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-hub-card {
  border-radius: 14px; overflow: hidden;
  border: 1px solid #f5ece0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: all 0.25s;
}
.blog-hub-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(255,149,0,0.12); }
.bhc-img {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; position: relative; overflow: hidden;
}
.bhc-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bhc-body { padding: 18px; flex: 1; display: flex; flex-direction: column; background: #fff; }
.bhc-cat {
  display: inline-block; background: #fff4ee; color: var(--saffron);
  font-size: 0.68rem; font-weight: 700; font-family: Arial, sans-serif;
  padding: 2px 10px; border-radius: 20px; margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.8px;
}
.bhc-body h3 { font-size: 0.95rem; color: #1a1a1a; line-height: 1.35; margin-bottom: 6px; }
.bhc-body p  { font-size: 0.8rem; color: #888; line-height: 1.6; flex: 1; margin-bottom: 12px; }
.bhc-footer { display: flex; align-items: center; gap: 10px; font-size: 0.72rem; color: #bbb; font-family: Arial, sans-serif; }
.bhc-footer .bhc-read { color: var(--saffron); font-weight: 700; margin-left: auto; }

/* ── Article page ─────────────────────────── */
.article-hero {
  margin-top: 115px;
  background:
    radial-gradient(ellipse 70% 100% at 0%   60%, rgba(255,255,255,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 80%  at 100%  0%,  rgba(245,197,24,0.14)  0%, transparent 55%),
    radial-gradient(ellipse 60% 70%  at 55%  110%, rgba(0,0,0,0.12)       0%, transparent 65%),
    #ea580c;
  padding: 60px 20px 52px;
  position: relative;
  overflow: hidden;
}

/* thin saffron-to-gold line at the very top */
.article-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--saffron) 30%, #F5C518 55%, var(--saffron) 80%, transparent);
}

/* soft warm glow from the right */
.article-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  background: radial-gradient(ellipse 90% 80% at 100% 45%, rgba(234,88,12,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.article-hero-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }
.article-cat-tag {
  display: inline-block;
  background: rgba(245,197,24,0.18); border: 1px solid rgba(245,197,24,0.4);
  color: #F5C518; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px;
  border-radius: 4px; font-family: Arial, sans-serif; margin-bottom: 14px;
}
.article-hero h1 {
  color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.25; margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.article-hero .article-subtitle {
  color: rgba(255,255,255,0.78); font-size: 1.05rem;
  line-height: 1.7; margin-bottom: 22px; max-width: 720px;
}
.article-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 18px;
}
.article-author { display: flex; align-items: center; gap: 10px; }
.article-author-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--deep-saffron), var(--saffron));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; font-family: Arial, sans-serif; flex-shrink: 0;
}
.article-author-name { font-size: 0.82rem; font-weight: 700; color: #fff; font-family: Arial, sans-serif; }
.article-author-title { font-size: 0.7rem; color: rgba(255,255,255,0.6); font-family: Arial, sans-serif; }
.article-meta-sep { color: rgba(255,255,255,0.25); }
.article-meta-item { font-size: 0.78rem; color: rgba(255,255,255,0.65); font-family: Arial, sans-serif; }
.article-meta-item strong { color: rgba(255,255,255,0.85); }

/* Social share */
.article-share { display: flex; align-items: center; gap: 8px; }
.article-share span { font-size: 0.72rem; color: rgba(255,255,255,0.5); font-family: Arial, sans-serif; }
.share-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 700; font-family: Arial, sans-serif;
  text-decoration: none; cursor: pointer; border: none; transition: all 0.2s;
}
.share-wa  { background: #25D366; color: #fff; }
.share-wa:hover { background: #1da851; color: #fff; }
.share-fb  { background: #1877f2; color: #fff; }
.share-fb:hover { background: #1460cc; color: #fff; }
.share-copy { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.share-copy:hover { background: rgba(255,255,255,0.25); }

/* Article layout */
.article-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: start;
}
.article-main { min-width: 0; }

/* Article hero image */
.article-hero-img {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 32px;
  position: relative;
}
.article-hero-img img { width: 100%; height: 420px; object-fit: cover; display: block; }
.article-hero-img-placeholder {
  height: 420px;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem; border-radius: 14px;
}
.article-hero-img figcaption {
  font-size: 0.76rem; color: #bbb; font-family: Arial, sans-serif;
  padding: 8px 12px; text-align: center; background: #f9f9f9; border-radius: 0 0 14px 14px;
}

/* Article body typography */
.article-body h2 {
  font-size: 1.35rem; color: #1a1a1a;
  margin: 32px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #fff4ee;
  scroll-margin-top: 130px;
}
.article-body h3 {
  font-size: 1.05rem; color: #1a1a1a;
  margin: 22px 0 10px;
  scroll-margin-top: 130px;
}
.article-body p { font-size: 0.94rem; color: #444; line-height: 1.9; margin-bottom: 14px; }
.article-body ul, .article-body ol {
  margin: 10px 0 18px 20px; color: #444; font-size: 0.93rem; line-height: 2;
}
.article-body strong { color: #1a1a1a; }
.article-body a { color: var(--saffron); font-weight: 600; }

/* Inline article image */
.article-inline-img {
  margin: 20px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #f5ece0;
}
.article-inline-img img { width: 100%; display: block; }
.article-inline-img figcaption { font-size: 0.75rem; color: #bbb; font-family: Arial, sans-serif; padding: 7px 12px; background: #fafafa; }
.article-inline-img-placeholder {
  height: 280px; display: flex; align-items: center;
  justify-content: center; font-size: 4rem;
}

/* Callout boxes */
.callout {
  border-radius: 10px;
  padding: 16px 18px;
  margin: 20px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.7;
}
.callout .c-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.callout p { margin: 0; }
.callout-tip     { background: #fff9ee; border-left: 3px solid var(--saffron); color: #555; }
.callout-tip strong { color: var(--saffron); }
.callout-warning { background: #fff8f0; border-left: 3px solid #f97316; color: #555; }
.callout-warning strong { color: #f97316; }
.callout-note    { background: #f0f7ff; border-left: 3px solid #3b82f6; color: #555; }
.callout-note strong { color: #3b82f6; }
.callout-fact    { background: #f0fdf4; border-left: 3px solid #22c55e; color: #555; }
.callout-fact strong { color: #16a34a; }

/* Info table */
.info-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; font-family: Arial, sans-serif; margin: 16px 0; border-radius: 10px; overflow: hidden; }
.info-table thead tr { background: linear-gradient(135deg, var(--deep-saffron), var(--saffron)); color: #fff; }
.info-table th { padding: 11px 16px; text-align: left; font-size: 0.8rem; font-weight: 700; }
.info-table td { padding: 10px 16px; border-bottom: 1px solid #fff0e6; color: #444; }
.info-table tbody tr:nth-child(even) { background: #fff9f2; }
.info-table tbody tr:hover { background: #fff4e6; }

/* Summary box */
.summary-box {
  background: linear-gradient(135deg, #fff9f2, #fff4e6);
  border: 1px solid #ffd5b5;
  border-radius: 12px;
  padding: 20px 22px;
  margin: 24px 0;
}
.summary-box h4 { font-size: 0.95rem; color: var(--saffron); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.summary-box ul  { margin: 0 0 0 16px; color: #555; font-size: 0.88rem; line-height: 2; }

/* Mid-article CTA */
.article-cta-box {
  background: linear-gradient(135deg, var(--deep-saffron), var(--saffron));
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  margin: 32px 0;
}
.article-cta-box h3 { color: #fff; font-size: 1.15rem; margin-bottom: 6px; }
.article-cta-box p  { color: rgba(255,255,255,0.82); font-size: 0.88rem; margin-bottom: 18px; font-family: Arial, sans-serif; }
.article-cta-btns   { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.article-cta-btns a { display: inline-flex; align-items: center; gap: 7px; padding: 11px 22px; border-radius: 6px; font-size: 0.88rem; font-weight: 700; font-family: Arial, sans-serif; text-decoration: none; transition: all 0.2s; }
.acb-primary { background: #fff; color: var(--deep-saffron); }
.acb-primary:hover { background: #fff9f0; }
.acb-wa { background: #25D366; color: #fff; }
.acb-wa:hover { background: #1da851; color: #fff; }

/* FAQ section */
.blog-faq-item { border: 1px solid #f5ece0; border-radius: 10px; margin-bottom: 8px; overflow: hidden; }
.blog-faq-q { width: 100%; text-align: left; padding: 14px 18px; background: #fff; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; font-weight: 700; color: #1a1a1a; font-family: Georgia, serif; transition: all 0.2s; gap: 12px; }
.blog-faq-q:hover { background: #fff9f2; color: var(--saffron); }
.blog-faq-q .bfq-arrow { color: var(--saffron); font-size: 1.1rem; flex-shrink: 0; transition: transform 0.3s; }
.blog-faq-item.open .bfq-arrow { transform: rotate(45deg); }
.blog-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; background: #fff9f2; }
.blog-faq-item.open .blog-faq-a { max-height: 300px; }
.blog-faq-a p { padding: 12px 18px; font-size: 0.88rem; color: #555; margin: 0; line-height: 1.75; }

/* Author box */
.author-box {
  display: flex; align-items: flex-start; gap: 18px;
  background: #fff9f2; border: 1px solid #ffd5b5;
  border-radius: 14px; padding: 22px;
  margin: 32px 0;
}
.author-box-avatar {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--deep-saffron), var(--saffron));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700; font-family: Arial, sans-serif;
}
.author-box-name  { font-size: 1rem; font-weight: 700; color: #1a1a1a; margin-bottom: 2px; font-family: Georgia, serif; }
.author-box-title { font-size: 0.78rem; color: var(--saffron); font-family: Arial, sans-serif; margin-bottom: 8px; }
.author-box-bio   { font-size: 0.85rem; color: #666; line-height: 1.6; margin: 0 0 8px; }
.author-more-link { font-size: 0.78rem; color: var(--saffron); font-weight: 700; text-decoration: none; font-family: Arial, sans-serif; }

/* Article tags */
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; align-items: center; }
.article-tags .tag-label { font-size: 0.78rem; color: #bbb; font-family: Arial, sans-serif; }
.article-tag {
  display: inline-block; background: #fff4ee; color: var(--saffron);
  border: 1px solid #ffd5b5; padding: 4px 12px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 600; font-family: Arial, sans-serif; text-decoration: none;
  transition: all 0.2s;
}
.article-tag:hover { background: var(--saffron); color: #fff; }

/* Social share bar (bottom) */
.social-share-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 0; border-top: 1px solid #f5ece0; border-bottom: 1px solid #f5ece0;
  margin: 24px 0;
}
.social-share-bar span { font-size: 0.82rem; color: #888; font-family: Arial, sans-serif; }

/* Related packages */
.related-packages { margin-top: 40px; }
.related-packages h2 { font-size: 1.3rem; color: #1a1a1a; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #fff4ee; }
.related-packages .packages-grid { grid-template-columns: repeat(3, 1fr); }

/* Related articles */
.related-articles { margin-top: 40px; }
.related-articles h2 { font-size: 1.3rem; color: #1a1a1a; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #fff4ee; }
.related-articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ra-card { border-radius: 12px; overflow: hidden; border: 1px solid #f5ece0; text-decoration: none; color: inherit; display: block; transition: all 0.2s; }
.ra-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(255,149,0,0.1); }
.ra-img { height: 140px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.ra-body { padding: 14px; background: #fff; }
.ra-body .ra-cat { font-size: 0.65rem; font-weight: 700; color: var(--saffron); text-transform: uppercase; letter-spacing: 0.8px; font-family: Arial, sans-serif; margin-bottom: 5px; display: block; }
.ra-body h4 { font-size: 0.88rem; color: #1a1a1a; line-height: 1.35; margin-bottom: 5px; }
.ra-body .ra-meta { font-size: 0.7rem; color: #bbb; font-family: Arial, sans-serif; }

/* ── Sidebar ──────────────────────────────── */
.article-sidebar { position: sticky; top: 125px; display: flex; flex-direction: column; gap: 20px; }

/* TOC widget */
.toc-widget {
  background: #fff; border-radius: 14px;
  border: 1px solid #f5ece0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  overflow: hidden;
}
.toc-header {
  background: linear-gradient(135deg, var(--deep-saffron), var(--saffron));
  padding: 12px 18px;
  display: flex; justify-content: space-between; align-items: center;
}
.toc-header span { color: #fff; font-size: 0.82rem; font-weight: 700; font-family: Arial, sans-serif; letter-spacing: 0.5px; }
.toc-toggle { background: none; border: none; color: rgba(255,255,255,0.75); cursor: pointer; font-size: 0.75rem; font-family: Arial, sans-serif; }
.toc-body { padding: 14px 6px 14px 14px; max-height: 400px; overflow-y: auto; }
.toc-list { list-style: none; padding: 0; margin: 0; }
.toc-list li { margin: 0; }
.toc-list a {
  display: block; padding: 5px 10px 5px 8px;
  font-size: 0.8rem; font-family: Arial, sans-serif;
  color: #555; text-decoration: none; border-radius: 6px;
  border-left: 2px solid transparent;
  line-height: 1.4;
  transition: all 0.15s;
}
.toc-list a:hover { color: var(--saffron); background: #fff4ee; border-left-color: var(--saffron); }
.toc-list a.toc-active { color: var(--saffron); background: #fff4ee; border-left-color: var(--saffron); font-weight: 700; }
.toc-list .toc-h3 a { padding-left: 20px; font-size: 0.75rem; }
.toc-num { color: #ddd; margin-right: 6px; font-size: 0.7rem; }

/* Sidebar enquiry form */
.sidebar-enquiry {
  background: #fff; border-radius: 14px;
  border: 1px solid #f5ece0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  overflow: hidden;
}
.se-header { background: linear-gradient(135deg, var(--deep-saffron), var(--saffron)); padding: 14px 18px; }
.se-header h4 { color: #fff; font-size: 0.95rem; margin: 0 0 2px; }
.se-header p  { color: rgba(255,255,255,0.75); font-size: 0.72rem; margin: 0; font-family: Arial, sans-serif; }
.se-body { padding: 16px 18px; }
.se-body input, .se-body select {
  width: 100%; border: 1.5px solid #f0e0d0; border-radius: 7px;
  padding: 9px 12px; font-size: 0.83rem; outline: none;
  font-family: Arial, sans-serif; margin-bottom: 9px; transition: border-color 0.2s;
}
.se-body input:focus, .se-body select:focus { border-color: var(--saffron); }
.se-body input::placeholder { color: #ccc; }
.se-wa-btn {
  width: 100%; background: #25D366; color: #fff; border: none;
  padding: 11px; border-radius: 7px; font-size: 0.88rem; font-weight: 700;
  cursor: pointer; font-family: Arial, sans-serif; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 7px;
}
.se-wa-btn:hover { background: #1da851; }

/* Sidebar popular packages */
.sidebar-popular { background: #fff; border-radius: 14px; border: 1px solid #f5ece0; overflow: hidden; }
.sp-header { background: #fff9f2; padding: 12px 16px; border-bottom: 1px solid #f5ece0; }
.sp-header h4 { font-size: 0.88rem; color: #1a1a1a; margin: 0; }
.sp-card { display: flex; gap: 10px; padding: 12px 14px; border-bottom: 1px solid #fef5eb; text-decoration: none; color: inherit; transition: background 0.15s; }
.sp-card:hover { background: #fff9f2; }
.sp-card:last-child { border-bottom: none; }
.sp-img { width: 52px; height: 52px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.sp-body { flex: 1; }
.sp-body h5 { font-size: 0.8rem; color: #1a1a1a; margin: 0 0 3px; line-height: 1.3; font-family: Arial, sans-serif; }
.sp-body .sp-dur { font-size: 0.7rem; color: #bbb; font-family: Arial, sans-serif; }
.sp-body .sp-price { font-size: 0.82rem; font-weight: 800; color: var(--saffron); font-family: Arial, sans-serif; }

/* Sidebar contact */
.sidebar-contact { background: linear-gradient(135deg, var(--deep-saffron), var(--saffron)); border-radius: 14px; padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.sc-link { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 8px; font-size: 0.85rem; font-weight: 700; font-family: Arial, sans-serif; text-decoration: none; transition: all 0.2s; }
.sc-call { background: #fff; color: var(--deep-saffron); }
.sc-wa   { background: #25D366; color: #fff; }
.sc-mail { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.sc-link:hover { transform: translateY(-1px); opacity: 0.9; }

/* Responsive */
@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .toc-widget { display: none; } /* hide sidebar TOC on mobile — use inline TOC instead */
  .blog-hub-grid { grid-template-columns: repeat(2,1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 200px; }
  .related-packages .packages-grid { grid-template-columns: repeat(2,1fr); }
  .related-articles-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 680px) {
  .blog-hub-grid { grid-template-columns: 1fr; }
  .article-hero { padding: 36px 16px 32px; }
  .article-hero h1 { font-size: 1.5rem; }
  .article-meta { gap: 10px; }
  .related-articles-grid, .related-packages .packages-grid { grid-template-columns: 1fr; }
}


