:root {
  --color-saffron: #F59E0B;
  --color-saffron-deep: #D97706;
  --color-maroon: #932E2E;
  --color-maroon-deep: #7A1F1F;
  --color-gold: #D4A574;
  --color-gold-soft: #E8C9A0;
  --color-cream: #FBF8F3;
  --color-cream-deep: #F5EDE0;
  --color-ganga-blue: #346a8a;
  --color-text: #3a2b1a;
  --color-muted: #7a6750;

  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.12);

  --radius-lg: 12px;
  --radius-md: 10px;
  --radius-sm: 8px;
  --radius-pill: 999px;

  --font-heading: "Noto Serif", "Noto Serif Devanagari", "Georgia", serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --spacing-base: 8px;
  --spacing-section-desktop: 64px;
  --spacing-section-mobile: 40px;
  --spacing-card-gap: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  line-height: 1.6;
  margin: 0 0 0.75rem;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--color-maroon);
  margin: 0 0 0.75rem;
  letter-spacing: 0.05em;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 2.8rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
}

h3 {
  font-size: 1.25rem;
}

ul {
  padding-left: 1.1rem;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* HEADER & NAV */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to right,
    rgba(255, 248, 236, 0.95),
    rgba(252, 236, 209, 0.95),
    rgba(255, 248, 236, 0.96)
  );
  border-bottom: 1px solid rgba(196, 153, 87, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 20px rgba(35, 16, 5, 0.22));
}

.brand-symbol {
  font-size: 1.6rem;
  filter: drop-shadow(0 0 6px rgba(240, 154, 46, 0.7));
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.82rem;
  color: var(--color-muted);
}

.nav {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.nav-link {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--color-ganga-blue);
  font-weight: 500;
  white-space: nowrap;
}

.nav-link:hover {
  border-color: rgba(90, 139, 175, 0.3);
  background: rgba(255, 255, 255, 0.8);
}

.nav-link.active {
  background: linear-gradient(135deg, var(--color-saffron), var(--color-gold));
  color: #3f1403;
  box-shadow: 0 4px 12px rgba(215, 120, 34, 0.4);
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 0.6rem 1.1rem;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand-subtitle {
    font-size: 0.76rem;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .nav-link {
    padding: 0.28rem 0.7rem;
    font-size: 0.8rem;
  }
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  max-height: 88vh;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff9ee;
}

.hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.42) saturate(1.05);
}

/* Removed static gradient background - using video background instead */

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.5), transparent 60%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.75));
  z-index: -1;
  animation: gradientFade 4s ease-in-out infinite alternate;
}

@keyframes gradientFade {
  0% {
    background: radial-gradient(circle at top, rgba(0, 0, 0, 0.5), transparent 60%),
      linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.75));
  }
  100% {
    background: radial-gradient(circle at top, rgba(0, 0, 0, 0.55), transparent 60%),
      linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.8));
  }
}

.hero-content {
  position: relative;
  text-align: left;
  display: grid;
  gap: 1.2rem;
  width: 100%;
  z-index: 1;
}

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffe8b7;
  margin-bottom: 0.7rem;
}

.hero h1 {
  color: #fffaf1;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  max-width: 38rem;
  margin-top: 0.6rem;
  color: #ffeed4;
}

.hero-highlight-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.hero-chip {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(252, 211, 158, 0.7);
  background: radial-gradient(circle at 30% 0%, rgba(255, 248, 230, 0.15), rgba(80, 39, 8, 0.9));
  font-size: 0.78rem;
  color: #ffe8c2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-cta {
  margin-top: 1.5rem;
}

.cta-note {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: #ffe6c0;
}

.hero-decor {
  display: none;
}

.hero-decor-left {
  left: -50px;
}

.hero-decor-right {
  right: -40px;
}

/* HERO LAYOUT EXTRA (DECORATIVE INFO CARD) */

.hero-layout {
  display: grid;
  gap: 1.5rem;
}

.hero-side-card {
  max-width: 320px;
  margin-top: 0.5rem;
  background: radial-gradient(circle at top, rgba(255, 237, 195, 0.1), rgba(39, 19, 25, 0.9));
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem 0.9rem;
  border: 1px solid rgba(255, 217, 164, 0.75);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.65),
    0 0 40px rgba(255, 189, 92, 0.5);
}

@media (min-width: 860px) {
  .hero-layout {
    grid-template-columns: minmax(0, 3.2fr) minmax(0, 2.2fr);
    align-items: flex-start;
  }
  
  .hero-side-card {
    margin-left: auto;
  }
}

@media (max-width: 859px) {
  .hero-side-card {
    max-width: 100%;
    margin-top: var(--spacing-card-gap);
  }
}

.hero-side-title {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffdeac;
  margin-bottom: 0.3rem;
}

.hero-side-text {
  font-size: 0.9rem;
  color: #ffe8c9;
}

.hero-side-highlight {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #fff5d3;
}

.hero-side-highlight span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #fffbe8, #f3a441);
  box-shadow: 0 0 18px rgba(255, 211, 137, 0.9);
  font-size: 0.95rem;
}


@media (max-width: 720px) {
  .hero {
    min-height: auto;
    max-height: none;
    height: auto;
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
    justify-content: flex-start;
  }

  .hero-content {
    width: 100%;
    gap: 0.8rem;
    padding: 0 1.25rem;
  }

  .hero h1 {
    font-size: 1.4rem;
    line-height: 1.1;
    margin: 0 0 0.3rem 0;
  }

  .hero-kicker {
    font-size: 0.7rem;
    margin-bottom: 0.3rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: 100%;
    margin: 0.3rem 0 0.6rem 0;
  }

  .hero-cta {
    margin-top: 0.8rem;
  }

  .hero-layout {
    gap: 0.8rem;
  }

  .hero-side-card {
    max-width: 100%;
    padding: 0.7rem;
    font-size: 0.75rem;
  }

  .hero-side-title {
    font-size: 0.7rem;
    margin-bottom: 0.2rem;
  }

  .hero-side-text {
    font-size: 0.75rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* GENERIC SECTIONS */

.section {
  padding: calc(var(--spacing-section-mobile) - 8px) 0;
}

@media (max-width: 420px) {
  .section-inner {
    padding: 1rem;
  }

  .hero h1 {
    font-size: 1.15rem;
    line-height: 1.05;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  .media-card img {
    height: auto;
    display: block;
  }
}

.section-alt {
  background: var(--color-cream-deep);
}

@media (min-width: 720px) {
  .section {
    padding: var(--spacing-section-desktop) 0;
  }
}

.section-inner {
  background: rgba(255, 255, 255, 0.96);
  padding: 1.8rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(212, 165, 116, 0.3);
}

.section-header {
  text-align: center;
  margin-bottom: 1.3rem;
}

.section-header p {
  max-width: 33rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-muted);
}

.section-header.align-left {
  text-align: left;
  margin-bottom: 1rem;
}

.bullet-list {
  margin: 0.3rem 0 0;
  color: var(--color-text);
}

.bullet-list li {
  margin-bottom: 0.35rem;
}

.section-cta {
  margin-top: 1.3rem;
  text-align: center;
}

/* STATS STRIP (HOME PAGE) */

.stats-section {
  padding-top: 0;
}

.stats-strip {
  display: grid;
  gap: 0.8rem;
}

.stat-card {
  background: linear-gradient(145deg, var(--color-cream), var(--color-cream-deep));
  border-radius: var(--radius-md);
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(212, 165, 116, 0.3);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-maroon);
}

.stat-label {
  font-size: 0.88rem;
  color: var(--color-muted);
}

@media (min-width: 720px) {
  .stats-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* PAGE HERO (INNER PAGES) */

.page-hero {
  padding: 2.1rem 0 1.8rem;
  background: linear-gradient(145deg, rgba(255, 247, 229, 0.96), rgba(250, 221, 173, 0.96));
  border-bottom: 1px solid rgba(233, 193, 126, 0.7);
}

.page-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-ganga-blue);
  margin-bottom: 0.5rem;
}

.page-subtitle {
  max-width: 35rem;
  color: var(--color-muted);
}

/* GRIDS */

.about-grid {
  display: grid;
  gap: 1.3rem;
}

.about-highlight {
  background: linear-gradient(145deg, var(--color-cream), var(--color-cream-deep));
  border-radius: var(--radius-md);
  padding: 1rem 1rem 0.9rem;
  border: 1px solid rgba(212, 165, 116, 0.3);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-highlight h3 {
  margin-bottom: 0.5rem;
}

.about-highlight ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  color: var(--color-text);
}

.media-grid {
  display: grid;
  gap: var(--spacing-card-gap);
  grid-template-columns: 1fr;
}

.media-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212, 165, 116, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.media-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.media-card figcaption {
  padding: 0.65rem 0.8rem;
  font-size: 0.9rem;
  color: var(--color-muted);
  background: linear-gradient(135deg, #fffdf7, #f5e4cb);
}

.gallery-grid {
  margin-bottom: 1.6rem;
}

.info-grid {
  display: grid;
  gap: 1.3rem;
}

.service-grid {
  display: grid;
  gap: 1.3rem;
}

.service-highlight {
  background: linear-gradient(140deg, var(--color-cream), var(--color-cream-deep));
  padding: 1rem 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 165, 116, 0.3);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-note {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.mantra-grid {
  display: grid;
  gap: 1.3rem;
  align-items: center;
}

.mantra-preview-media {
  display: grid;
  gap: 0.8rem;
}

.mantra-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.mantra-layout {
  /* display: grid; */
  gap: 1.3rem;
}

.mantra-media-group {
  display: grid;
  gap: 1rem;
  
}

.video-block {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 165, 116, 0.3);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-text {
  padding: 0.8rem 0.9rem 0.9rem;
}

.mantra-thumbnails {
  display: grid;
  gap: 0.9rem;
}

.small-card figcaption {
  font-size: 0.86rem;
}

/* VIDEO GRID (2x2 Layout) */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.video-card {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 165, 116, 0.3);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.video-embed-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Ensure native <video> elements also fill the responsive embed container
   (we use the same aspect-ratio padding trick for iframes and videos) */
.video-embed-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  z-index: 1;
  pointer-events: auto;
}

.video-description {
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text);
  margin: 0;
}

.single-video {
  max-width: 100%;
}

/* MANTRA VIDEOS GRID (2x3 Layout) */
.mantra-videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .mantra-videos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

/* Ensure video cards match site style */
.mantra-videos-grid .video-card {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 165, 116, 0.3);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.mantra-videos-grid .video-description {
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0;
}

.importance-grid {
  display: grid;
  gap: 1.3rem;
  align-items: flex-start;
}

.vedic-aside {
  background: radial-gradient(circle at top, #4b1516, #071524);
  color: #ffe8c5;
  border-radius: var(--radius-md);
  padding: 1rem 1rem 1.1rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 220, 151, 0.7);
}

.shloka-box {
  text-align: left;
}

.shloka-heading {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffdc9a;
  margin-bottom: 0.35rem;
}

.shloka-text {
  font-family: "Noto Serif Devanagari", var(--font-heading);
  font-size: 1rem;
  line-height: 1.8;
}

.shloka-meaning {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: #ffe5bf;
}

.cta-box {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.cta-actions {
  text-align: left;
}

@media (min-width: 720px) {
  .about-grid {
    grid-template-columns: 3fr 2fr;
    align-items: flex-start;
  }

  .media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .info-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mantra-grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  }

  .mantra-layout {
    grid-template-columns: minmax(0, 2.7fr) minmax(0, 3fr);
  }

  .mantra-thumbnails {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .importance-grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  }

  .cta-box {
    grid-template-columns: minmax(0, 2.3fr) minmax(0, 2.5fr);
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

/* SERVICE CARDS (WHAT WE OFFER) */

.service-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.1rem;
}

.service-card {
  background: linear-gradient(145deg, var(--color-cream), var(--color-cream-deep));
  border-radius: var(--radius-md);
  padding: 0.9rem 0.9rem 0.95rem;
  border: 1px solid rgba(212, 165, 116, 0.3);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.25), transparent 55%);
  opacity: 0;
  transform: translate3d(-30%, -30%, 0);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.service-card h3 {
  margin-bottom: 0.2rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

@media (min-width: 720px) {
  .service-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* VIDEO THUMBNAIL */

.video-thumbnail {
  position: relative;
  overflow: hidden;
}

.video-thumbnail img {
  display: block;
  width: 100%;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff7eb, #f29a30);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(255, 207, 109, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #611109;
  font-size: 1.5rem;
}

/* SOFT CARD HOVER EFFECTS */

.media-card,
.about-highlight,
.service-highlight,
.video-block {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.media-card:hover,
.about-highlight:hover,
.service-highlight:hover,
.video-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-saffron), var(--color-gold));
  color: #3f1304;
  box-shadow:
    0 8px 22px rgba(245, 158, 11, 0.4),
    0 0 0 1px rgba(255, 232, 175, 0.9);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 12px 26px rgba(201, 103, 29, 0.65),
    0 0 0 1px rgba(255, 238, 197, 1);
}

.btn-outline {
  background: rgba(255, 252, 246, 0.98);
  color: var(--color-maroon);
  border: 1px solid rgba(212, 165, 116, 0.5);
  box-shadow: var(--shadow-soft);
}

.btn-outline:hover {
  background: linear-gradient(135deg, #fff6e6, #ffe1b0);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* FOOTER */

.site-footer {
  padding: 1.8rem 0 1.7rem;
  background: radial-gradient(circle at top, #321116 0%, #080c15 65%);
  color: #f8e5c7;
  border-top: 1px solid rgba(255, 214, 145, 0.45);
}

.footer-inner {
  display: grid;
  gap: 0.9rem;
  align-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.45));
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  font-size: 0.9rem;
}

.footer-links a {
  color: #ffe4ba;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.footer-social a {
  color: var(--color-gold-soft);
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: var(--color-maroon-deep);
}

.footer-social i {
  font-size: 1.1rem;
}

.footer-address {
  font-style: normal;
  font-size: 0.82rem;
  line-height: 1.65;
  color: #f4d8aa;
  max-width: 28rem;
  margin: 0 auto;
}

.footer-copyright {
  font-size: 0.8rem;
  color: #f4d8aa;
  margin: 0;
  opacity: 0.95;
}

.footer-credits {
  font-size: 0.78rem;
  color: rgba(244, 216, 170, 0.9);
  margin: 0;
}

.footer-credits a {
  color: var(--color-gold-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-credits a:hover {
  color: var(--color-maroon-deep);
  text-decoration: underline;
}

/* FLOATING WHATSAPP BUTTON */

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle at 25% 15%, #e8ffe9, #19c463);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.4),
    0 0 0 2px rgba(255, 238, 196, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.whatsapp-float:hover {
  transform: translateY(-1px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.5),
    0 0 0 2px rgba(255, 244, 206, 1);
}

.whatsapp-icon {
  width: 26px;
  height: 26px;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M16.01 5.003c-4.946 0-8.98 4.031-8.983 8.977 0 1.584.416 3.13 1.205 4.5L7 25l6.68-1.752a9.04 9.04 0 0 0 2.33.303h.004c4.945 0 8.98-4.032 8.983-8.977.003-2.4-.931-4.655-2.626-6.356c-1.695-1.701-3.947-2.64-6.361-2.64Zm5.266 12.836c-.224.63-1.117 1.198-1.545 1.27c-.395.066-.9.094-1.457-.09c-.336-.108-.77-.25-1.332-.487c-2.346-1.011-3.866-3.366-3.983-3.523c-.115-.158-.952-1.268-.952-2.419c0-1.15.605-1.713.82-1.949c.214-.236.472-.295.63-.295c.158 0 .316.002.455.008c.146.006.342-.055.536.41c.224.54.763 1.868.83 2.004c.067.134.112.29.022.467c-.09.177-.135.29-.27.447c-.135.158-.285.353-.407.475c-.135.135-.276.283-.118.556c.158.273.7 1.154 1.505 1.868c1.035.923 1.905 1.212 2.178 1.345c.273.134.431.119.59-.04c.158-.158.68-.792.862-1.064c.18-.272.363-.226.61-.135c.248.09 1.567.74 1.837.874c.27.135.45.199.515.31c.067.111.067.645-.157 1.275Z'/%3E%3C/svg%3E");
  background-size: cover;
}

/* FADE-IN SCROLL ANIMATIONS (DIVINE MINIMALISM) */

.fade-section {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms ease-out,
    transform 650ms ease-out;
  will-change: opacity, transform;
}

.fade-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-section.fade-delay-1 {
  transition-delay: 120ms;
}

.fade-section.fade-delay-2 {
  transition-delay: 220ms;
}

.fade-section.fade-delay-3 {
  transition-delay: 320ms;
}

@media (max-width: 720px) {
  .hero {
    min-height: 75vh;
    max-height: 82vh;
    height: 75vh;
  }

  .fade-section {
    transform: translateY(12px);
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 50px;
    height: 50px;
  }
}


/* TOP MARQUEE STRIP */
.marquee-wrapper {
  background: linear-gradient(90deg, var(--color-saffron), var(--color-saffron-deep));
  color: #3f1404;
  border-bottom: 1px solid rgba(148, 64, 18, 0.4);
  font-size: 0.82rem;
}

.marquee-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.25rem 1.25rem;
  display: grid;
  grid-template-columns: 1.2fr auto 1.2fr;
  align-items: center;
  gap: 0.75rem;
}

.marquee-section {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-center {
  text-align: center;
  font-weight: 600;
}

.marquee-scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  animation: marqueeScroll 18s linear infinite;
}

.marquee-left .marquee-scroll,
.marquee-right .marquee-scroll {
  justify-content: flex-start;
}

.marquee-text {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marquee-separator {
  opacity: 0.6;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marqueeCenter {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 720px) {
  .marquee-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .marquee-left,
  .marquee-right {
    display: none;
  }

  .marquee-center {
    display: block;
    overflow: hidden;
  }

  .marquee-center .booking-time {
    display: inline-block;
    white-space: nowrap;
    animation: marqueeCenter 14s linear infinite;
  }
}

/* BREADCRUMB */
.breadcrumb {
  background: var(--color-cream-deep);
  border-bottom: 1px solid rgba(212, 165, 116, 0.45);
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1.25rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  white-space: nowrap;
  overflow-x: auto;
}

.breadcrumb-inner::-webkit-scrollbar {
  height: 3px;
}

.breadcrumb-inner::-webkit-scrollbar-thumb {
  background: rgba(180, 132, 76, 0.5);
  border-radius: 999px;
}

.breadcrumb-link {
  color: var(--color-ganga-blue);
}

.breadcrumb-link:hover {
  text-decoration: underline;
}

.breadcrumb-current {
  color: var(--color-maroon);
  font-weight: 600;
}

.breadcrumb-separator {
  opacity: 0.6;
}

/* LANGUAGE SWITCHER */
.language-switcher {
  position: relative;
  margin-left: 0.5rem;
  font-size: 0.85rem;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 165, 116, 0.7);
  background: rgba(255, 252, 245, 0.95);
  color: var(--color-ganga-blue);
  font-weight: 500;
  cursor: pointer;
}

.language-toggle:hover {
  background: linear-gradient(135deg, #fff6e6, #ffe1b0);
}

.language-toggle i {
  font-size: 0.7rem;
}

.language-code {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--color-maroon);
}

.language-menu {
  position: absolute;
  right: 0;
  margin-top: 0.4rem;
  list-style: none;
  padding: 0.35rem 0;
  background: #fffdf7;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(212, 165, 116, 0.5);
  min-width: 170px;
  max-height: 260px;
  overflow-y: auto;
  z-index: 80;
  display: none;
}

.language-switcher.open .language-menu {
  display: block;
}

.language-menu li {
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 0.3rem;
}

.language-menu li:hover {
  background: rgba(248, 228, 195, 0.8);
}

.language-menu li span {
  font-size: 0.82rem;
}

@media (max-width: 720px) {
  .language-switcher {
    align-self: flex-end;
    margin-top: 0.2rem;
  }
}

/* SERVICES PAGE */
.services-page-main {
  background: var(--color-cream);
}

.services-intro {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  color: var(--color-muted);
}

.services-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 24px;
}

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-card-extended {
  background: #ffffff;
  border: 1px solid #e5d4c1;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.service-card-extended:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.service-image-wrap {
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  position: relative;
}

.service-image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card-extended:hover .service-image-wrap img {
  transform: scale(1.03);
}

.service-text {
  padding: 16px 16px 8px 16px;
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #8b4513;
}

.service-description {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  padding: 0 16px 16px 16px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-actions {
  display: flex;
  gap: 12px;
  padding: 0 16px 16px 16px;
}

.btn-service {
  flex: 1;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.1s ease;
}

.btn-service:active {
  transform: translateY(1px);
}

.btn-view-details {
  background: #ffffff;
  border: 2px solid #8b4513;
  color: #8b4513;
}

.btn-view-details:hover {
  background: #f5f5f5;
}

.btn-book-now {
  background: #ffa500;
  border: none;
  color: #ffffff;
}

.btn-book-now:hover {
  background: #ff9500;
}

/* SERVICE MODAL */
.service-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.service-modal-backdrop.is-open {
  display: flex;
  animation: modalFadeIn 0.3s ease-out;
}

.service-modal {
  background: #ffffff;
  border-radius: 8px;
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 30px;
  position: relative;
}

@media (min-width: 720px) {
  .service-modal {
    width: 80%;
  }
}

.service-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: #f1f1f1;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-modal-close:hover {
  background: #e2e2e2;
}

.service-modal-image-wrap {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.service-modal-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.service-modal h2 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.service-modal h3 {
  font-size: 1rem;
  color: var(--color-muted);
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.service-modal-body p {
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

