/* =====================================================
   CareMyTrip — Chardham Yatra
   Aesthetic: Warm editorial — saffron warmth, ivory,
   deep charcoal. Feels like a premium travel journal.
   Fonts: Cormorant Garamond + DM Sans
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: #1c1812;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

:root {
  --saffron    : #E05C00;       /* Sacred saffron — temple fire    */
  --saffron-lt : #F07020;       /* Marigold hover                  */
  --gold       : #C9962A;       /* Sacred gold — temple ornaments  */
  --gold-lt    : #E0B040;       /* Light gold                      */
  --charcoal   : #1A0E06;       /* Deep sacred dark                */
  --ink        : #3A2518;       /* Warm brown body text            */
  --stone      : #7A6050;       /* Muted warm tone                 */
  --ivory      : #FFF9F0;       /* Pure sacred ivory               */
  --cream      : #F5EAD8;       /* Warm parchment                  */
  --border     : #E8D8C0;       /* Warm border                     */
  --white      : #ffffff;
  --topbar-bg  : #1A0E06;       /* Deep sacred charcoal            */
  --drop-shadow: 0 12px 40px rgba(26,14,6,0.14), 0 2px 8px rgba(26,14,6,0.07);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}


/* =====================================================
   TOP BAR
   ===================================================== */
.topbar {
  background: var(--topbar-bg);
  padding: 9px 0;
  font-size: 0.775rem;
  letter-spacing: 0.015em;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-sep {
  color: rgba(255,255,255,0.2);
  padding: 0 6px;
  font-size: 0.65rem;
}

.topbar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.62);
  transition: color 0.18s;
}

.topbar-link svg { flex-shrink: 0; opacity: 0.7; }
.topbar-link:hover { color: rgba(255,255,255,0.95); }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  color: rgba(255,255,255,0.5);
  transition: color 0.18s, background 0.18s;
}

.social-icon:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}


/* =====================================================
   MAIN HEADER
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(28,24,18,0.07);
}

/* Scroll progress line */
.header-line {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--saffron), var(--saffron-lt));
  transition: width 0.08s linear;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 24px;
}

/* --- Logo --- */
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

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


/* --- Nav --- */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 14px;
  height: 70px;
  font-size: 0.855rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.18s;
}

/* Underline slide-in on hover */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.nav-item:hover .nav-link,
.nav-link.active { color: var(--saffron); }

.nav-item:hover .nav-link::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-arrow {
  flex-shrink: 0;
  color: var(--stone);
  transition: transform 0.22s ease;
}

.has-drop:hover .nav-arrow { transform: rotate(180deg); }


/* --- Dropdown --- */
.dropdown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--drop-shadow);
  min-width: 220px;
  padding: 8px;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 100;
}

.has-drop:hover .dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Two-column dropdown layout */
.drop-inner {
  display: flex;
  gap: 0;
}

.drop-single { flex-direction: column; }

.drop-col {
  flex: 1;
  min-width: 210px;
}

.drop-col + .drop-col {
  border-left: 1px solid var(--cream);
  margin-left: 4px;
  padding-left: 4px;
}

.drop-heading {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 8px 12px 5px;
}

.drop-link {
  display: block;
  padding: 8px 12px;
  font-size: 0.845rem;
  color: var(--ink);
  border-radius: 6px;
  line-height: 1.3;
  transition: background 0.14s, color 0.14s, padding-left 0.14s;
  position: relative;
}

.drop-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0;
  background: var(--saffron);
  border-radius: 1px;
  transition: height 0.15s ease;
}

.drop-link:hover {
  background: var(--ivory);
  color: var(--saffron);
  padding-left: 16px;
}

.drop-link:hover::before { height: 60%; }

/* Chardham dropdown — wide two-column */
.has-drop:nth-child(3) .dropdown {
  left: 0;
  transform: translateX(0) translateY(6px);
  min-width: 540px;
}

.has-drop:nth-child(3):hover .dropdown {
  transform: translateX(0) translateY(0);
}

/* Hotels dropdown — right-align if near edge */
.has-drop:nth-last-child(2) .dropdown {
  left: auto;
  right: 0;
  transform: translateX(0) translateY(6px);
}

.has-drop:nth-last-child(2):hover .dropdown {
  transform: translateX(0) translateY(0);
}


/* --- Header CTA --- */
.header-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-enquire {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--saffron);
  color: #fff;
  padding: 10px 22px;
  border-radius: 5px;
  font-size: 0.855rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background 0.18s, box-shadow 0.18s;
}

.btn-enquire:hover {
  background: var(--saffron-lt);
  box-shadow: 0 4px 16px rgba(212,88,10,0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  width: 32px;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.2s ease;
}

.hamburger span:nth-child(2) { width: 75%; }

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* =====================================================
   MOBILE NAV
   ===================================================== */
.mobile-nav {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 70px;
  z-index: 899;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.28s ease,
              transform 0.28s ease;
  pointer-events: none;
}

.mobile-nav.open {
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mob-links {
  padding: 8px 20px;
  display: flex;
  flex-direction: column;
}

/* Staggered slide-in for each nav row */
.mobile-nav .mob-link,
.mobile-nav .mob-group {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.mobile-nav.open .mob-link,
.mobile-nav.open .mob-group {
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav.open .mob-link:nth-child(1),
.mobile-nav.open .mob-group:nth-child(1) { transition-delay: 0.06s; }
.mobile-nav.open .mob-link:nth-child(2),
.mobile-nav.open .mob-group:nth-child(2) { transition-delay: 0.10s; }
.mobile-nav.open .mob-link:nth-child(3),
.mobile-nav.open .mob-group:nth-child(3) { transition-delay: 0.14s; }
.mobile-nav.open .mob-link:nth-child(4),
.mobile-nav.open .mob-group:nth-child(4) { transition-delay: 0.18s; }
.mobile-nav.open .mob-link:nth-child(5),
.mobile-nav.open .mob-group:nth-child(5) { transition-delay: 0.22s; }
.mobile-nav.open .mob-link:nth-child(6),
.mobile-nav.open .mob-group:nth-child(6) { transition-delay: 0.26s; }

.mob-link {
  display: block;
  padding: 13px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--cream);
  transition: color 0.15s;
}

.mob-link:hover { color: var(--saffron); }
.mob-link:last-of-type { border-bottom: none; }

/* Mobile accordion groups */
.mob-group { border-bottom: 1px solid var(--cream); }

.mob-group-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 13px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  text-align: left;
}

.mob-group-toggle svg { transition: transform 0.2s ease; color: var(--stone); }
.mob-group-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.mob-group-toggle[aria-expanded="true"] { color: var(--saffron); }

.mob-sub {
  display: flex;
  flex-direction: column;
  padding: 0 0 0 16px;
  gap: 2px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.22s ease,
              padding 0.22s ease;
}

.mob-sub.open {
  max-height: 400px;
  opacity: 1;
  padding: 0 0 10px 16px;
}

.mob-sub a {
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--stone);
  transition: color 0.15s;
  border-bottom: none;
}

.mob-sub a:hover { color: var(--saffron); }

.mob-cta {
  display: block;
  margin: 14px 20px 20px;
  text-align: center;
  background: var(--saffron);
  color: #fff;
  padding: 12px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.18s;
}

.mob-cta:hover { background: var(--saffron-lt); }


/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .nav-link { padding: 0 10px; font-size: 0.82rem; }
}

@media (max-width: 960px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .topbar-right { display: none; }
  .header-inner {
    gap: 0;
    justify-content: space-between;
    position: relative;
  }
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .header-actions {
    position: relative;
    z-index: 1;
  }
  /* Left spacer mirrors .header-actions so the logo is truly centred */
  .header-inner::before {
    content: '';
    width: 40px; /* matches hamburger button (32px width + 4px padding each side) */
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .logo img { height: 40px; }
  .topbar-left .topbar-sep,
  .topbar-left .topbar-link:last-child { display: none; }
  .btn-enquire { display: none; }
}


/* =====================================================
   HERO — shorter, centered, image behind
   ===================================================== */
.hero {
  position: relative;
  padding: 130px 0 110px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* Slide dots */
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
}

.hero-dot.active {
  background: var(--saffron);
  width: 24px;
  border-radius: 4px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 8, 4, 0.42) 0%,
    rgba(18, 12, 6, 0.50) 60%,
    rgba(22, 15, 8, 0.62) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--saffron-lt);
  margin-bottom: 18px;
  padding: 5px 16px;
  border: 1px solid rgba(240, 96, 32, 0.4);
  border-radius: 50px;
  background: rgba(212, 88, 10, 0.12);
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.5;
  margin-bottom: 32px;
  font-weight: 400;
}

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

.hero-dhams span {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.82);
  text-transform: uppercase;
}

.hero-dhams i {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--saffron);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .hero { padding: 90px 0 80px; }
  .hero-title { font-size: 2.4rem; }
  .hero-sub { font-size: 0.92rem; }
}


/* =====================================================
   FORM BRIDGE — Spiritual: white bg, orange primary
   ===================================================== */
.form-bridge {
  background: #fff;
  padding: 0 0 52px;
  margin-top: -2px;
}

.bridge-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: -48px;
  position: relative;
  z-index: 10;
}

/* Top-left corner gradient accent */
.bridge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle at top left, rgba(224,92,0,0.18) 0%, rgba(245,166,35,0.10) 45%, transparent 70%);
  border-radius: 12px 0 0 0;
  pointer-events: none;
  z-index: 0;
}

/* Simple white header */
.bridge-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 30px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.bridge-head-left h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}

.bridge-head-left p {
  font-size: 0.78rem;
  color: var(--stone);
}

/* Call button — subtle on white */
.bridge-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 10px 16px;
  color: var(--ink);
  transition: border-color 0.18s, box-shadow 0.18s;
}

.bridge-phone:hover {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(224,92,0,0.08);
}

.bridge-phone svg { flex-shrink: 0; color: var(--saffron); }

.bridge-phone span {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
}

.bridge-phone strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

/* Form fields */
.bridge-form {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 30px 26px;
  background: #fff;
}

.bf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 110px;
  align-items: stretch;
}

.bf-field--sm {
  flex: 0 0 82px;
  min-width: 82px;
  align-self: stretch;
}

.bf-field--btn {
  flex: 0 0 auto;
  min-width: 140px;
  padding-top: 26px;
}

.bf-field label {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #999;
  white-space: nowrap;
}

.bf-field label em {
  color: var(--saffron);
  font-style: normal;
}

.bf-field input,
.bf-field select {
  width: 100%;
  height: 40px;
  padding: 9px 11px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 0.83rem;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fff;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.bf-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: #fff;
  padding-right: 26px;
  cursor: pointer;
}

.bf-field input:focus,
.bf-field select:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(224,92,0,0.08);
}

.bf-field input::placeholder { color: #ccc; }

/* Submit — solid orange */
.bf-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 20px;
  background: var(--saffron);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 4px 14px rgba(224,92,0,0.3);
}

.bf-submit:hover {
  background: var(--saffron-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(224,92,0,0.4);
}

.bf-submit:active { transform: translateY(0); }

/* Responsive */
@media (max-width: 960px) {
  .bridge-head { padding: 18px 22px; }
  .bridge-form { padding: 18px 22px 22px; gap: 10px; }
  .bf-field { flex: 1 1 calc(50% - 10px); min-width: 120px; }
  .bf-field--sm { flex: 1 1 calc(33% - 10px); min-width: 80px; }
  .bf-field--btn { flex: 1 1 100%; padding-top: 0; }
  .bf-submit { padding: 13px; }
}

@media (max-width: 600px) {
  .bridge-card { margin-top: -32px; border-radius: 10px; }
  .bridge-head { flex-direction: column; align-items: flex-start; }
  .bridge-phone { width: 100%; }
  .bf-field,
  .bf-field--sm { flex: 1 1 calc(50% - 10px); }
}


/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-section {
  padding: 48px 0;
  background: #fff;
}

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

/* Image */
.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Decorative corner accent */
.about-image::before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  border-left: 3px solid var(--saffron);
  border-bottom: 3px solid var(--saffron);
  border-radius: 0 0 0 8px;
  z-index: 2;
}

.about-image::after {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border-right: 3px solid var(--saffron);
  border-top: 3px solid var(--saffron);
  border-radius: 0 8px 0 0;
  z-index: 2;
}

/* Content */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 18px;
  display: inline-block;
  position: relative;
}

.section-title::first-letter,
.welcome-text-heading::first-letter,
.journey-title::first-letter,
.book-header .section-title::first-letter {
  font-size: 1.6em;
  font-weight: 700;
  color: var(--saffron);
  line-height: 0.8;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--saffron-lt));
  border-radius: 2px;
  animation: titleLine 0.6s ease forwards;
}

@keyframes titleLine {
  from { width: 0; opacity: 0; }
  to   { width: 48px; opacity: 1; }
}

.welcome-text-heading {
  display: inline-block;
  position: relative;
}

.welcome-text-heading::after,
.journey-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--saffron-lt));
  border-radius: 2px;
  animation: titleLine 0.6s ease forwards;
}

.journey-title {
  display: inline-block;
  position: relative;
}

.section-check {
  color: var(--saffron);
  font-size: 1.1rem;
  margin-right: 4px;
}

.about-para {
  font-size: 0.92rem;
  color: var(--stone);
  line-height: 1.8;
}

.about-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.about-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}

.about-checks li svg {
  flex-shrink: 0;
  color: var(--saffron);
  background: rgba(224,92,0,0.08);
  border-radius: 50%;
  padding: 3px;
  width: 22px;
  height: 22px;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--saffron);
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 4px 14px rgba(224,92,0,0.25);
}

.about-cta:hover {
  background: var(--saffron-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(224,92,0,0.35);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image img { height: 300px; }
}

@media (max-width: 600px) {
  .about-section { padding: 32px 0; }
  .about-image::before,
  .about-image::after { display: none; }
}


/* =====================================================
   PACKAGES SECTION
   ===================================================== */
.packages-section {
  padding: 48px 0;
  background: #fff;
}

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

.packages-content .section-title {
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* Show image below content on mobile */
  .packages-grid .about-image { order: 2; }
  .packages-grid .packages-content { order: 1; }
}

@media (max-width: 600px) {
  .packages-section { padding: 32px 0; }
}


/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-section {
  padding: 48px 0;
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-content .section-title { margin-bottom: 28px; }

/* Accordion */
.why-accordion {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.why-item {
  border-bottom: 1px solid var(--border);
}

.why-item:last-child { border-bottom: none; }

.why-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  transition: background 0.25s ease, color 0.25s ease;
}

.why-toggle:hover { background: var(--ivory); }

.why-item.open .why-toggle {
  color: var(--saffron);
  background: rgba(224,92,0,0.04);
}

.why-icon {
  flex-shrink: 0;
  color: var(--stone);
  transition: transform 0.25s ease;
}

.why-item.open .why-icon {
  transform: rotate(180deg);
  color: var(--saffron);
}

.why-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
}

.why-item.open .why-body {
  max-height: 200px;
  padding: 0 20px 16px;
}

.why-body p {
  font-size: 0.87rem;
  color: var(--stone);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid .about-image { order: -1; }
  .why-grid .about-image img { height: 280px; }
}

@media (max-width: 600px) {
  .why-section { padding: 32px 0; }
}


/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services-section {
  padding: 48px 0;
  background: #fff;
}

.services-header {
  text-align: center;
  margin-bottom: 52px;
}

.services-header.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  gap: 16px;
}

.services-header.split .section-label { display: block; }

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--saffron);
  border: 1.5px solid var(--saffron);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.18s, color 0.18s, transform 0.15s;
}

.view-all-btn:hover {
  background: var(--saffron);
  color: #fff;
  transform: translateY(-1px);
}

.air-section .view-all-btn {
  background: #fff;
}

.services-header .section-title { margin-bottom: 0; }

@media (max-width: 640px) {
  .view-all-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;       /* hide text */
    gap: 0;
    justify-content: center;
    flex-shrink: 0;
  }

  .view-all-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.service-card {
  position: relative;
  padding: 36px 24px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
  transition: background 0.25s, transform 0.25s;
  cursor: default;
}

.service-card:last-child { border-right: none; }

/* Small number badge */
.service-card::before {
  content: attr(data-num);
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--saffron);
  background: rgba(224,92,0,0.08);
  padding: 2px 8px;
  border-radius: 20px;
  pointer-events: none;
  transition: color 0.25s, background 0.25s;
}

.service-card:hover::before {
  color: #fff;
  background: rgba(255,255,255,0.18);
}

.service-card:hover {
  background: var(--saffron);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(224,92,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--saffron);
  transition: background 0.25s, color 0.25s;
}

.service-card:hover .service-icon {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.service-card h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.35;
  transition: color 0.25s;
}

.service-card:hover h3 { color: #fff; }

.service-card p {
  font-size: 0.8rem;
  color: var(--stone);
  line-height: 1.7;
  transition: color 0.25s;
}

.service-card:hover p { color: rgba(255,255,255,0.82); }

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-card:nth-child(3) { border-right: none; }
  .service-card:nth-child(4),
  .service-card:nth-child(5) { border-top: 1px solid var(--border); }
  .service-card:nth-child(5) { border-right: none; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card { border-right: 1px solid var(--border); }
  .service-card:nth-child(even) { border-right: none; }
  .service-card:nth-child(n+3) { border-top: 1px solid var(--border); }
  .service-card:nth-child(3) { border-right: 1px solid var(--border); }
  .service-card:last-child { border-right: none; grid-column: 1 / -1; }
  .services-section { padding: 32px 0; }
}


/* =====================================================
   PACKAGE CARDS & AIR SECTION
   ===================================================== */
.air-section {
  padding: 48px 0;
  background: #fff;
}

.air-section .pkg-card {
  background: #fff;
  border: none;
  box-shadow: none;
}

@media (max-width: 560px) {
  .air-section { padding: 56px 0; }
}

.pkg-section {
  padding: 48px 0;
  background: #ffffff !important;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pkg-card {
  background: #fff;
  border-radius: 12px;
  border: none;
  overflow: hidden;
  transition: transform 0.25s;
}

.pkg-card:hover {
  transform: translateY(-4px);
}

.pkg-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.pkg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pkg-card:hover .pkg-image img { transform: scale(1.05); }

.pkg-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--saffron);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
}

.pkg-badge--gold { background: #C9962A; }
.pkg-badge--green { background: #3aaa6e; }

.pkg-body { padding: 20px; }

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

.pkg-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--stone);
  font-weight: 500;
}

.pkg-meta svg { color: var(--saffron); flex-shrink: 0; }

.pkg-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.35;
}

.pkg-highlights {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pkg-highlights li {
  font-size: 0.8rem;
  color: var(--stone);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

.pkg-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--saffron);
}

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.pkg-icons {
  display: flex;
  gap: 8px;
}

.pkg-btn-call,
.pkg-btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  flex-shrink: 0;
  transition: transform 0.18s, box-shadow 0.18s;
}

.pkg-btn-call {
  background: var(--saffron);
  color: #fff;
}

.pkg-btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(224,92,0,0.35);
}

.pkg-btn-wa {
  background: #25D366;
  color: #fff;
}

.pkg-btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37,211,102,0.35);
}

.pkg-btn-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  color: #666;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.18s, background 0.18s, color 0.18s, box-shadow 0.18s;
}

.pkg-btn-share:hover {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26,14,6,0.2);
}

.pkg-from {
  display: block;
  font-size: 0.68rem;
  color: var(--stone);
  margin-bottom: 2px;
}

.pkg-price strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
}

.pkg-price strong em {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--stone);
  font-style: normal;
}

.pkg-btn {
  display: inline-flex;
  align-items: center;
  background: var(--saffron);
  color: #fff;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.18s, transform 0.15s;
  flex-shrink: 0;
}

.pkg-btn:hover {
  background: var(--saffron-lt);
  transform: translateY(-1px);
}

@media (max-width: 860px) {
  .pkg-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .pkg-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  }
  .pkg-grid::-webkit-scrollbar { display: none; }
  .pkg-grid .pkg-card {
    flex: 0 0 78vw;
    max-width: 300px;
    scroll-snap-align: start;
  }
  .pkg-section { padding: 24px 0; }
  .air-section { padding: 24px 0; }
}


/* =====================================================
   JOURNEY CTA SECTION
   ===================================================== */
.journey-section {
  position: relative;
  background: url('../images/slide-chardham.jpg') center/cover no-repeat;
  padding: 90px 0;
  overflow: hidden;
}

.journey-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26,14,6,0.88) 0%, rgba(26,14,6,0.65) 55%, rgba(26,14,6,0.5) 100%);
}

/* floating light dots */
.journey-particles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,200,100,0.18);
  animation: jpFloat 6s ease-in-out infinite;
}
.journey-particles span:nth-child(1) { width:120px; height:120px; top:10%;  left:5%;  animation-delay:0s; }
.journey-particles span:nth-child(2) { width:60px;  height:60px;  top:60%;  left:2%;  animation-delay:1s; }
.journey-particles span:nth-child(3) { width:80px;  height:80px;  top:80%;  left:20%; animation-delay:2s; }
.journey-particles span:nth-child(4) { width:40px;  height:40px;  top:20%;  left:50%; animation-delay:0.5s; }
.journey-particles span:nth-child(5) { width:100px; height:100px; top:5%;   right:8%; animation-delay:1.5s; }
.journey-particles span:nth-child(6) { width:50px;  height:50px;  top:70%;  right:5%; animation-delay:2.5s; }
.journey-particles span:nth-child(7) { width:70px;  height:70px;  top:40%;  right:15%;animation-delay:3s; }
.journey-particles span:nth-child(8) { width:35px;  height:35px;  top:55%;  left:45%; animation-delay:1s; }

@keyframes jpFloat {
  0%,100% { transform: translateY(0) scale(1); opacity:0.18; }
  50%      { transform: translateY(-18px) scale(1.08); opacity:0.32; }
}

.journey-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.journey-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--saffron-lt);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 5px 14px;
  border: 1px solid rgba(224,92,0,0.5);
  border-radius: 20px;
}

.journey-title {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}

.journey-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 32px;
}

.journey-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.journey-btn-primary {
  background: var(--saffron);
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.18s, transform 0.15s;
}
.journey-btn-primary:hover {
  background: var(--saffron-lt);
  transform: translateY(-2px);
}

.journey-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.18s, transform 0.15s;
}
.journey-btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* right card */
.journey-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 36px 30px;
  text-align: center;
}

.journey-om {
  font-size: 4rem;
  color: var(--saffron-lt);
  line-height: 1;
  margin-bottom: 24px;
  font-family: serif;
  text-shadow: 0 0 30px rgba(240,112,32,0.5);
}

.journey-dhams {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.journey-dham {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 10px;
  color: #fff;
}

.journey-dham svg { color: var(--saffron-lt); }

.journey-dham span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.journey-stat {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  gap: 8px;
}

.journey-stat div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.journey-stat strong {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--saffron-lt);
}

.journey-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

@media (max-width: 860px) {
  .journey-inner { grid-template-columns: 1fr; gap: 40px; }
  .journey-right { max-width: 420px; margin: 0 auto; width: 100%; }
}

@media (max-width: 560px) {
  .journey-section { padding: 44px 0; }
  .journey-dhams { grid-template-columns: 1fr 1fr; }
}

/* =====================================================
   BOOK YOUR CHARDHAM SECTION
   ===================================================== */
.book-section {
  padding: 48px 0;
  background: #fff;
}

.book-header {
  max-width: 760px;
  margin-bottom: 52px;
}

.book-header .section-title {
  margin-top: 10px;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.35;
}

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

.book-images {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.book-img-large {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 240px;
}

.book-img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.book-img-large:hover img { transform: scale(1.04); }

.book-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.book-img-small {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 160px;
}

.book-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.book-img-small:hover img { transform: scale(1.05); }

.book-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 14px;
  background: linear-gradient(to top, rgba(26,14,6,0.75) 0%, transparent 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.book-text p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 16px;
}

.book-text p:last-child { margin-bottom: 0; }

.book-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.book-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  transition: box-shadow 0.2s;
}

.book-feat:hover {
  box-shadow: 0 4px 18px rgba(224,92,0,0.1);
}

.book-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff3e8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--saffron);
}

.book-feat h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.book-feat p {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 860px) {
  .book-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 560px) {
  .book-section { padding: 32px 0; }
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */
.testi-section {
  padding: 48px 0;
  background: #ffffff;
}

.testi-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.testi-grid::-webkit-scrollbar { display: none; }

.testi-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: #fff;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  border-right: 1px solid var(--border);
}

.testi-card:last-child {
  border-right: none;
}

.testi-quote {
  position: absolute;
  top: 22px;
  right: 22px;
}

.testi-text {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.8;
  flex: 1;
}

.testi-stars {
  display: flex;
  gap: 3px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-lt));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--border);
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--stone);
}

@media (max-width: 560px) {
  .testi-card { flex: 0 0 82vw; }
  .testi-section { padding: 32px 0; }
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
}

.footer-top { padding: 64px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
}

.footer-logo img {
  height: 52px;
  width: auto;
  margin-bottom: 20px;
  opacity: 1;
}

.footer-about p {
  font-size: 0.84rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 22px;
}

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

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.footer-social a:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #fff;
}

.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.footer-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.18s, padding-left 0.18s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--saffron);
  font-size: 1rem;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer-contact li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--saffron);
}

.footer-contact a {
  color: rgba(255,255,255,0.75);
  transition: color 0.18s;
}

.footer-contact a:hover { color: var(--saffron-lt); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  transition: color 0.18s;
}

.footer-legal a:hover { color: var(--saffron-lt); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-top { padding: 48px 0 36px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq-section {
  padding: 48px 0;
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  transition: color 0.18s;
}

.faq-toggle:hover { color: var(--saffron); }

.faq-icon {
  flex-shrink: 0;
  color: var(--saffron);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}

.faq-item.open .faq-body {
  max-height: 200px;
  padding-bottom: 16px;
}

.faq-body p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.8;
}

@media (max-width: 760px) {
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
  .faq-section { padding: 32px 0; }
}

/* =====================================================
   WELCOME TEXT SECTION
   ===================================================== */
.welcome-text-section {
  background: #fff;
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.welcome-text-inner {
  max-width: 100%;
}

.welcome-text-heading {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.welcome-text-sub {
  font-size: 1rem;
  font-weight: 600;
  color: var(--saffron);
  margin: 28px 0 12px;
}

.welcome-text-inner p {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 14px;
}

.welcome-text-inner p strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* First letter drop cap — paragraphs */
.welcome-text-inner p:first-of-type::first-letter {
  font-size: 3rem;
  font-weight: 700;
  color: var(--saffron);
  float: left;
  line-height: 0.85;
  margin-right: 8px;
  margin-top: 4px;
}

.welcome-text-inner p:last-child { margin-bottom: 0; }

@media (max-width: 560px) {
  .welcome-text-section { padding: 32px 0; }
}

/* =====================================================
   SEO TEXT SECTION
   ===================================================== */
.seo-section {
  background: #fff;
  padding: 64px 0;
}

.seo-block {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.seo-block:last-child {
  border-bottom: 1px solid var(--border);
}

.seo-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
  position: sticky;
  top: 90px;
  align-self: start;
}

.seo-heading::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--saffron);
  margin-top: 10px;
  border-radius: 2px;
}

.seo-body p {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.9;
  margin-bottom: 14px;
}

.seo-body p:last-child { margin-bottom: 0; }

@media (max-width: 720px) {
  .seo-block { grid-template-columns: 1fr; gap: 16px; }
  .seo-heading { position: static; }
  .seo-section { padding: 28px 0; }
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  background: var(--saffron);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}


/* Two-column layout */
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 52px;
  align-items: center;
}

/* Image side */
.cta-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.cta-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  filter: brightness(0.85);
}

/* Om beside title */
.cta-om-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.cta-om-svg {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.cta-om-svg text {
  fill: #fff;
}

.cta-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 0;
}

.cta-para {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.85;
  margin-bottom: 28px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--saffron);
  padding: 13px 32px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
}

.cta-btn:hover {
  background: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

@media (max-width: 860px) {
  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-image img { height: 240px; }
}

@media (max-width: 600px) {
  .cta-banner { padding: 48px 0; }
  .cta-btn { width: 100%; justify-content: center; }
}
