/* ========================================================================
   PANDIT MUKESH SHARMA — SACRED RITUALS WEBSITE
   Aesthetic: Traditional Vedic spiritual with refined editorial typography
   ======================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Tiro+Devanagari+Hindi:ital@0;1&family=Marcellus&display=swap');

/* ---- CSS Reset & Variables ---- */
:root {
  --saffron: #E85D04;
  --saffron-light: #FF8C3F;
  --saffron-deep: #C44503;
  --maroon: #6B0F1A;
  --maroon-deep: #4A0810;
  --maroon-light: #8B1F2C;
  --gold: #C9A227;
  --gold-light: #E8C547;
  --gold-deep: #9B7C1F;
  --cream: #FFF3B0;
  --cream-warm: #FFE97A;
  --ivory: #FFF8CC;
  --yellow-bright: #FFD700;
  --yellow-soft: #FFEC6E;
  --yellow-pale: #FFFDE7;
  --ink: #2B1810;
  --ink-soft: #5A3010;
  --whisper: rgba(43, 24, 16, 0.6);

  --font-display: 'Marcellus', 'Cormorant Garamond', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-devanagari: 'Tiro Devanagari Hindi', serif;

  --shadow-soft: 0 4px 24px rgba(107, 15, 26, 0.08);
  --shadow-medium: 0 8px 40px rgba(107, 15, 26, 0.12);
  --shadow-deep: 0 16px 60px rgba(107, 15, 26, 0.18);

  --container: 1200px;
  --radius: 4px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(201, 162, 39, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(232, 93, 4, 0.08) 0%, transparent 50%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--maroon);
  letter-spacing: 0.01em;
}

.devanagari {
  font-family: var(--font-devanagari);
  font-weight: 400;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-block;
  margin-bottom: 1rem;
}

/* ---- Layout helpers ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section--cream { background: var(--cream); }
.section--ivory { background: var(--ivory); }
.section--maroon {
  background: var(--maroon-deep);
  color: var(--cream);
}
.section--maroon h1, .section--maroon h2, .section--maroon h3 { color: var(--gold-light); }
.section--maroon .eyebrow { color: var(--gold); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section-header .devanagari {
  font-size: 1.5rem;
  color: var(--saffron);
  display: block;
  margin-bottom: 0.5rem;
}
.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}
.section-header p {
  color: var(--ink-soft);
  font-size: 1.125rem;
  font-style: italic;
}

/* ---- Ornamental divider ---- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto;
  gap: 1rem;
  max-width: 200px;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider svg { width: 24px; height: 24px; color: var(--gold); flex-shrink: 0; }

/* ---- Navigation ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  transition: all 0.3s ease;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--maroon) 100%);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--font-devanagari);
  font-size: 1.5rem;
  box-shadow: 0 2px 12px rgba(232, 93, 4, 0.3);
  border: 2px solid var(--gold);
}
.brand__text { line-height: 1.1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--maroon);
  font-weight: 500;
}
.brand__title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 2px;
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: 2.25rem;
  align-items: center;
}
.nav__menu a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.05em;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--saffron);
  transition: width 0.3s ease;
}
.nav__menu a:hover::after,
.nav__menu a.active::after { width: 100%; }
.nav__menu a:hover { color: var(--saffron); }
.nav__menu a.active { color: var(--saffron); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  background: var(--saffron);
  color: var(--ivory) !important;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(232, 93, 4, 0.3);
  transition: all 0.3s ease;
}
.nav__cta:hover {
  background: var(--maroon);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107, 15, 26, 0.4);
}

.nav__toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--maroon);
  padding: 0.5rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}
.btn--primary {
  background: var(--saffron);
  color: var(--ivory);
  box-shadow: 0 6px 20px rgba(232, 93, 4, 0.3);
  border: 1px solid var(--saffron-deep);
}
.btn--primary:hover {
  background: var(--maroon);
  border-color: var(--maroon-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(107, 15, 26, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--maroon);
  border: 1.5px solid var(--maroon);
}
.btn--outline:hover {
  background: var(--maroon);
  color: var(--ivory);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--ivory);
  border: 1px solid var(--gold-deep);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-medium); }

.btn--whatsapp {
  background: #25D366;
  color: white;
  border: none;
}
.btn--whatsapp:hover { background: #1ea952; transform: translateY(-2px); }

.btn--call {
  background: var(--maroon);
  color: var(--ivory);
}
.btn--call:hover { background: var(--maroon-deep); transform: translateY(-2px); }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ========================================================================
   HERO
   ======================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 6rem;
  background:
    radial-gradient(ellipse at top, rgba(232, 93, 4, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at bottom, rgba(107, 15, 26, 0.06) 0%, transparent 60%),
    var(--cream);
}

.hero__om {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 720px;
  height: 720px;
  opacity: 0.045;
  pointer-events: none;
  color: var(--maroon);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero__content { animation: fadeUp 1s ease both; }

.hero__greeting {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-devanagari);
  font-size: 0.7rem;
  color: var(--saffron);
  margin-bottom: 1.25rem;
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 999px;
  background: rgba(255, 251, 242, 0.6);
}


/* .hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  color: var(--maroon);
} */
.hero__title {
  font-size: clamp(1.6rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--maroon);
}
.hero__title em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--saffron);
  font-weight: 400;
}

.hero__subtitle {
  font-family: var(--font-devanagari);
  font-size: 1.5rem;
  color: var(--gold-deep);
  margin-bottom: 1.75rem;
  line-height: 1.3;
}

.hero__lead {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__credentials {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
}
.cred__number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--saffron);
  line-height: 1;
}
.cred__label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}

/* Hero image */
.hero__visual {
  position: relative;
  animation: fadeUp 1.2s ease 0.2s both;
}
.hero__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--ivory) 100%);
  border: 1px solid var(--gold);
  padding: 1.25rem;
  box-shadow: var(--shadow-medium);
}
.hero__frame::before,
.hero__frame::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--saffron);
}
.hero__frame::before { top: -10px; left: -10px; border-right: none; border-bottom: none; }
.hero__frame::after { bottom: -10px; right: -10px; border-left: none; border-top: none; }

.hero__photo {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.hero__photo:hover img { transform: scale(1.03); }
.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(74, 8, 16, 0.45) 100%);
  pointer-events: none;
}
.hero__photo-label {
  display: none;
}

.hero__toran {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero__toran span {
  width: 14px;
  height: 22px;
  background: var(--saffron);
  border-radius: 50% 50% 0 0;
  box-shadow: 0 2px 6px rgba(232, 93, 4, 0.3);
}
.hero__toran span:nth-child(even) { background: var(--maroon); }
.hero__toran span:nth-child(3n) { background: var(--gold); }

/* ========================================================================
   FEATURES (welcome highlights)
   ======================================================================== */
.features {
  padding: 4rem 0;
  background: var(--ivory);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(201, 162, 39, 0.15);
}
.feature:last-child { border-right: none; }
.feature__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--saffron);
  margin-bottom: 1rem;
}
.feature h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--maroon);
}
.feature p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ========================================================================
   SERVICES
   ======================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--ivory);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(201, 162, 39, 0.3);
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron) 0%, var(--gold) 50%, var(--maroon) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color: var(--gold);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.1) 0%, rgba(201, 162, 39, 0.1) 100%);
  color: var(--saffron);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201, 162, 39, 0.3);
}
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}
.service-card__hindi {
  font-family: var(--font-devanagari);
  font-size: 1rem;
  color: var(--saffron);
  margin-bottom: 0.85rem;
  display: block;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  width: fit-content;
  transition: all 0.3s ease;
}
.service-card__cta:hover { color: var(--saffron); gap: 0.85rem; }

/* ========================================================================
   ABOUT PAGE
   ======================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}
.about-photo {
  aspect-ratio: 4/5;
  border: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}
.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}
.about-photo:hover img { transform: scale(1.04); }
.about-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}
.about-text p {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  font-size: 1.075rem;
  line-height: 1.8;
}

.qualifications {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
}
.qualif {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.qualif__num {
  font-family: var(--font-display);
  color: var(--saffron);
  font-size: 2rem;
  line-height: 1;
}
.qualif h4 { font-size: 1.05rem; margin-bottom: 0.25rem; color: var(--maroon); }
.qualif p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

/* ========================================================================
   GALLERY
   ======================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, var(--maroon-light) 0%, var(--maroon-deep) 100%);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--font-devanagari);
  font-size: 1.15rem;
  text-align: center;
  padding: 1rem;
  transition: all 0.4s ease;
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 30% 70%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 20%, rgba(232, 93, 4, 0.1) 0%, transparent 50%);
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  z-index: 0;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-medium); }
.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: linear-gradient(transparent, rgba(74, 8, 16, 0.85));
  padding: 1.5rem 1rem 1rem;
  color: var(--gold-light);
  font-family: var(--font-devanagari);
  font-size: 1.1rem;
  text-align: center;
}
.gallery-item__caption span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 0.4rem;
}
.gallery-item .play-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(232, 93, 4, 0.9);
  display: grid;
  place-items: center;
  color: white;
  z-index: 3;
  transition: transform 0.3s ease;
}
.gallery-item:hover .play-icon { transform: translate(-50%, -50%) scale(1.1); }

.gallery-item--lg { grid-column: span 6; grid-row: span 2; }
.gallery-item--md { grid-column: span 4; grid-row: span 2; }
.gallery-item--sm { grid-column: span 3; }
.gallery-item--wide { grid-column: span 6; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(43, 8, 16, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
  backdrop-filter: blur(10px);
}
.lightbox.active { display: flex; }
.lightbox__content {
  max-width: 900px;
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--maroon-light) 0%, var(--maroon-deep) 100%);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--font-devanagari);
  font-size: 2rem;
  text-align: center;
  padding: 2rem;
}
.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--gold-light);
  font-size: 2.5rem;
  line-height: 1;
}

/* ========================================================================
   TESTIMONIALS
   ======================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.testimonial {
  background: var(--ivory);
  border: 1px solid rgba(201, 162, 39, 0.3);
  padding: 2.25rem;
  position: relative;
  transition: all 0.3s ease;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--saffron);
  background: var(--ivory);
  padding: 0 0.5rem;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--gold);
}
.testimonial__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.testimonial__text {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
}
.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  display: grid;
  place-items: center;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.testimonial__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--maroon);
}
.testimonial__role {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ========================================================================
   BOOKING / CALENDAR
   ======================================================================== */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.booking-card {
  background: var(--ivory);
  border: 1px solid var(--gold);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}
.booking-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.booking-card__hindi {
  font-family: var(--font-devanagari);
  color: var(--saffron);
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--saffron);
  background: var(--ivory);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Calendar / time slots */
.calendar {
  background: var(--cream);
  border: 1px solid rgba(201, 162, 39, 0.3);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.calendar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.calendar__month {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--maroon);
}
.calendar__nav {
  display: flex;
  gap: 0.5rem;
}
.calendar__nav button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  color: var(--maroon);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.calendar__nav button:hover { background: var(--saffron); color: white; border-color: var(--saffron); }

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar__day-name {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.5rem 0;
}
.calendar__day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  color: var(--ink);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.calendar__day:hover:not(.disabled) {
  background: rgba(232, 93, 4, 0.1);
  border-color: var(--saffron);
}
.calendar__day.disabled { color: rgba(43, 24, 16, 0.25); cursor: not-allowed; }
.calendar__day.selected { background: var(--saffron); color: white; border-color: var(--saffron); }
.calendar__day.available { color: var(--maroon); font-weight: 500; }

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.5rem;
}
.time-slot {
  padding: 0.6rem;
  border: 1px solid var(--gold);
  background: var(--cream);
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.time-slot:hover { background: var(--saffron); color: white; border-color: var(--saffron); }
.time-slot.selected { background: var(--maroon); color: var(--gold-light); border-color: var(--maroon); }

.meeting-platforms {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.platform-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--gold);
  background: var(--cream);
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--maroon);
}
.platform-badge svg { width: 18px; height: 18px; }

/* ========================================================================
   PAYMENT
   ======================================================================== */
.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.qr-section {
  background: var(--ivory);
  border: 2px solid var(--gold);
  padding: 3rem;
  text-align: center;
  position: relative;
}
.qr-section::before,
.qr-section::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid var(--saffron);
}
.qr-section::before { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.qr-section::after { bottom: 10px; right: 10px; border-left: none; border-top: none; }

.qr-section h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.qr-section .hindi { font-family: var(--font-devanagari); color: var(--saffron); margin-bottom: 2rem; }

.qr-code {
  width: 240px;
  height: 240px;
  margin: 0 auto 1.5rem;
  background: white;
  padding: 1rem;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  position: relative;
}
.qr-code svg { width: 100%; height: 100%; }

.upi-id {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--cream);
  padding: 0.85rem 1.5rem;
  border: 1px dashed var(--gold);
  font-family: 'Courier New', monospace;
  font-size: 1.05rem;
  color: var(--maroon);
  cursor: pointer;
  margin-top: 1rem;
}
.upi-id:hover { background: var(--ivory); border-color: var(--saffron); }

.payment-options { display: grid; gap: 1rem; }
.payment-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--ivory);
  border: 1px solid rgba(201, 162, 39, 0.3);
  transition: all 0.3s ease;
}
.payment-option:hover {
  border-color: var(--saffron);
  transform: translateX(4px);
  box-shadow: var(--shadow-soft);
}
.payment-option__logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.15rem;
  color: white;
}
.payment-option__logo.gpay { background: linear-gradient(135deg, #4285F4, #34A853); }
.payment-option__logo.phonepe { background: #5F259F; }
.payment-option__logo.paytm { background: #00BAF2; }
.payment-option__logo.upi { background: linear-gradient(135deg, var(--saffron), var(--maroon)); }
.payment-option__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--maroon);
}
.payment-option__desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.payment-option__arrow {
  margin-left: auto;
  color: var(--gold);
  font-size: 1.25rem;
}

/* ========================================================================
   CONTACT
   ======================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  background: var(--ivory);
  border-left: 3px solid var(--saffron);
  padding: 1.5rem 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}
.contact-card:hover { box-shadow: var(--shadow-soft); border-left-color: var(--maroon); }
.contact-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.1), rgba(201, 162, 39, 0.1));
  color: var(--saffron);
}
.contact-card h4 { font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.4rem; }
.contact-card p { font-size: 1.1rem; color: var(--maroon); font-family: var(--font-display); }
.contact-card span { font-size: 0.9rem; color: var(--ink-soft); display: block; margin-top: 0.25rem; }

.map-container {
  margin-top: 3rem;
  border: 2px solid var(--gold);
  aspect-ratio: 16/9;
  background:
    repeating-linear-gradient(0deg, rgba(201, 162, 39, 0.05) 0, rgba(201, 162, 39, 0.05) 20px, transparent 20px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(201, 162, 39, 0.05) 0, rgba(201, 162, 39, 0.05) 20px, transparent 20px, transparent 40px),
    linear-gradient(135deg, #f5e8d0 0%, #faf0dc 100%);
  display: grid;
  place-items: center;
  position: relative;
}
.map-container::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  width: 40px; height: 40px;
  background: var(--saffron);
  clip-path: path('M20 0 C8 0 0 8 0 20 C0 32 20 50 20 50 C20 50 40 32 40 20 C40 8 32 0 20 0 Z');
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}
.map-container::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  background: var(--ivory);
  border-radius: 50%;
}
.map-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--ivory);
  padding: 0.75rem 1rem;
  border: 1px solid var(--gold);
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--maroon);
}

/* ========================================================================
   FLOATING ACTION BUTTONS
   ======================================================================== */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 90;
}
.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  position: relative;
}
.fab:hover { transform: scale(1.1) translateY(-2px); }
.fab--whatsapp { background: #25D366; }
.fab--call { background: var(--saffron); animation: pulse 2s infinite; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(232, 93, 4, 0.4), 0 0 0 0 rgba(232, 93, 4, 0.4); }
  50% { box-shadow: 0 6px 20px rgba(232, 93, 4, 0.4), 0 0 0 12px rgba(232, 93, 4, 0); }
}

.fab__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--maroon-deep);
  color: var(--ivory);
  padding: 0.4rem 0.75rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.fab:hover .fab__tooltip { opacity: 1; }

/* ========================================================================
   CTA BANNER
   ======================================================================== */
.cta-banner {
  padding: 5rem 0;
  background:
    linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 100%);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '🕉';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24rem;
  opacity: 0.04;
  color: var(--gold);
  pointer-events: none;
}
.cta-banner h2 {
  color: var(--gold-light);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}
.cta-banner__hindi {
  font-family: var(--font-devanagari);
  color: var(--saffron-light);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.cta-banner p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
  font-style: italic;
  opacity: 0.9;
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.footer {
  background: var(--maroon-deep);
  color: rgba(251, 246, 236, 0.8);
  padding: 4rem 0 1.5rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--saffron) 0%, var(--gold) 33%, var(--saffron) 66%, var(--gold) 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer h4 {
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
}
.footer__brand .brand__name { color: var(--gold-light); font-size: 1.4rem; }
.footer__tagline {
  font-family: var(--font-devanagari);
  color: var(--saffron-light);
  margin: 0.5rem 0 1.5rem;
}
.footer p, .footer a { color: rgba(251, 246, 236, 0.7); font-size: 0.95rem; line-height: 1.8; }
.footer a:hover { color: var(--gold-light); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.5rem; }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(251, 246, 236, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--gold-light);
  transition: all 0.3s ease;
}
.social-link:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: white;
  transform: translateY(-3px);
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  font-size: 0.85rem;
  color: rgba(251, 246, 236, 0.5);
}
.footer__bottom .devanagari {
  display: block;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* ========================================================================
   ANIMATIONS
   ======================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ========================================================================
   RESPONSIVE
   ======================================================================== */
@media (max-width: 968px) {
  .nav__menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - 80px);
    background: var(--ivory);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-deep);
    transition: right 0.4s ease;
    border-left: 2px solid var(--gold);
  }
  .nav__menu.open { right: 0; }
  .nav__menu a { font-size: 1.1rem; }
  .nav__toggle { display: block; }
  .nav__cta { display: none; }

  .hero { padding: 3rem 0 4rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { max-width: 380px; margin: 0 auto; }
  .hero__credentials { gap: 1.5rem; flex-wrap: wrap; }

  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .feature { border-right: none; }
  .feature:nth-child(odd) { border-right: 1px solid rgba(201, 162, 39, 0.15); }

  .about-grid,
  .booking-grid,
  .payment-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .qualifications { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 140px; }
  .gallery-item--lg { grid-column: span 6; }
  .gallery-item--md { grid-column: span 3; }
  .gallery-item--sm { grid-column: span 3; }
  .gallery-item--wide { grid-column: span 6; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
}

@media (max-width: 600px) {
  body { font-size: 1rem; }
  .nav__inner { padding: 1rem 1.25rem; }
  .brand__title { display: none; }
  .brand__mark { width: 42px; height: 42px; font-size: 1.25rem; }
  .brand__name { font-size: 1rem; }

  .hero__buttons { width: 100%; }
  .hero__buttons .btn { flex: 1; min-width: calc(50% - 0.5rem); padding: 0.85rem 1rem; font-size: 0.8rem; }
  .hero__title { font-size: 2.25rem; }
  .hero__lead { font-size: 1.05rem; }

  .features__grid { grid-template-columns: 1fr; }
  .feature { border-right: none !important; border-bottom: 1px solid rgba(201, 162, 39, 0.15); padding-bottom: 1.5rem; }
  .feature:last-child { border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr; }

  .floating-actions { bottom: 1rem; right: 1rem; }
  .fab { width: 48px; height: 48px; }

  .section-header { margin-bottom: 2.5rem; }

  .btn { padding: 0.85rem 1.5rem; font-size: 0.85rem; }
  .form-row { grid-template-columns: 1fr; }

  .qr-code { width: 200px; height: 200px; }
  .qr-section { padding: 2rem 1.25rem; }
}

/* ========================================================================
   YELLOW THEME OVERRIDES
   ======================================================================== */
.section--cream { background: var(--cream); }
.section--ivory { background: var(--ivory); }
.section--video-bg { background: var(--yellow-pale); }

.hero {
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--ivory) 100%) !important;
}
.nav {
  background: rgba(255, 243, 176, 0.95) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,0.3) !important;
}
.footer {
  background: var(--maroon-deep) !important;
}
.service-card {
  background: var(--yellow-pale) !important;
  border: 1px solid rgba(201,162,39,0.35) !important;
}
.service-card:hover {
  background: var(--cream-warm) !important;
}
.testimonial {
  background: var(--yellow-pale) !important;
  border: 1px solid rgba(201,162,39,0.3) !important;
}
.booking-card {
  background: var(--yellow-pale) !important;
  border: 1px solid rgba(201,162,39,0.3) !important;
}
.qualif {
  background: var(--cream) !important;
  border: 1px solid rgba(201,162,39,0.3) !important;
}
input, textarea, select {
  background: #fffde7 !important;
  border: 1px solid rgba(201,162,39,0.5) !important;
}

/* ========================================================================
   VIDEO SECTION — FEATURED + GRID
   ======================================================================== */
.video-featured {
  background: var(--maroon-deep);
  border: 1px solid var(--gold);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  max-width: 900px;
  margin: 0 auto;
}
.video-featured__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ff0000;
  color: white;
  font-size: 0.8rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  margin: 1rem 1.5rem 0;
  border-radius: 4px;
}
.video-featured__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 1rem 1.5rem 0;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}
.video-featured__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-featured__info {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.video-featured__info h3 {
  color: var(--gold-light);
  flex: 1;
  min-width: 200px;
  margin: 0;
}
.video-featured__info p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  flex: 2;
  min-width: 200px;
  margin: 0;
}
.btn--yt {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ff0000;
  color: white;
  border: none;
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn--yt:hover { background: #cc0000; transform: translateY(-2px); color: white; }

/* Video clip grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.video-card {
  background: var(--maroon-deep);
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--gold);
}
.video-card__player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-card__player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-card__info {
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(201,162,39,0.2);
}
.video-card__info h4 {
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.video-card__info span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-featured__info { flex-direction: column; gap: 1rem; }
  .video-featured__frame, .video-featured__badge, .video-featured__info { margin-left: 1rem; margin-right: 1rem; }
}

/* ========================================================================
   WHATSAPP ENQUIRY SUBMIT BUTTON
   ======================================================================== */
.btn--whatsapp-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25D366;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn--whatsapp-submit:hover {
  background: #1ea952;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
}
.btn--whatsapp-submit:active {
  transform: translateY(0);
}

/* ========================================================================
   CONTACT CARD — label/value classes + WhatsApp submit button
   ======================================================================== */
.contact-card__label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-family: var(--font-display);
  margin-bottom: 0.35rem;
}
.contact-card__value {
  font-size: 1.05rem;
  color: var(--maroon);
  font-family: var(--font-display);
  line-height: 1.5;
}
.contact-card {
  background: var(--yellow-pale);
}

/* WhatsApp enquiry submit button */
.btn--whatsapp-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25D366;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  width: 100%;
}
.btn--whatsapp-submit:hover {
  background: #1ea952;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}
.btn--whatsapp-submit:active {
  transform: translateY(0);
}
