/* ========================================
   BERKSHIRE ELITE CLEANING - MAIN STYLES
   ======================================== */

/* --- CSS Variables --- */
:root {
  --blue-primary: #2563EB;
  --blue-dark: #1D4ED8;
  --blue-light: #EFF6FF;
  --green-primary: #10B981;
  --green-dark: #059669;
  --green-light: #ECFDF5;
  --gold: #D97706;
  --gold-light: #FEF3C7;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --red-500: #EF4444;
  --red-light: #FEF2F2;
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: all 0.2s ease;
  --transition-slow: all 0.35s ease;
}

#logo {
    width: clamp(120px, 18vw, 220px);   /* ajusta al tamaño que quieras */
    height: auto;   /* mantiene proporción */
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--gray-900); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.container-xs { max-width: 600px; margin: 0 auto; padding: 0 1.5rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,99,235,0.4);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--blue-primary);
  border-color: var(--blue-primary);
}
.btn-outline:hover { background: var(--blue-light); }
.btn-green {
  background: var(--green-primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(16,185,129,0.4);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.btn-ghost { background: transparent; color: var(--gray-600); }
.btn-ghost:hover { background: var(--gray-100); color: var(--gray-900); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.125rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-full { width: 100%; }
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}
.btn-loading { position: relative; color: transparent !important; }
.btn-loading::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* --- Forms --- */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}
.form-label span { color: var(--red-500); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
.form-input.error, .form-select.error, .form-textarea.error {
  border-color: var(--red-500);
}
.form-error {
  font-size: 0.8rem;
  color: var(--red-500);
  margin-top: 0.3rem;
  display: none;
}
.form-error.visible { display: block; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); 
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem;
}
.card-border {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: var(--white);
}

/* --- Badges --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.badge-blue { background: var(--blue-light); color: var(--blue-primary); }
.badge-green { background: var(--green-light); color: var(--green-dark); }
.badge-gold { background: var(--gold-light); color: var(--gold); }
.badge-red { background: var(--red-light); color: var(--red-500); }
.badge-gray { background: var(--gray-100); color: var(--gray-600); }

/* --- Alerts --- */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border-left: 4px solid;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.alert-success { background: var(--green-light); border-color: var(--green-primary); color: var(--green-dark); }
.alert-error { background: var(--red-light); border-color: var(--red-500); color: var(--red-500); }
.alert-info { background: var(--blue-light); border-color: var(--blue-primary); color: var(--blue-dark); }
.alert-warning { background: var(--gold-light); border-color: var(--gold); color: var(--gold); }

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-slow);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 0.6rem 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.navbar-logo img {
  width: 180px;
  height: auto;
  max-width: none; /* importante */
}
.navbar-logo .logo-icon {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-right: 10px; 
}
.navbar-logo .logo-text { display: flex; flex-direction: column; }
.navbar-logo .logo-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
  letter-spacing: -0.02em;
}
.navbar.light .logo-name { color: white; }
.navbar-logo .logo-sub {
  font-size: 0.65rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.navbar.light .logo-sub { color: rgba(255,255,255,0.7); }
.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar-links a {
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}
.navbar.light .navbar-links a { color: rgba(255,255,255,0.85); }
.navbar-links a:hover { background: var(--gray-100); color: var(--gray-900); }
.navbar.light .navbar-links a:hover { background: rgba(255,255,255,0.15); color: white; }
.navbar-actions { display: flex; align-items: center; gap: 0.75rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.light .hamburger span { background: white; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-800);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  background: none;
  font-size: 1.5rem;
  color: var(--gray-600);
}
@media (max-width: 900px) {
  .navbar-links { display: none; }
  .hamburger { display: flex; }
  .navbar-actions .btn-outline { display: none; }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 40%, #0D3349 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("images/clean.jpg") center/cover no-repeat;
  opacity: 0.15;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(30,58,95,0.75) 60%, rgba(13,51,73,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 8rem 0 5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.hero-badge span { color: var(--green-primary); font-weight: 700; }
.hero h1 {
  color: white;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  max-width: 750px;
}
.hero h1 .highlight {
  background: linear-gradient(90deg, #60A5FA, #34D399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  max-width: 550px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
}
.trust-badge .icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  display: block;
  line-height: 1;
}
.hero-stat .label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem; }
.hero-float-card {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  width: 280px;
  color: white;
  z-index: 2;
}
.hero-float-card h3 { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 1rem; }
.hero-float-items { display: flex; flex-direction: column; gap: 0.75rem; }
.hero-float-item { display: flex; align-items: center; gap: 0.75rem; }
.hero-float-item .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green-primary);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(16,185,129,0.6);
}
.hero-float-item span { font-size: 0.9rem; color: rgba(255,255,255,0.85); }
@media (max-width: 1100px) { .hero-float-card { display: none; } }
@media (max-width: 768px) {
  .hero-stats { gap: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-alt { background: var(--gray-50); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--gray-500); font-size: 1.1rem; max-width: 550px; margin: 0 auto; }

/* ========================================
   QUOTE CALCULATOR
   ======================================== */
#quote { background: var(--gray-50); }
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 1024px) { .quote-grid { grid-template-columns: 1fr; } }

.quote-form-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.quote-form-header {
  background: linear-gradient(135deg, var(--blue-primary), #1E40AF);
  padding: 1.75rem 2rem;
  color: white;
}
.quote-form-header h3 { color: white; margin-bottom: 0.25rem; }
.quote-form-header p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.quote-form-body { padding: 2rem; }

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}
.option-btn {
  padding: 0.75rem 0.5rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  background: white;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}
.option-btn:hover { border-color: var(--blue-primary); color: var(--blue-primary); background: var(--blue-light); }
.option-btn.active {
  border-color: var(--blue-primary);
  background: var(--blue-light);
  color: var(--blue-primary);
}

.stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}
.stepper-btn {
  width: 40px; height: 40px;
  background: var(--gray-50);
  color: var(--gray-600);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: none;
}
.stepper-btn:hover { background: var(--blue-primary); color: white; }
.stepper-val {
  min-width: 50px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  background: white;
  padding: 0 0.5rem;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.6rem;
}
.extra-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.8rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  user-select: none;
}
.extra-checkbox input { display: none; }
.extra-checkbox:hover { border-color: var(--blue-primary); }
.extra-checkbox.checked { border-color: var(--blue-primary); background: var(--blue-light); color: var(--blue-primary); }
.extra-checkbox .check-icon {
  width: 18px; height: 18px;
  border: 2px solid var(--gray-300);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 0.7rem;
}
.extra-checkbox.checked .check-icon { background: var(--blue-primary); border-color: var(--blue-primary); color: white; }

/* Price Panel */
.price-panel {
  position: sticky;
  top: 100px;
}
.price-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.price-card-header {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  padding: 1.5rem;
  text-align: center;
  color: white;
}
.price-card-header p { color: rgba(255,255,255,0.8); font-size: 0.85rem; }
.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin: 0.5rem 0;
}
.price-amount sup { font-size: 1.5rem; vertical-align: top; margin-top: 0.75rem; }
.price-amount .cents { font-size: 1.5rem; }
.price-original {
  text-decoration: line-through;
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
}
.price-discount {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  margin-top: 0.25rem;
}
.price-card-body { padding: 1.5rem; }
.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-100);
}
.price-line:last-of-type { border-bottom: none; }
.price-line .label { color: var(--gray-600); }
.price-line .value { font-weight: 600; color: var(--gray-800); }
.price-line .value.green { color: var(--green-primary); }
.price-features { margin: 1rem 0; }
.price-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  padding: 0.3rem 0;
}
.price-feature .icon { color: var(--green-primary); font-size: 0.9rem; }
.stripe-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--gray-500);
}
.stripe-badge svg { width: 40px; height: auto; }

/* ========================================
   BOOKING FLOW MODAL
   ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-slow);
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: white;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95) translateY(10px);
  transition: var(--transition-slow);
  scrollbar-width: thin;
  scrollbar-color: var(--gray-200) transparent;
}
.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  background: white;
  z-index: 1;
}
.modal-title { font-size: 1.25rem; font-weight: 700; }
.modal-close {
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--gray-200); color: var(--gray-800); }
.modal-body { padding: 2rem; }
.modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  position: sticky;
  bottom: 0;
  background: white;
}

/* Progress Steps */
.booking-progress {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  position: relative;
}
.progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 60%;
  right: -40%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}
.progress-step.done:not(:last-child)::after,
.progress-step.active:not(:last-child)::after {
  background: var(--blue-primary);
}
.step-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-400);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.progress-step.active .step-circle {
  border-color: var(--blue-primary);
  background: var(--blue-primary);
  color: white;
}
.progress-step.done .step-circle {
  border-color: var(--green-primary);
  background: var(--green-primary);
  color: white;
}
.step-label { font-size: 0.72rem; font-weight: 600; color: var(--gray-400); text-align: center; }
.progress-step.active .step-label { color: var(--blue-primary); }
.progress-step.done .step-label { color: var(--green-primary); }

/* Calendar */
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.calendar-nav {
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: var(--transition);
}
.calendar-nav:hover { background: var(--blue-primary); color: white; }
.calendar-title { font-weight: 700; color: var(--gray-800); }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}
.cal-day-name {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  padding: 0.4rem 0;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.cal-day:hover:not(.disabled):not(.empty) { background: var(--blue-light); color: var(--blue-primary); }
.cal-day.today { font-weight: 800; color: var(--blue-primary); }
.cal-day.selected { background: var(--blue-primary) !important; color: white !important; }
.cal-day.disabled { color: var(--gray-300); cursor: not-allowed; }
.cal-day.empty { cursor: default; }
.cal-day.has-booking::after {
  content: '';
  position: absolute;
  bottom: 3px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--red-500);
}
.time-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 0.75rem; margin-top: 1.25rem; }
.time-slot {
  padding: 0.75rem 0.5rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.time-slot:hover:not(.booked) { border-color: var(--blue-primary); color: var(--blue-primary); }
.time-slot.selected { border-color: var(--blue-primary); background: var(--blue-primary); color: white; }
.time-slot.booked { background: var(--gray-100); color: var(--gray-400); cursor: not-allowed; text-decoration: line-through; }

/* Booking Summary */
.summary-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-200);
}
.summary-line:last-child { border-bottom: none; }
.summary-line .label { color: var(--gray-500); }
.summary-line .value { font-weight: 600; color: var(--gray-800); }
.summary-total {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
  border-top: 2px solid var(--gray-300);
  margin-top: 0.5rem;
}
.summary-total .total-price { color: var(--green-primary); font-size: 1.4rem; }

/* Payment */
.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
@media (max-width: 480px) { .payment-options { grid-template-columns: 1fr; } }
.payment-option {
  padding: 1.25rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.payment-option:hover { border-color: var(--blue-primary); }
.payment-option.selected {
  border-color: var(--blue-primary);
  background: var(--blue-light);
}
.payment-option h4 { font-size: 1rem; color: var(--gray-800); margin-bottom: 0.25rem; }
.payment-option p { font-size: 0.8rem; color: var(--gray-500); }
.payment-option .opt-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }

.stripe-element-wrapper {
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.stripe-element-wrapper .stripe-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}
.stripe-element-wrapper .stripe-label .lock { color: var(--green-primary); }
#stripe-card-element {
  padding: 0.75rem 1rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}
#stripe-error {
  color: var(--red-500);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
.payment-methods-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.pm-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  transition: var(--transition-slow);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-primary), var(--green-primary));
  opacity: 0;
  transition: var(--transition-slow);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.service-card:hover::before { opacity: 0.04; }
.service-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { color: var(--gray-500); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.25rem; }
.service-price { font-size: 0.85rem; font-weight: 700; color: var(--blue-primary); }

/* ========================================
   SERVICE AREA MAP
   ======================================== */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) { .area-grid { grid-template-columns: 1fr; } }
.area-map {
  background: var(--blue-light);
  border-radius: var(--radius-xl);
  height: 380px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.area-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-xl);
}
.cities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.city-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}
.city-item:hover { border-color: var(--blue-primary); background: var(--blue-light); }
.city-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-primary); flex-shrink: 0; }

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  border: 1px solid var(--gray-100);
  transition: var(--transition-slow);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.review-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.review-text { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: white;
}
.reviewer-name { font-weight: 700; font-size: 0.9rem; color: var(--gray-800); }
.reviewer-date { font-size: 0.8rem; color: var(--gray-400); }
.rating-summary {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--blue-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 600px) { .rating-summary { flex-direction: column; gap: 1rem; text-align: center; } }
.rating-big { font-size: 4rem; font-weight: 800; color: var(--blue-primary); line-height: 1; }
.rating-stars { color: #F59E0B; font-size: 1.5rem; }
.rating-label { color: var(--gray-600); font-size: 0.9rem; }
.rating-bars { flex: 1; }
.rating-bar-row { display: flex; align-items: center; gap: 0.75rem; font-size: 0.85rem; margin-bottom: 0.4rem; }
.rating-bar-row .stars-label { width: 40px; color: var(--gray-500); }
.rating-bar-track { flex: 1; height: 8px; background: var(--gray-200); border-radius: var(--radius-full); overflow: hidden; }
.rating-bar-fill { height: 100%; background: #F59E0B; border-radius: var(--radius-full); }
.rating-bar-count { width: 30px; text-align: right; color: var(--gray-500); }

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  gap: 1rem;
}
.faq-question:hover { color: var(--blue-primary); }
.faq-icon { font-size: 1.25rem; flex-shrink: 0; transition: var(--transition); color: var(--gray-400); }
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--blue-primary); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner { padding-bottom: 1.25rem; color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; }

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-detail .icon-box {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--blue-light);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-detail .info .title { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.1rem; }
.contact-detail .info a { color: var(--gray-600); font-size: 0.9rem; }
.contact-detail .info a:hover { color: var(--blue-primary); }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo-name { color: white; }
.footer-brand p { margin-top: 1rem; font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 { color: white; font-size: 0.9rem; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { font-size: 0.875rem; transition: var(--transition); }
.footer-col ul a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { transition: var(--transition); }
.footer-bottom a:hover { color: white; }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}
.social-link:hover { background: var(--blue-primary); color: white; }

/* ========================================
   HOW IT WORKS
   ======================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-primary), var(--green-primary));
  z-index: 0;
}
@media (max-width: 768px) { .steps-grid::before { display: none; } }
.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--green-primary));
  color: white;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
.step-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-item p { font-size: 0.875rem; color: var(--gray-500); }

/* ========================================
   UTILITY CLASSES
   ======================================== */
.hidden { display: none !important; }
.visible { display: block !important; }
.text-center { text-align: center; }
.text-green { color: var(--green-primary); }
.text-blue { color: var(--blue-primary); }
.text-gray { color: var(--gray-500); }
.font-bold { font-weight: 700; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.divider { height: 1px; background: var(--gray-200); margin: 1.5rem 0; }
.scroll-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-slow);
  z-index: 500;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--blue-dark); transform: translateY(-3px); }

/* Spinner */
@keyframes spin { to { transform: rotate(360deg); } }
.spinner {
  display: inline-block;
  width: 24px; height: 24px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--blue-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.loading-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  z-index: 10;
}
/* Notification Toast */
.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 380px;
}
.toast {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-xl);
  border-left: 4px solid;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  animation: slideIn 0.3s ease;
  font-size: 0.9rem;
}
.toast-success { border-color: var(--green-primary); }
.toast-error { border-color: var(--red-500); }
.toast-info { border-color: var(--blue-primary); }
.toast-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.toast-content .title { font-weight: 700; color: var(--gray-800); margin-bottom: 0.2rem; }
.toast-content .msg { color: var(--gray-600); }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideOut { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(20px); } }
.toast.removing { animation: slideOut 0.3s ease forwards; }

/* Confirmation screen */
.confirm-screen {
  text-align: center;
  padding: 2rem 0;
}
.confirm-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-primary);
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.confirm-ref {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-primary);
  letter-spacing: 0.1em;
  display: inline-block;
  margin: 1rem 0;
}

/* My Bookings section */
.lookup-card {
  max-width: 560px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.lookup-header {
  background: linear-gradient(135deg, var(--blue-primary), #1E40AF);
  padding: 2rem;
  color: white;
  text-align: center;
}
.lookup-header h2 { color: white; margin-bottom: 0.5rem; }
.lookup-header p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.lookup-body { padding: 2rem; }
.booking-result-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.booking-result-header {
  padding: 1.25rem 1.5rem;
  background: var(--gray-50);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--gray-100);
}
.booking-result-body { padding: 1.5rem; }
.booking-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.25rem; }

/* Stripe secure banner */
.secure-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  color: var(--gray-500);
  flex-wrap: wrap;
}
.secure-banner-item { display: flex; align-items: center; gap: 0.35rem; }
.secure-banner-item .icon { color: var(--green-primary); }

/* Responsive helpers */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .modal { max-height: 95vh; }
  .modal-body { padding: 1.25rem; }
  .modal-footer { padding: 1rem; }
  .booking-progress .step-label { display: none; }
}
