/* ==========================================================================
   LE LUMIERE - THE FAMILY SALON
   Design System & Master Stylesheet (Maroon & Champagne Gold Theme)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette - Deep Maroon & Gold Theme */
  --maroon-dark: #3b050f;
  --maroon-header: #4a0714;
  --maroon-primary: #6b0d1e;
  --maroon-accent: #851428;
  --maroon-hover: #9c2238;
  
  --gold-primary: #d4af37;
  --gold-accent: #e6c280;
  --gold-light: #f7e7ce;
  --gold-gradient: linear-gradient(135deg, #e6c280 0%, #d4af37 50%, #b8860b 100%);
  
  --bg-cream: #fdfbf7;
  --bg-card: #ffffff;
  --bg-alt: #f8f4ee;
  
  --text-main: #1e1e1e;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(107, 13, 30, 0.12);
  --shadow-lg: 0 20px 40px -10px rgba(74, 7, 20, 0.22);
  --shadow-glow: 0 0 25px rgba(212, 175, 55, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Cinzel', serif;
  --font-sans: 'Outfit', sans-serif;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ==========================================================================
   1. TOP TICKER ANNOUNCEMENT BAR
   ========================================================================== */
.top-ticker-bar {
  background: linear-gradient(90deg, #2b030a 0%, #4a0714 50%, #2b030a 100%);
  color: var(--gold-accent);
  height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  font-size: 0.85rem;
  font-weight: 500;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 32s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 35px;
}

.ticker-item strong {
  color: #fff;
}

.ticker-badge {
  background: var(--gold-gradient);
  color: var(--maroon-dark);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   2. HEADER & NAVIGATION (MAROON THEME)
   ========================================================================== */
.site-header {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon-header) 50%, #400612 100%);
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid rgba(212, 175, 55, 0.35);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  height: 62px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: var(--transition);
}

.brand-logo-link:hover .brand-logo-img {
  transform: scale(1.03);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: #f1f5f9;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  position: relative;
  padding: 8px 0;
}

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

.nav-link:hover, .nav-link.active {
  color: var(--gold-accent);
}

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

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.city-select-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.88rem;
  transition: var(--transition);
}

.city-select-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--maroon-dark);
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: var(--transition);
  font-size: 0.9rem;
  letter-spacing: 0.4px;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  filter: brightness(1.08);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

/* ==========================================================================
   3. HERO SLIDESHOW & BOOKING BAR
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: var(--maroon-dark);
  color: #ffffff;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(59, 5, 15, 0.92) 0%, rgba(74, 7, 20, 0.75) 50%, rgba(15, 2, 5, 0.4) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--gold-accent);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 750px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-title span {
  color: var(--gold-accent);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #e2e8f0;
  max-width: 620px;
  margin-bottom: 35px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold-primary);
  color: var(--gold-accent);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.15);
  color: #ffffff;
  border-color: #ffffff;
}

/* Quick Booking Widget Floating Bar */
.quick-booking-bar {
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 1140px;
  margin: -45px auto 60px;
  padding: 24px 30px;
  position: relative;
  z-index: 10;
  border-top: 4px solid var(--maroon-primary);
}

.quick-booking-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) 160px;
  gap: 16px;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--maroon-primary);
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  background: #f8fafc;
  color: var(--text-main);
  font-weight: 500;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--maroon-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(107, 13, 30, 0.1);
}

.btn-maroon {
  background: linear-gradient(135deg, var(--maroon-primary) 0%, var(--maroon-dark) 100%);
  color: var(--gold-accent);
  border: 1px solid var(--gold-primary);
  font-weight: 700;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(107, 13, 30, 0.3);
}

.btn-maroon:hover {
  background: linear-gradient(135deg, var(--maroon-hover) 0%, var(--maroon-primary) 100%);
  transform: translateY(-2px);
  color: #fff;
}

/* ==========================================================================
   4. STATS & BADGES COUNTER
   ========================================================================== */
.stats-section {
  padding: 40px 0;
  background: var(--bg-alt);
  border-top: 1px solid #eae2d6;
  border-bottom: 1px solid #eae2d6;
}

.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-card {
  padding: 20px 15px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--maroon-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   5. SERVICES & CATEGORIES (NATURALS inspired)
   ========================================================================== */
.section-padding {
  padding: 80px 24px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-subtitle {
  color: var(--maroon-primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  color: var(--maroon-dark);
  margin-bottom: 15px;
}

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

/* Category Tabs */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  color: var(--text-main);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-btn:hover, .tab-btn.active {
  background: var(--maroon-primary);
  border-color: var(--maroon-primary);
  color: var(--gold-accent);
  box-shadow: 0 4px 15px rgba(107, 13, 30, 0.2);
}

/* Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.4);
}

.service-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--maroon-primary);
  color: var(--gold-accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--maroon-dark);
  margin-bottom: 8px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
  margin-top: auto;
}

.service-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--maroon-primary);
}

.service-price span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.btn-sm-gold {
  background: var(--gold-gradient);
  color: var(--maroon-dark);
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-sm-gold:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* Service Calculator Widget */
.calculator-box {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon-primary) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #ffffff;
  margin-top: 60px;
  border: 1px solid var(--gold-primary);
  box-shadow: var(--shadow-lg);
}

.calc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 16px;
}

.calc-header h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-accent);
}

.calc-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}

.calc-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
}

.calc-item:hover, .calc-item.selected {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
}

.calc-item input {
  accent-color: var(--gold-primary);
  width: 18px;
  height: 18px;
}

.calc-total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 25px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.calc-total-text {
  font-size: 1.1rem;
}

.calc-total-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-accent);
}

/* ==========================================================================
   6. FRANCHISE OPPORTUNITY (NATURALS MIRRORED FEATURE)
   ========================================================================== */
.franchise-section {
  background: linear-gradient(135deg, #2e040c 0%, #4a0714 50%, #6b0d1e 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.franchise-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.franchise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.franchise-content .section-subtitle {
  color: var(--gold-accent);
}

.franchise-content .section-title {
  color: #ffffff;
}

.franchise-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0 40px;
}

.perk-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 20px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.perk-icon {
  font-size: 1.8rem;
  color: var(--gold-accent);
  margin-bottom: 10px;
}

.perk-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 5px;
  color: #fff;
}

.perk-desc {
  font-size: 0.85rem;
  color: #cbd5e1;
}

.franchise-form-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--text-main);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold-primary);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--maroon-primary);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ==========================================================================
   7. SALON LOCATOR (FIND STORE NEAR YOU)
   ========================================================================== */
.locator-section {
  background: var(--bg-cream);
}

.locator-search-box {
  background: #ffffff;
  padding: 20px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto 40px;
  display: flex;
  gap: 16px;
  border: 1px solid #e2e8f0;
}

.locator-search-input {
  flex-grow: 1;
  border: 1px solid #cbd5e1;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  outline: none;
}

.locator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.location-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}

.location-card:hover {
  border-color: var(--maroon-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.location-city-badge {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--maroon-primary);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.location-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--maroon-dark);
  margin-bottom: 8px;
}

.location-address {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.location-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  border-top: 1px dashed #e2e8f0;
  padding-top: 12px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #475569;
}

.meta-item i {
  color: var(--maroon-primary);
  width: 16px;
}

.location-actions {
  display: flex;
  gap: 10px;
}

.btn-outline-maroon {
  flex: 1;
  background: transparent;
  border: 1.5px solid var(--maroon-primary);
  color: var(--maroon-primary);
  padding: 8px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

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

/* ==========================================================================
   8. TESTIMONIALS & REVIEWS
   ========================================================================== */
.testimonials-section {
  background: var(--bg-alt);
  border-top: 1px solid #eae2d6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold-primary);
  position: relative;
}

.stars-rating {
  color: #f59e0b;
  margin-bottom: 14px;
  font-size: 1rem;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.6;
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--maroon-primary);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.client-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--maroon-dark);
}

.client-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   9. FOOTER (MAROON THEME)
   ========================================================================== */
.site-footer {
  background: linear-gradient(180deg, var(--maroon-dark) 0%, #29030a 100%);
  color: #e2e8f0;
  padding-top: 70px;
  border-top: 3px solid var(--gold-primary);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  height: 65px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.footer-desc {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 25px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--gold-gradient);
  color: var(--maroon-dark);
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold-accent);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: #cbd5e1;
}

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

.newsletter-box p {
  font-size: 0.88rem;
  margin-bottom: 14px;
  color: #cbd5e1;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.85rem;
  flex-grow: 1;
  outline: none;
}

.newsletter-input::placeholder {
  color: #94a3b8;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #94a3b8;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

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

/* ==========================================================================
   10. MODALS & FLOATING WIDGETS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 2, 5, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.modal-container {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--maroon-primary);
  transform: scale(0.95);
  transition: var(--transition);
  position: relative;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-header {
  padding: 24px 30px;
  background: var(--bg-alt);
  border-bottom: 1px solid #eae2d6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--maroon-dark);
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: var(--maroon-primary);
}

.modal-body {
  padding: 30px;
}

/* Floating WhatsApp / Phone FAB */
.floating-fab-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  cursor: pointer;
}

.fab-whatsapp {
  background: #25d366;
}

.fab-phone {
  background: var(--maroon-primary);
  border: 1px solid var(--gold-primary);
}

.fab-btn:hover {
  transform: scale(1.1);
}

/* Notification Toast */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--maroon-dark);
  color: #ffffff;
  border-left: 4px solid var(--gold-primary);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   11. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--maroon-dark);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    border-bottom: 2px solid var(--gold-primary);
    transform: translateY(-150%);
    transition: var(--transition);
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .mobile-nav-toggle {
    display: block;
  }

  .quick-booking-form {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 600px) {
  .top-ticker-bar {
    font-size: 0.78rem;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .franchise-perks {
    grid-template-columns: 1fr;
  }
}
