/* ══════════════════════════════════════════════════
   Skandhaguru Yatra Services — Matching kicons.in Style
   Brand: Forest Green #4A6B52 + Gold #E8C84A + White
   ══════════════════════════════════════════════════ */

:root {
  --green:       #4A6B52;    /* nav, footer, split bg */
  --green-dark:  #3A5540;    /* hover, darker elements */
  --green-light: #E8F0EA;    /* light mint tint */
  --gold:        #E8C84A;    /* script font, accents */
  --gold-dark:   #C8A82A;
  --teal-mid:    #2D6B6B;    /* links, highlights */
  --white:       #FFFFFF;
  --off-white:   #F8F8F6;
  --text-dark:   #1A2E2A;
  --text-mid:    #3D5048;
  --text-muted:  #6B7E73;
  --border:      #E0E8E2;
  --card-shadow: 0 2px 16px rgba(0,0,0,.08);
  --card-hover:  0 8px 36px rgba(0,0,0,.14);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── NAVBAR ──────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: var(--green);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.nav-inner {
  max-width: 1300px; margin: 0 auto;
  padding: 10px 40px;
  display: flex; align-items: center; gap: 32px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-circle {
  width: 50px; height: 50px; flex-shrink: 0;
}
.nav-logo-circle svg { width: 50px; height: 50px; }
.nav-brand-text {
  display: flex; flex-direction: column; line-height: 1.2;
}
.brand-main {
  font-family: 'Inter', sans-serif;
  font-size: .82rem; font-weight: 700;
  color: var(--white); letter-spacing: .12em;
}
.brand-sub {
  font-size: .6rem; color: rgba(255,255,255,.65);
  letter-spacing: .18em; text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 36px; list-style: none;
  margin-left: 28px; flex: 1;
}
.nav-links a {
  color: rgba(255,255,255,.88); text-decoration: none;
  font-size: .92rem; font-weight: 400;
  transition: color .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  margin-left: auto;
  border: 1.5px solid rgba(255,255,255,.55);
  color: var(--white); text-decoration: none;
  padding: 9px 22px; border-radius: 24px;
  font-size: .88rem; font-weight: 500;
  white-space: nowrap;
  transition: all .25s;
}
.nav-cta .arrow { margin-left: 4px; }
.nav-cta:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: white; border-radius: 2px;
  transition: all .3s;
}

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: var(--green-dark); z-index: 999;
  flex-direction: column; padding: 12px 0;
  border-bottom: 2px solid var(--gold);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: white; text-decoration: none;
  padding: 13px 32px; font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu a:hover { background: rgba(255,255,255,.08); }

/* ─── HERO ────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.45) 50%,
    rgba(0,0,0,.65) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 900px; padding: 0 24px;
}
.hero-script {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--gold);
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 800;
  color: var(--white);
  line-height: .95;
  margin-bottom: 22px;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
  letter-spacing: -.02em;
}
.hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.9);
  max-width: 580px; margin: 0 auto 36px;
  line-height: 1.65;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.hero-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--text-dark);
  padding: 14px 40px; border-radius: 4px;
  text-decoration: none; font-weight: 700;
  font-size: .95rem; letter-spacing: .04em;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(232,200,74,.4);
}
.hero-btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,200,74,.5);
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
}
.scroll-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.6);
  animation: scrollBob 2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%,100% { transform: translateY(0); opacity: .6; }
  50% { transform: translateY(10px); opacity: 1; }
}

/* ─── POPULAR TOURS ───────────────────────────────── */
.popular-tours {
  position: relative; min-height: 600px;
  display: flex; flex-direction: column;
  justify-content: flex-start; overflow: hidden;
  padding: 60px 0 0;
}
.tours-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.tours-overlay {
  position: absolute; inset: 0;
  background: rgba(40, 65, 48, .72);
}
.tours-content {
  position: relative; z-index: 2;
  padding: 0 60px 32px;
}
.section-script {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem; color: rgba(255,255,255,.75);
  display: block; margin-bottom: 4px;
}
.section-heading-white {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--white);
}
.tours-slider-wrap {
  position: relative; z-index: 2;
  padding: 0 60px 60px;
  overflow: hidden;
}
.tours-slider {
  display: flex; gap: 20px;
  transition: transform .5s ease;
}
.tour-slide {
  flex: 0 0 calc(33.33% - 14px);
  border-radius: 14px; overflow: hidden;
  position: relative; cursor: pointer;
  box-shadow: 0 6px 28px rgba(0,0,0,.3);
  transition: transform .3s ease;
}
.tour-slide:hover { transform: translateY(-6px); }
.tour-slide img {
  width: 100%; height: 280px;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.tour-slide:hover img { transform: scale(1.05); }
.slide-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 18px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
  color: white; font-weight: 600; font-size: 1rem;
}
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.2); border: none;
  color: white; font-size: 1.6rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s;
  z-index: 3;
}
.slider-btn:hover { background: rgba(255,255,255,.4); }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

/* ─── FEATURED DESTINATIONS ──────────────────────── */
.featured {
  background: var(--white);
  padding: 80px 0;
}
.featured-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 40px;
}
.section-tag-sm {
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem; color: var(--teal-mid);
  display: block; text-align: center; margin-bottom: 6px;
}
.section-heading-dark {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 700; color: var(--text-dark);
  text-align: center; margin-bottom: 56px;
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.dest-card {
  border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  background: var(--white);
  transition: all .3s ease;
  box-shadow: var(--card-shadow);
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-hover);
  border-color: transparent;
}
.dest-img-wrap {
  overflow: hidden; height: 200px;
}
.dest-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.dest-card:hover .dest-img-wrap img { transform: scale(1.06); }
.dest-body {
  padding: 18px 20px 20px;
}
.dest-body h3 {
  font-size: 1rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 8px;
  line-height: 1.4;
}
.dest-places {
  font-size: .82rem; color: var(--text-muted);
  line-height: 1.55; margin-bottom: 14px;
}
.pin { margin-right: 3px; font-size: .8rem; }
.dest-price {
  font-size: 1.4rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 16px;
}
.dest-price span {
  font-size: .85rem; font-weight: 400;
  color: var(--text-muted);
}
.dest-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.dest-duration {
  font-size: .82rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 5px;
}
.clock { font-size: .85rem; }
.book-btn {
  background: var(--white);
  border: 1.5px solid var(--text-dark);
  color: var(--text-dark); text-decoration: none;
  padding: 8px 18px; border-radius: 6px;
  font-size: .82rem; font-weight: 600;
  transition: all .25s;
}
.book-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

/* ─── SPLIT SECTION ───────────────────────────────── */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--green);
  position: relative; overflow: hidden;
}
/* Subtle mandala watermark */
.split-section::before {
  content: 'ॐ';
  position: absolute; left: -80px; top: 50%;
  transform: translateY(-50%);
  font-size: 400px; color: rgba(255,255,255,.04);
  pointer-events: none; line-height: 1;
  font-family: serif;
}
.split-text {
  padding: 72px 60px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.section-script.gold { color: var(--gold); }
.section-script.dark { color: var(--teal-mid); }
.split-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700; color: var(--white);
  line-height: 1.25; margin: 10px 0 22px;
}
.split-text p {
  font-size: .95rem; color: rgba(255,255,255,.8);
  line-height: 1.8; margin-bottom: 28px;
}
.inclusions {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 20px; margin-bottom: 32px;
}
.inclusion-item {
  font-size: .88rem; color: rgba(255,255,255,.85);
  display: flex; align-items: center; gap: 8px;
}
.check {
  color: var(--gold); font-size: 1rem; flex-shrink: 0;
}
.split-btn {
  display: inline-flex; align-items: center;
  background: var(--gold); color: var(--text-dark);
  padding: 13px 32px; border-radius: 4px;
  text-decoration: none; font-weight: 700;
  font-size: .92rem; align-self: flex-start;
  transition: all .25s;
}
.split-btn:hover {
  background: #fff;
  transform: translateX(4px);
}
.split-image {
  overflow: hidden;
}
.split-image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s ease;
}
.split-section:hover .split-image img { transform: scale(1.03); }

/* ─── STATS ───────────────────────────────────────── */
.stats-section {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 40px;
}
.stats-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-around; gap: 20px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 2.4rem; font-weight: 800;
  color: var(--green); display: block;
  line-height: 1;
}
.stat-label {
  font-size: .78rem; color: var(--text-muted);
  letter-spacing: .08em; text-transform: uppercase;
  margin-top: 6px; display: block;
}
.stat-divider {
  width: 1px; height: 50px;
  background: var(--border);
}

/* ─── TESTIMONIALS ────────────────────────────────── */
.testimonials {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.testi-image {
  overflow: hidden; position: relative;
}
.testi-image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.testi-content {
  background: #EEF4F2;
  padding: 72px 64px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.testi-content h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700; color: var(--text-dark);
  line-height: 1.3; margin: 8px 0 36px;
}
.testi-slide { display: none; }
.testi-slide.active { display: block; }
.stars {
  color: var(--gold);
  font-size: 1.2rem; letter-spacing: .1em;
  margin-bottom: 16px;
}
.testi-text {
  font-size: .96rem; color: var(--text-mid);
  line-height: 1.8; margin-bottom: 24px;
}
.testi-author {
  display: flex; align-items: center; gap: 16px;
}
.testi-line {
  width: 36px; height: 2.5px;
  background: var(--teal-mid); flex-shrink: 0;
}
.testi-author strong {
  display: block; font-size: .95rem;
  color: var(--text-dark); font-weight: 600;
}
.testi-author span {
  display: block; font-size: .82rem;
  color: var(--teal-mid); margin-top: 2px;
}
.testi-nav {
  display: flex; gap: 12px; margin-top: 32px;
}
.testi-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid #BFCFC8;
  background: transparent; color: var(--text-mid);
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.testi-btn:hover {
  border-color: var(--green);
  background: var(--green); color: white;
}

/* ─── CONTACT ─────────────────────────────────────── */
.contact-section {
  background: var(--white);
  padding: 90px 0;
  border-top: 1px solid var(--border);
}
.contact-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700; color: var(--text-dark);
  line-height: 1.25; margin: 8px 0 16px;
}
.contact-text > p {
  font-size: .96rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 36px;
}
.contact-details {
  display: flex; flex-direction: column; gap: 22px;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green-light); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-item strong {
  display: block; font-size: .9rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 3px;
}
.contact-item span {
  font-size: .87rem; color: var(--text-muted); line-height: 1.5;
}
.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 36px;
}
.contact-form h3 {
  font-size: 1.25rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 24px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px; font-size: .92rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: white; outline: none;
  transition: border .25s;
  margin-bottom: 14px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74,107,82,.1);
}
.contact-form select { cursor: pointer; }
.contact-form textarea { resize: vertical; }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--green); color: white;
  border: none; border-radius: 6px;
  font-size: .96rem; font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer; letter-spacing: .04em;
  transition: all .25s;
}
.form-submit:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--green);
  padding: 64px 0 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 40px 56px;
  display: grid; grid-template-columns: 2fr 1fr 1.5fr;
  gap: 64px;
}
.footer-logo {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.footer-brand-name {
  display: flex; flex-direction: column;
  line-height: 1.3;
}
.footer-brand-name span:first-child {
  font-size: .88rem; font-weight: 700;
  color: white; letter-spacing: .1em;
}
.footer-brand-name span:last-child {
  font-size: .6rem; color: rgba(255,255,255,.55);
  letter-spacing: .18em; text-transform: uppercase;
}
.footer-brand > p {
  font-size: .88rem; color: rgba(255,255,255,.7);
  line-height: 1.7; margin-bottom: 22px;
  max-width: 300px;
}
.social-links {
  display: flex; gap: 10px;
}
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8); text-decoration: none;
  transition: all .25s;
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover {
  background: rgba(255,255,255,.25);
  color: white; transform: translateY(-2px);
}
.footer-col h4 {
  font-size: .95rem; font-weight: 700;
  color: white; margin-bottom: 20px;
  letter-spacing: .04em;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(255,255,255,.68); text-decoration: none;
  font-size: .88rem; transition: color .25s;
}
.footer-col a:hover { color: white; }
.footer-contact-items {
  display: flex; flex-direction: column; gap: 18px;
}
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
}
.fci-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; flex-shrink: 0;
}
.footer-contact-item strong {
  display: block; font-size: .88rem; font-weight: 600;
  color: white; margin-bottom: 2px;
}
.footer-contact-item span {
  font-size: .83rem; color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 40px;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
  max-width: 1200px; margin: 0 auto;
}
.footer-bottom p {
  font-size: .82rem; color: rgba(255,255,255,.55);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: .82rem; color: rgba(255,255,255,.55);
  text-decoration: none; transition: color .25s;
}
.footer-links a:hover { color: white; }

/* ─── FLOATING BUTTONS ────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 80px; right: 24px;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 900; text-decoration: none;
  transition: transform .25s, box-shadow .25s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}
.back-to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal-mid); color: white;
  border: none; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  z-index: 900; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-3px); }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { gap: 22px; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .split-image { height: 360px; }
  .testimonials { grid-template-columns: 1fr; }
  .testi-image { height: 320px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-inner { gap: 12px; }
  .stat-num { font-size: 1.9rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 10px 20px; }
  .hero-title { font-size: clamp(3rem, 15vw, 7rem); }
  .dest-grid { grid-template-columns: 1fr; }
  .tours-content, .tours-slider-wrap { padding-left: 20px; padding-right: 20px; }
  .tour-slide { flex: 0 0 80%; }
  .featured-inner { padding: 0 20px; }
  .split-text { padding: 48px 24px; }
  .inclusions { grid-template-columns: 1fr; }
  .testi-content { padding: 48px 28px; }
  .contact-inner { padding: 0 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 24px 40px; }
  .footer-bottom { padding: 18px 24px; flex-direction: column; align-items: flex-start; }
  .stats-inner { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { flex: 1 0 40%; }
}
