:root {
  --primary: #e91e63;
  --primary-dark: #c2185b;
  --primary-light: #f8bbd0;
  --primary-soft: #fce4ec;
  --primary-glow: #ff6b9d;
  --secondary: #fce4ec;
  --accent: #ff6b9d;
  --accent-light: #ff8fab;
  --dark: #1a1a2e;
  --dark-light: #16213e;
  --light: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --success: #28a745;
  --success-light: #d4edda;
  --warning: #ffc107;
  --danger: #dc3545;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-hover: 0 8px 30px rgba(233,30,99,0.15);
  --shadow-pink: 0 8px 30px rgba(233,30,99,0.2);
  --shadow-pink-lg: 0 16px 48px rgba(233,30,99,0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  /* Aurora/Waves colors */
  --aurora-1: #e91e63;
  --aurora-2: #ff6b9d;
  --aurora-3: #f06292;
  --aurora-4: #ec407a;
  --aurora-5: #d81b60;
}

/* ===== PINK AURORA/WAVES BACKGROUND EFFECT ===== */
.aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  will-change: transform;
}

.aurora-bg::before,
.aurora-bg::after,
.aurora-bg .wave-1,
.aurora-bg .wave-2,
.aurora-bg .wave-3,
.aurora-bg .wave-4,
.aurora-bg .wave-5 {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: auroraFloat 20s ease-in-out infinite;
  will-change: transform, opacity;
}

.aurora-bg::before {
  width: 600px;
  height: 600px;
  background: var(--aurora-1);
  top: -20%;
  left: -10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.aurora-bg::after {
  width: 500px;
  height: 500px;
  background: var(--aurora-2);
  bottom: -15%;
  right: -10%;
  animation-delay: -5s;
  animation-duration: 22s;
}

.aurora-bg .wave-1 {
  width: 400px;
  height: 400px;
  background: var(--aurora-3);
  top: 30%;
  left: -5%;
  animation-delay: -10s;
  animation-duration: 28s;
}

.aurora-bg .wave-2 {
  width: 450px;
  height: 450px;
  background: var(--aurora-4);
  bottom: 20%;
  left: 30%;
  animation-delay: -15s;
  animation-duration: 24s;
}

.aurora-bg .wave-3 {
  width: 350px;
  height: 350px;
  background: var(--aurora-5);
  top: 60%;
  right: -5%;
  animation-delay: -2s;
  animation-duration: 26s;
}

.aurora-bg .wave-4 {
  width: 300px;
  height: 300px;
  background: var(--accent-light);
  bottom: 40%;
  right: 20%;
  animation-delay: -8s;
  animation-duration: 30s;
}

.aurora-bg .wave-5 {
  width: 250px;
  height: 250px;
  background: var(--primary-light);
  top: 10%;
  right: 15%;
  animation-delay: -12s;
  animation-duration: 32s;
}

@keyframes auroraFloat {
  0%, 100% { 
    transform: translate(0, 0) scale(1) rotate(0deg); 
    opacity: 0.12;
  }
  16% { 
    transform: translate(30px, -40px) scale(1.1) rotate(10deg); 
    opacity: 0.18;
  }
  33% { 
    transform: translate(-25px, 30px) scale(0.95) rotate(-8deg); 
    opacity: 0.14;
  }
  50% { 
    transform: translate(20px, 25px) scale(1.05) rotate(5deg); 
    opacity: 0.16;
  }
  66% { 
    transform: translate(-35px, -20px) scale(0.9) rotate(-12deg); 
    opacity: 0.13;
  }
  83% { 
    transform: translate(15px, 35px) scale(1.1) rotate(7deg); 
    opacity: 0.17;
  }
}

/* Apply aurora to body on all pages */
body {
  position: relative;
}

/* Add aurora background element to body */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(233, 30, 99, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(255, 107, 157, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(240, 98, 146, 0.04) 0%, transparent 60%);
  animation: auroraBodyShift 30s ease-in-out infinite;
  will-change: background-position, opacity;
}

@keyframes auroraBodyShift {
  0%, 100% { 
    background-position: 0% 0%, 100% 100%, 50% 50%;
    opacity: 1;
  }
  25% { 
    background-position: 10% 10%, 90% 90%, 55% 45%;
    opacity: 0.9;
  }
  50% { 
    background-position: 20% 5%, 80% 95%, 45% 55%;
    opacity: 0.95;
  }
  75% { 
    background-position: 5% 15%, 95% 85%, 50% 50%;
    opacity: 0.92;
  }
}

/* Subtle pink grain/noise overlay - disabled on mobile to prevent scroll flicker */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.015;
  animation: grainShift 8s ease-in-out infinite;
  mix-blend-mode: overlay;
}

@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-2px, 2px); }
  50% { transform: translate(2px, -2px); }
  75% { transform: translate(1px, 1px); }
}

/* Disable grain animation on mobile to prevent scroll flickering */
@media (max-width: 768px) {
  body::after {
    animation: none !important;
    opacity: 0.01 !important;
  }
}

/* Ensure content stays above aurora */
.container, .header, .hero, .section, .footer, main {
  position: relative;
  z-index: 1;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .aurora-bg::before,
  .aurora-bg::after,
  .aurora-bg .wave-1,
  .aurora-bg .wave-2,
  .aurora-bg .wave-3,
  .aurora-bg .wave-4,
  .aurora-bg .wave-5,
  body::before,
  body::after {
    animation: none !important;
    opacity: 0.08 !important;
  }
}

/* Dark mode adjustments for aurora */
@media (prefers-color-scheme: dark) {
  body::before {
    background: 
      radial-gradient(ellipse 80% 50% at 20% 0%, rgba(233, 30, 99, 0.12) 0%, transparent 50%),
      radial-gradient(ellipse 60% 40% at 80% 100%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
      radial-gradient(ellipse 50% 60% at 50% 50%, rgba(240, 98, 146, 0.08) 0%, transparent 60%);
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background: linear-gradient(180deg, #fdf6fa 0%, #fceef5 50%, #fff0f5 100%);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-600);
  font-size: 1.125rem;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--light);
  box-shadow: var(--shadow);
}

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

.btn-secondary {
  background: var(--light);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--light);
}

.btn-large {
  padding: 20px 48px;
  font-size: 1.125rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transition: var(--transition);
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--light) 50%, #fff0f5 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.3;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -30px) rotate(5deg); }
  50% { transform: translate(-20px, 20px) rotate(-5deg); }
  75% { transform: translate(20px, 30px) rotate(3deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(233,30,99,0.2);
  animation: float 6s ease-in-out infinite;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--gray-600);
  font-weight: 500;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 24px;
}

.service-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  background: var(--secondary);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.service-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.service-description {
  color: var(--gray-600);
  font-size: 0.9375rem;
  margin-bottom: 20px;
}

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

.review-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-weight: 700;
  font-size: 1.25rem;
}

.review-info h4 {
  font-weight: 600;
  color: var(--dark);
}

.review-info p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--warning);
}

.review-text {
  color: var(--gray-700);
  line-height: 1.7;
}

.review-form {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--light);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(233,30,99,0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Filter buttons */
.filter-btn {
  transition: var(--transition);
}
.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
  border-color: transparent !important;
  color: var(--light) !important;
  box-shadow: var(--shadow-pink);
}

/* Review card variants */
.review-card {
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}
.review-card:hover::before {
  opacity: 1;
}
.review-card.google-review::before {
  background: linear-gradient(135deg, #4285f4, #34a853);
}
.review-card.web-review::before {
  background: linear-gradient(135deg, var(--accent), var(--primary-glow));
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -30px) rotate(5deg); }
  50% { transform: translate(-20px, 20px) rotate(-5deg); }
  75% { transform: translate(20px, 30px) rotate(3deg); }
}

/* Stats cards enhancement */
.stat-item {
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.stat-item:hover::before {
  transform: scaleX(1);
}

/* Professional pink accents */
.hero-badge {
  background: linear-gradient(135deg, var(--light), var(--primary-soft));
  border: 1px solid var(--primary-light);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: var(--transition);
}
.btn-primary:hover::before {
  left: 100%;
}

/* Hero section pink glow */
.hero::before {
  background: radial-gradient(circle, var(--primary-soft) 0%, transparent 70%);
}
.hero::after {
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  opacity: 0.4;
}

/* Service card pink accent */
.service-card::before {
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary-glow));
}

/* Review stars animation */
.review-stars i {
  transition: var(--transition-fast);
}
.review-stars i:hover {
  transform: scale(1.2);
}

/* Toast enhancements */
.toast {
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

/* Loading spinner pink */
.loading {
  border-color: var(--primary-light);
  border-top-color: var(--primary);
}

/* Social links pink hover */
.social-link:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: var(--shadow-pink);
}

/* Footer title pink accent */
.footer-title::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  margin-bottom: 12px;
  border-radius: 2px;
}

/* Section title pink gradient */
.section-title {
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
  .stat-number {
    font-size: 2rem;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.contact-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.contact-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--light);
  font-size: 1.5rem;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--gray-600);
}

.contact-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.contact-card a:hover {
  color: var(--primary-dark);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 40px;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  color: var(--light);
  transform: translateY(-4px);
}

.footer {
  background: var(--dark);
  color: var(--light);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--gray-400);
  margin-top: 16px;
  line-height: 1.7;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

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

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--gray-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.875rem;
}

.booking-steps {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -36px;
  width: 24px;
  height: 2px;
  background: var(--gray-300);
}

.step.active .step-number {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--light);
}

.step.active .step-label {
  color: var(--primary);
  font-weight: 600;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--gray-500);
  background: var(--light);
  z-index: 1;
}

.step-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  text-align: center;
  white-space: nowrap;
}

.booking-form {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 700px;
  margin: 0 auto;
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
  animation: fadeInUp 0.4s ease-out;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.service-option {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.service-option:hover,
.service-option.selected {
  border-color: var(--primary);
  background: var(--secondary);
}

.service-option.selected {
  box-shadow: 0 0 0 4px rgba(233,30,99,0.1);
}

.service-option-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.service-option-price {
  color: var(--primary);
  font-weight: 700;
}

.calendar-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .calendar-container {
    grid-template-columns: 1fr;
  }
}

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

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day-name {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  padding: 8px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-700);
}

.calendar-day:hover:not(.disabled):not(.selected) {
  background: var(--secondary);
}

.calendar-day.selected {
  background: var(--primary);
  color: var(--light);
}

.calendar-day.disabled {
  color: var(--gray-300);
  cursor: not-allowed;
}

.calendar-day.today:not(.selected) {
  border: 2px solid var(--primary);
}

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.time-slot {
  padding: 12px 20px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--light);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.time-slot:hover:not(.booked):not(.selected) {
  border-color: var(--primary);
  color: var(--primary);
}

.time-slot.selected {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--light);
}

.time-slot.booked {
  opacity: 0.5;
  cursor: not-allowed;
  text-decoration: line-through;
}

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

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

.booking-summary {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
}

.summary-row:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary);
}

.form-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .nav-links {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

  .nav-links a {
    font-size: 0.9375rem;
    padding: 8px 16px;
  }

  .header .btn-primary {
    padding: 10px 20px;
    font-size: 0.875rem;
  }

@media (max-width: 768px) {
  .header {
    height: auto;
    min-height: 70px;
    padding: 12px 16px;
  }

  .nav {
    height: auto;
    min-height: 56px;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    font-size: 1.25rem;
    gap: 8px;
    flex: 0 0 auto;
    min-width: 0;
  }

  .logo span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    flex-shrink: 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 12px 0 4px;
    margin: 0;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: var(--radius);
    background: rgba(233, 30, 99, 0.08);
    color: var(--dark);
    white-space: nowrap;
    border: 1px solid transparent;
    transition: all 0.2s ease;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--light);
    border-color: transparent;
  }

  .nav-links a::after {
    display: none;
  }

  .header .btn-primary {
    order: 2;
    font-size: 0.8125rem;
    padding: 12px 20px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .logo {
    order: 1;
  }

  .nav {
    flex-wrap: wrap;
    align-items: center;
    min-height: 56px;
    gap: 12px;
    padding: 10px 0;
  }

  .header {
    min-height: 70px;
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .header {
    min-height: 64px;
    padding: 10px 12px;
  }

  .nav {
    min-height: 50px;
    gap: 8px;
  }

  .logo {
    font-size: 1.125rem;
    gap: 6px;
  }

  .logo span {
    max-width: 120px;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1.125rem;
  }

  .nav-links {
    gap: 6px;
    padding: 10px 0 2px;
  }

  .nav-links a {
    font-size: 0.8125rem;
    padding: 8px 12px;
  }

  .header .btn-primary {
    font-size: 0.75rem;
    padding: 10px 16px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

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

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

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

  .booking-steps {
    gap: 12px;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }

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

  .hero-buttons .btn {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .nav-links a {
    font-size: 0.8125rem;
    padding: 8px 12px;
  }
}

@media (max-width: 360px) {
  .logo span {
    max-width: 90px;
  }

  .nav-links a {
    font-size: 0.75rem;
    padding: 8px 10px;
  }

  .header .btn-primary {
    font-size: 0.7rem;
    padding: 8px 12px;
  }
}

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--dark);
  color: var(--light);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  z-index: 2000;
  transform: translateX(400px);
  opacity: 0;
  transition: var(--transition);
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.success {
  background: var(--success);
}

.toast.error {
  background: var(--danger);
}

.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--light);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .aurora-bg::before,
  .aurora-bg::after,
  .aurora-bg .wave-1,
  .aurora-bg .wave-2,
  .aurora-bg .wave-3,
  .aurora-bg .wave-4,
  .aurora-bg .wave-5,
  body::before,
  body::after {
    animation: none !important;
    opacity: 0.05 !important;
  }
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
  body::before {
    background: 
      radial-gradient(ellipse 80% 50% at 20% 0%, rgba(233, 30, 99, 0.12) 0%, transparent 50%),
      radial-gradient(ellipse 60% 40% at 80% 100%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
      radial-gradient(ellipse 50% 60% at 50% 50%, rgba(240, 98, 146, 0.08) 0%, transparent 60%);
  }
  
  body::after {
    opacity: 0.015;
    mix-blend-mode: overlay;
  }
}

/* Mobile optimizations: disable grain animations on scroll */
@media (max-width: 768px) {
  .hero::before,
  .stats::before {
    animation: none !important;
    opacity: 0.01 !important;
  }
  
  .aurora-bg::before,
  .aurora-bg::after,
  .aurora-bg .wave-1,
  .aurora-bg .wave-2,
  .aurora-bg .wave-3,
  .aurora-bg .wave-4,
  .aurora-bg .wave-5 {
    animation-duration: 40s !important;
  }
  
  /* Pause all background animations during scroll */
  html.scrolling .aurora-bg::before,
  html.scrolling .aurora-bg::after,
  html.scrolling .aurora-bg .wave-1,
  html.scrolling .aurora-bg .wave-2,
  html.scrolling .aurora-bg .wave-3,
  html.scrolling .aurora-bg .wave-4,
  html.scrolling .aurora-bg .wave-5,
  html.scrolling body::before,
  html.scrolling body::after {
    animation-play-state: paused !important;
  }
}