/* ==========================================================================
   MDA SPARX SALON - MEN'S BEAUTY (NAZARATHPETTAI, CHENNAI)
   Modern Luxury Red & Black Theme Stylesheet
   ========================================================================== */

:root {
  --bg-dark: #08080a;
  --bg-card: #121216;
  --bg-card-hover: #191920;
  --bg-glass: rgba(18, 18, 22, 0.85);
  --bg-surface: #1d1d24;
  
  --primary-red: #e50914;
  --primary-red-hover: #ff1f2d;
  --primary-red-glow: rgba(229, 9, 20, 0.4);
  --red-gradient: linear-gradient(135deg, #ff2a3a 0%, #b3000a 100%);
  --dark-gradient: linear-gradient(180deg, #08080a 0%, #14141a 100%);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-border-red: rgba(229, 9, 20, 0.45);

  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --text-gold: #fbbf24;
  
  --whatsapp-green: #25d366;
  --whatsapp-glow: rgba(37, 211, 102, 0.3);

  --font-heading: 'Bebas Neue', 'Montserrat', sans-serif;
  --font-script: 'Satisfy', 'Dancing Script', cursive;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.6);
  --shadow-red: 0 8px 30px rgba(229, 9, 20, 0.3);
  --shadow-glow: 0 0 30px rgba(229, 9, 20, 0.5);
  
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Radial Glows */
body::before {
  content: '';
  position: fixed;
  top: -15vw;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.16) 0%, rgba(8, 8, 10, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Typography */
h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.text-gradient-red {
  background: var(--red-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.95rem;
  background: rgba(229, 9, 20, 0.12);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: var(--radius-full);
  color: #ff4d5a;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

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

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red-gradient);
  color: #fff;
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  filter: brightness(1.1);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid var(--card-border);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px var(--whatsapp-glow);
}

.btn-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* Top Announcement Bar */
.top-bar {
  background: #0d0d11;
  border-bottom: 1px solid var(--card-border);
  padding: 0.45rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-info-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.top-info-item a:hover {
  color: #ff4d5a;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.65rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-full);
  color: #4ade80;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-dot {
  width: 7px;
  height: 7px;
  background-color: #22c55e;
  border-radius: 50%;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 10, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
  padding: 0.85rem 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(8, 8, 10, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  border-bottom-color: rgba(229, 9, 20, 0.25);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
}

.nav-brand-emblem {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-brand-top {
  font-size: 0.72rem;
  letter-spacing: 3px;
  font-weight: 800;
  color: #fff;
  text-align: center;
}

.nav-brand-main {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-brand-main .scissors-x {
  color: var(--primary-red);
  font-style: normal;
  display: inline-block;
  transform: rotate(-10deg);
  font-weight: bold;
}

.nav-brand-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-family: var(--font-heading);
}

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

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--card-border);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero-section {
  padding: 4rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.google-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  width: fit-content;
  backdrop-filter: blur(10px);
}

.rating-stars {
  color: var(--text-gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.rating-score {
  font-weight: 700;
  color: #fff;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.5px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin: 0.5rem 0;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: #e5e7eb;
}

.hero-feature-item svg {
  color: var(--primary-red);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
}

/* ==========================================================================
   EXCLUSIVE LOGO CARD (Hero Visual replacing the banner photo)
   Recreates the exact font, red scissors, and styling of MDA Sparx Saloon
   ========================================================================== */
.hero-logo-card {
  position: relative;
  background: radial-gradient(circle at center, #1a1a22 0%, #0c0c10 100%);
  border: 1px solid var(--card-border-red);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(229, 9, 20, 0.2);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.hero-logo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red-gradient);
}

.hero-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), var(--shadow-glow);
  border-color: rgba(229, 9, 20, 0.7);
}

/* Authentic Logo Typography Markup */
.brand-display-emblem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.brand-curve-mda {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 6px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: -0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.brand-script-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: relative;
}

.brand-script-spar {
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 6vw, 4.5rem);
  color: #ffffff;
  letter-spacing: 1px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
}

.brand-red-scissors {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  filter: drop-shadow(0 0 12px rgba(229, 9, 20, 0.8));
  margin-left: -0.3rem;
  margin-top: -0.2rem;
}

.brand-red-scissors svg {
  width: 52px;
  height: 52px;
}

.brand-text-saloon {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.3rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 2px;
  margin-top: 0.25rem;
  text-transform: capitalize;
}

.brand-rule-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 85%;
  margin: 1.25rem 0 0.75rem;
}

.brand-rule-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.brand-mens-beauty-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #e5e7eb;
}

.brand-location-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.logo-card-footer {
  width: 100%;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  border-top: 1px solid var(--card-border);
  padding-top: 1.25rem;
}

/* Quick Stats Section */
.quick-stats-section {
  padding: 2rem 0;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  background: rgba(18, 18, 22, 0.45);
}

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

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(229, 9, 20, 0.12);
  border: 1px solid rgba(229, 9, 20, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  flex-shrink: 0;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}

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

/* Services Section */
.services-section {
  padding: 6rem 0;
  position: relative;
}

.services-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.55rem 1.3rem;
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: #fff;
  box-shadow: 0 4px 15px var(--primary-red-glow);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red-gradient);
  opacity: 0;
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-red);
  background: var(--bg-card-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  border-color: rgba(229, 9, 20, 0.4);
  background: linear-gradient(180deg, rgba(229, 9, 20, 0.08) 0%, rgba(18, 18, 22, 0.92) 100%);
}

.service-badge-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--primary-red);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.service-top {
  display: flex;
  gap: 1rem;
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  flex-shrink: 0;
}

.service-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.service-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.service-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0.75rem 0 0;
}

.service-details-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #d1d5db;
}

.service-details-list li svg {
  color: var(--primary-red);
  width: 14px;
  height: 14px;
}

.service-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--card-border);
  padding-top: 1.25rem;
}

.service-price-block {
  display: flex;
  flex-direction: column;
}

.service-price-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
}

.service-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

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

/* Reviews Section */
.reviews-section {
  padding: 6rem 0;
  background: #0b0b0e;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  position: relative;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Clean Google Rating Card */
.google-summary-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-subtle);
  position: sticky;
  top: 6rem;
}

.google-brand-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
}

.google-score-huge {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.5rem;
}

.google-stars-row {
  color: var(--text-gold);
  font-size: 1.4rem;
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
}

.google-total-reviews {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition-smooth);
  position: relative;
}

.review-card:hover {
  border-color: rgba(229, 9, 20, 0.35);
  transform: translateX(4px);
  background: var(--bg-card-hover);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red-gradient);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.reviewer-info h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.15rem;
}

.reviewer-badge {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.review-rating-time {
  text-align: right;
}

.review-stars {
  color: var(--text-gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 1.05rem;
  color: #e5e7eb;
  line-height: 1.6;
  font-style: italic;
}

.review-highlight {
  font-weight: 700;
  color: #fff;
  background: rgba(229, 9, 20, 0.15);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

/* Location Section */
.location-section {
  padding: 6rem 0;
  position: relative;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: stretch;
}

.location-info-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.location-details-group {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.location-item {
  display: flex;
  gap: 1rem;
}

.location-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(229, 9, 20, 0.12);
  border: 1px solid rgba(229, 9, 20, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  flex-shrink: 0;
}

.location-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.location-text p, .location-text a {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.location-text a:hover {
  color: #ff4d5a;
}

.phone-numbers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.phone-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-sm);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
}

.phone-tag:hover {
  border-color: var(--primary-red);
  background: rgba(229, 9, 20, 0.15);
}

/* Map Frame Container */
.map-frame-container {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 450px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
}

.map-top-bar {
  background: #181820;
  padding: 0.75rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--card-border);
  font-size: 0.85rem;
  color: #e5e7eb;
}

.map-top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.map-top-bar-left svg {
  color: var(--primary-red);
}

.map-iframe-wrapper {
  flex: 1;
  position: relative;
  width: 100%;
  min-height: 380px;
}

.map-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-actions-dock {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

/* Booking Section */
.booking-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #08080a 0%, #121217 100%);
  position: relative;
}

.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 850px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(229, 9, 20, 0.15);
  position: relative;
  overflow: hidden;
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red-gradient);
}

.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: #e5e7eb;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: #181820;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2);
  background: #1e1e28;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.faq-item.active {
  border-color: var(--card-border-red);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--primary-red);
  transition: var(--transition-smooth);
}

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

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

.faq-item.active .faq-answer {
  padding-bottom: 1.25rem;
}

/* Footer */
.footer {
  background: #050507;
  border-top: 1px solid var(--card-border);
  padding: 4rem 0 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #ff4d5a;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* Mobile Sticky Bottom Bar */
.mobile-bottom-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(14, 14, 18, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(229, 9, 20, 0.3);
  padding: 0.65rem 1rem;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.8);
}

.dock-actions {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 0.5rem;
}

.dock-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.45rem 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: #fff;
}

.dock-btn-call {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--card-border);
}

.dock-btn-wa {
  background: #25d366;
  color: #fff;
}

.dock-btn-map {
  background: rgba(229, 9, 20, 0.18);
  border: 1px solid rgba(229, 9, 20, 0.35);
  color: #ff4d5a;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .google-summary-card {
    position: static;
  }

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

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

@media (max-width: 768px) {
  body {
    padding-bottom: 70px;
  }

  .top-bar {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #0e0e13;
    border-bottom: 1px solid var(--card-border);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-actions .btn-primary {
    display: none;
  }

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

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

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

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

  .mobile-bottom-dock {
    display: block;
  }
}
