/* ===========================================================
   TRAVEL YATRI RISHIKESH — GLOBAL STYLES
   Design system: deep night-river navy + sunset ember + marigold accent
   =========================================================== */

:root {
  /* ---- Core palette ---- */
  --ink:        #0B1F3A;   /* primary 60% — deep river-night navy */
  --river:      #142B4D;   /* secondary navy — depth, gradients   */
  --ember:      #F4A259;   /* sunset orange 30% — CTAs, warmth    */
  --marigold:   #FFD166;   /* accent gold 10% — highlights, aarti */
  --mist:       #F8FAFC;   /* near-white text on dark              */
  --stone:      #94A3B8;   /* muted text, borders                  */
  --black-deep: #020617;   /* darkest shadow / overlay              */

  /* ---- Glass ---- */
  --glass-bg:     rgba(248, 250, 252, 0.06);
  --glass-border: rgba(248, 250, 252, 0.14);
  --glass-blur:   14px;

  /* ---- Gradients ---- */
  --gradient-primary: linear-gradient(135deg, #0B1F3A 0%, #142B4D 50%, #F4A259 100%);
  --gradient-accent:  linear-gradient(135deg, #F4A259 0%, #FFD166 100%);
  --gradient-river:   linear-gradient(180deg, rgba(11,31,58,0) 0%, rgba(11,31,58,0.85) 70%, #0B1F3A 100%);

  /* ---- Type scale ---- */
  --font-display: 'Sora', sans-serif;
  --font-body:    'Inter', sans-serif;

  --fs-h1: clamp(2.25rem, 5vw + 1rem, 4rem);
  --fs-h2: clamp(1.75rem, 3vw + 1rem, 2.75rem);
  --fs-h3: clamp(1.25rem, 1.5vw + 1rem, 1.75rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;

  /* ---- Spacing / radius ---- */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --section-pad: clamp(3.5rem, 8vw, 7rem);

  /* ---- Shadows ---- */
  --shadow-soft: 0 20px 60px -20px rgba(2, 6, 23, 0.6);
  --shadow-glow: 0 0 40px rgba(244, 162, 89, 0.25);
}

/* ===========================================================
   RESET & BASE
   =========================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--mist);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { margin: 0 0 1em; color: var(--stone); }

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

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

ul { list-style: none; margin: 0; padding: 0; }

button { font-family: inherit; cursor: pointer; }

/* Visible keyboard focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--marigold);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding-block: var(--section-pad);
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.75rem;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--ember);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-head.center { margin-inline: auto; text-align: center; }

/* ===========================================================
   BUTTONS
   =========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--ink);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(244, 162, 89, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--mist);
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
}

.btn-outline:hover {
  border-color: var(--ember);
  background: rgba(244, 162, 89, 0.08);
}

.btn-whatsapp {
  background: #25D366;
  color: #04210f;
}

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }

/* ===========================================================
   GLASSMORPHISM CARD
   =========================================================== */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--radius-md);
}


/* ===========================================================
   HEADER / NAVBAR
   =========================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(11, 31, 58, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.35);
  padding: 0.7rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--mist);
  text-decoration: none;
}

.brand img {
  height: 42px;
  width: auto;
  flex-shrink: 0;
}

.brand span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

nav[aria-label="Primary"] {
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 44px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--mist);
  opacity: 0.9;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  opacity: 1;
  color: var(--ember);
}

.has-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  background: rgba(20, 43, 77, 0.98);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  backdrop-filter: blur(14px);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown li {
  width: 100%;
}

.dropdown a {
  display: block;
  min-height: auto;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  font-size: 0.9rem;
  opacity: 0.95;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  background: rgba(244, 162, 89, 0.12);
  color: var(--ember);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.icon-btn,
.hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--mist);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.icon-btn:hover,
.hamburger:hover,
.icon-btn:focus-visible,
.hamburger:focus-visible {
  background: rgba(244, 162, 89, 0.14);
  color: var(--ember);
}

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

.hamburger span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(88vw, 360px);
  height: 100dvh;
  z-index: 999;
  padding: 5.75rem 1.25rem 1.5rem;
  background: #081a31;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
  overflow-y: auto;
}

.mobile-panel.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-panel .nav-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.mobile-panel .nav-links > li {
  width: 100%;
  border-bottom: 1px solid var(--glass-border);
}

.mobile-panel .nav-links > li:last-child {
  border-bottom: 0;
}

.mobile-panel .nav-links a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0.95rem 0;
  font-size: 1rem;
  width: 100%;
}

.mobile-panel .has-dropdown {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.mobile-panel .has-dropdown > a {
  flex: 1;
  min-width: 0;
}

.mobile-panel .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--mist);
  background: transparent;
  border: 0;
  flex-shrink: 0;
}

.mobile-panel .dropdown-toggle i {
  transition: transform 0.25s ease;
}

.mobile-panel .has-dropdown.is-open .dropdown-toggle i {
  transform: rotate(180deg);
}

.mobile-panel .dropdown {
  position: static;
  width: 100%;
  margin: 0;
  padding: 0 0 0.75rem 1rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  display: none;
}

.mobile-panel .has-dropdown.is-open .dropdown {
  display: block;
}

.mobile-panel .dropdown a {
  padding: 0.65rem 0;
  font-size: 0.95rem;
  color: rgba(240, 244, 248, 0.78);
}

.mobile-panel .dropdown a:hover,
.mobile-panel .dropdown a:focus-visible {
  color: var(--ember);
  background: transparent;
}

.mobile-cta {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(2, 6, 23, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Tablet */
@media (max-width: 1024px) {
  .nav-links {
    gap: 1rem;
  }

  .header-actions .btn {
    display: none !important;
  }
}

/* Mobile nav switch */
@media (max-width: 900px) {
  nav[aria-label="Primary"] {
    display: none;
  }

  .header-actions .icon-btn {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .site-header {
    padding: 0.8rem 0;
  }

  .brand span {
    max-width: 160px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .container.nav-inner {
    gap: 0.75rem;
  }

  .brand {
    font-size: 0.98rem;
  }

  .brand img {
    height: 38px;
  }

  .mobile-panel {
    width: 100%;
    padding-inline: 1rem;
  }
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(88vw, 360px);
  height: 100dvh;
  z-index: 999;
  padding: 5.5rem 1.25rem 1.5rem;
  background: #081a31;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
  overflow-y: auto;
}

.mobile-panel.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--mist);
  z-index: 2;
}

.mobile-close:hover,
.mobile-close:focus-visible {
  background: rgba(244, 162, 89, 0.16);
  color: var(--ember);
}

.mobile-panel .nav-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-panel .nav-links > li {
  width: 100%;
  border-bottom: 1px solid var(--glass-border);
  padding-block: 0.1rem;
}

.mobile-panel .has-dropdown {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.mobile-panel .has-dropdown > a {
  flex: 1;
  min-width: 0;
  padding-right: 0.75rem;
}

.mobile-panel .nav-links a {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 0;
  font-size: 1rem;
  color: var(--mist);
  text-decoration: none;
}

.mobile-panel .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: var(--mist);
  flex-shrink: 0;
}

.mobile-panel .dropdown-toggle i {
  transition: transform 0.25s ease;
}

.mobile-panel .has-dropdown.is-open .dropdown-toggle i {
  transform: rotate(180deg);
}

.mobile-panel .dropdown {
  display: none;
  position: static;
  width: 100%;
  margin: 0;
  padding: 0 0 0.75rem 1rem;
  list-style: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.mobile-panel .has-dropdown.is-open .dropdown {
  display: block;
}

.mobile-panel .dropdown li {
  width: 100%;
}

.mobile-panel .dropdown a {
  display: block;
  min-height: auto;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  color: rgba(240, 244, 248, 0.78);
}

.mobile-panel .dropdown a:hover,
.mobile-panel .dropdown a:focus-visible {
  color: var(--ember);
  background: transparent;
}

@media (max-width: 480px) {
  .mobile-panel {
    width: 100%;
    padding-inline: 1rem;
  }
}

@media (max-width: 900px) {
  .mobile-panel .dropdown {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .mobile-panel .has-dropdown.is-open .dropdown {
    display: block !important;
  }
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2,6,23,0.55) 0%, rgba(11,31,58,0.55) 45%, rgba(11,31,58,0.97) 100%),
    linear-gradient(100deg, rgba(2,6,23,0.75) 0%, rgba(2,6,23,0.1) 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: end;
  width: 100%;
}

.hero-text h1 { color: var(--mist); margin-bottom: 1rem; }
.hero-text h1 .accent-word {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text p.lead {
  font-size: 1.05rem;
  color: rgba(248,250,252,0.8);
  max-width: 480px;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.5rem;
}

.hero-stat { text-align: left; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--marigold);
  display: block;
}
.hero-stat .label { font-size: 0.78rem; color: var(--stone); }

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248,250,252,0.6);
}

.scroll-cue .line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--ember), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===========================================================
   RIVER CURRENT DIVIDER — signature element
   =========================================================== */
.river-divider {
  display: block;
  width: 100%;
  height: 70px;
  margin: 0;
}

.river-divider path {
  stroke: var(--ember);
  stroke-width: 1.5;
  fill: none;
  opacity: 0.55;
  stroke-dasharray: 6 10;
}

.river-divider .flow-line-2 { stroke: var(--marigold); opacity: 0.3; }

.river-divider .current-anim {
  animation: flowDash 6s linear infinite;
}

@keyframes flowDash {
  to { stroke-dashoffset: -160; }
}

/* ===========================================================
   SERVICE / FEATURE CARDS
   =========================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
}

.service-card:hover { transform: translateY(-8px); }

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  z-index: -2;
}

.service-card:hover img { transform: scale(1.08); }

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,31,58,0.1) 0%, rgba(2,6,23,0.92) 100%);
  z-index: -1;
}

.service-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}

.service-card .icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: var(--ink);
  margin-bottom: 0.85rem;
  font-size: 1.1rem;
}

.service-card h3 { color: var(--mist); margin-bottom: 0.25rem; font-size: 1.25rem; }
.service-card p { font-size: 0.85rem; margin-bottom: 0.85rem; color: var(--stone); }
.service-card .price-tag { font-size: 0.78rem; color: var(--marigold); font-weight: 600; }
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mist);
  margin-top: 0.6rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}

.service-card:hover .card-link { opacity: 1; transform: translateY(0); }

/* ===========================================================
   WHY CHOOSE US
   =========================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  padding: 2rem 1.5rem;
  text-align: left;
}

.why-card .why-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(244,162,89,0.12);
  color: var(--ember);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.why-card h3 { font-size: 1.05rem; color: var(--mist); }
.why-card p { font-size: 0.88rem; margin: 0; }

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.testimonial-card {
  padding: 2rem;
  height: 100%;
}

.testimonial-card .stars { color: var(--marigold); margin-bottom: 1rem; font-size: 0.85rem; }
.testimonial-card p.quote { color: var(--mist); font-size: 0.95rem; opacity: 0.92; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.25rem; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-author .name { font-weight: 600; font-size: 0.9rem; color: var(--mist); }
.testimonial-author .trip { font-size: 0.78rem; color: var(--stone); }

/* ===========================================================
   STATS STRIP
   =========================================================== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(244,162,89,0.1), rgba(255,209,102,0.05));
  border: 1px solid var(--glass-border);
}

.stat-block { text-align: center; }
.stat-block .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--marigold);
}
.stat-block .stat-label { font-size: 0.82rem; color: var(--stone); margin-top: 0.25rem; }

/* ===========================================================
   GALLERY PREVIEW
   =========================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform 0.4s ease;
}

.gallery-item { overflow: hidden; border-radius: var(--radius-sm); cursor: pointer; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item.tall { grid-row: span 2; }

/* ===========================================================
   BLOG CARDS
   =========================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.blog-card { overflow: hidden; border-radius: var(--radius-md); }
.blog-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-meta { font-size: 0.75rem; color: var(--ember); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.6rem; }
.blog-card h3 { font-size: 1.05rem; color: var(--mist); }

/* ===========================================================
   FAQ ACCORDION
   =========================================================== */
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--glass-border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0.25rem;
  background: none;
  border: none;
  color: var(--mist);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}
.faq-question .plus { transition: transform 0.3s ease; color: var(--ember); font-size: 1.3rem; }
.faq-item.is-open .faq-question .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner { padding: 0 0.25rem 1.4rem; font-size: 0.92rem; }

/* ===========================================================
   CONTACT CTA
   =========================================================== */
.contact-cta {
  border-radius: var(--radius-lg);
  background: var(--gradient-primary);
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer {
  background: var(--black-deep);
  padding-top: var(--section-pad);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(248,250,252,0.08);
}

.footer-brand p { font-size: 0.88rem; max-width: 280px; }
.footer-col h4 { font-size: 0.95rem; color: var(--mist); margin-bottom: 1.1rem; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a { font-size: 0.88rem; color: var(--stone); transition: color 0.2s; }
.footer-col a:hover { color: var(--ember); }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: var(--stone);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===========================================================
   FLOATING ACTION BUTTONS
   =========================================================== */
.fab-stack {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 950;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}

.fab:hover { transform: scale(1.08); }
.fab-whatsapp { background: #25D366; color: #04210f; }
.fab-call { background: var(--gradient-accent); color: var(--ink); }

.fab-pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  opacity: 0.6;
  animation: fabPulse 2.2s ease-out infinite;
  z-index: -1;
}

@keyframes fabPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* Mobile bottom nav bar */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 940;
  background: rgba(11, 31, 58, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--glass-border);
  padding: 0.6rem 0.5rem env(safe-area-inset-bottom, 0.6rem);
  justify-content: space-around;
}

.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.65rem;
  color: var(--stone);
}

.mobile-bottom-nav a.active { color: var(--ember); }
.mobile-bottom-nav i { font-size: 1.1rem; }

/* ===========================================================
   PAGE HEADER (for inner pages)
   =========================================================== */
.page-hero {
  padding: 9rem 0 4rem;
  position: relative;
  background: var(--gradient-primary);
  overflow: hidden;
}

.breadcrumb-trail { display: flex; gap: 0.5rem; align-items: center; font-size: 0.85rem; color: var(--stone); margin-bottom: 1rem; }
.breadcrumb-trail a { color: var(--stone); }
.breadcrumb-trail a:hover { color: var(--ember); }
.breadcrumb-trail .sep { opacity: 0.5; }
.breadcrumb-trail .current { color: var(--marigold); }

/* ===========================================================
   FORMS
   =========================================================== */
.form-field { margin-bottom: 1.25rem; }
.form-field label { display: block; font-size: 0.85rem; margin-bottom: 0.5rem; color: var(--mist); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: rgba(248,250,252,0.04);
  color: var(--mist);
  font-family: var(--font-body);
  font-size: 0.92rem;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--stone); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--ember); outline: none; }

/* ===========================================================
   AOS-style fallback (in case AOS CSS not loaded) + utility
   =========================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ===========================================================
   RESPONSIVE BREAKPOINTS
   320 / 375 / 425 / 768 / 1024 / 1440 / 1920
   =========================================================== */

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .header-actions .icon-btn.call-icon { display: none; }
  .hamburger { display: flex; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mobile-bottom-nav { display: flex; }
  .fab-stack { bottom: 5.5rem; }
  body { padding-bottom: 64px; }
  .contact-cta { padding: 2.25rem 1.5rem; }
}

@media (max-width: 425px) {
  .container { padding-inline: 1.1rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; padding: 1rem; gap: 0.75rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 375px) {
  .btn { padding: 0.75rem 1.4rem; font-size: 0.88rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
}

@media (min-width: 1440px) {
  .container { max-width: 1360px; }
}

@media (min-width: 1920px) {
  .container { max-width: 1480px; }
}
