/* ═══════════════════════════════════════════
   MÁCOLIS, LLC — STYLES
   Superior Cleaning and Fast Delivery Service
   Brand: #0F2D52, #5BC8AF, #4DA6FF
   Fonts: DM Sans + Playfair Display
   ═══════════════════════════════════════════ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0F2D52;
  --primary-light: #1a4a7a;
  --secondary: #4DA6FF;
  --accent: #5BC8AF;
  --accent-light: #8EDECB;
  --white: #FFFFFF;
  --gray-50: #F4F6F8;
  --gray-100: #E8EDF2;
  --gray-200: #D1D9E2;
  --gray-300: #A8B5C4;
  --gray-400: #7A8B9E;
  --gray-600: #4A5568;
  --gray-800: #2D3748;
  --gray-900: #1A202C;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --section-pad: clamp(4rem, 8vw, 7rem);
  --container-max: 1200px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 0.65rem 1.5rem;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(91, 200, 175, 0.3);
}
.btn-primary:hover {
  background: #4AB89D;
  border-color: #4AB89D;
  box-shadow: 0 6px 22px rgba(91, 200, 175, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-lg { padding: 0.8rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  transition: background-color 0.4s, box-shadow 0.4s, padding 0.4s;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(15,45,82,0.08);
  padding: 0.5rem 0;
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 10;
}

.logo-icon {
  height: 44px;
  width: auto;
  transition: opacity 0.3s;
}

.logo-icon-dark {
  display: none;
}

.site-header.scrolled .logo-icon-white { display: none; }
.site-header.scrolled .logo-icon-dark { display: block; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s;
}

.logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}

.site-header.scrolled .logo-name { color: var(--primary); }
.site-header.scrolled .logo-tagline { color: var(--gray-400); }

/* Nav */
.main-nav {
  display: flex;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}

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

.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--white); }

.site-header.scrolled .nav-link { color: var(--gray-600); }
.site-header.scrolled .nav-link:hover { color: var(--primary); }

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

.lang-toggle {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
}

.lang-toggle:hover {
  background: rgba(255,255,255,0.25);
}

.site-header.scrolled .lang-toggle {
  background: var(--gray-50);
  border-color: var(--gray-200);
  color: var(--primary);
}

.btn-sign-in {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
}

.btn-sign-in:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.site-header.scrolled .btn-sign-in {
  color: var(--primary);
  border-color: var(--gray-200);
}

.site-header.scrolled .btn-sign-in:hover {
  background: var(--gray-50);
  border-color: var(--accent);
  color: var(--accent);
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.hamburger { position: relative; }
.hamburger::before,
.hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.site-header.scrolled .hamburger,
.site-header.scrolled .hamburger::before,
.site-header.scrolled .hamburger::after {
  background: var(--primary);
}

.menu-toggle.active .hamburger { background: transparent; }
.menu-toggle.active .hamburger::before { transform: rotate(45deg); top: 0; }
.menu-toggle.active .hamburger::after { transform: rotate(-45deg); top: 0; }

/* ── SIGN IN MODAL (Multi-View Auth) ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 45, 82, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  animation: slideUp 0.4s var(--ease-out);
}

.modal-card::-webkit-scrollbar { width: 4px; }
.modal-card::-webkit-scrollbar-track { background: transparent; }
.modal-card::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 4px; }

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-400);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
  z-index: 5;
}

.modal-close:hover {
  background: var(--gray-50);
  color: var(--gray-800);
}

/* Auth View Switching */
.auth-view {
  display: none;
}

.auth-view.active {
  display: block;
  animation: fadeIn 0.25s ease;
}

/* Auth Banner (error / success messages) */
.auth-banner {
  display: none;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.auth-banner.error {
  display: block;
  background: #FEF2F2;
  color: #DC2626;
  border: 1px solid #FECACA;
}

.auth-banner.success {
  display: block;
  background: #F0FDF4;
  color: #16A34A;
  border: 1px solid #BBF7D0;
}

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

.modal-logo {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.modal-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(15, 45, 82, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.modal-icon-circle.accent {
  background: rgba(91, 200, 175, 0.12);
  color: var(--accent);
}

.modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.modal-header p {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.verify-email-display {
  display: block;
  color: var(--primary);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.modal-body .form-group {
  margin-bottom: 1rem;
}

.modal-body label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 0.35rem;
}

.modal-body input[type="email"],
.modal-body input[type="password"],
.modal-body input[type="text"],
.modal-body input[type="tel"] {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--gray-50);
}

.modal-body input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(91, 200, 175, 0.1);
}

.modal-body input.input-error {
  border-color: #DC2626;
}

.modal-body input.input-error:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Password toggle */
.input-password-wrap {
  position: relative;
}

.input-password-wrap input {
  padding-right: 2.75rem;
}

.toggle-password {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-300);
  padding: 0.25rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.toggle-password:hover {
  color: var(--gray-600);
}

/* Password strength bar */
.password-strength {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.strength-bar {
  flex: 1;
  height: 4px;
  background: var(--gray-100);
  border-radius: 4px;
  overflow: hidden;
}

.strength-fill {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  transition: width 0.3s, background 0.3s;
}

.strength-fill.weak { width: 25%; background: #EF4444; }
.strength-fill.fair { width: 50%; background: #F59E0B; }
.strength-fill.good { width: 75%; background: #3B82F6; }
.strength-fill.strong { width: 100%; background: #10B981; }

.strength-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 48px;
}

/* Code input */
.code-input-wrap { text-align: center; }

.code-input {
  text-align: center;
  font-size: 1.75rem !important;
  font-weight: 700;
  letter-spacing: 0.5em;
  font-family: 'SF Mono', 'Fira Code', monospace;
  padding: 0.75rem 1rem !important;
}

/* 2-column form row */
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Loading button */
.btn-loading-wrap {
  position: relative;
}

.btn-loading-wrap .btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  margin-top: -9px;
}

.btn-loading-wrap.loading .btn-text { opacity: 0.6; }
.btn-loading-wrap.loading .btn-spinner { display: block; }
.btn-loading-wrap.loading { pointer-events: none; }

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

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  color: var(--gray-600);
}

.forgot-link {
  color: var(--accent);
  font-weight: 500;
}

.forgot-link:hover {
  text-decoration: underline;
}

.modal-footer-text {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 1rem;
}

.modal-footer-text a {
  color: var(--accent);
  font-weight: 600;
}

/* ── USER MENU (Logged-in state) ── */
.user-menu {
  position: relative;
}

.user-menu-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 0.3rem 0.75rem 0.3rem 0.3rem;
  border-radius: 25px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s;
}

.user-menu-trigger:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.site-header.scrolled .user-menu-trigger {
  color: var(--primary);
  border-color: var(--gray-200);
}

.site-header.scrolled .user-menu-trigger:hover {
  background: var(--gray-50);
  border-color: var(--accent);
}

.user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
}

.user-name {
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  min-width: 220px;
  padding: 0.5rem;
  z-index: 100;
  animation: fadeIn 0.15s ease;
}

.user-dropdown.active {
  display: block;
}

.user-dropdown-header {
  padding: 0.75rem;
}

.user-dropdown-header strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-800);
}

.user-dropdown-header span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.user-dropdown-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 0.25rem 0;
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--gray-600);
  transition: all 0.15s;
}

.user-dropdown-item:hover {
  background: var(--gray-50);
  color: var(--primary);
}

.user-dropdown-item svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.user-dropdown-logout {
  color: #DC2626;
}

.user-dropdown-logout:hover {
  background: #FEF2F2;
  color: #DC2626;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7rem 0 4rem;
}

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(15, 45, 82, 0.95) 0%,
      rgba(15, 45, 82, 0.85) 40%,
      rgba(15, 45, 82, 0.3) 100%
    );
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/pictures/hero.webp') center right / cover no-repeat;
  z-index: 0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(91, 200, 175, 0.08) 0%, transparent 50%),
                     radial-gradient(circle at 80% 20%, rgba(77, 166, 255, 0.06) 0%, transparent 50%);
  z-index: 2;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(91, 200, 175, 0.4);
  border-radius: 50%;
  animation: floatParticle 8s infinite ease-in-out;
}

.particle:nth-child(1) { left: 15%; top: 30%; animation-delay: 0s; }
.particle:nth-child(2) { left: 45%; top: 60%; animation-delay: 2s; animation-duration: 10s; }
.particle:nth-child(3) { left: 70%; top: 25%; animation-delay: 4s; animation-duration: 12s; }
.particle:nth-child(4) { left: 85%; top: 70%; animation-delay: 1s; animation-duration: 9s; }

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-30px) scale(1.5); opacity: 0.7; }
}

.hero-container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.hero-glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.5rem 2rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(91, 200, 175, 0.15);
  border: 1px solid rgba(91, 200, 175, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.hero-title {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.hero-line {
  display: block;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

.hero-line.accent {
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.75rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  align-items: center;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
}

/* Hero floating cards */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease-out);
}

.hero-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateX(-4px);
}

.hero-card-icon {
  font-size: 1.5rem;
}

/* ── SECTIONS SHARED ── */
.section {
  padding: var(--section-pad) 0;
}

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

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(91, 200, 175, 0.1);
  border-radius: 14px;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.section-tag {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── SERVICES ── */
.services {
  background: var(--gray-50);
}

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

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.service-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 30px rgba(91, 200, 175, 0.15);
}

.service-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}

.service-card-header {
  padding: 2rem 1.5rem 1.25rem;
  text-align: center;
}

.service-card-header.standard { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: var(--white); }
.service-card-header.deep { background: linear-gradient(135deg, var(--accent), #3BA88F); color: var(--white); }
.service-card-header.post-construction { background: linear-gradient(135deg, #2a5a9e, var(--secondary)); color: var(--white); }

.service-price {
  margin-bottom: 0.5rem;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
}

.price-unit {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
}

.service-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

.service-card-body {
  padding: 1.5rem;
}

.service-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.services-note {
  text-align: center;
  color: var(--gray-400);
  font-size: 0.875rem;
  font-style: italic;
}

/* ── DELIVERY ── */
.delivery {
  background: var(--white);
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.delivery-content p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.delivery-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.delivery-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.delivery-feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(91, 200, 175, 0.1);
  border-radius: 12px;
}

.delivery-feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.delivery-feature p {
  font-size: 0.85rem !important;
  color: var(--gray-400) !important;
  margin-bottom: 0 !important;
}

.delivery-visual {
  display: flex;
  justify-content: center;
}

.delivery-stat-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  color: var(--white);
  width: 240px;
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(15, 45, 82, 0.3);
}

.delivery-stat-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.delivery-stat-label {
  font-size: 0.85rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── ABOUT ── */
.about {
  background: var(--gray-50);
}

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

.about-image img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  width: 100%;
  object-fit: cover;
}

.about-content .section-tag,
.about-content .section-title {
  text-align: left;
}

.about-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-badge {
  background: var(--white);
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.about-badge strong {
  display: block;
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 0.15rem;
}

.about-badge span {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── PROCESS ── */
.process {
  background: var(--white);
}

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

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--gray-50);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #F4B740;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.testimonial-card > p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ── CONTACT ── */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: center;
}

.contact-item-icon {
  font-size: 1.25rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(91, 200, 175, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  transition: color 0.2s;
}

.contact-item a:hover { color: var(--accent); }

.contact-locations {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.contact-locations h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.location-card {
  background: var(--gray-50);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 0.75rem;
}

.location-card strong {
  display: block;
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.location-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.4;
}

/* Contact Form */
.contact-form-card {
  background: var(--gray-50);
  border-radius: 20px;
  padding: 2rem;
}

.contact-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.contact-form-card .form-group {
  margin-bottom: 1rem;
}

.contact-form-card label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 0.35rem;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: border-color 0.2s;
  background: var(--white);
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form-card textarea {
  resize: vertical;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 0.75rem;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}

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

.footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.7;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

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

/* Social links */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-contact a {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.4rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ── SCROLL ANIMATIONS ── */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance stagger */
.hero [data-animate]:nth-child(1) { transition-delay: 0.1s; }
.hero [data-animate]:nth-child(2) { transition-delay: 0.22s; }
.hero [data-animate]:nth-child(3) { transition-delay: 0.34s; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

/* ── BOOKING MODAL ── */
.booking-modal-card {
  max-width: 540px;
  max-height: 92vh;
  overflow-y: auto;
}

.booking-steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

.booking-step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.3s var(--ease-out);
  flex-shrink: 0;
}

.booking-step-dot.active {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(91, 200, 175, 0.2);
}

.booking-step-dot.done {
  background: var(--primary);
  color: var(--white);
}

.booking-step-line {
  flex: 1;
  height: 2px;
  background: var(--gray-100);
  max-width: 60px;
}

.booking-step {
  display: none;
  animation: fadeIn 0.3s var(--ease-out);
}

.booking-step.active {
  display: block;
}

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

/* Booking service selection cards */
.booking-service-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-service-option {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  font-family: var(--font-body);
}

.booking-service-option:hover {
  border-color: var(--accent);
  background: rgba(91, 200, 175, 0.04);
}

.booking-service-option.selected {
  border-color: var(--accent);
  background: rgba(91, 200, 175, 0.06);
  box-shadow: 0 0 0 3px rgba(91, 200, 175, 0.15);
}

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

.bso-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
}

.bso-price small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gray-400);
}

.bso-badge {
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.booking-service-option h4 {
  font-size: 0.95rem;
  color: var(--gray-800);
  margin-bottom: 0.2rem;
}

.booking-service-option p {
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.4;
}

/* Configure step */
.booking-config-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.config-item.full-width {
  grid-column: 1 / -1;
}

.config-item label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
}

.qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--gray-50);
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  font-family: var(--font-body);
}

.qty-btn:hover {
  background: var(--gray-100);
}

.qty-value {
  flex: 1;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 40px;
}

.rooms-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.room-check {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  cursor: pointer;
  background: var(--gray-50);
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: all 0.15s;
}

.room-check:has(input:checked) {
  border-color: var(--accent);
  background: rgba(91, 200, 175, 0.06);
  color: var(--primary);
}

.room-check input {
  accent-color: var(--accent);
}

.booking-config-grid textarea {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  resize: vertical;
  transition: border-color 0.2s;
}

.booking-config-grid textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.booking-price-preview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--gray-50);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.booking-price-preview strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}

.booking-nav-btns {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.booking-nav-btns .btn {
  flex: 1;
}

/* Calendar */
.calendar-wrap {
  background: var(--gray-50);
  border-radius: 14px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

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

.cal-month {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
}

.cal-nav {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: var(--white);
  color: var(--primary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.15s;
  font-family: var(--font-body);
}

.cal-nav:hover { background: var(--gray-100); }

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

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

.cal-day {
  width: 100%;
  aspect-ratio: 1;
  border: none;
  border-radius: 8px;
  background: var(--white);
  color: var(--gray-800);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font-body);
}

.cal-day:hover:not(.disabled):not(.selected) {
  background: var(--gray-100);
}

.cal-day.today {
  border: 2px solid var(--accent);
}

.cal-day.selected {
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
}

.cal-day.disabled {
  color: var(--gray-200);
  cursor: default;
  background: transparent;
}

.cal-day.other-month {
  color: var(--gray-200);
}

/* Time slots */
.time-picker label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.time-slot {
  padding: 0.45rem 0.9rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font-body);
}

.time-slot:hover { border-color: var(--accent); }

.time-slot.selected {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* Summary */
.booking-summary {
  background: var(--gray-50);
  border-radius: 14px;
  padding: 1.25rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  font-size: 0.85rem;
}

.summary-row span { color: var(--gray-400); }
.summary-row strong { color: var(--gray-800); font-weight: 600; }

.summary-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 0.5rem 0;
}

.summary-total span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-600);
}

.summary-total strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}

.summary-note {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* ── CUSTOMER DASHBOARD ── */
.dashboard-panel {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--gray-50);
  overflow-y: auto;
  animation: fadeIn 0.3s var(--ease-out);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  margin-top: 0.5rem;
}

.dashboard-header h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--primary);
}

.dashboard-header p {
  color: var(--gray-400);
  font-size: 0.9rem;
}

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

.dash-stat-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.dash-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}

.dash-stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.dash-section h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.dash-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray-300);
}

.dash-empty svg { margin-bottom: 1rem; opacity: 0.4; }
.dash-empty p { margin-bottom: 1rem; color: var(--gray-400); font-size: 0.9rem; }

/* ── BOOKING CARD (in dashboard) ── */
.booking-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.booking-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.booking-card-service {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

.booking-card-date {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.booking-card-status {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.status-pending {
  background: #FEF3C7;
  color: #92400E;
}

.status-confirmed {
  background: #DBEAFE;
  color: #1E40AF;
}

.status-in-progress {
  background: #D1FAE5;
  color: #065F46;
}

.status-completed {
  background: var(--gray-100);
  color: var(--gray-600);
}

/* ── PROGRESS TRACKER ── */
.progress-tracker {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 1rem;
  position: relative;
}

.progress-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.progress-step::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  right: -50%;
  height: 3px;
  background: var(--gray-200);
  z-index: 0;
}

.progress-step:last-child::before {
  display: none;
}

.progress-step.done::before {
  background: var(--accent);
}

.progress-step.active-step::before {
  background: linear-gradient(90deg, var(--accent) 50%, var(--gray-200) 50%);
}

.progress-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s var(--ease-out);
}

.progress-step.done .progress-dot {
  background: var(--accent);
}

.progress-step.active-step .progress-dot {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(91, 200, 175, 0.25);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(91, 200, 175, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(91, 200, 175, 0.1); }
}

.progress-label {
  display: block;
  font-size: 0.65rem;
  color: var(--gray-400);
  line-height: 1.3;
}

.progress-step.done .progress-label,
.progress-step.active-step .progress-label {
  color: var(--gray-600);
  font-weight: 600;
}

.booking-card-details {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-100);
}

.booking-card-details span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.booking-card-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }

  .main-nav.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 999;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }

  .main-nav.active .nav-link {
    font-size: 1.25rem;
    color: var(--white);
  }

  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    flex-direction: row;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .delivery-visual { order: -1; }

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

  .about-image { max-width: 500px; margin: 0 auto; }

  .process-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

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

@media (max-width: 640px) {
  .hero {
    min-height: 80vh;
    padding: 6rem 0 3rem;
  }

  .hero-glass {
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
    text-align: center;
  }

  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; }

  .hero-visual {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .hero-card {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }

  .btn-sign-in span { display: none; }
  .btn-sign-in { padding: 0.4rem; border-radius: 50%; width: 36px; height: 36px; justify-content: center; }

  .user-name { display: none; }
  .user-menu-trigger { padding: 0.2rem; border-radius: 50%; border: none; }
  .user-menu-trigger svg { display: none; }

  .modal-card { padding: 1.75rem; }
  .form-row-2col { grid-template-columns: 1fr; }
  .booking-config-grid { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: 1fr; gap: 0.75rem; }
  .booking-card-details { flex-wrap: wrap; gap: 0.75rem; }
  .progress-label { font-size: 0.6rem; }
  .booking-modal-card { padding: 1.25rem; }

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

@media (max-width: 480px) {
  .hero { min-height: 70vh; }
  .hero-glass { padding: 1.25rem; backdrop-filter: blur(8px); }
  .hero-line { font-size: 2rem; }
  .stat-divider { display: none; }
  .hero-stats { gap: 1.5rem; }
  .contact-form-card { padding: 1.5rem; }
  .logo-icon { height: 36px; }
}

/* ── PWA INSTALL BANNER ── */
.pwa-install-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  padding: 0.75rem 1rem;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  border-top: 2px solid var(--accent);
  animation: slideUp 0.4s var(--ease-out);
}

.pwa-install-banner.active {
  display: block;
}

.pwa-install-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pwa-install-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
}

.pwa-install-text {
  flex: 1;
}

.pwa-install-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary);
}

.pwa-install-text span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
}

.pwa-install-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-300);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

.pwa-install-close:hover {
  color: var(--gray-600);
}

/* Offline banner */
.offline-banner {
  display: none;
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  background: #F59E0B;
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1500;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.offline-banner.active {
  display: block;
  animation: slideUp 0.4s var(--ease-out);
}
