*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Sora", sans-serif;
  background: var(--off-white);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── UTILITY ─── */
.section {
  padding: 80px 0;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 10px;
}
.section-title {
  font-family: "Tiro Devanagari Hindi", serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--teal-dk);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--ink-60);
  max-width: 620px;
  line-height: 1.75;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--saffron);
  color: var(--white);
}
.btn-primary:hover {
  background: #c5500a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 97, 10, 0.35);
}
.btn-outline {
  background: transparent !important;
  color: #e7e7e7;
  border-color: #7f8789;
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}
:root {
  --saffron: #e8610a;
  --saffron-lt: #f5873a;
  --saffron-pale: #fff3ea;
  --teal: #0a5c6b;
  --teal-dk: #063e4a;
  --teal-lt: #ebf6f8;
  --gold: #c8971a;
  --gold-lt: #fdf5dc;
  --ink: #12232a;
  --ink-60: rgba(18, 35, 42, 0.6);
  --ink-30: rgba(18, 35, 42, 0.3);
  --white: #ffffff;
  --off-white: #f8f5f0;
  --card-shadow: 0 4px 28px rgba(10, 92, 107, 0.12);
  --radius: 14px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* ─── BREADCRUMB ─── */
.breadcrumb {
  background: var(--teal-lt);
  padding: 13px 0;
  font-size: 0.82rem;
  margin-bottom: 0px !important;
}
.breadcrumb ol {
  display: flex;
  gap: 0;
  list-style: none;
  flex-wrap: wrap;
}
.breadcrumb li + li::before {
  content: "›";
  margin: 0 8px;
  color: var(--ink-30);
}
.breadcrumb a {
  color: var(--teal);
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb li:last-child {
  color: var(--ink-60);
}
/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid #e8edef;
  padding: 22px 0;
}
.trust-items {
  display: flex;
  gap: 0;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  flex: 1;
  min-width: 160px;
}
.trust-item + .trust-item {
  border-left: 1px solid #e8edef;
}
.trust-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.trust-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-dk);
}
.trust-text span {
  font-size: 0.73rem;
  color: var(--ink-60);
}

.highlights {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border-radius: 10px;
  padding: 13px 16px;
  box-shadow: 0 2px 12px rgba(10, 92, 107, 0.07);
}
.highlight-icon {
  width: 32px;
  height: 32px;
  background: var(--saffron-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.highlight-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}

.hero {
  background: var(--teal-dk);
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 70% 80% at 70% 50%,
      rgba(232, 97, 10, 0.18) 0%,
      transparent 65%
    ),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 97, 10, 0.18);
  border: 1px solid rgba(232, 97, 10, 0.4);
  color: var(--saffron-lt);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  margin-bottom: 18px;
}
.hero-badge::before {
  content: "★";
  font-size: 0.85rem;
}
.hero h1 {
  font-family: "Tiro Devanagari Hindi", serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 14px;
}
.hero h1 span {
  color: var(--saffron-lt);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-stat {
}
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--saffron-lt);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 3px;
}

/* Hero Quote Card */
.quote-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.quote-card h3 {
  font-family: "Tiro Devanagari Hindi", serif;
  font-size: 1.15rem;
  color: var(--teal-dk);
  margin-bottom: 18px;
}
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quote-form select,
.quote-form input {
  padding: 11px 14px;
  border-radius: 9px;
  border: 1.5px solid #dde6e9;
  font-size: 0.88rem;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background: var(--off-white);
  transition: border-color 0.2s;
  width: 100%;
}
.quote-form select:focus,
.quote-form input:focus {
  outline: none;
  border-color: var(--teal);
}
.quote-form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 14px;
}
.quote-note {
  font-size: 0.73rem;
  color: var(--ink-60);
  text-align: center;
  margin-top: 8px;
}

/* ─── ABOUT SECTION ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-block {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dk) 100%);
  padding: 40px;
  color: white;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.about-img-block::before {
  content: "📦";
  font-size: 8rem;
  opacity: 0.12;
  position: absolute;
  top: 20px;
  right: 20px;
}
.about-img-block-badge {
  background: var(--saffron);
  border-radius: 12px;
  padding: 16px 20px;
  display: inline-block;
  margin-bottom: 20px;
}
.about-img-block-badge strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}
.about-img-block-badge span {
  font-size: 0.78rem;
  opacity: 0.85;
}
.about-img-block h3 {
  font-family: "Tiro Devanagari Hindi", serif;
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: unset;
}
.about-img-block p {
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.7;
  color: unset;
}
.highlights {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border-radius: 10px;
  padding: 13px 16px;
  box-shadow: 0 2px 12px rgba(10, 92, 107, 0.07);
}
.highlight-icon {
  width: 32px;
  height: 32px;
  background: var(--saffron-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.highlight-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}

/* ─── SERVICES ─── */
.services {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 44px;
}
.service-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1.5px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  border-color: var(--teal);
  box-shadow: var(--card-shadow);
  transform: translateY(-4px);
  background: var(--white);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover .service-icon {
  background: var(--saffron);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-lt);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  transition: var(--transition);
}
.service-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--teal-dk);
  margin-bottom: 8px;
}
.service-desc {
  font-size: 0.83rem;
  color: var(--ink-60);
  line-height: 1.65;
}
.service-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--saffron);
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ─── HOW IT WORKS ─── */
.how {
  background: var(--teal-lt);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 50px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--saffron) 100%);
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal-dk);
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 3px solid var(--teal-lt);
  box-shadow: 0 0 0 4px var(--teal-lt);
}
.step:last-child .step-num {
  background: var(--saffron);
}
.step-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--teal-dk);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.82rem;
  color: var(--ink-60);
  line-height: 1.65;
}

/* ─── POPULAR ROUTES ─── */
.routes {
  background: var(--off-white);
}
.routes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.route-pill {
  background: var(--white);
  border: 1.5px solid #dde6e9;
  border-radius: 50px;
  padding: 9px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.route-pill:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.route-pill::before {
  content: "→";
  font-size: 0.9rem;
}

/* ─── FAQ ─── */
.faq {
  background: var(--white);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 44px;
}
.faq-item {
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid transparent;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: var(--teal);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 20px;
  text-align: left;
  font-family: "Sora", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.faq-q-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--teal-dk);
  line-height: 1.5;
}
.faq-toggle {
  width: 24px;
  height: 24px;
  background: var(--teal-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--teal);
}
.faq-item.open .faq-toggle {
  background: var(--teal);
  color: white;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
  font-size: 0.86rem;
  color: var(--ink-60);
  line-height: 1.75;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 20px 18px;
}

/* ─── LOCATION HIGHLIGHT ─── */
.location-section {
  background: var(--teal-dk);
  color: white;
}
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.location-section .section-title {
  color: white;
}
.location-section .section-label {
  color: var(--saffron-lt);
}
.location-content {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  margin-bottom: 28px;
}
.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.location-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}
.location-map-placeholder {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.map-icon {
  font-size: 4rem;
  opacity: 0.5;
}
.map-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}
.location-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.location-feature {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.8);
}
.location-feature strong {
  display: block;
  font-size: 0.75rem;
  color: var(--saffron-lt);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}

/* ─── REVIEWS ─── */
.reviews {
  background: var(--off-white);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 2px 16px rgba(10, 92, 107, 0.06);
}
.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-text {
  font-size: 0.87rem;
  color: var(--ink-60);
  line-height: 1.75;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.review-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}
.review-date {
  font-size: 0.75rem;
  color: var(--ink-60);
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--teal-lt);
  border-radius: 16px;
  padding: 24px 32px;
  margin-bottom: 32px;
}
.rating-big {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--teal-dk);
  line-height: 1;
}
.rating-stars-big {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.rating-count {
  font-size: 0.85rem;
  color: var(--ink-60);
}

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, var(--saffron) 0%, #c5500a 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-band h2 {
  font-family: "Tiro Devanagari Hindi", serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: white;
  margin-bottom: 12px;
  position: relative;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  margin-bottom: 32px;
  position: relative;
}
.cta-band-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}
.btn-white {
  background: white;
  color: var(--saffron);
}
.btn-white:hover {
  background: #fff3ea;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ─── SCROLL ANIMATIONS ─── */
/* .reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .reveal-delay-1 { transition-delay: .1s; }
        .reveal-delay-2 { transition-delay: .2s; }
        .reveal-delay-3 { transition-delay: .3s; }
        .reveal-delay-4 { transition-delay: .4s; } */

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .quote-card {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .steps::before {
    display: none;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .location-inner {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
  .trust-items {
    flex-direction: column;
  }
  .trust-item + .trust-item {
    border-left: none;
    border-top: 1px solid #e8edef;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .topbar-links {
    display: none;
  }
}
