/* ==========================================================================
   Patil Convention Hall - Yadgir
   Luxury Royal Wedding & Event Venue Styling
   ========================================================================== */

:root {
  /* Color Palette */
  --primary-crimson: #800020;
  --primary-dark: #4A0012;
  --primary-light: #A31B38;
  --accent-gold: #D4AF37;
  --accent-gold-light: #F3E5AB;
  --accent-gold-dark: #AA7C11;
  --gold-glow: rgba(212, 175, 55, 0.4);
  
  --bg-cream: #FAF9F6;
  --bg-white: #FFFFFF;
  --bg-dark: #120A0E;
  --bg-card: #FFFFFF;
  
  --text-main: #1C1917;
  --text-muted: #57534E;
  --text-light: #F5F5F4;
  --text-gold: #D4AF37;

  --border-gold: rgba(212, 175, 55, 0.3);
  --border-light: #E7E5E4;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(128, 0, 32, 0.08);
  --shadow-lg: 0 16px 40px rgba(74, 0, 18, 0.15);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.25);
  
  --font-heading: 'Playfair Display', 'Cinzel', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for mobile sticky action bar */
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  line-height: 1.25;
  font-weight: 700;
}

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

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-padding {
  padding: 5rem 0;
}

@media (max-width: 767px) {
  .section-padding {
    padding: 3rem 0;
  }
}

.text-center { text-align: center; }
.gold-text { color: var(--accent-gold); }
.crimson-text { color: var(--primary-crimson); }

/* Header & Sticky Navigation */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary-crimson), var(--primary-dark));
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.4rem;
  box-shadow: var(--shadow-gold);
}

.brand-text h1 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.brand-text span {
  font-size: 0.75rem;
  color: var(--accent-gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-crimson);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-crimson);
  padding: 0.5rem 1rem;
  background: rgba(128, 0, 32, 0.05);
  border-radius: var(--radius-full);
  border: 1px solid rgba(128, 0, 32, 0.15);
  transition: var(--transition);
}

.phone-badge:hover {
  background: var(--primary-crimson);
  color: var(--bg-white);
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-dark);
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 1023px) {
  .nav-menu, .phone-badge {
    display: none;
  }
  .hamburger-btn {
    display: block;
  }
}

/* Mobile Drawer Overlay */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg-white);
  z-index: 1001;
  box-shadow: -10px 0 30px rgba(0,0,0,0.2);
  transition: var(--transition);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-drawer.active {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary-dark);
  cursor: pointer;
}

.drawer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.drawer-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.drawer-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

/* Buttons & Badge Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: #1A1000;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.4);
}

.btn-crimson {
  background: linear-gradient(135deg, var(--primary-crimson), var(--primary-dark));
  color: var(--bg-white);
  border-color: var(--accent-gold);
}

.btn-crimson:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-outline:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
}

/* Section Header Component */
.section-header {
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(212, 175, 55, 0.12);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.35rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

@media (max-width: 767px) {
  .section-title {
    font-size: 1.85rem;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(26, 6, 12, 0.78) 0%, rgba(18, 10, 14, 0.88) 100%), 
              url('../assets/images/hero.png') center/cover no-repeat;
  color: var(--bg-white);
  padding: 4rem 0;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(10, 2, 5, 0.6) 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 1023px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid var(--accent-gold);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-gold-light);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.4rem;
  color: var(--bg-white);
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-title span {
  color: var(--accent-gold);
  display: block;
}

.hero-subtext {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
}

@media (max-width: 1023px) {
  .hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtext {
    font-size: 1rem;
  }
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

@media (max-width: 1023px) {
  .hero-ctas {
    justify-content: center;
  }
}

.hero-stats-banner {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 1023px) {
  .hero-stats-banner {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-stats-banner {
    flex-direction: column;
    gap: 1rem;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Quick Availability Card (Hero Right) */
.hero-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border: 2px solid var(--accent-gold);
  color: var(--text-main);
}

.hero-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.hero-card-header h3 {
  font-size: 1.4rem;
  color: var(--primary-dark);
}

.hero-card-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-cream);
  color: var(--text-main);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-crimson);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Amenities & USP Cards */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1023px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

.amenity-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-crimson);
}

.amenity-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.08), rgba(212, 175, 55, 0.15));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-crimson);
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.amenity-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.amenity-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Photo Gallery & Showcase */
.gallery-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-crimson);
  color: var(--bg-white);
  border-color: var(--primary-crimson);
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1023px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74, 0, 18, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--bg-white);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-caption h4 {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.gallery-caption p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 2, 5, 0.92);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  border: 2px solid var(--accent-gold);
}

.lightbox-content img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: #000;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--accent-gold);
  color: var(--bg-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
}

/* Event Types Cards */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1023px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}

.event-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.event-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.event-icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem auto;
  background: linear-gradient(135deg, var(--primary-crimson), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.75rem;
  box-shadow: var(--shadow-gold);
}

.event-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.event-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Interactive Date Availability Section */
.date-checker-card {
  background: linear-gradient(135deg, var(--primary-dark), #26000A);
  color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  border: 2px solid var(--accent-gold);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.date-checker-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.checker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 1023px) {
  .checker-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.checker-left h2 {
  color: var(--bg-white);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.checker-left p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.checker-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
}

.availability-result {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: none;
  text-align: center;
}

.availability-result.available {
  display: block;
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.availability-result.busy {
  display: block;
  background: rgba(255, 77, 77, 0.15);
  color: #FF6B6B;
  border: 1px solid rgba(255, 77, 77, 0.3);
}

/* Location & Map Section */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 1023px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-gold);
  height: 420px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-info-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(128, 0, 32, 0.08);
  color: var(--primary-crimson);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.info-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--accent-gold-dark);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

/* Booking Modal */
.booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 3, 8, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.booking-modal.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal-content {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  padding: 2.25rem;
  position: relative;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* Footer Section */
.site-footer {
  background: var(--bg-dark);
  color: var(--bg-white);
  padding: 4rem 0 2rem 0;
  border-top: 2px solid var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col h4 {
  color: var(--accent-gold);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.kannada-welcome {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

.kannada-welcome p {
  font-size: 1.05rem;
  color: var(--accent-gold-light);
  font-weight: 600;
  text-align: center;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* Mobile Sticky Bottom Action Bar (<768px) */
.mobile-action-bar {
  display: none;
}

@media (max-width: 767px) {
  .mobile-action-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: rgba(18, 10, 14, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--accent-gold);
    z-index: 999;
    padding: 0.5rem 0.75rem;
    gap: 0.75rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  }

  .mobile-act-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
  }

  .act-call {
    background: linear-gradient(135deg, var(--primary-crimson), var(--primary-dark));
    color: var(--bg-white);
    border: 1px solid var(--accent-gold);
  }

  .act-whatsapp {
    background: #25D366;
    color: var(--bg-white);
  }
}
