/* -------------------------------------------------------------
 * Daksh Palace & Gardens - Luxury Heritage Wedding Venue Style
 * Color Palette:
 * - Headline Text: Deep Black (#1A1A1A)
 * - CTA Button Text: Espresso Brown (#3D2B2B)
 * - Main Background: Dusty Mauve Rose (#A47A7E)
 * - Section Background: Soft Pink (#D4A5A8)
 * - CTA Button: Light Blush (#EBD0CE)
 * ------------------------------------------------------------- */

/* CSS Reset & Variables */
:root {
  --color-headline: #1A1A1A;     /* Deep Black */
  --color-cta-text: #EBD0CE;     /* Light Blush */
  --color-cta-bg: #3D2B2B;       /* Espresso Brown */
  --color-main-bg: #EBD0CE;      /* Light Blush main page background */
  --color-section-bg: #A47A7E;   /* Dusty Mauve Rose section background */
  --color-accent-pink: #D4A5A8;  /* Soft Pink for borders and highlights */
  --color-mauve-accent: #A47A7E; /* Dusty Mauve Rose for cards, details, and buttons */
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', Helvetica, Arial, sans-serif;
  --font-serif-italic: 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Great Vibes', cursive;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-main-bg);
  color: var(--color-headline);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Page Container */
.page-container {
  width: 100%;
  position: relative;
}

/* -------------------------------------------------------------
 * 1. HERO / HEADER SECTION (1920px x 600px default)
 * ------------------------------------------------------------- */
.luxury-header {
  position: relative;
  width: 100%;
  height: 290px; /* Cinematic band height (+20% adjustment) */
  overflow: visible; /* Prevent clipping of the medallion */
  background-color: var(--color-headline); /* Dark base */
  z-index: 5; /* Ensure stacking context is above the section below */
}

/* 5 Image Panels Film Strip */
.panels-container {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden; /* Contain horizontal panel overflow */
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.image-panel {
  position: relative;
  flex: 1;
  height: 100%;
  overflow: hidden;
  transition: flex 0.7s cubic-bezier(0.25, 1, 0.35, 1);
  cursor: pointer;
}

/* Image inside panels */
.panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.02) saturate(0.95);
}

/* Subtle Dusty Mauve Rose (#A47A7E) overlay at 8% opacity to unify colors */
.panel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-main-bg);
  opacity: 0.08;
  pointer-events: none;
}

/* Vignette Treatment */
.vignette-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 50%, rgba(26, 26, 26, 0.4) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Soft Film Grain Treatment */
.film-grain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  z-index: 3;
}

/* -------------------------------------------------------------
 * 2. OVERLAID BREADCRUMB NAVIGATION
 * ------------------------------------------------------------- */
.breadcrumb-nav {
  position: absolute;
  top: 32px;
  left: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(26, 26, 26, 0.5);
}

.breadcrumb-link {
  color: var(--color-cta-bg); /* #EBD0CE */
  opacity: 0.95;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.breadcrumb-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.breadcrumb-separator {
  color: var(--color-section-bg); /* #D4A5A8 */
  user-select: none;
}

.breadcrumb-current {
  color: var(--color-cta-bg);
  font-weight: 600;
}

/* -------------------------------------------------------------
 * 3. CENTER INVITATION OVERLAY CARD (Venue Name & Tagline)
 * ------------------------------------------------------------- */
.hero-overlay-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 8;
  text-align: center;
  background-color: rgba(235, 208, 206, 0.92); /* #EBD0CE at 92% */
  border: 1px solid var(--color-section-bg);
  padding: 24px 44px; /* Reduced padding for shorter header */
  width: 90%;
  max-width: 680px; /* More compact width */
  box-shadow: 0 15px 35px rgba(61, 43, 43, 0.2);
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
}

.card-pretitle {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--color-cta-text);
  margin-bottom: 12px;
  display: block;
}

.venue-name {
  font-family: var(--font-heading);
  font-size: 42px; /* Reduced from 52px */
  font-weight: 700;
  color: var(--color-headline); /* #1A1A1A */
  line-height: 1.15;
  margin-bottom: 6px;
}

.venue-tagline {
  font-family: var(--font-serif-italic);
  font-size: 18px; /* Reduced from 22px */
  font-style: italic;
  font-weight: 400;
  color: var(--color-cta-text); /* #3D2B2B */
}

/* -------------------------------------------------------------
 * 4. CENTER MEDALLION (Focal Point - 50% Overlap)
 * ------------------------------------------------------------- */
.center-medallion-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 120px; /* Reset to Oberoi/Wezoree elegant proportion */
  height: 120px;
  z-index: 10;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.center-medallion-container:hover {
  transform: translate(-50%, 45%) scale(1.08);
}

/* Outer Glow and Ring background */
.medallion-outer-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--color-cta-bg), 0 8px 20px rgba(26, 26, 26, 0.3);
  pointer-events: none;
}

.medallion-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--color-cta-text); /* #3D2B2B */
  overflow: hidden;
  background-color: var(--color-headline);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 8px rgba(61, 43, 43, 0.35);
}

.medallion-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) saturate(0.9);
}

/* Medallion overlay: 10% Dusty Mauve Rose (#A47A7E) */
.medallion-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-main-bg);
  opacity: 0.10;
  pointer-events: none;
}

/* Title and details section on light blush background */
.venue-details-section {
  background-color: var(--color-main-bg); /* #EBD0CE */
  padding: 95px 24px 30px 24px; /* Increased vertical space below header/medallion */
  position: relative;
  z-index: 4;
}

.venue-details-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* Symmetrical centering layout */
  gap: 40px;
  align-items: center;
}

/* Wezoree style title bar below header */
.venue-header-details {
  text-align: center;
  color: var(--color-headline); /* #1A1A1A */
}

.venue-display-title {
  font-family: var(--font-heading); /* Playfair Display */
  font-size: 28px; /* Slightly smaller to fit perfectly in a single line */
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  white-space: nowrap; /* Prevent title from wrapping on desktop */
}

.venue-display-name {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.venue-display-main {
  font-family: var(--font-heading);
  font-weight: 600;
}

.venue-display-sub {
  font-family: var(--font-serif-italic);
  font-size: 0.8em; /* Make "Gir Venue" smaller to fit and look elegant */
  font-style: italic;
  font-weight: 400;
  opacity: 0.85; /* Softer visual hierarchy */
}


.title-reviews-link {
  color: var(--color-headline);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.title-reviews-link:hover {
  opacity: 0.75;
  text-decoration: underline;
}

.title-separator {
  opacity: 0.5;
  font-weight: 300;
}

.venue-location-bar {
  font-size: 14px;
  opacity: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Sub-Navigation Menu styling */
.venue-subnav {
  display: flex;
  justify-content: center;
  gap: 48px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  padding-bottom: 12px;
  margin-top: 36px;
  width: 100%;
}

.subnav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-headline); /* #1A1A1A */
  text-decoration: none;
  position: relative;
  padding-bottom: 8px;
  transition: color 0.3s ease;
}

.subnav-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-section-bg); /* #A47A7E active highlight */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.subnav-link:hover {
  color: var(--color-section-bg); /* #A47A7E */
}

.subnav-link:hover::after {
  transform: scaleX(1);
}

.subnav-link.active {
  color: var(--color-section-bg);
}

.subnav-link.active::after {
  transform: scaleX(1);
}

/* Symmetrical widgets layout */
.venue-social-widget {
  display: flex;
  gap: 12px;
  justify-content: flex-start; /* aligns left on desktop */
}

.venue-contact-widget {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 320px;
  margin-left: auto; /* aligns right on desktop */
}

/* Circular Social Icons Widget buttons */
.social-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1px solid rgba(26, 26, 26, 0.12);
  color: var(--color-headline); /* #1A1A1A */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}

.social-icon-circle:hover {
  background-color: var(--color-section-bg); /* #A47A7E (Dusty Mauve) */
  border-color: var(--color-section-bg);
  color: var(--color-main-bg); /* #EBD0CE (Light Blush) */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(164, 122, 126, 0.2);
}

.social-icon-circle .chat-icon-svg {
  width: 18px;
  height: 18px;
}

.widget-btn {
  font-family: var(--font-heading); /* Playfair Display / Cormorant Garamond */
  font-size: 15px;
  padding: 11px 20px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.btn-full {
  width: 100%;
}

.btn-white {
  background-color: #FFFFFF;
  color: #1A1A1A;
  border: 1px solid rgba(26, 26, 26, 0.12);
}

.btn-white:hover {
  background-color: #FBF9F9;
  border-color: rgba(26, 26, 26, 0.25);
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.04);
}

.widget-btn-row {
  display: flex;
  gap: 8px;
  width: 100%;
}

.btn-half {
  flex: 1;
}

.btn-gold {
  background-color: var(--color-section-bg); /* #A47A7E (Dusty Mauve) */
  color: var(--color-main-bg); /* #EBD0CE (Light Blush) */
  border: 1px solid var(--color-section-bg);
}

.btn-gold:hover {
  background-color: var(--color-main-bg); /* #EBD0CE */
  color: var(--color-section-bg); /* #A47A7E */
  border-color: var(--color-main-bg);
  box-shadow: 0 3px 10px rgba(164, 122, 126, 0.25);
}

.chat-icon-svg {
  width: 16px;
  height: 16px;
}

/* Mobile Sticky CTA - Hidden on desktop */
.mobile-sticky-cta {
  display: none;
}

/* -------------------------------------------------------------
 * 5. BOTTOM-LEFT RIBBONS (Couple Initials)
 * ------------------------------------------------------------- */
.ribbon-badges-container {
  position: absolute;
  bottom: 24px;
  left: 40px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.ribbon-badge {
  width: 40px;
  height: 60px;
  background-color: var(--color-cta-bg); /* #EBD0CE */
  border: 1px solid var(--color-section-bg); /* #D4A5A8 */
  border-bottom: none;
  box-shadow: 0 4px 12px rgba(26, 26, 26, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* Notched fabric ribbon shape */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
  animation: ribbonFlutter 4s ease-in-out infinite alternate;
  transform-origin: top center;
}

.ribbon-badge:nth-child(2) {
  animation-delay: 0.5s;
}

.ribbon-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-headline); /* #1A1A1A */
  margin-top: -6px; /* Offset notch bottom spacing */
}

@keyframes ribbonFlutter {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(1.5deg); }
}

/* -------------------------------------------------------------
 * 6. BOTTOM-RIGHT SOCIAL ICONS
 * ------------------------------------------------------------- */
.social-icons-container {
  position: absolute;
  bottom: 24px;
  right: 40px;
  z-index: 10;
  display: flex;
  gap: 16px;
}

.social-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(235, 208, 206, 0.90); /* #EBD0CE at 90% */
  border: 1px solid var(--color-section-bg); /* #D4A5A8 */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cta-text); /* #3D2B2B */
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 3px 8px rgba(26, 26, 26, 0.1);
}

.social-icon-btn:hover {
  background-color: var(--color-section-bg); /* shifts to #D4A5A8 */
  color: var(--color-cta-text); /* stays #3D2B2B */
  transform: translateY(-2px);
}

.icon-svg {
  width: 18px;
  height: 18px;
}

/* Mobile carousel indicators (Hidden on desktop) */
.carousel-indicators {
  display: none;
}

/* -------------------------------------------------------------
 * 7. SECTION 01: ABOUT US (Background: #EBD0CE Light Blush)
 * ------------------------------------------------------------- */
.about-us-section {
  background-color: var(--color-main-bg); /* #EBD0CE */
  padding: 80px 24px;
  position: relative;
  z-index: 4;
}

.about-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Double-border luxury image frame */
.about-image-column {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-image-frame {
  position: relative;
  width: 100%;
  max-width: 540px; /* target approx 600x500 proportion */
  aspect-ratio: 6 / 5;
  z-index: 2;
}

.about-image-frame::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  border: 1px solid var(--color-section-bg); /* #A47A7E (Dusty Mauve) */
  z-index: -1;
  pointer-events: none;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--color-cta-bg); /* #3D2B2B (Espresso) */
  filter: saturate(0.95) contrast(1.02);
  box-shadow: 0 10px 30px rgba(61, 43, 43, 0.15);
}

.about-content-column {
  color: var(--color-headline); /* #1A1A1A */
}

.about-eyebrow {
  display: block;
  font-family: var(--font-body); /* Lato */
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-cta-bg); /* #3D2B2B (Espresso) */
  margin-bottom: 16px;
}

.about-headline {
  font-family: var(--font-heading); /* Playfair Display */
  font-size: 48px;
  font-weight: 700;
  color: var(--color-headline); /* #1A1A1A */
  line-height: 1.2;
  margin-bottom: 8px;
}

.about-script-accent {
  display: block;
  font-family: var(--font-script); /* Great Vibes */
  font-size: 36px;
  color: var(--color-mauve-accent); /* #A47A7E */
  margin-bottom: 24px;
}

.about-paragraph {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-cta-bg); /* #3D2B2B (Espresso) */
  margin-bottom: 20px;
  opacity: 0.9;
}

.about-cta-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background-color: var(--color-cta-bg); /* #3D2B2B */
  color: var(--color-main-bg); /* #EBD0CE */
  border: 1px solid var(--color-cta-bg);
  padding: 18px 36px;
  border-radius: 2px; /* sharp luxury edge */
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.about-cta-btn:hover {
  background-color: var(--color-headline); /* #1A1A1A */
  border-color: var(--color-headline);
  box-shadow: 0 4px 15px rgba(26, 26, 26, 0.15);
  transform: translateY(-1px);
}

/* -------------------------------------------------------------
 * 8. SECTION 02: PORTFOLIO / WEDDING ALBUM (Background: #A47A7E)
 * ------------------------------------------------------------- */
.portfolio-section {
  background-color: var(--color-section-bg); /* #A47A7E */
  padding: 80px 24px;
  position: relative;
  z-index: 4;
  border-top: 1px solid rgba(235, 208, 206, 0.15);
}

.portfolio-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px auto;
  color: #FFFFFF;
}

.portfolio-script-accent {
  display: block;
  font-family: var(--font-script); /* Great Vibes */
  font-size: 42px;
  color: var(--color-main-bg); /* #EBD0CE */
  margin-bottom: 8px;
}

.portfolio-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--color-headline); /* #1A1A1A */
  line-height: 1.2;
  margin-bottom: 16px;
}

.portfolio-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-main-bg); /* #EBD0CE */
  opacity: 0.95;
}

/* Asymmetric magazine grid layout (12-column system) */
.portfolio-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px; /* Strict 8px gap, no border */
}

/* Portrait Grid Layout for vertical images */
.portfolio-grid-portrait {
  max-width: 1200px;
  margin: 48px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.portfolio-item-portrait {
  position: relative;
  background-size: cover;
  background-position: center;
  aspect-ratio: 3 / 4; /* Perfect for vertical portrait shots */
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
  filter: saturate(0.9) contrast(1.02);
}

.portfolio-item-portrait::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-main-bg);
  opacity: 0.04;
  pointer-events: none;
}

.portfolio-item-portrait:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 30px rgba(26, 26, 26, 0.4);
  z-index: 10;
  filter: saturate(1) contrast(1.02);
}

.portfolio-item {
  position: relative;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.05); /* Subtle border-like fill for empty spaces */
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
  filter: saturate(0.85) sepia(0.08) contrast(1.02); /* Rose-sepia tint */
}

.portfolio-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-main-bg); /* #EBD0CE overlay */
  opacity: 0.04;
  pointer-events: none;
}

.portfolio-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(26, 26, 26, 0.45);
  z-index: 10;
  filter: saturate(1) sepia(0) contrast(1.02); /* Restore original color grading */
}

/* Grid layout spans */
.col-8 {
  grid-column: span 8;
  aspect-ratio: 16 / 10;
}

.col-6 {
  grid-column: span 6;
}

.col-4 {
  grid-column: span 4;
}

.col-12 {
  grid-column: span 12;
  aspect-ratio: 3 / 1;
}

.portfolio-stacked {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stack-half {
  flex: 1;
  aspect-ratio: auto;
}

/* Caption on Hover */
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.1) 60%, transparent 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: opacity 0.35s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-caption {
  font-family: var(--font-serif-italic); /* Cormorant Italic */
  font-size: 16px;
  font-style: italic;
  color: var(--color-main-bg); /* #EBD0CE */
  transform: translateY(10px);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-item:hover .portfolio-caption {
  transform: translateY(0);
}

.portfolio-cta-container {
  text-align: center;
  margin-top: 56px;
}

.portfolio-cta-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background-color: var(--color-main-bg); /* #EBD0CE */
  color: var(--color-cta-bg); /* #3D2B2B */
  border: 1px solid var(--color-main-bg);
  padding: 18px 36px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.portfolio-cta-btn:hover {
  background-color: var(--color-cta-bg); /* #3D2B2B */
  color: var(--color-main-bg); /* #EBD0CE */
  border-color: var(--color-cta-bg);
  box-shadow: 0 5px 15px rgba(26, 26, 26, 0.2);
  transform: translateY(-1px);
}

/* -------------------------------------------------------------
 * 8.5 SECTION 03: VENUE GALLERY (Background: #EBD0CE Light Blush)
 * ------------------------------------------------------------- */
.venue-gallery-section {
  background-color: var(--color-main-bg); /* #EBD0CE */
  padding: 80px 24px;
  position: relative;
  z-index: 4;
  border-top: 1px solid rgba(164, 122, 126, 0.25);
}

.gallery-header {
  text-align: left;
  max-width: 1200px;
  margin: 0 auto 56px auto;
}

.gallery-script-accent {
  display: block;
  font-family: var(--font-script); /* Great Vibes */
  font-size: 42px;
  color: var(--color-mauve-accent); /* #A47A7E */
  margin-bottom: 8px;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--color-headline); /* #1A1A1A */
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.gallery-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-cta-bg); /* #3D2B2B */
  opacity: 0.85;
}

/* Bento Box Gallery Grid */
.gallery-bento-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px; /* Strict 12px gap */
}

.bento-item {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 2px; /* sharp luxury edge */
  border: 1px solid rgba(164, 122, 126, 0.2); /* 20% opacity border */
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  filter: contrast(1.01) saturate(0.9) brightness(0.95); /* Warm desaturated cream tones */
}

.bento-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.6) 0%, transparent 50%);
  z-index: 1;
  transition: opacity 0.3s ease;
}

.bento-item:hover {
  transform: scale(1.02);
  filter: contrast(1.02) saturate(1) brightness(1);
  box-shadow: 0 10px 25px rgba(164, 122, 126, 0.2);
  z-index: 5;
}

/* Bento Sizes */
.bento-wide {
  grid-column: span 2;
}

.bento-tall {
  grid-row: span 2;
}

.bento-standard {
  grid-column: span 1;
}

/* Labels on hover */
.bento-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(26, 26, 26, 0.6);
  opacity: 0.9;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.bento-item:hover .bento-label {
  transform: translateY(-5px);
  opacity: 1;
}

/* Floating Info Cards (Banquet / Lawn) */
.floating-info-card {
  position: absolute;
  top: 24px;
  right: 24px;
  background-color: rgba(26, 26, 26, 0.85); /* #1A1A1A at 85% */
  border: 1px solid rgba(235, 208, 206, 0.2);
  padding: 24px;
  color: var(--color-main-bg); /* #EBD0CE */
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
}

.floating-info-card:hover {
  background-color: rgba(26, 26, 26, 0.95);
  transform: translateY(-2px);
}

.info-card-number {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.info-card-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.9;
}

/* -------------------------------------------------------------
 * 8.6 SECTION 04: REVIEWS & TESTIMONIALS (Background: #A47A7E)
 * ------------------------------------------------------------- */
.testimonials-carousel-section {
  background-color: var(--color-section-bg); /* #A47A7E */
  padding: 80px 24px;
  position: relative;
  z-index: 4;
  border-top: 1px solid rgba(235, 208, 206, 0.15);
}

.testimonials-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px auto;
  color: #FFFFFF;
}

.testimonials-script-accent {
  display: block;
  font-family: var(--font-script); /* Great Vibes */
  font-size: 42px;
  color: var(--color-main-bg); /* #EBD0CE */
  margin-bottom: 8px;
}

.testimonials-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--color-headline); /* #1A1A1A */
  line-height: 1.2;
  margin-bottom: 16px;
}

.testimonials-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-main-bg); /* #EBD0CE */
  opacity: 0.95;
}

/* Testimonial slider layouts */
.slider-outer-wrapper {
  position: relative;
  max-width: 1120px;
  margin: 0 auto 80px auto;
  display: flex;
  align-items: center;
}

.slider-viewport {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.slider-track {
  display: flex;
  gap: 32px; /* strict 32px gap */
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Card Size 320x568 (9:16 aspect ratio) */
.reel-card {
  flex: 0 0 320px;
  height: 568px;
  border-radius: 16px; /* rounded reel look */
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(26, 26, 26, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 24px;
}

.reel-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.15) 0%, rgba(26, 26, 26, 0.4) 40%, rgba(26, 26, 26, 0.85) 100%);
  z-index: 1;
}

.reel-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFFFFF;
}

/* Card Header elements */
.reel-card .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.couple-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-main-bg);
  background-size: cover;
  background-position: center;
}

.couple-meta {
  display: flex;
  flex-direction: column;
}

.couple-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
}

.wedding-date {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-main-bg); /* #EBD0CE */
  opacity: 0.85;
}

/* Card body quotes */
.reel-card .card-body {
  margin-top: auto;
  margin-bottom: 24px;
}

.quote-mark {
  display: block;
  font-family: var(--font-heading);
  font-size: 64px;
  line-height: 1;
  color: var(--color-main-bg); /* #EBD0CE */
  opacity: 0.35;
  margin-bottom: -20px;
}

.testimonial-text {
  font-family: var(--font-serif-italic); /* Cormorant Italic */
  font-size: 17px;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-main-bg); /* #EBD0CE */
}

/* Card footer details */
.reel-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(235, 208, 206, 0.15);
  padding-top: 16px;
}

.rating-stars {
  color: var(--color-main-bg); /* #EBD0CE */
  font-size: 14px;
  letter-spacing: 2px;
}

.instagram-handle {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-main-bg);
  opacity: 0.8;
  font-weight: 500;
}

/* Slider navigation arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-main-bg); /* #EBD0CE */
  color: var(--color-cta-bg); /* #3D2B2B */
  border: 1px solid var(--color-main-bg);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(26, 26, 26, 0.15);
}

.slider-arrow:hover {
  background-color: var(--color-cta-bg); /* #3D2B2B */
  color: var(--color-main-bg); /* #EBD0CE */
  border-color: var(--color-cta-bg);
}

.arrow-left {
  left: -64px;
}

.arrow-right {
  right: -64px;
}

/* Trust Bar Styling */
.trust-metrics-bar {
  max-width: 1000px;
  margin: 0 auto;
  border-top: 1px solid rgba(235, 208, 206, 0.15);
  padding-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.metric-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-headline); /* #1A1A1A */
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.metric-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-cta-bg); /* #3D2B2B */
}

/* -------------------------------------------------------------
 * 8.7 SECTION 05: CONTACT FORM (Background: #EBD0CE Light Blush)
 * ------------------------------------------------------------- */
.booking-contact-section {
  background-color: var(--color-main-bg); /* #EBD0CE */
  padding: 80px 24px;
  position: relative;
  z-index: 4;
  border-top: 1px solid rgba(164, 122, 126, 0.25);
  /* Optional corner floral SVG elements */
}

.contact-split-layout {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Left column details */
.contact-info-column {
  color: var(--color-headline);
}

.contact-script-accent {
  display: block;
  font-family: var(--font-script); /* Great Vibes */
  font-size: 48px;
  color: var(--color-mauve-accent); /* #A47A7E */
  margin-bottom: 8px;
}

.contact-headline {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--color-headline); /* #1A1A1A */
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.contact-paragraph {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-cta-bg); /* #3D2B2B */
  margin-bottom: 40px;
  opacity: 0.9;
}

.contact-details-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.detail-icon {
  font-size: 20px;
  color: var(--color-mauve-accent);
  line-height: 1.2;
}

.detail-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-cta-bg); /* #3D2B2B */
  font-weight: 500;
}

/* Social link circles */
.social-circles-row {
  display: flex;
  gap: 16px;
}

.social-circle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-mauve-accent); /* #A47A7E */
  color: var(--color-main-bg); /* #EBD0CE */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(164, 122, 126, 0.15);
}

.social-circle-btn:hover {
  background-color: var(--color-cta-bg); /* #3D2B2B */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(61, 43, 43, 0.25);
}

.social-btn-svg {
  width: 20px;
  height: 20px;
}

/* Right Column Frosted Glass Form (Dark Theme) */
.frosted-glass-form-container {
  background-color: rgba(61, 43, 43, 0.9); /* #3D2B2B at 90% opacity */
  border: 1px solid rgba(212, 165, 168, 0.3); /* #D4A5A8 border */
  padding: 48px;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(26, 26, 26, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-main-bg); /* #EBD0CE */
}

.frosted-glass-form-container .form-title {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
}

.frosted-glass-form-container .form-subtitle {
  color: rgba(235, 208, 206, 0.8);
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 32px;
}

.curated-royal-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.curated-royal-form .form-group {
  margin-bottom: 20px;
  position: relative;
}

.curated-royal-form .form-row .form-group {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-main-bg); /* #EBD0CE */
  margin-bottom: 6px;
  transition: all 0.3s ease;
}

.curated-royal-form .form-group.focused .form-label {
  color: #FFFFFF; /* Highlight focused label */
  transform: translateY(-1px);
}

/* Event selection select chips style */
.chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chip {
  padding: 10px 16px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(235, 208, 206, 0.25);
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-main-bg); /* #EBD0CE */
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.chip:hover {
  border-color: var(--color-main-bg);
  background-color: rgba(255, 255, 255, 0.18);
}

.chip.active {
  background-color: var(--color-main-bg); /* #EBD0CE */
  border-color: var(--color-main-bg);
  color: var(--color-cta-bg); /* #3D2B2B */
  box-shadow: 0 3px 12px rgba(26, 26, 26, 0.3);
}

/* Input Fields styling */
.curated-royal-form .form-input {
  width: 100%;
  padding: 16px 20px;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(235, 208, 206, 0.25);
  border-radius: 2px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.3s ease;
}

.curated-royal-form select.form-input option {
  background-color: #3D2B2B; /* Dark background to prevent default browser styling issue */
  color: #FFFFFF;
}

.curated-royal-form .form-input::placeholder {
  color: rgba(235, 208, 206, 0.55);
}

.curated-royal-form .form-input:focus {
  outline: none;
  border-color: var(--color-main-bg); /* #EBD0CE */
  background-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.04);
}

.curated-royal-form .form-textarea {
  resize: none;
}

/* Checkboxes */
.checkbox-group {
  margin-top: 8px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-checkbox {
  position: relative;
  height: 18px;
  width: 18px;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(235, 208, 206, 0.3);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s ease;
}

.checkbox-container:hover input ~ .custom-checkbox {
  border-color: var(--color-main-bg);
}

.checkbox-container input:checked ~ .custom-checkbox {
  background-color: var(--color-main-bg); /* #EBD0CE */
  border-color: var(--color-main-bg);
}

.custom-checkbox::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid var(--color-cta-bg); /* #3D2B2B checkmark */
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container input:checked ~ .custom-checkbox::after {
  display: block;
}

.checkbox-label-text {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-main-bg); /* #EBD0CE */
  opacity: 0.9;
}

/* Submit Consultation Button (Light Theme Pop) */
.consultation-submit-btn {
  width: 100%;
  padding: 20px;
  background-color: var(--color-main-bg); /* #EBD0CE */
  color: var(--color-cta-bg); /* #3D2B2B */
  border: 1px solid var(--color-main-bg);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.consultation-submit-btn:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--color-headline); /* #1A1A1A */
  box-shadow: 0 8px 20px rgba(26, 26, 26, 0.3);
  transform: translateY(-2px);
}

.btn-arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}

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

.form-trust-line {
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-main-bg); /* #EBD0CE */
  opacity: 0.75;
  margin-top: 20px;
}

/* -------------------------------------------------------------
 * 9. LUXURY FOOTER
 * ------------------------------------------------------------- */
.luxury-footer {
  background-color: #3D2B2B; /* Explicit Espresso Brown */
  color: #EBD0CE; /* Explicit Light Blush */
  padding: 32px 24px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 1px;
}

/* =============================================================
 * 9. SERVICES SECTION
 * ============================================================= */
.services-section {
  background-color: var(--color-section-bg); /* #D4A5A8 (Soft Pink) */
  padding: 140px 0;
  position: relative;
}

.services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px auto;
}

.services-script-accent {
  font-family: var(--font-script); /* Great Vibes */
  font-size: 42px;
  color: var(--color-main-bg); /* #EBD0CE */
  display: block;
  margin-bottom: 8px;
}

.services-title {
  font-family: var(--font-heading); /* Playfair Display */
  font-size: 52px;
  color: var(--color-headline); /* #1A1A1A */
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.services-subtitle {
  font-family: var(--font-body); /* Lato */
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-cta-bg); /* #3D2B2B */
  opacity: 0.9;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0 24px;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.45); /* Elegant semi-transparent white */
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 48px 32px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 30px rgba(61, 43, 43, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 40px rgba(61, 43, 43, 0.12);
  border-color: var(--color-main-bg);
}

.service-icon-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--color-cta-bg); /* #3D2B2B dark base */
  color: var(--color-main-bg); /* #EBD0CE */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px auto;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon-container {
  transform: rotate(8deg) scale(1.05);
}

.service-icon {
  width: 36px;
  height: 36px;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-headline); /* #1A1A1A */
  margin-bottom: 16px;
  font-weight: 600;
}

.service-card-description {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-cta-bg); /* #3D2B2B */
  opacity: 0.85;
}

/* -------------------------------------------------------------
 * 10. RESPONSIVE BEHAVIOR
 * ------------------------------------------------------------- */

/* Tablet Portrait & Landscape (up to 1024px) */
@media (max-width: 1024px) {
  .hero-overlay-card {
    padding: 30px 40px;
    max-width: 600px;
  }
  
  .venue-name {
    font-size: 40px;
  }
  
  .grid-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .venue-details-grid {
    gap: 20px;
  }

  .venue-display-title {
    font-size: 24px;
    gap: 8px;
  }
}

/* Tablet (768px) Specific Layout */
@media (max-width: 768px) {
  
  /* --- Global Reset & Touch Optimization --- */
  body {
    overflow-x: hidden;
    padding-bottom: 72px !important;
  }
  
  .about-cta-btn,
  .portfolio-cta-btn,
  .consultation-submit-btn,
  .widget-btn,
  .social-circle-btn,
  .social-icon-circle,
  .subnav-link {
    min-height: 44px; /* iOS Minimum tap target guideline */
  }

  .about-cta-btn:active,
  .portfolio-cta-btn:active,
  .consultation-submit-btn:active,
  .widget-btn:active,
  .social-circle-btn:active,
  .social-icon-circle:active {
    transform: scale(0.97); /* Subtle tap compression interaction */
    transition: transform 0.1s ease;
  }

  /* Disable hover effects on mobile view */
  .about-cta-btn:hover,
  .portfolio-cta-btn:hover,
  .consultation-submit-btn:hover,
  .widget-btn:hover,
  .social-circle-btn:hover,
  .social-icon-circle:hover {
    transform: none;
    box-shadow: none;
  }

  /* --- Spacing & Padding Scaling --- */
  .about-us-section,
  .portfolio-section,
  .venue-gallery-section,
  .testimonials-carousel-section,
  .booking-contact-section {
    padding: 64px 20px; /* Section vertical: 64px, horizontal: 20px */
  }

  .about-split-layout {
    display: flex;
    flex-direction: column;
    gap: 32px; /* reduced by 50% from 64px */
  }

  .contact-split-layout {
    display: flex;
    flex-direction: column;
    gap: 40px; /* reduced by 50% from 80px */
  }

  .portfolio-header,
  .gallery-header,
  .testimonials-header {
    margin-bottom: 28px; /* reduced by 50% from 56px */
    text-align: center;
  }

  .frosted-glass-form-container {
    padding: 24px; /* Card padding: 48px -> 24px */
  }

  /* Button Padding Scaling */
  .about-cta-btn,
  .portfolio-cta-btn,
  .consultation-submit-btn {
    padding: 14px 24px; /* Button padding: 18px 36px -> 14px 24px */
  }

  /* Typography Scaling (30-40% reduction) */
  .about-headline,
  .portfolio-title,
  .gallery-title,
  .testimonials-title,
  .contact-headline {
    font-size: 26px; /* H2: 28px -> 26px */
  }

  .about-paragraph,
  .portfolio-subtitle,
  .gallery-subtitle,
  .testimonials-subtitle,
  .contact-paragraph {
    font-size: 15px; /* Body: 16px -> 15px */
  }

  .about-cta-btn,
  .portfolio-cta-btn,
  .consultation-submit-btn {
    font-size: 14px; /* Button Text: 14px -> 14px */
  }

  .breadcrumb-nav {
    font-size: 11px; /* Breadcrumb: 14px -> 11px */
  }

  /* --- Header / Image Panel swipeable carousel --- */
  .luxury-header {
    height: 380px; /* Height: 380px */
    position: relative;
    overflow: visible;
  }

  .panels-container {
    display: flex;
    width: 100vw;
    height: 380px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    touch-action: pan-x; /* Swipe gesture support */
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .panels-container::-webkit-scrollbar {
    display: none;
  }

  .image-panel {
    flex: 0 0 100vw;
    width: 100vw;
    height: 380px;
    scroll-snap-align: start;
  }

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

  /* Pagination Dots */
  .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px; /* 8px gap */
    position: absolute;
    bottom: -56px; /* Positioned below the medallion */
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
  }

  .indicator-dot {
    display: block;
    width: 8px; /* 8px size */
    height: 8px;
    border-radius: 50%;
    background-color: #D4A5A8; /* Inactive: Soft Pink */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
  }

  .indicator-dot.active {
    background-color: #3D2B2B; /* Active: Espresso Brown */
    width: 20px; /* pill shape (20px wide) */
    border-radius: 10px;
  }

  /* Tap Arrow Indicators (Pseudo-elements on header) */
  .luxury-header::before {
    content: '‹';
    position: absolute;
    left: 8px; /* Edge offset 8px */
    top: 50%;
    transform: translateY(-50%);
    width: 24px; /* 24px circles */
    height: 24px;
    border-radius: 50%;
    background-color: #EBD0CE; /* Background */
    color: #3D2B2B; /* Icon */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: sans-serif;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 12;
    pointer-events: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  }

  .luxury-header::after {
    content: '›';
    position: absolute;
    right: 8px; /* Edge offset 8px */
    top: 50%;
    transform: translateY(-50%);
    width: 24px; /* 24px circles */
    height: 24px;
    border-radius: 50%;
    background-color: #EBD0CE; /* Background */
    color: #3D2B2B; /* Icon */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: sans-serif;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 12;
    pointer-events: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  }

  .luxury-header:active::before,
  .luxury-header:active::after {
    opacity: 1; /* Visible only on tap */
  }

  /* --- Center Medallion --- */
  .center-medallion-container {
    width: 80px; /* 80px diameter */
    height: 80px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%); /* 50% overlap bottom */
    z-index: 10; /* sits ABOVE the carousel dots */
  }

  .medallion-inner {
    border-width: 2px; /* 2px border thickness */
  }

  /* --- Venue Title Bar --- */
  .venue-details-section {
    padding: 120px 20px 24px 20px; /* 120px top padding to clear medallion and dots */
  }

  .venue-details-grid {
    display: flex;
    flex-direction: column; /* Stack everything vertically */
    gap: 0;
    align-items: center;
    width: 100%;
  }

  /* Order styling */
  .venue-header-details {
    order: 1; /* Title bar block at top */
    text-align: center;
    width: 100%;
  }

  .venue-social-widget {
    order: 2; /* Social icons in middle */
    display: flex;
    justify-content: center;
    gap: 12px; /* Gap: 12px */
    margin-top: 16px;
    width: 100%;
  }

  .venue-contact-widget {
    display: none !important;
  }

  .mobile-sticky-cta {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    background: rgba(255, 255, 255, 0.95) !important; /* Frosted white glass */
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    padding: 12px 20px !important;
    z-index: 9999 !important; /* Ensure it stays above everything */
    border-top: 1px solid rgba(26, 26, 26, 0.08) !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06) !important;
    flex-direction: row !important;
  }

  /* Title line formatting details (CSS tricks) */
  .venue-display-title {
    display: block;
    margin-bottom: 0;
    text-align: center;
  }

  .venue-display-name {
    display: contents; /* Allows children to flow inline with siblings on line 2 */
  }

  .venue-display-main {
    display: block; /* Forces title to be line 1 */
    font-family: var(--font-heading);
    font-size: 24px; /* H1: 24px */
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 4px;
  }

  .venue-display-sub {
    font-family: var(--font-serif-italic);
    font-size: 14px; /* Sub-title: 14px */
    color: #3D2B2B;
    font-style: italic;
    display: inline;
  }

  .title-separator {
    display: inline;
    font-size: 14px;
    color: #3D2B2B;
    margin: 0 6px;
  }

  .title-reviews-link {
    display: inline;
    font-family: var(--font-serif-italic);
    font-size: 14px;
    color: #3D2B2B;
    font-style: italic;
  }

  /* Location */
  .venue-location-bar {
    font-size: 12px; /* Location: 12px */
    color: #3D2B2B;
    text-align: center;
    padding: 0 24px; /* Padding 0 24px */
    margin-top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }

  /* Social Icons size overrides */
  .venue-social-widget .social-icon-circle {
    width: 36px; /* Size: 36px circles */
    height: 36px;
  }

  /* CTA Buttons */
  .venue-contact-widget #btn-contact-number {
    width: 100%;
    height: 48px; /* Height: 48px */
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
  }

  .venue-contact-widget .widget-btn-row {
    display: flex;
    gap: 8px; /* 8px gap */
    width: 100%;
  }

  .venue-contact-widget .widget-btn-row .widget-btn {
    flex: 1; /* 50/50 split */
    height: 48px; /* Height: 48px */
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
  }

  /* --- Grid Sub-Navigation (No Horizontal Scrolling) --- */
  .venue-subnav {
    position: relative;
    top: auto;
    z-index: 10;
    background-color: transparent;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 24px;
    padding: 0 16px;
    overflow-x: visible;
  }

  .venue-subnav::-webkit-scrollbar {
    display: none;
  }

  .subnav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 12px 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 4px;
    color: #3D2B2B;
    white-space: normal;
    height: auto;
    transition: all 0.3s ease;
  }

  /* Active button style */
  .subnav-link::after {
    display: none;
  }

  .subnav-link.active {
    background-color: #3D2B2B;
    border-color: #3D2B2B;
    color: #EBD0CE; /* Light blush text */
    box-shadow: 0 4px 12px rgba(61, 43, 43, 0.12);
  }

  .subnav-link.active::after {
    display: none;
  }

  /* Fade-out Gradient on the Right Edge */
  .venue-subnav::after {
    content: '';
    position: sticky;
    right: 0;
    top: 0;
    height: 100%;
    width: 16px; /* 16px wide */
    background: linear-gradient(to right, rgba(212, 165, 168, 0), rgba(212, 165, 168, 1)); /* Fade into #D4A5A8 background */
    pointer-events: none;
    flex: 0 0 16px;
    margin-left: -16px;
    z-index: 5;
  }

  /* --- Grid Collapses --- */
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .portfolio-grid-portrait {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 16px;
  }

  .col-8, .col-6, .col-4, .col-12 {
    grid-column: span 2 !important;
    aspect-ratio: 4 / 3 !important;
  }

  .portfolio-stacked {
    grid-column: span 2;
    display: contents;
  }

  .portfolio-overlay {
    opacity: 1; /* Always show overlays on touch devices */
    background: linear-gradient(to top, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.1) 80%, transparent 100%);
    padding: 12px;
  }

  .portfolio-caption {
    transform: translateY(0);
    font-size: 12px;
  }

  .gallery-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 8px;
  }

  .bento-wide {
    grid-column: span 2;
  }

  .bento-tall {
    grid-row: span 2;
    grid-column: span 1;
  }

  .bento-standard {
    grid-column: span 1;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .trust-metrics-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-top: 40px;
  }

  .metric-number {
    font-size: 32px;
  }

  .metric-label {
    font-size: 10px;
  }

  /* Form Container padding */
  .frosted-glass-form-container {
    padding: 24px 16px;
  }

  .curated-royal-form .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Services Section Responsive Overrides */
  .services-section {
    padding: 64px 0 !important;
  }

  .services-header {
    margin-bottom: 36px !important;
    padding: 0 20px;
  }

  .services-title {
    font-size: 26px !important;
  }

  .services-subtitle {
    font-size: 15px !important;
  }

  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 0 20px !important;
  }

  .service-card {
    padding: 36px 24px !important;
  }

  .service-icon-container {
    width: 64px !important;
    height: 64px !important;
    margin-bottom: 20px !important;
  }

  .service-icon {
    width: 28px !important;
    height: 28px !important;
  }

  .service-card-title {
    font-size: 18px !important;
    margin-bottom: 12px !important;
  }

  .service-card-description {
    font-size: 14px !important;
  }
}

/* Small Mobile Override (max-width: 500px) */
@media (max-width: 500px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .portfolio-grid-portrait {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .portfolio-grid .col-8,
  .portfolio-grid .col-6,
  .portfolio-grid .col-4,
  .portfolio-grid .col-12,
  .portfolio-stacked {
    grid-column: span 1 !important;
  }

  .gallery-bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .bento-wide, .bento-tall, .bento-standard {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  .trust-metrics-bar {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =============================================================
 * 11. MOBILE ONLY OVERRIDES & BUG FIXES (APPEND-ONLY)
 * ============================================================= */
@media (max-width: 768px) {

  /* 🐛 BUG #1: HEADER MEDALLION OVERLAPPING TITLE TEXT */
  .luxury-header,
  .header-carousel {
    margin-bottom: 40px !important; /* space for medallion overflow */
    position: relative !important;
  }

  .center-medallion-container,
  .medallion {
    width: 80px !important;
    height: 80px !important;
    bottom: -40px !important; /* half outside carousel */
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
  }

  .venue-details-section,
  .venue-title-section {
    padding-top: 12px !important; /* clears the medallion */
    position: relative !important;
    z-index: 1 !important;
  }

  .venue-header-details {
    margin-top: 0px !important; /* gap below the carousel/medallion area */
  }

  /* 🐛 BUG #2: WEIRD "|" PIPE ON SEPARATE LINE + TRAILING COMMA */
  .venue-display-main,
  .venue-name {
    display: block !important;
    font-size: 0 !important; /* hide original text with trailing comma */
  }

  .venue-display-main::before,
  .venue-name::before {
    content: "Daksh Resort & Amusement Park" !important; /* render without trailing comma */
    font-size: 24px !important;
    display: block !important;
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
    color: #1A1A1A !important;
    white-space: normal !important;
  }

  /* Support the user's specific class name example as well */
  .venue-name::after {
    content: "" !important; /* removes trailing comma pseudo-elements if any */
  }

  .venue-display-title {
    white-space: nowrap !important; /* keep subtitle and reviews on one line */
  }

  .venue-display-sub,
  .venue-subtitle {
    white-space: nowrap !important;
    font-size: 13px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  .title-separator,
  .venue-subtitle .separator,
  .separator {
    display: inline-block !important; /* keep | inline */
    vertical-align: middle !important;
    margin: 0 6px !important;
  }

  .title-reviews-link {
    display: inline-block !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
  }

  /* 🐛 BUG #3: PORTFOLIO IMAGE TEXT OVERLAY OVERFLOWING HORIZONTALLY */
  .portfolio-item,
  .bento-item,
  .portfolio-image,
  .venue-image {
    overflow: hidden !important;
    position: relative !important;
  }

  .portfolio-caption,
  .bento-label,
  .image-overlay-text,
  .image-caption,
  .image-title-overlay {
    max-width: calc(100% - 32px) !important;
    font-size: 12px !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .image-overlay-text h3,
  .image-title-overlay h3 {
    font-size: 14px !important;
    line-height: 1.3 !important;
  }

  /* 🐛 BUG #4: FLOATING INFO CARDS TOO LARGE ON VENUE IMAGES */
  .floating-info-card {
    padding: 12px 16px !important;
    max-width: 140px !important;
    position: absolute !important;
    bottom: 16px !important;
    right: 16px !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
  }

  .floating-info-card .info-card-number,
  .floating-info-card .number {
    font-size: 22px !important;
    line-height: 1.1 !important;
  }

  .floating-info-card .info-card-label,
  .floating-info-card .label {
    font-size: 9px !important;
    letter-spacing: 1px !important;
    margin-top: 2px !important;
  }

  /* 🐛 BUG #5: BOTTOM INFO CARDS OVERFLOWING OFF SCREEN */
  .venue-info-grid,
  .info-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 0 16px !important;
  }

  .info-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 16px !important;
  }

  .info-card h4 {
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
  }

  .info-card p {
    font-size: 14px !important;
    word-wrap: break-word !important;
  }

  /* 🐛 BUG #6: "PALACE REFLECTING POOL" 2-COLUMN LAYOUT BROKEN */
  .two-column,
  .split-layout,
  .row-flex,
  [class*="grid-cols-2"],
  [class*="col-2"] {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    width: 100% !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
  }

  .two-column > *,
  .split-layout > * {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* 🐛 BUG #7: RANDOM CIRCULAR OVERLAYS ON VENUE IMAGES */
  .venue-gallery .decorative-circle,
  .venue-gallery .medallion-overlay,
  .venue-image .circle-frame,
  .portfolio-image .circle-frame,
  .venue-gallery-section .decorative-circle,
  .venue-gallery-section .medallion-overlay,
  .gallery-bento-grid .decorative-circle,
  .gallery-bento-grid .medallion-overlay {
    display: none !important;
  }

  /* Only header medallion stays visible */
  .header-section .medallion,
  .center-medallion-container {
    display: block !important;
  }

  /* 🐛 BUG #8: TESTIMONIAL CARDS BLEEDING/HALF-VISIBLE */
  .testimonials-carousel,
  .reviews-carousel,
  .slider-viewport {
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 0 16px !important;
    gap: 16px !important;
  }

  .testimonials-carousel::-webkit-scrollbar,
  .reviews-carousel::-webkit-scrollbar,
  .slider-viewport::-webkit-scrollbar {
    display: none !important;
  }

  .testimonial-card,
  .reel-card {
    flex: 0 0 calc(100vw - 64px) !important;
    width: calc(100vw - 64px) !important;
    max-width: 320px !important;
    scroll-snap-align: center !important;
    margin: 0 auto !important;
  }

  /* Hide next card peek */
  .testimonials-carousel .testimonial-card + .testimonial-card,
  .reviews-carousel .testimonial-card + .testimonial-card,
  .slider-viewport .reel-card + .reel-card {
    margin-left: 16px !important;
  }

  /* 🐛 BUG #9: SUB-NAV NO SCROLL INDICATOR (GENERIC SCROLL ONLY) */
  .sub-nav-container {
    position: relative !important;
    overflow: hidden !important;
  }

  .sub-nav-container::after {
    content: "" !important;
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 32px !important;
    background: linear-gradient(to right, transparent, #D4A5A8) !important;
    pointer-events: none !important;
    z-index: 2 !important;
  }

  .sub-nav {
    overflow-x: auto !important;
    scroll-snap-type: x proximity !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    padding-right: 32px !important; /* space for fade */
  }

  .sub-nav::-webkit-scrollbar {
    display: none !important;
  }

  .sub-nav-item {
    flex-shrink: 0 !important;
    scroll-snap-align: start !important;
    padding: 14px 18px !important;
    font-size: 12px !important;
    white-space: nowrap !important;
  }

  /* Venue specific sub-nav: 2-column grid style instead of horizontal scrolling */
  .venue-subnav-container {
    position: relative !important;
    overflow: visible !important;
  }

  .venue-subnav-container::after {
    display: none !important;
  }

  .venue-subnav {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    height: auto !important;
    padding: 0 16px !important;
    overflow-x: visible !important;
    background-color: transparent !important;
  }

  .subnav-link {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding: 12px 8px !important;
    font-size: 11px !important;
    white-space: normal !important;
    flex-shrink: 1 !important;
  }

  /* 🐛 BUG #10: TRUST BAR (500+, 4.9★, etc.) TAKES TOO MUCH SPACE */
  .trust-bar,
  .stats-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px 16px !important;
    padding: 32px 20px !important;
  }

  .trust-metrics-bar {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 8px 4px !important;
    padding: 24px 8px !important;
  }

  .trust-bar .stat-item,
  .stats-grid .stat-item,
  .trust-metrics-bar .metric-card {
    text-align: center !important;
  }

  .trust-bar .number,
  .stats-grid .number {
    font-size: 32px !important;
    line-height: 1.1 !important;
  }

  .trust-metrics-bar .metric-number {
    font-size: 22px !important;
    line-height: 1.1 !important;
  }

  .trust-bar .label,
  .stats-grid .label {
    font-size: 10px !important;
    letter-spacing: 1.5px !important;
    margin-top: 4px !important;
  }

  .trust-metrics-bar .metric-label {
    font-size: 9px !important;
    letter-spacing: 0.5px !important;
    margin-top: 4px !important;
    line-height: 1.2 !important;
  }

  /* 🐛 BUG #11: PREVENT HORIZONTAL PAGE SCROLL (CRITICAL) */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  * {
    max-width: 100vw;
    box-sizing: border-box;
  }

  img, video {
    max-width: 100% !important;
    height: auto !important;
  }

  .panel-img, .about-hero-img, .medallion-img {
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
}

/* =============================================================
 * 12. MOBILE HEADER FINAL REFINEMENTS (APPEND-ONLY)
 * ============================================================= */
@media (max-width: 768px) {

  /* #1 Carousel Dots - Hide dots visually while keeping swipe function active */
  .carousel-dots,
  .pagination-dots,
  .slick-dots,
  .swiper-pagination,
  [class*="carousel-indicator"],
  [class*="slide-dots"],
  .carousel-indicators,
  .indicator-dot {
    display: none !important;
  }

  /* #2 Text Sizes - Increase text sizes across mobile header for premium look */
  /* Main venue name */
  .venue-name,
  .venue-title h1,
  h1.venue-heading,
  .venue-display-main {
    font-size: 0 !important; /* Hide original text node to remove trailing comma */
  }

  .venue-display-main::before,
  .venue-name::before {
    content: "Daksh Resort & Amusement Park" !important;
    font-size: 26px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    display: block !important;
    font-family: var(--font-heading) !important;
    color: #1A1A1A !important;
    white-space: normal !important;
  }

  /* "Gir Venue | Reviews" subtitle */
  .venue-display-sub,
  .title-separator,
  .title-reviews-link,
  .venue-subtitle,
  .venue-tagline {
    font-size: 20px !important;
    line-height: 1.4 !important;
  }

  /* Location/address text */
  .venue-address,
  .location-text,
  .venue-location,
  .venue-location-bar {
    font-size: 16px !important;
    line-height: 1.5 !important;
    padding: 0 24px !important;
  }

  /* CTA button text */
  .btn-contact-number,
  .btn-chat,
  .btn-contact-venue,
  .header-cta button,
  .widget-btn {
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 10px 16px !important;
    height: auto !important; /* Allow padding to define height */
  }

  /* Social icons size bump */
  .social-icons a,
  .social-icons .icon-circle,
  .venue-social-widget .social-icon-circle {
    width: 38px !important;
    height: 38px !important;
  }

  .social-icons svg,
  .social-icons i,
  .venue-social-widget svg,
  .chat-icon-svg {
    font-size: 15px !important;
    width: 15px !important;
    height: 15px !important;
  }


  /* #3 Spacing - Tighten vertical spacing rhythm */
  /* Reduce overall section padding */
  .venue-details-section,
  .venue-title-section {
    padding-top: 12px !important;
    padding-bottom: 32px !important;
  }
  .header-info-block {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  /* Title to subtitle gap */
  .venue-display-main,
  .venue-name {
    margin-bottom: 8px !important;
  }

  /* Subtitle to location gap */
  .venue-display-title,
  .venue-subtitle {
    margin-bottom: 12px !important;
  }

  /* Location to social icons gap */
  .venue-address,
  .location-text,
  .venue-location-bar {
    margin-bottom: 16px !important;
    margin-top: 0 !important;
  }

  /* Social icons to CTA gap */
  .social-icons,
  .venue-social-widget {
    margin-bottom: 20px !important;
    margin-top: 0 !important;
    gap: 12px !important;
  }

  /* Between Contact Number and Chat/Contact Venue row */
  .btn-contact-number,
  #btn-contact-number {
    margin-bottom: 10px !important;
  }

  /* Between Chat and Contact Venue buttons */
  .cta-button-row,
  .widget-btn-row {
    gap: 10px !important;
  }

  /* Tighten the whole title bar container */
  .header-content-wrapper > * + *,
  .venue-header-details > * + * {
    margin-top: 12px !important;
  }
}

/* =============================================================
 * 13. MOBILE BOOKING FORM & CONTACT SECTION OVERRIDES
 * ============================================================= */
@media (max-width: 768px) {
  /* Contact Form Section Background Image Overlay */
  .booking-contact-section {
    background-image: linear-gradient(rgba(235, 208, 206, 0.92), rgba(235, 208, 206, 0.92)), url('images/Top Header.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
  }

  /* Form Container (Dark Theme - Same as Desktop) */
  .frosted-glass-form-container {
    background-color: rgba(61, 43, 43, 0.9) !important; /* #3D2B2B at 90% opacity */
    border: 1px solid rgba(212, 165, 168, 0.3) !important; /* #D4A5A8 border */
    color: var(--color-main-bg) !important; /* #EBD0CE */
    box-shadow: 0 20px 60px rgba(26, 26, 26, 0.3) !important;
    padding: 24px 20px !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
  }

  .frosted-glass-form-container .form-title {
    color: var(--color-main-bg) !important; /* #EBD0CE */
    font-size: 24px !important;
    font-weight: 700 !important;
  }

  .frosted-glass-form-container .form-subtitle {
    color: var(--color-main-bg) !important; /* #EBD0CE */
    opacity: 0.8 !important;
    font-size: 13px !important;
    margin-bottom: 24px !important;
  }

  /* Keep Form Rows Side-by-Side (2 Columns) on Mobile */
  .curated-royal-form .form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin-bottom: 16px !important;
  }

  .curated-royal-form .form-group {
    margin-bottom: 16px !important;
  }

  .form-label {
    color: var(--color-main-bg) !important; /* #EBD0CE */
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 6px !important;
    text-transform: uppercase !important;
  }

  .curated-royal-form .form-group.focused .form-label {
    color: #FFFFFF !important;
  }

  /* Input Fields (Dark Theme - Same as Desktop) */
  .curated-royal-form .form-input {
    background-color: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(235, 208, 206, 0.25) !important;
    color: #FFFFFF !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    border-radius: 2px !important;
  }

  .curated-royal-form .form-input::placeholder {
    color: rgba(235, 208, 206, 0.5) !important;
  }

  .curated-royal-form .form-input:focus {
    border-color: #FFFFFF !important;
    background-color: rgba(255, 255, 255, 0.12) !important;
    box-shadow: none !important;
  }

  .curated-royal-form select.form-input option {
    background-color: #3D2B2B !important;
    color: #FFFFFF !important;
  }

  /* Event Selection Chips */
  .chips-container {
    gap: 6px !important;
    margin-top: 6px !important;
  }

  .chip {
    padding: 8px 12px !important;
    font-size: 12px !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(235, 208, 206, 0.25) !important;
    color: var(--color-main-bg) !important; /* #EBD0CE */
  }

  .chip:hover {
    background-color: rgba(255, 255, 255, 0.18) !important;
    border-color: var(--color-main-bg) !important;
  }

  .chip.active {
    background-color: var(--color-main-bg) !important; /* #EBD0CE */
    border-color: var(--color-main-bg) !important;
    color: var(--color-cta-bg) !important; /* #3D2B2B */
  }

  /* Checkbox & Consent */
  .checkbox-label-text {
    color: var(--color-main-bg) !important; /* #EBD0CE */
    font-size: 12px !important;
    opacity: 0.9 !important;
  }

  .custom-checkbox {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(235, 208, 206, 0.25) !important;
  }

  .checkbox-container:hover input ~ .custom-checkbox {
    border-color: var(--color-main-bg) !important;
  }

  .checkbox-container input:checked ~ .custom-checkbox {
    background-color: var(--color-main-bg) !important;
    border-color: var(--color-main-bg) !important;
  }

  .custom-checkbox::after {
    border-color: var(--color-cta-bg) !important;
  }

  /* Submit Button styling */
  .consultation-submit-btn {
    background-color: var(--color-main-bg) !important; /* #EBD0CE */
    color: var(--color-cta-bg) !important; /* #3D2B2B */
    border: 1px solid var(--color-main-bg) !important;
    font-size: 13px !important;
    padding: 16px 20px !important;
    border-radius: 4px !important;
    margin-top: 8px !important;
  }

  .consultation-submit-btn:hover {
    background-color: #FFFFFF !important;
    border-color: #FFFFFF !important;
    color: #1A1A1A !important;
  }

  .form-trust-line {
    color: var(--color-main-bg) !important;
    opacity: 0.7 !important;
    font-size: 11px !important;
    margin-top: 16px !important;
  }
}

/* -------------------------------------------------------------
 * SECTION: PRE-WEDDING LOCATIONS
 * ------------------------------------------------------------- */
.locations-section {
  background-color: var(--color-accent-pink); /* Soft Pink background */
  padding: 120px 24px;
  position: relative;
  z-index: 4;
  border-top: 1px solid rgba(164, 122, 126, 0.25);
}

.locations-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px auto;
}

.locations-script-accent {
  display: block;
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  color: var(--color-cta-bg);
  margin-bottom: 8px;
}

.locations-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--color-headline);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-transform: capitalize;
}

.locations-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-cta-bg);
  opacity: 0.9;
}

.locations-grid {
  display: flex;
  overflow-x: auto;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 12px 32px 12px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

/* Custom Scrollbar styling */
.locations-grid::-webkit-scrollbar {
  height: 8px;
}

.locations-grid::-webkit-scrollbar-track {
  background: rgba(61, 43, 43, 0.05);
  border-radius: 4px;
}

.locations-grid::-webkit-scrollbar-thumb {
  background: var(--color-mauve-accent);
  border-radius: 4px;
}

.locations-grid::-webkit-scrollbar-thumb:hover {
  background: var(--color-cta-bg);
}

.location-card {
  flex: 0 0 320px; /* Fixed width to force them into a single horizontal row */
  scroll-snap-align: start;
  background-color: var(--color-main-bg); /* Light Blush card background */
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(61, 43, 43, 0.05);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(164, 122, 126, 0.15);
  display: flex;
  flex-direction: column;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-cta-bg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 2;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(61, 43, 43, 0.12);
}

.location-card:hover::before {
  transform: scaleX(1);
}

.location-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(164, 122, 126, 0.15);
  transition: transform 0.5s ease;
}

/* Specific crop for Sajjangarh Palace to focus on the hilltop palace */
.location-card img[src*="sajjangarh"] {
  object-position: 50% 55%;
}

.location-card:hover .location-img {
  transform: scale(1.04);
}

.location-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.location-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-headline);
  margin-bottom: 12px;
}

.location-card-description {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-cta-bg);
  margin-bottom: 0;
  flex-grow: 1;
}

.location-card-description strong {
  color: var(--color-headline);
  font-weight: 600;
}

/* Responsive Scaling for Locations Section */
@media (max-width: 768px) {
  .locations-section {
    padding: 64px 20px;
  }
  
  .locations-header {
    margin-bottom: 40px;
  }
  
  .locations-title {
    font-size: 2.2rem;
  }
  
  .locations-grid {
    gap: 20px;
    padding-bottom: 20px;
  }
  
  .location-card {
    flex: 0 0 280px; /* Peak next card on mobile viewports */
  }

  .location-img {
    height: 180px !important;
    max-height: 180px !important;
    min-height: 180px !important;
    object-fit: cover !important;
  }

  /* Focus exactly on the hilltop palace for Sajjangarh card on mobile screens */
  .location-card img[src*="sajjangarh"] {
    object-position: 50% 38% !important;
  }
}

