/* ====================================================
   Narayani Mandapam - Mobile & Tablet Only Stylesheet
   Strict App View on All Screens (Mobile, Tablet, Desktop)
   ==================================================== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  /* Primary Font */
  --font-primary: "Roboto", sans-serif;
  
  /* ====================================================
     ROYAL GOLDEN LUXURY THEME PALETTE
     ==================================================== */
  /* Main Golden Shades */
  --color-gold: #B8860B;              /* Dark Goldenrod / Classic Royal Gold */
  --color-gold-rich: #C59B27;         /* Rich Antique Gold */
  --color-gold-bright: #D4AF37;       /* Metallic Radiant Gold */
  --color-gold-accent: #E5C158;       /* Glowing Gold Highlight */
  --color-gold-light: #F7E9C8;        /* Soft Cream Gold */
  --color-gold-soft: #FFF9EC;         /* Ultra-soft Golden Tint */
  --color-gold-border: rgba(184, 134, 11, 0.35);
  --color-gold-glow: rgba(212, 175, 55, 0.35);

  /* Deep Royal Bronze Gold Tones (Replacing Maroon) */
  --color-maroon: #8A5E08;            /* Deep Warm Bronze Gold (Main Theme Accent) */
  --color-maroon-dark: #6B4903;       /* Dark Bronze Gold for Contrast */
  --color-maroon-deep: #4D3401;       /* Deepest Espresso Gold */
  --color-maroon-light: #B8860B;      /* Light Gold Accent */

  /* Backgrounds */
  --color-bg-body: #ECE6DD;           /* Neutral luxury desktop backdrop */
  --color-bg-app: #FFFFFF;            /* Clean app surface */
  --color-bg-service-card: #FDF9EE;   /* Subtle golden ivory service card */
  
  /* Text */
  --color-text-dark: #2B1E06;         /* Deep Bronze-Black (High legibility) */
  --color-text-muted: #665538;        /* Warm Muted Gold-Brown */
  --color-text-light: #8E7B5C;
  --color-white: #FFFFFF;
  --color-whatsapp: #25D366;
  
  /* Dimensions */
  --app-max-width: 480px;
  --bottom-bar-height: 110px; /* 54px dual cta + 56px bottom nav */
  --header-height: 60px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  --shadow-card: 0 4px 18px rgba(184, 134, 11, 0.08);
  --shadow-hero: 0 8px 30px rgba(45, 30, 2, 0.35);
  --transition-fast: 0.2s ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg-body);
}

body,
input,
button,
select,
textarea {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

body {
  background-color: var(--color-bg-body);
  color: var(--color-text-dark);
  line-height: 1.5;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* ====================================================
   MOBILE/TABLET APP FRAME (Strict Centered View)
   ==================================================== */
.app-viewport {
  width: 100%;
  max-width: var(--app-max-width);
  min-height: 100vh;
  background: var(--color-bg-app);
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.15);
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: var(--bottom-bar-height);
  overflow-x: hidden;
}

/* ====================================================
   HEADER & LOGO RULES (CRITICAL)
   [ ☰ or ‹ ]   [ नारायणी मंडपम LOGO ]   [ 🟢 WhatsApp ]
   ==================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(197, 155, 39, 0.18);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  width: 100%;
}

.header-container {
  width: 100%;
  padding: 0 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Header Logo: Single horizontal line, object-fit: contain */
.header-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex: 1;
}

.header-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.site-logo {
  height: 38px;
  max-height: 42px;
  width: auto;
  max-width: 220px;
  object-fit: contain; /* MANDATORY RULE */
  display: block;
}

/* Header Back Button */
.header-back-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-maroon);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Mobile Hamburger Button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-maroon);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

/* Header WhatsApp Button */
.header-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #25D366;
  flex-shrink: 0;
}

/* Offcanvas Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -300px;
  width: 270px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 2000;
  box-shadow: 4px 0 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  transform: translateX(300px);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #FCFAF7;
}

.drawer-close-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-maroon);
  font-size: 1.25rem;
}

.drawer-nav {
  padding: 0.85rem 0;
  overflow-y: auto;
  flex: 1;
}

.drawer-nav-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-dark);
  border-left: 3px solid transparent;
}

.drawer-nav-item:hover, .drawer-nav-item.active {
  background: rgba(99, 11, 23, 0.05);
  color: var(--color-maroon);
  border-left-color: var(--color-maroon);
}

.drawer-footer {
  padding: 1.15rem;
  background: #F8F4EE;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* ====================================================
   HOME HERO SECTION (Exact Match to Phone Screenshot)
   ==================================================== */
.home-hero-container {
  position: relative;
  width: 100%;
  min-height: 610px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-slider-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Slider Navigation Arrows */
.hero-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transition: all 0.25s ease;
}

.hero-arrow-btn:active, .hero-arrow-btn:hover {
  background: var(--color-maroon);
  border-color: var(--color-gold);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.1);
}

.hero-arrow-btn.prev {
  left: 12px;
}

.hero-arrow-btn.next {
  right: 12px;
}


.home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(28, 18, 5, 0.35) 30%,
    rgba(38, 24, 6, 0.78) 60%,
    rgba(30, 19, 4, 0.95) 88%,
    rgba(20, 12, 2, 0.98) 100%
  );
}

.home-hero-content {
  position: relative;
  z-index: 3;
  padding: 2.2rem 1.15rem 1.75rem;
  text-align: center;
  color: #FFFFFF;
}

.hero-line-white {
  font-family: 'Noto Sans Devanagari', 'Rozha One', sans-serif;
  font-size: 1.85rem;
  line-height: 1.25;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-line-gold {
  display: block;
  font-family: 'Noto Sans Devanagari', 'Rozha One', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(180deg, #FFF6D6 0%, #ECC45F 50%, #B88514 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  margin: 0.15rem 0 0.45rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 0.4rem auto;
  opacity: 0.85;
}

.hero-flourish-line {
  width: 45px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ECC86A);
}

.hero-flourish-line.right {
  background: linear-gradient(90deg, #ECC86A, transparent);
}

.hero-flourish-motif {
  color: #ECC86A;
  font-size: 0.85rem;
}

.hero-subtext-hindi {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #F8ECE0;
  margin: 0.3rem auto 0.4rem;
  max-width: 360px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.home-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: linear-gradient(90deg, #FDE6B4 0%, #F5CE7A 50%, #EAA838 100%);
  color: #4A1205;
  font-family: "Roboto", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 0.72rem 2.2rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.45);
  margin-top: 0.7rem;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  transition: all 0.25s ease;
  cursor: pointer;
  letter-spacing: 0.2px;
}

.home-book-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #FFF0CC 0%, #F9D88E 50%, #F0B345 100%);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.6);
  color: #4A1205;
}

.hero-pagination-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.15rem;
}

.hero-p-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-p-dot.active {
  background: #FFFFFF;
  width: 9px;
  height: 9px;
}

.hero-p-dot.gold {
  background: #ECC86A;
}

/* ====================================================
   OUR SERVICES SECTION (Exact Match to Phone Screenshot)
   ==================================================== */
.home-services-card {
  background: #FFFFFF;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  margin-top: -20px;
  position: relative;
  z-index: 10;
  padding: 1.5rem 0.85rem 2rem;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.06);
}

.home-services-header {
  text-align: center;
  margin-bottom: 1.15rem;
}

.home-services-title {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-maroon);
  margin-bottom: 0.25rem;
}

.home-services-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.home-services-line {
  width: 35px;
  height: 1.2px;
  background: var(--color-gold);
}

.home-services-flower {
  color: var(--color-gold);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.home-service-item {
  background: var(--color-bg-service-card);
  border: 1.5px solid rgba(220, 210, 195, 0.85);
  border-radius: var(--radius-md);
  padding: 1.15rem 0.35rem 0.95rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 126px;
  transition: all 0.25s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.home-service-item:hover {
  transform: translateY(-3px);
  border-color: var(--color-gold);
  background: #FFFDF7;
  box-shadow: 0 6px 18px rgba(184, 134, 11, 0.18);
}

.home-service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-maroon);
  margin-bottom: 0.55rem;
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 50%;
  transition: all 0.2s ease;
}

.home-service-item:hover .home-service-icon {
  background: rgba(184, 134, 11, 0.2);
  border-color: rgba(212, 175, 55, 0.6);
  transform: scale(1.08);
}

.home-service-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 2.2px;
}

.home-service-label {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 0.96rem;
  font-weight: 700;
  color: #1C1311;
  line-height: 1.25;
}

/* ====================================================
   LUXURY DOWNLOAD BROCHURE BUTTON
   ==================================================== */
.home-brochure-container {
  margin-top: 1.15rem;
  padding: 0 0.15rem;
}

.home-brochure-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  background: linear-gradient(90deg, #FDE6B4 0%, #F5CE7A 50%, #EAA838 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.25rem;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.home-brochure-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #FFF0CC 0%, #F9D88E 50%, #F0B345 100%);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.55);
}

.home-brochure-btn:active {
  transform: translateY(0);
}

/* Shimmer animated sweep */
.brochure-btn-shine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  animation: brochureShineSweep 4.5s infinite;
  pointer-events: none;
}

@keyframes brochureShineSweep {
  0% { left: -120%; }
  25% { left: 140%; }
  100% { left: 140%; }
}

.brochure-btn-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #4A1205;
  color: #FDE6B4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(74, 18, 5, 0.25);
  transition: transform 0.25s ease;
}

.home-brochure-btn:hover .brochure-btn-icon-box {
  transform: scale(1.08) rotate(-3deg);
}

.brochure-btn-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: #FDE6B4;
}

.brochure-btn-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.brochure-btn-title {
  font-family: "Roboto", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #4A1205;
  letter-spacing: 0.2px;
  line-height: 1.2;
}

.brochure-btn-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 0.78rem;
  color: #632612;
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: 0.1px;
}

.brochure-download-chip {
  background: #4A1205;
  border: 1px solid rgba(74, 18, 5, 0.2);
  border-radius: 20px;
  padding: 0.38rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #FDE6B4;
  font-family: "Roboto", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.home-brochure-btn:hover .brochure-download-chip {
  background: #3B0E04;
  color: #FFF2D1;
  transform: scale(1.05);
}

.home-brochure-btn:hover .brochure-download-chip svg {
  animation: bounceDown 0.6s infinite alternate;
}

@keyframes bounceDown {
  from { transform: translateY(0); }
  to { transform: translateY(3px); }
}

/* ====================================================
   HOME DIRECTIONS & MAP CARD (Matching Reference Image)
   ==================================================== */
.home-directions-section {
  padding: 0 0.85rem 1.85rem;
  background: #FFFFFF;
}

.home-map-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(220, 210, 195, 0.85);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  background: #F4F3F0;
  position: relative;
}

.home-map-visual {
  position: relative;
  height: 215px;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.map-bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.home-map-pin-wrap {
  position: relative;
  z-index: 2;
  margin-top: -36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-map-pin-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home-map-pin-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.25));
  position: relative;
}

.home-map-pin-shadow {
  width: 20px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #E67E22;
  margin-top: -3px;
  opacity: 0.85;
}

.home-map-pin-title {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 1.25rem;
  font-weight: 800;
  color: #4A3300;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.95);
}

.home-get-directions-btn {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: linear-gradient(90deg, #FDE6B4 0%, #F5CE7A 50%, #EAA838 100%);
  color: #4A1205;
  padding: 0.82rem 2.4rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.45);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.home-get-directions-btn:hover {
  background: linear-gradient(90deg, #FFF0CC 0%, #F9D88E 50%, #F0B345 100%);
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.6);
  color: #4A1205;
}

.home-get-directions-btn:active {
  transform: translateX(-50%) translateY(0);
}

.home-directions-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A1205;
}

/* ====================================================
   FIXED BOTTOM DUAL CTA & NAVIGATION (Always Visible & Constrained)
   ==================================================== */
.mobile-fixed-bottom-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: var(--app-max-width);
  width: 100%;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

/* Level 1: Dual CTA Bar (Call Now | WhatsApp) */
.mobile-dual-cta-bar {
  height: 52px;
  background: #231804;
  display: flex;
  align-items: center;
  border-top: 1.5px solid rgba(245, 215, 120, 0.45);
}

.mobile-cta-btn {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.02rem;
  transition: all 0.2s ease;
}

.mobile-cta-btn.call-btn {
  background: linear-gradient(90deg, #FDE6B4 0%, #F5CE7A 50%, #EAA838 100%);
  color: #4A1205;
  font-weight: 800;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.mobile-cta-btn.call-btn:hover {
  background: linear-gradient(90deg, #FFF0CC 0%, #F9D88E 50%, #F0B345 100%);
}

.mobile-cta-btn.call-btn .cta-icon {
  color: #4A1205;
}

.mobile-cta-btn.whatsapp-btn {
  background: #188647;
  color: #FFFFFF;
}

.mobile-cta-btn.whatsapp-btn:hover {
  background: #15733d;
}

.mobile-cta-btn.whatsapp-btn .cta-icon {
  color: #25D366;
}

/* Level 2: Bottom Navigation (Home, Gallery, Enquiry, More) */
.mobile-bottom-nav {
  height: 56px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #706764;
  font-size: 0.78rem;
  font-weight: 600;
  flex: 1;
  height: 100%;
}

.mobile-nav-item svg {
  width: 22px;
  height: 22px;
}

.mobile-nav-item.active {
  color: #8A5E08;
  font-weight: 800;
}

/* ====================================================
   MOBILE SIDE NAVIGATION DRAWER (Slide-in from Left)
   ==================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 3, 5, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2500;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 82vw;
  height: 100vh;
  background: #FFFFFF;
  z-index: 2600;
  display: flex;
  flex-direction: column;
  box-shadow: 8px 0 35px rgba(0, 0, 0, 0.35);
  transform: translateX(-105%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  background: linear-gradient(135deg, #5C3D00 0%, #7A5200 45%, #9E6E0B 100%);
  padding: 1.25rem 1.15rem 1.15rem;
  color: #FFFFFF;
  position: relative;
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid #E5C158;
}

.drawer-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
}

.drawer-brand-logo {
  height: 36px;
  max-width: 170px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.drawer-close-btn {
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  padding: 0;
  line-height: 1;
}

.drawer-close-btn:hover,
.drawer-close-btn:active {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.08);
}

.drawer-brand-title {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.drawer-brand-subtitle {
  font-size: 0.76rem;
  color: #F8E7BE;
  margin-top: 0.15rem;
  font-weight: 500;
}

.drawer-nav {
  padding: 0.75rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.drawer-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.15rem;
  color: #2D2422;
  font-size: 0.92rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  text-decoration: none;
}

.drawer-nav-item:hover {
  background: #FFF9F3;
  color: var(--color-maroon);
  padding-left: 1.35rem;
}

.drawer-nav-item.active {
  background: #FFF5EC;
  color: var(--color-maroon);
  border-left: 3.5px solid var(--color-gold);
  font-weight: 700;
}

.drawer-nav-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.drawer-nav-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-maroon);
  font-size: 1.05rem;
}

.drawer-nav-arrow {
  color: #C2B7A8;
  font-size: 1.1rem;
  font-weight: 600;
}

.drawer-footer {
  padding: 1.15rem 1.15rem 1.25rem;
  background: #FAF7F2;
  border-top: 1px solid rgba(197, 155, 39, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.drawer-quick-cta {
  display: flex;
  gap: 0.6rem;
}

.drawer-quick-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease;
}

.drawer-quick-btn:active {
  transform: scale(0.97);
}

.drawer-quick-btn.call {
  background: linear-gradient(90deg, #FDE6B4 0%, #F5CE7A 50%, #EAA838 100%);
  color: #4A1205;
  font-weight: 800;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.drawer-quick-btn.whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

.drawer-address-snippet {
  font-size: 0.74rem;
  color: #7A6F68;
  line-height: 1.35;
  text-align: center;
}

/* ====================================================
   SUBPAGES (Services, About, Gallery, Reviews, Contact)
   ==================================================== */
.subpage-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(197, 155, 39, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  width: 100%;
}

.subpage-site-header .header-container {
  width: 100%;
  padding: 0 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-sacred-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
}

.header-sacred-title {
  font-family: 'Noto Sans Devanagari', "Roboto", sans-serif;
  color: #8A5E08;
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-align: center;
  margin: 0;
  line-height: 1.2;
}

.subpage-header-banner {
  position: relative;
  height: 225px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
}

.subpage-header-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subpage-header-banner .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 19, 4, 0.68) 0%, rgba(48, 33, 7, 0.82) 100%);
}

.subpage-header-banner .content {
  position: relative;
  z-index: 2;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.services-banner-flower {
  color: #E5B842;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

.subpage-header-banner h1 {
  font-family: 'Playfair Display', "Roboto", serif;
  font-size: 2.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.subpage-header-banner p {
  color: #F8E7BE;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* Services List (Exact Match to Phone Screenshot) */
.services-list-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.65rem 0 1.5rem;
}

.service-list-card {
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid rgba(220, 210, 195, 0.65);
  padding: 0.85rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: all 0.22s ease;
  text-decoration: none;
}

.service-list-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-gold);
  box-shadow: 0 6px 18px rgba(99, 11, 23, 0.08);
  background: #FFFDFB;
}

.service-list-thumb {
  width: 96px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background: #F3F4F6;
}

.service-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-list-card:hover .service-list-thumb img {
  transform: scale(1.05);
}

.service-list-info {
  flex: 1;
}

.service-list-title {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.22rem;
  line-height: 1.25;
}

.service-list-desc {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 0.86rem;
  color: #6B7280;
  line-height: 1.35;
}

.service-list-arrow {
  color: #D97706;
  font-size: 1.5rem;
  font-weight: 600;
  padding-left: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* About Page */
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 0.8rem;
  margin: 1.75rem 0;
}

.about-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FDF5ED;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-maroon);
  margin-bottom: 0.45rem;
  border: 1px solid rgba(197, 155, 39, 0.25);
}

.about-feature-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.about-quote-box {
  background: #FAF4E8;
  border: 1px solid rgba(197, 155, 39, 0.35);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  text-align: center;
  margin-top: 1.5rem;
}

.about-quote-text {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-maroon);
}

/* Gallery Page */
.gallery-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.gallery-filter-btn {
  padding: 0.38rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  background: #FFFFFF;
  color: var(--color-text-muted);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.gallery-filter-btn.active {
  background: linear-gradient(90deg, #FDE6B4 0%, #F5CE7A 100%);
  color: #4A1205;
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.35);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 150px;
  cursor: pointer;
}

.gallery-item.featured {
  grid-column: span 2;
  height: 190px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Testimonials Page */
.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.25rem 0;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid rgba(197, 155, 39, 0.2);
  padding: 1rem;
  display: flex;
  gap: 0.8rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E8D9CE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-maroon);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--color-gold);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.92rem;
  font-weight: 700;
}

.testimonial-stars {
  color: #F5A623;
  font-size: 0.78rem;
  margin-bottom: 0.25rem;
}

.testimonial-quote {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  font-style: italic;
}

/* Contact Page */
.contact-item-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.15rem;
}

.contact-item-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-maroon);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Modal */
.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 3500;
  background: rgba(15, 3, 5, 0.85);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.inquiry-modal.open {
  display: flex;
}

.inquiry-modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 420px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.75rem 1.25rem;
  position: relative;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--color-gold);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F3EBE6;
  color: var(--color-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-group {
  margin-bottom: 0.85rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.form-control {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
}

.form-submit-btn {
  width: 100%;
  background: linear-gradient(90deg, #FDE6B4 0%, #F5CE7A 50%, #EAA838 100%);
  color: #4A1205;
  padding: 0.85rem;
  border-radius: var(--radius-pill);
  font-family: "Roboto", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.4);
  cursor: pointer;
  transition: all 0.22s ease;
}

.form-submit-btn:hover {
  background: linear-gradient(90deg, #FFF0CC 0%, #F9D88E 50%, #F0B345 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.55);
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(10, 2, 4, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox-modal.open {
  display: flex;
}

.lightbox-img-wrapper img {
  max-height: 80vh;
  max-width: 90vw;
  object-fit: contain;
}

.lightbox-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #FFFFFF;
  font-size: 2rem;
}

/* ====================================================
   SERVICE DETAIL PAGE STYLING (Matching Reference Screen)
   ==================================================== */
.header-whatsapp-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.header-whatsapp-icon-btn:hover {
  transform: scale(1.08);
}

.service-detail-hero {
  position: relative;
  width: 100%;
  height: 290px;
  overflow: hidden;
  background: #1A0407;
}

.service-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-detail-intro {
  padding: 1.4rem 1.15rem 1rem;
  text-align: center;
  background: #FFFFFF;
}

.service-detail-rings {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
  color: #C08328;
}

.service-detail-title {
  font-family: 'Playfair Display', "Roboto", serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: #7A5200;
  margin: 0.2rem 0 0.25rem;
  line-height: 1.25;
}

.service-detail-subtitle {
  font-family: "Roboto", sans-serif;
  color: #B45309;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-detail-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0.65rem auto 1rem;
  max-width: 220px;
}

.service-detail-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(192, 131, 40, 0.1), rgba(192, 131, 40, 0.85), rgba(192, 131, 40, 0.1));
}

.service-detail-divider .floral {
  color: #C08328;
  font-size: 1.15rem;
  line-height: 1;
}

.service-detail-desc {
  font-family: "Roboto", sans-serif;
  color: #4B5563;
  font-size: 0.94rem;
  line-height: 1.62;
  text-align: center;
  margin: 0;
  padding: 0 0.25rem;
}

/* Facilities Included Section */
.service-facilities-section {
  padding: 1.2rem 1.15rem 1.4rem;
  background: #FAFAF9;
}

.service-detail-section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.service-detail-section-head h2 {
  font-family: 'Playfair Display', "Roboto", serif;
  color: #7A5200;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
}

.service-detail-section-head .head-icon {
  color: #C08328;
  display: flex;
  align-items: center;
  justify-content: center;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.facility-pill {
  background: #FFFFFF;
  border: 1px solid rgba(229, 231, 235, 0.85);
  border-radius: 10px;
  padding: 0.7rem 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.facility-pill:hover {
  transform: translateY(-2px);
  border-color: #C08328;
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.1);
}

.facility-pill .pill-icon {
  width: 28px;
  height: 28px;
  color: #8A5E08;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.facility-pill .pill-label {
  font-family: "Roboto", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: #1F2937;
  line-height: 1.25;
}

/* What Our Clients Say (Testimonial Carousel) */
.service-testimonials-section {
  padding: 1.25rem 0.85rem 1.4rem;
  background: #FFFFFF;
}

.service-detail-testi-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.testi-nav-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFFDF8;
  border: 1px solid rgba(184, 134, 11, 0.3);
  color: #8A5E08;
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
  line-height: 1;
}

.testi-nav-arrow:hover {
  background: #8A5E08;
  color: #FFFFFF;
  border-color: #8A5E08;
}

.testi-cards-container {
  flex: 1;
  position: relative;
  min-height: 145px;
}

.detail-testi-card {
  display: none;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 1rem 1.15rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.detail-testi-card.active {
  display: block;
  animation: fadeInTesti 0.35s ease;
}

@keyframes fadeInTesti {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

.testi-stars {
  color: #F59E0B;
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 0.45rem;
}

.testi-quote {
  font-family: "Roboto", sans-serif;
  color: #374151;
  font-size: 0.86rem;
  line-height: 1.45;
  margin: 0 0 0.55rem;
  font-style: italic;
}

.testi-author {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #7A5200;
  font-size: 0.88rem;
  margin-bottom: 0.15rem;
}

.testi-event-badge {
  font-family: "Roboto", sans-serif;
  color: #9CA3AF;
  font-size: 0.78rem;
}

.testi-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 0.85rem;
}

.testi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D1D5DB;
  cursor: pointer;
  transition: all 0.25s ease;
}

.testi-dot.active {
  background: #8A5E08;
  width: 16px;
  border-radius: 4px;
}

/* Dream Wedding CTA Banner */
.dream-wedding-section {
  padding: 0 0.95rem 2rem;
  background: #FFFFFF;
}

.dream-wedding-card {
  background: linear-gradient(135deg, #4A3201 0%, #7A5200 50%, #A3740D 100%);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 24px rgba(122, 82, 0, 0.32);
  position: relative;
}

.dream-wedding-img {
  width: 42%;
  height: 140px;
  flex-shrink: 0;
  position: relative;
}

.dream-wedding-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dream-wedding-content {
  flex: 1;
  padding: 1rem 0.95rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dream-wedding-content h3 {
  font-family: 'Playfair Display', "Roboto", serif;
  color: #FFFFFF;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.28;
  margin: 0 0 0.85rem;
}

.dream-wedding-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: linear-gradient(90deg, #FDE6B4 0%, #F5CE7A 50%, #EAA838 100%);
  color: #4A1205;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-pill);
  font-family: "Roboto", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
  transition: all 0.2s ease;
  align-self: flex-start;
}

.dream-wedding-btn:hover {
  background: linear-gradient(90deg, #FFF0CC 0%, #F9D88E 50%, #F0B345 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.55);
  color: #4A1205;
}

.dream-wedding-btn .btn-arrow {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.dream-wedding-btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ====================================================
   DEDICATED ENQUIRY PAGE STYLING (Matching Reference Screen)
   ==================================================== */
.enquiry-page-wrapper {
  background: #FDFBF8;
  min-height: 100vh;
  padding-bottom: 120px;
}

/* Enquiry Top Banner */
.enquiry-top-banner {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 1.25rem 1rem 1.75rem;
  background: #FFFDF9;
}

.enquiry-banner-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, transparent 100%);
}

.enquiry-banner-content {
  position: relative;
  z-index: 2;
  width: 65%;
  text-align: center;
}

.enquiry-banner-decor-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.enquiry-banner-decor-top .line {
  width: 26px;
  height: 1px;
  background: #D97706;
}

.enquiry-banner-decor-top .icon {
  color: #D97706;
  font-size: 0.95rem;
}

.enquiry-banner-title {
  font-family: 'Playfair Display', "Roboto", serif;
  font-size: 1.95rem;
  font-weight: 700;
  color: #7A5200;
  margin: 0.2rem 0;
  line-height: 1.2;
}

.enquiry-banner-subtitle {
  font-family: "Roboto", sans-serif;
  color: #4B5563;
  font-size: 0.88rem;
  line-height: 1.35;
  margin: 0.25rem 0 0.4rem;
  font-weight: 500;
}

.enquiry-banner-decor-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.enquiry-banner-decor-bottom .line {
  width: 22px;
  height: 1px;
  background: #D97706;
}

.enquiry-banner-decor-bottom .icon {
  color: #D97706;
  font-size: 0.85rem;
}

/* Enquiry Form Floating Card */
.enquiry-form-card-wrap {
  padding: 0 0.85rem 1.5rem;
  margin-top: -12px;
  position: relative;
  z-index: 3;
}

.enquiry-form-card {
  background: #FFFFFF;
  border-radius: 18px;
  border: 1px solid rgba(229, 225, 218, 0.9);
  box-shadow: 0 8px 26px rgba(184, 134, 11, 0.08);
  padding: 1.35rem 1.15rem 1.5rem;
}

.enquiry-card-header {
  text-align: center;
  margin-bottom: 1.15rem;
}

.enquiry-card-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #FFFDF0;
  border: 1px solid #FCE8B3;
  color: #B8860B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.enquiry-card-title {
  font-family: 'Playfair Display', "Roboto", serif;
  color: #7A5200;
  font-size: 1.36rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.enquiry-card-subtitle {
  font-family: "Roboto", sans-serif;
  color: #6B7280;
  font-size: 0.82rem;
  line-height: 1.35;
  margin: 0;
}

/* Form Input Groups */
.enquiry-field-group {
  position: relative;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1.2px solid #E5E7EB;
  border-radius: 12px;
  margin-bottom: 0.65rem;
  transition: all 0.2s ease;
  overflow: hidden;
}

.enquiry-field-group:focus-within {
  border-color: #B8860B;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.14);
}

.enquiry-field-icon {
  width: 44px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8A5E08;
  flex-shrink: 0;
}

.enquiry-field-group.textarea-group {
  align-items: flex-start;
}

.enquiry-field-group.textarea-group .enquiry-field-icon {
  height: 44px;
}

.enquiry-input,
.enquiry-select,
.enquiry-textarea {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.72rem 0.85rem 0.72rem 0;
  font-family: "Roboto", sans-serif;
  font-size: 0.92rem;
  color: #1F2937;
  outline: none;
}

.enquiry-input::placeholder,
.enquiry-textarea::placeholder {
  color: #9CA3AF;
  font-size: 0.92rem;
}

.enquiry-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: #4B5563;
}

.enquiry-select:valid {
  color: #1F2937;
}

.enquiry-select-arrow {
  position: absolute;
  right: 14px;
  pointer-events: none;
  color: #4B5563;
  display: flex;
  align-items: center;
}

.enquiry-textarea {
  min-height: 85px;
  resize: vertical;
  padding-top: 0.75rem;
}

/* Submit Button */
.enquiry-submit-btn {
  width: 100%;
  margin-top: 0.75rem;
  background: linear-gradient(90deg, #FDE6B4 0%, #F5CE7A 50%, #EAA838 100%);
  color: #4A1205;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-pill);
  padding: 0.88rem 1rem;
  font-family: "Roboto", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.45);
  cursor: pointer;
  transition: all 0.22s ease;
}

.enquiry-submit-btn:hover {
  background: linear-gradient(90deg, #FFF0CC 0%, #F9D88E 50%, #F0B345 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.6);
  color: #4A1205;
}

.enquiry-submit-btn:active {
  transform: translateY(0);
}

.enquiry-submit-btn .btn-arrow {
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

.enquiry-submit-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ====================================================
   GALLERY LAZY LOAD & LIGHTBOX SLIDER WITH NEXT/PREV
   ==================================================== */
.gallery-item.lazy-hidden {
  display: none !important;
}

.gallery-item.animate-fade-in {
  animation: galleryItemFadeIn 0.45s ease forwards;
}

@keyframes galleryItemFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.gallery-load-more-wrap {
  text-align: center;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.gallery-load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(90deg, #FDE6B4 0%, #F5CE7A 50%, #EAA838 100%);
  color: #4A1205;
  padding: 0.78rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: "Roboto", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.45);
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery-load-more-btn:hover {
  background: linear-gradient(90deg, #FFF0CC 0%, #F9D88E 50%, #F0B345 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.6);
  color: #4A1205;
}



.gallery-load-more-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

.gallery-count-status {
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
  color: #6B7280;
  margin: 0;
}

/* Lightbox Modal & Photo Slider */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 3500;
  background: rgba(10, 2, 4, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.lightbox-modal.open {
  display: flex;
  opacity: 1;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.lightbox-close-btn {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}

.lightbox-close-btn:hover {
  background: #C5161D;
  color: #FFFFFF;
  border-color: #C5161D;
  transform: scale(1.08);
}

.lightbox-content-box {
  position: relative;
  z-index: 5;
  max-width: 92vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
}

.lightbox-img-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lightbox-img-wrapper img {
  max-width: 88vw;
  max-height: 72vh;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.lightbox-footer {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 0.5rem;
  gap: 1rem;
}

.lightbox-caption {
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.lightbox-counter {
  color: #FBBF24;
  font-family: "Roboto", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.45);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Prev and Next Nav Buttons */
.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(30, 5, 10, 0.65);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.lightbox-nav-btn.prev {
  left: 0.8rem;
}

.lightbox-nav-btn.next {
  right: 0.8rem;
}

.lightbox-nav-btn:hover {
  background: #8A5E08;
  border-color: #F5BE28;
  color: #FFF3CD;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

/* ====================================================
   HEADER LANGUAGE SELECTOR (Hindi / English Dropdown)
   ==================================================== */
.header-lang-wrapper {
  position: relative;
  z-index: 1200;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: linear-gradient(90deg, #FFF6DC 0%, #FDE6B4 100%);
  border: 1.2px solid rgba(212, 175, 55, 0.65);
  border-radius: var(--radius-pill);
  color: #4A1205;
  font-family: "Roboto", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.25);
  outline: none;
}

.header-lang-btn:hover {
  background: linear-gradient(90deg, #FFFBEB 0%, #FDF0D0 100%);
  border-color: #D97706;
  transform: translateY(-1px);
}

.header-lang-btn .lang-globe-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A1205;
}

.header-lang-btn .lang-current-label {
  line-height: 1;
}

.header-lang-btn .lang-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A1205;
  transition: transform 0.2s ease;
}

.header-lang-btn[aria-expanded="true"] .lang-chevron {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.header-lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 125px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 5px;
  display: none;
  flex-direction: column;
  gap: 3px;
  z-index: 1300;
}

.header-lang-dropdown.open {
  display: flex;
  animation: fadeInDropdown 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInDropdown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lang-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  border-radius: 8px;
  border: none;
  background: transparent;
  font-family: "Roboto", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.15s ease;
  width: 100%;
  text-align: left;
}

.lang-dropdown-item:hover {
  background: #FFF9ED;
  color: #8A5E08;
}

.lang-dropdown-item.active {
  background: #FFF7ED;
  color: #B45309;
  font-weight: 700;
}

.lang-dropdown-item .lang-check {
  font-size: 0.85rem;
  color: #B45309;
  opacity: 0;
}

.lang-dropdown-item.active .lang-check {
  opacity: 1;
}




