:root {
  --saffron: #E07B20;
  --saffron-light: #F0922A;
  --saffron-dark: #C46A10;
  --red: #8B1A1A;
  --red-light: #A52020;
  --navy: #1B2A5E;
  --navy-light: #243570;
  --navy-dark: #12203F;
  --bg: #FFF8F0;
  --white: #FFFFFF;
  --gold: #D4AF37;
  --gold-light: #E8C84A;
  --green-wa: #25D366;
  --green-wa-dark: #1DA851;
  --text-dark: #1a1a2e;
  --text-mid: #3d3d5c;
  --text-light: #6b6b8a;
  --border: rgba(224,123,32,0.2);
  --shadow: 0 4px 24px rgba(27,42,94,0.12);
  --shadow-lg: 0 12px 48px rgba(27,42,94,0.18);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

.hindi {
  font-family: 'Tiro Devanagari Hindi', serif;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== URGENCY BAR ===== */
#urgency-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 1000;
  position: relative;
}
#urgency-bar span { letter-spacing: 0.01em; }
.urgency-btn {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 5px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.urgency-btn:hover { background: var(--gold-light); transform: scale(1.04); }

/* ===== STICKY HEADER ===== */
#main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#main-header.scrolled { box-shadow: 0 4px 20px rgba(27,42,94,0.15); }

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--saffron);
  letter-spacing: 0.01em;
}
.logo-text .brand-sub {
  font-size: 0.65rem;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
nav.main-nav a {
  padding: 6px 14px;
  color: var(--text-mid);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
nav.main-nav a:hover { color: var(--saffron); background: rgba(224,123,32,0.08); }

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.btn-quote {
  background: var(--saffron);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-quote:hover {
  background: var(--saffron-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(224,123,32,0.35);
}

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

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 10px 16px;
  color: var(--text-mid);
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-nav a:hover { background: rgba(224,123,32,0.08); color: var(--saffron); }
.mobile-nav .btn-quote { text-align: center; margin-top: 8px; }

/* ===== HERO SECTION ===== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(139,26,26,0.7) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(224,123,32,0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(27,42,94,0.9) 0%, transparent 80%),
    linear-gradient(170deg, var(--navy-dark) 0%, #2d1b47 35%, var(--red) 70%, #3d1500 100%);
}

/* Mountain silhouette via SVG clip path effect */
.hero-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  opacity: 0.15;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}
@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 0.7; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-80vh) scale(1.5); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
  max-width: 900px;
}

.hero-om {
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: 4rem;
  color: var(--saffron);
  display: block;
  margin-bottom: 12px;
  text-shadow: 0 0 30px rgba(224,123,32,0.6);
  animation: pulseGlow 3s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(224,123,32,0.5); }
  50% { text-shadow: 0 0 50px rgba(224,123,32,0.9), 0 0 100px rgba(224,123,32,0.3); }
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  letter-spacing: 0.01em;
}

.hero-hindi {
  font-family: 'Tiro Devanagari Hindi', serif;
  font-style: italic;
  color: var(--saffron);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: 20px;
  display: block;
  opacity: 0.95;
}

.hero-body {
  color: rgba(255,255,255,0.85);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-saffron {
  background: var(--saffron);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(224,123,32,0.4);
}
.btn-saffron:hover {
  background: var(--saffron-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(224,123,32,0.5);
}

.btn-wa {
  background: var(--green-wa);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.btn-wa:hover {
  background: var(--green-wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.trust-pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-pill {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.scroll-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== TRUST BAR ===== */
#trust-bar {
  background: var(--saffron);
  padding: 28px 24px;
}
.trust-bar-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--white);
}
.trust-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.trust-item strong {
  font-size: 1rem;
  font-weight: 600;
  display: block;
}
.trust-item span {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* ===== PACKAGES SECTION ===== */
#packages {
  padding: 80px 24px;
  background: var(--bg);
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 10px;
}
.section-header p {
  color: var(--text-light);
  font-size: 1rem;
}
.section-header .divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--red));
  margin: 16px auto 0;
  border-radius: 2px;
}

.packages-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pkg-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pkg-card-header {
  padding: 30px 24px 20px;
  text-align: center;
  position: relative;
}
.pkg-card-1 .pkg-card-header { background: linear-gradient(145deg, var(--navy) 0%, var(--saffron-dark) 100%); }
.pkg-card-2 .pkg-card-header { background: linear-gradient(145deg, #1a3a5c 0%, #2d4a8c 100%); }
.pkg-card-3 .pkg-card-header { background: linear-gradient(145deg, #1a2e4a 0%, var(--red) 100%); }
.pkg-card-4 .pkg-card-header { background: linear-gradient(145deg, #2d2000 0%, var(--gold) 100%); }

.pkg-emoji { font-size: 3rem; display: block; margin-bottom: 10px; }
.pkg-badges { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-bottom: 10px; }
.badge {
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.badge-popular { background: var(--saffron); color: var(--white); }
.badge-open { background: #22c55e; color: var(--white); }
.badge-premium { background: var(--gold); color: var(--navy-dark); }
.pkg-card-header h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.pkg-duration {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 500;
}

.pkg-card-body {
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pkg-highlights {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
}
.pkg-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.875rem;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.pkg-highlights li:last-child { border-bottom: none; }
.check { color: var(--green-wa); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.pkg-card-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.btn-outline {
  border: 2px solid var(--saffron);
  color: var(--saffron);
  padding: 10px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  transition: all 0.2s;
  display: block;
}
.btn-outline:hover { background: var(--saffron); color: var(--white); }
.btn-wa-sm {
  background: var(--green-wa);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  transition: all 0.2s;
  display: block;
}
.btn-wa-sm:hover { background: var(--green-wa-dark); }

.view-all-wrap {
  text-align: center;
  margin-top: 40px;
}
.btn-outline-lg {
  border: 2px solid var(--saffron);
  color: var(--saffron);
  padding: 13px 36px;
  border-radius: 35px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline-lg:hover { background: var(--saffron); color: var(--white); }

/* ===== HOW IT WORKS ===== */
#how-it-works {
  padding: 80px 24px;
  background: var(--navy);
}
#how-it-works .section-header h2 { color: var(--white); }
#how-it-works .section-header p { color: rgba(255,255,255,0.7); }

.steps-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--saffron);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 20px rgba(224,123,32,0.4);
}
.step-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.step-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===== TIER COMPARISON ===== */
#tiers {
  padding: 80px 24px;
  background: var(--white);
}

.tiers-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.tier-card {
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  background: var(--bg);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.tier-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.tier-card.navy-border { border-color: var(--navy); }
.tier-card.saffron-border { border-color: var(--saffron); transform: scale(1.02); background: var(--white); box-shadow: 0 8px 40px rgba(224,123,32,0.18); }
.tier-card.gold-border { border-color: var(--gold); }

.tier-icon { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.tier-card h3 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.tier-subtitle {
  color: var(--saffron);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 20px;
  display: block;
}

.tier-list {
  list-style: none;
  margin-bottom: 20px;
}
.tier-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 0;
  font-size: 0.875rem;
  color: var(--text-mid);
  border-bottom: 1px dashed var(--border);
}
.tier-list li:last-child { border-bottom: none; }
.tick { color: #22c55e; font-weight: 700; flex-shrink: 0; }
.cross { color: #ef4444; font-weight: 700; flex-shrink: 0; }

.vehicle-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}
.vbadge {
  background: rgba(27,42,94,0.08);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* ===== SERVICES ===== */
#services {
  padding: 80px 24px;
  background: var(--bg);
}
.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid var(--saffron);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-emoji { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.service-card h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 14px;
}
.service-list {
  list-style: none;
  text-align: left;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.875rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.service-list li:last-child { border-bottom: none; }
.dot { color: var(--saffron); font-weight: 700; flex-shrink: 0; }

/* ===== ENQUIRY FORM ===== */
#enquiry-form {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 50%, var(--red) 100%);
  position: relative;
  overflow: hidden;
}
#enquiry-form::before {
  content: 'ॐ';
  font-family: 'Tiro Devanagari Hindi', serif;
  position: absolute;
  font-size: 40vw;
  color: rgba(255,255,255,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
}

.form-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.form-left h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 8px;
}
.form-left > p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.925rem;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.45); }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  background: rgba(255,255,255,0.15);
}
.form-group textarea { resize: vertical; min-height: 90px; }

.btn-submit {
  grid-column: 1 / -1;
  background: var(--saffron);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 35px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(224,123,32,0.4);
}
.btn-submit:hover {
  background: var(--saffron-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(224,123,32,0.5);
}

.form-right {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.trust-box h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
}
.trust-row:last-of-type { border-bottom: none; }
.trust-row .icon { font-size: 1.3rem; flex-shrink: 0; width: 28px; }
.trust-quote {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 20px;
  line-height: 1.5;
  text-align: center;
}
.btn-wa-full {
  display: block;
  background: var(--green-wa);
  color: var(--white);
  text-align: center;
  padding: 13px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 16px;
  transition: background 0.2s;
}
.btn-wa-full:hover { background: var(--green-wa-dark); }

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 80px 24px;
  background: var(--bg);
}
.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: start;
}
.google-rating-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  position: sticky;
  top: 90px;
}
.g-logo { font-size: 2.5rem; margin-bottom: 8px; }
.g-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.g-stars { color: #f59e0b; font-size: 1.3rem; margin: 6px 0; }
.g-count { color: var(--text-light); font-size: 0.875rem; }
.g-name { color: var(--text-mid); font-size: 0.8rem; margin-top: 12px; font-style: italic; }

.reviews-col { display: flex; flex-direction: column; gap: 20px; }
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.review-card:hover { transform: translateX(6px); }
.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--red));
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer-info h4 { color: var(--navy); font-size: 1rem; }
.reviewer-city { color: var(--text-light); font-size: 0.8rem; }
.reviewer-pkg {
  color: var(--saffron);
  font-size: 0.78rem;
  font-weight: 500;
  background: rgba(224,123,32,0.1);
  padding: 2px 8px;
  border-radius: 8px;
}
.review-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 10px; }
.review-text { color: var(--text-mid); font-size: 0.9rem; line-height: 1.65; font-style: italic; }

/* ===== COUNTER SECTION ===== */
#stats {
  background: var(--saffron);
  padding: 60px 24px;
}
.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 6px;
}

/* ===== ADD-ONS ===== */
#addons {
  padding: 80px 24px;
  background: var(--white);
}
.addons-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.addon-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s;
  text-align: center;
}
.addon-card:hover {
  border-color: var(--saffron);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.addon-icon { font-size: 2.2rem; margin-bottom: 10px; display: block; }
.addon-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 8px; }
.addon-card p { color: var(--text-light); font-size: 0.84rem; line-height: 1.5; margin-bottom: 14px; }
.btn-wa-addon {
  display: inline-block;
  background: var(--green-wa);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.82rem;
  transition: background 0.2s;
}
.btn-wa-addon:hover { background: var(--green-wa-dark); }

/* ===== BLOG PREVIEW ===== */
#blog {
  padding: 80px 24px;
  background: var(--bg);
}
.blog-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.blog-thumb-1 { background: linear-gradient(135deg, var(--saffron-dark), var(--saffron)); }
.blog-thumb-2 { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.blog-thumb-3 { background: linear-gradient(135deg, var(--red), #c44); }
.blog-content { padding: 20px 20px 24px; }
.blog-tag {
  display: inline-block;
  background: rgba(224,123,32,0.1);
  color: var(--saffron);
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.blog-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { color: var(--text-light); font-size: 0.84rem; line-height: 1.5; margin-bottom: 14px; }
.blog-link { color: var(--saffron); font-weight: 600; font-size: 0.875rem; }

/* ===== FAQ ===== */
#faq {
  padding: 80px 24px;
  background: var(--white);
}
.faq-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.faq-left h2 { font-size: 2.4rem; color: var(--navy); margin-bottom: 14px; }
.faq-left p { color: var(--text-light); line-height: 1.7; margin-bottom: 24px; }
.faq-right { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 500;
  color: var(--navy);
  gap: 12px;
  transition: background 0.2s;
  font-size: 0.925rem;
}
.faq-question:hover { background: rgba(224,123,32,0.06); }
.faq-arrow {
  font-size: 1.2rem;
  color: var(--saffron);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-weight: 300;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 20px;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 20px 18px; }
.faq-answer p { color: var(--text-mid); font-size: 0.875rem; line-height: 1.7; }

/* ===== FOOTER ===== */
#footer {
  background: var(--navy-dark);
  padding: 60px 24px 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.footer-logo-text { display: flex; flex-direction: column; }
.footer-logo-text .brand-name { color: var(--saffron); font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; }
.footer-logo-text .brand-sub { color: rgba(255,255,255,0.6); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.footer-addr { color: rgba(255,255,255,0.6); font-size: 0.82rem; line-height: 1.7; margin-bottom: 16px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.social-link:hover { background: var(--saffron); transform: scale(1.1); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links li a:hover { color: var(--saffron); }
.footer-links li a::before { content: '›'; color: var(--saffron); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-contact-item:last-child { border-bottom: none; }
.footer-contact-item .ci { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer-hours { color: rgba(255,255,255,0.5); font-size: 0.78rem; margin-top: 4px; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.footer-jai { color: var(--saffron); font-size: 0.85rem; font-weight: 600; }

/* ===== FLOATING WA BUTTON ===== */
#wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s;
}
#wa-float:hover { transform: scale(1.1); animation: none; }
#wa-float svg { width: 30px; height: 30px; fill: var(--white); }

@keyframes waPulse {
  0% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4); }
  70% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav.main-nav { display: none; }
  .header-phone { display: none; }
  .hamburger { display: flex; }

  .packages-grid { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .tier-card.saffron-border { transform: none; }
  .services-grid { grid-template-columns: 1fr; }
  .form-container { grid-template-columns: 1fr; }
  .lead-form { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .google-rating-box { position: static; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .addons-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .faq-container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .addons-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .trust-pills { gap: 8px; }
  .trust-pill { font-size: 0.78rem; padding: 6px 12px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* WordPress integration */
.admin-bar #main-header { top: 32px; }
.yb-content-shell { max-width: 1180px; margin: 0 auto; padding: 72px 24px; }
.yb-package-hero { background: linear-gradient(135deg, var(--navy-dark), var(--navy-light)); color: #fff; padding: 92px 24px 104px; text-align: center; position: relative; overflow: hidden; }
.yb-package-hero::after { content: ''; position: absolute; inset: auto -10% -80px; height: 150px; background: var(--bg); transform: rotate(-3deg); }
.yb-package-hero .yb-icon { font-size: 4rem; display: block; margin-bottom: 16px; }
.yb-package-hero h1 { font-size: clamp(2.7rem, 7vw, 5.2rem); margin: 0 auto 12px; max-width: 900px; }
.yb-package-hero p { max-width: 760px; margin: 0 auto 28px; color: rgba(255,255,255,.86); font-size: 1.08rem; }
.yb-package-meta { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.yb-package-meta span { border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.1); padding: 7px 14px; border-radius: 999px; }
.yb-detail-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: start; }
.yb-panel { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); }
.yb-panel h2 { color: var(--navy); font-size: 2rem; margin-bottom: 18px; }
.yb-route { list-style: none; counter-reset: route; display: grid; gap: 16px; }
.yb-route li { counter-increment: route; display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: start; }
.yb-route li::before { content: counter(route); width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--saffron); color: #fff; font-weight: 700; }
.yb-check-list { list-style: none; display: grid; gap: 11px; }
.yb-check-list li { display: flex; gap: 10px; color: var(--text-mid); }
.yb-check-list li::before { content: '✓'; color: var(--saffron); font-weight: 800; }
.yb-package-cta { margin-top: 28px; padding: 34px; border-radius: var(--radius-lg); background: linear-gradient(135deg, #fff0de, #fff); border: 1px solid var(--border); text-align: center; }
.yb-package-cta h2 { color: var(--navy); font-size: 2.2rem; }
.yb-package-cta p { margin: 8px auto 20px; color: var(--text-mid); }
.yb-post-card { background:#fff; border:1px solid var(--border); border-radius:var(--radius); padding:24px; margin-bottom:18px; }
.yb-post-card h2 { color:var(--navy); margin-bottom:8px; }
.screen-reader-text { position:absolute!important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
@media (max-width: 782px) { .admin-bar #main-header { top: 46px; } }
@media (max-width: 820px) { .yb-detail-grid { grid-template-columns: 1fr; } .yb-package-hero { padding-top: 70px; } }
