/* ============================================
   WITCHES CLEANING — STYLE.CSS
   Refined luxury meets magical whimsy
   ============================================ */

/* ========== CSS CUSTOM PROPERTIES ========== */
:root {
  /* Colors — Soft Indigo Light Theme */
  --navy: #312e81;
  --navy-light: #4338ca;
  --navy-lighter: #6366f1;
  --gold: #7c3aed;
  --gold-light: #a78bfa;
  --gold-dark: #5b21b6;
  --white: #ffffff;
  --off-white: #f5f3ff;
  --lavender: #e0e7ff;
  --lavender-light: #eef2ff;
  --lavender-dark: #c7d2fe;
  --emerald: #4f46e5;
  --emerald-dark: #4338ca;
  --emerald-light: #e0e7ff;
  --gray-50: #faf5ff;
  --gray-100: #f5f3ff;
  --gray-200: #e9e5f5;
  --gray-300: #c4b5fd;
  --gray-400: #8b8fa3;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --text: #1e1b4b;
  --text-light: #6366f1;
  --text-muted: #8b8fa3;
  --danger: #ef4444;
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --section-pad: 6rem;
  --container-max: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Shadows — softer */
  --shadow-sm: 0 1px 3px rgba(99,102,241,0.06), 0 1px 2px rgba(99,102,241,0.04);
  --shadow-md: 0 4px 12px rgba(99,102,241,0.08), 0 2px 4px rgba(99,102,241,0.04);
  --shadow-lg: 0 12px 32px rgba(99,102,241,0.1), 0 4px 8px rgba(99,102,241,0.06);
  --shadow-xl: 0 20px 50px rgba(99,102,241,0.12), 0 8px 16px rgba(99,102,241,0.06);
  --shadow-gold: 0 4px 20px rgba(124,58,237,0.2);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

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

/* ========== UTILITIES ========== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.icon-xs { width: 14px; height: 14px; }
.icon-sm { width: 18px; height: 18px; }

/* Page transition */
.page {
  animation: pageIn 0.5s var(--ease-out) both;
}

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

/* ========== TOP BAR ========== */
.top-bar {
  background: linear-gradient(135deg, #312e81, #4338ca);
  color: #e0e7ff;
  font-size: 0.8125rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(99,102,241,0.2);
}

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

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  padding: 0.2rem 0.75rem;
  border-radius: 100px;
  font-weight: 500;
  color: #c7d2fe;
}

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

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #c7d2fe;
  transition: color 0.3s var(--ease);
}

.top-bar-link:hover { color: #ffffff; }

/* ========== HEADER ========== */
.header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s var(--ease);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.logo-img-footer {
  height: 64px;
  filter: brightness(0) invert(1);
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
  position: relative;
}

.nav-link:hover {
  color: var(--navy);
  background: var(--gray-50);
}

.nav-link.active {
  color: var(--navy);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--navy-lighter);
  border-radius: 2px;
}

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

.lang-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.03em;
  transition: all 0.3s var(--ease);
}

.lang-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(99,102,241,0.05);
}

/* CTA Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-cta,
.btn-primary {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
}

.btn-cta:hover,
.btn-primary:hover {
  background: var(--emerald-dark);
  border-color: var(--emerald-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79,70,229,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--gray-100);
  border-color: var(--gray-100);
}

.btn-sm { padding: 0.5rem 1.15rem; font-size: 0.85rem; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

.header-cta {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #faf5ff;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.mobile-nav.open {
  max-height: 600px;
}

.mobile-nav-inner {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-link:hover { color: var(--navy-lighter); }
.mobile-nav-divider { height: 1px; background: var(--gray-200); margin: 0.5rem 0; }

/* ========== HERO — HOME ========== */
.hero-home {
  position: relative;
  background: linear-gradient(170deg, #1e1b4b 0%, #312e81 40%, #4338ca 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(124,58,237,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(224,231,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(99,102,241,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(167,139,250,0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--white) 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-300);
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-buttons .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.hero-buttons .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem 2rem;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: all 0.3s var(--ease);
}

.stat-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(167,139,250,0.4);
  transform: translateY(-2px);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #c7d2fe;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* Sparkles */
.hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0;
  animation: sparkleAnim 4s ease-in-out infinite;
  color: #c4b5fd;
}

.sparkle-1 { top: 15%; right: 10%; animation-delay: 0s; }
.sparkle-2 { top: 35%; right: 20%; animation-delay: 0.8s; }
.sparkle-3 { top: 60%; right: 5%; animation-delay: 1.6s; }
.sparkle-4 { top: 25%; right: 35%; animation-delay: 2.4s; font-size: 0.8rem; }
.sparkle-5 { top: 75%; right: 25%; animation-delay: 3.2s; font-size: 0.9rem; }

@keyframes sparkleAnim {
  0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  50% { opacity: 0.8; transform: scale(1) rotate(180deg); }
}

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

.section-alt {
  background: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6366f1;
  background: rgba(99,102,241,0.08);
  padding: 0.2rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0.75rem auto 0;
  line-height: 1.7;
}

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

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

/* ========== FEATURE CARDS ========== */
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.4s var(--ease);
}

.feature-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(224,231,255,0.15));
  color: var(--navy-lighter);
  margin-bottom: 1.25rem;
}

.feature-icon svg { width: 24px; height: 24px; }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== SERVICE PREVIEW CARDS ========== */
.service-preview-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s var(--ease);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.service-preview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--navy-lighter));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-preview-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

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

.spc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.spc-icon svg { width: 22px; height: 22px; }

.service-preview-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.service-preview-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

.spc-price {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--emerald);
}

/* ========== STEPS ========== */
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
}

.step-card {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.step-icon svg { width: 26px; height: 26px; }

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  color: var(--gray-300);
  padding-top: 5.5rem;
}

.step-connector svg { width: 28px; height: 28px; }

/* ========== TESTIMONIALS ========== */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s var(--ease);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

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

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

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, #312e81, #4338ca);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(124,58,237,0.15) 0%, transparent 60%);
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-text p {
  color: var(--gray-300);
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  padding: 3.5rem 0 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(124,58,237,0.08) 0%, transparent 60%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--gray-400);
  transition: color 0.3s var(--ease);
}

.breadcrumb a:hover { color: var(--gold-light); }

.page-hero-title {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.page-hero-desc {
  font-size: 1.05rem;
  color: var(--gray-300);
  max-width: 600px;
}

/* ========== SERVICES PAGE ========== */
.service-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.service-detail-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-detail-icon svg { width: 26px; height: 26px; }

.service-detail-header h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.service-detail-header p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s var(--ease);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.pricing-card-featured {
  border-color: var(--navy-lighter);
  box-shadow: var(--shadow-gold);
  transform: scale(1.02);
}

.pricing-card-featured:hover {
  transform: scale(1.02) translateY(-2px);
}

.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-lighter);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.pricing-features {
  text-align: left;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--gray-100);
  padding-left: 1.5rem;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--emerald);
  font-weight: 700;
}

.pricing-features li:last-child { border-bottom: none; }

/* Commercial / Event card */
.commercial-pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-amount-large {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2rem;
}

.pricing-note {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
}

.commercial-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2rem;
  text-align: left;
  margin-bottom: 2rem;
}

.commercial-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
}

.commercial-feature svg { color: var(--emerald); flex-shrink: 0; }

/* Add-ons */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  transition: all 0.3s var(--ease);
}

.addon-item:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-sm);
}

.addon-name {
  font-weight: 500;
  color: var(--navy);
}

.addon-price {
  font-weight: 700;
  color: var(--emerald);
  font-size: 1.05rem;
}

/* Discounts */
.discount-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.discount-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.discount-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--emerald);
  margin-bottom: 0.5rem;
}

.discount-amount span {
  font-size: 1rem;
  font-weight: 600;
}

.discount-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.discount-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ========== ABOUT PAGE ========== */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.about-story-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0.75rem 0 1.25rem;
}

.about-story-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-story-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 120px;
}

.about-visual-card {
  background: linear-gradient(135deg, #312e81, #4338ca);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(124,58,237,0.2) 0%, transparent 60%);
}

.about-visual-icon {
  position: relative;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.about-visual-stat {
  position: relative;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
}

.about-visual-label {
  position: relative;
  font-size: 0.85rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Values */
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--lavender-light);
  color: var(--navy);
  margin-bottom: 1rem;
}

.value-icon svg { width: 24px; height: 24px; }

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Service Area */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 700px;
  margin: 0 auto;
}

.area-column h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--navy-lighter);
}

.area-column li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--gray-100);
}

/* Trust Badges */
.trust-badges-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.3s var(--ease);
}

.trust-badge:hover {
  border-color: var(--navy-lighter);
  box-shadow: var(--shadow-sm);
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  color: var(--emerald);
}

/* Team placeholder */
.team-placeholder {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--gray-50);
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg);
}

.team-placeholder-icon { width: 48px; height: 48px; color: var(--gray-300); margin: 0 auto 1rem; }
.team-placeholder p { color: var(--text-light); font-size: 0.95rem; }
.team-placeholder a { color: var(--emerald); font-weight: 600; }

/* ========== BOOKING PAGE ========== */
.calculator-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.calculator-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.calc-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.calc-field select,
.calc-field input[type="text"],
.calc-field input[type="email"],
.calc-field input[type="tel"],
.calc-field input[type="date"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  appearance: auto;
}

.calc-field select:focus,
.calc-field input:focus {
  outline: none;
  border-color: var(--navy-lighter);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

/* Range slider */
.calc-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--gray-200);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--gold-light);
  cursor: pointer;
  transition: transform 0.2s var(--ease);
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--gold-light);
  cursor: pointer;
}

/* Add-on checkboxes */
.calc-addons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.addon-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s var(--ease);
}

.addon-check:hover { background: var(--gray-50); }

.addon-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--emerald);
}

.addon-check em {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-left: auto;
}

/* Calculator result */
.calculator-result {
  position: sticky;
  top: 100px;
}

.result-card {
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.15) 0%, transparent 60%);
}

.result-card > * { position: relative; }

.result-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
}

.result-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.result-breakdown {
  text-align: left;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.breakdown-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--gray-300);
  padding: 0.35rem 0;
}

.discount-line { color: var(--emerald-light); }

.result-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 1rem;
}

/* GHL Calendar */
.ghl-calendar-placeholder {
  background: var(--white);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ghl-icon { width: 48px; height: 48px; color: var(--gray-300); margin-bottom: 1rem; }

.ghl-calendar-placeholder p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ========== FORMS ========== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

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

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy-lighter);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.form-field textarea { resize: vertical; }

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--emerald-light);
  color: var(--emerald-dark);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  font-weight: 500;
}

.form-success svg { width: 24px; height: 24px; flex-shrink: 0; }

/* ========== FAQ PAGE ========== */
.faq-container {
  max-width: 800px;
}

.faq-category {
  margin-bottom: 3rem;
}

.faq-category-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--navy-lighter);
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 2.5rem 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  transition: color 0.3s var(--ease);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--navy-lighter);
  transition: transform 0.3s var(--ease);
}

.faq-question:hover { color: var(--navy); }

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========== CONTACT PAGE ========== */
.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s var(--ease);
}

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

.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-card-icon svg { width: 22px; height: 22px; }

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.contact-card a,
.contact-card span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-card a:hover { color: var(--navy-lighter); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form-wrap h2,
.contact-map-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.contact-form .form-field { margin-bottom: 1.25rem; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.map-embed iframe {
  display: block;
}

.social-links {
  margin-top: 2rem;
}

.social-links h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  transition: all 0.3s var(--ease);
}

.social-icon:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

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

/* ========== BLOG PAGE ========== */
.blog-coming-soon {
  text-align: center;
  padding: 1rem 1.5rem;
  background: var(--lavender-light);
  border: 1px solid var(--lavender);
  border-radius: var(--radius-md);
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.blog-card-img {
  height: 200px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-img-placeholder {
  color: var(--gold);
  opacity: 0.3;
}

.blog-img-placeholder svg { width: 48px; height: 48px; }

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

.blog-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0.5rem 0;
  line-height: 1.35;
}

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-lighter);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ========== PORTAL PAGE ========== */
.portal-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.portal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.portal-icon svg { width: 32px; height: 32px; }

.portal-card h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.portal-card > p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.portal-login-placeholder {
  opacity: 0.5;
  pointer-events: none;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.portal-login-placeholder .form-field { margin-bottom: 1rem; text-align: left; }

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

.portal-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.portal-notify-form {
  display: flex;
  gap: 0.5rem;
}

.portal-notify-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.portal-notify-form input:focus {
  outline: none;
  border-color: var(--navy-lighter);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.portal-link {
  margin-top: 1.5rem;
}

.portal-link a {
  color: var(--emerald);
  font-weight: 600;
}

/* ========== FOOTER ========== */
.footer {
  background: linear-gradient(180deg, #1e1b4b, #0f0e2e);
  color: var(--gray-300);
  padding: 4rem 0 2rem;
}

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


.footer-brand > p {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin: 0.75rem 0;
  font-style: italic;
  font-family: var(--font-display);
}

.footer-hours {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--gray-400);
  transition: all 0.3s var(--ease);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col a {
  font-size: 0.88rem;
  color: var(--gray-400);
  transition: color 0.3s var(--ease);
}

.footer-col a:hover { color: var(--gold-light); }

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact-list svg { color: var(--gold); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  text-align: center;
}

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

.footer-bilingual {
  margin-top: 0.5rem;
  font-size: 0.78rem !important;
  font-style: italic;
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .header-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-nav { display: block; }
  .logo-img { height: 40px; }
  
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; }
  
  .steps-grid { flex-wrap: wrap; }
  .step-connector { display: none; }
  .step-card { min-width: 200px; }
  
  .about-story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-story-visual { position: static; flex-direction: row; }
  
  .calculator-wrapper { grid-template-columns: 1fr; }
  .calculator-result { position: static; }
  
  .contact-grid { grid-template-columns: 1fr; }
  
  .commercial-features { grid-template-columns: 1fr; }
  
  .cta-banner-inner { flex-direction: column; text-align: center; }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-pad: 4rem;
  }
  
  .top-bar-email { display: none; }
  
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-home { padding: 4rem 0 3.5rem; }
  
  .hero-stats { gap: 1rem; }
  .stat-card { padding: 1rem 1.25rem; }
  .stat-number { font-size: 1.5rem; }
  
  .section-title { font-size: 2rem; }
  .page-hero-title { font-size: 2rem; }
  
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card:last-child { max-width: none; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-2px); }
  
  .form-grid { grid-template-columns: 1fr; }
  
  .calc-addons { grid-template-columns: 1fr; }
  
  .area-grid { grid-template-columns: 1fr; gap: 2rem; }
  
  .about-story-visual { flex-direction: column; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  
  .trust-badges-grid { justify-content: flex-start; }
  
  .portal-notify-form { flex-direction: column; }
  
  .addons-grid { grid-template-columns: 1fr; }
}

/* Small mobile */
@media (max-width: 480px) {
  .logo-img { height: 36px; }
  .hero-title { font-size: 2rem; }
  .hero-stats { flex-direction: column; }
  .stat-card { width: 100%; }
  .section-title { font-size: 1.65rem; }
  .result-price { font-size: 2.75rem; }
}

/* ========== PRINT STYLES ========== */
@media print {
  .top-bar, .header, .footer, .cta-banner,
  .hero-sparkles, .mobile-nav, .mobile-menu-btn,
  .ghl-calendar-placeholder, .map-embed { display: none !important; }
  
  .page { display: block !important; animation: none !important; }
  .hero-home, .page-hero { background: var(--white) !important; color: var(--navy) !important; padding: 1rem 0 !important; }
  .hero-title, .page-hero-title { -webkit-text-fill-color: var(--navy) !important; font-size: 2rem !important; }
  .hero-subtitle, .page-hero-desc { color: var(--text) !important; }
  
  body { font-size: 12pt; }
  .section { padding: 1.5rem 0; }
  .container { max-width: 100%; }
  
  .pricing-card { break-inside: avoid; }
}
/* ========== BOOKING FORM ENHANCEMENTS ========== */
.form-estimate-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(79,70,229,0.06));
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  color: var(--navy-lighter);
  font-size: 1rem;
}
.form-estimate-banner strong {
  font-size: 1.25rem;
  color: var(--emerald);
}
.form-estimate-banner .form-estimate-details {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-left: 0.5rem;
}
.form-section-label {
  margin-top: 1rem;
  margin-bottom: -0.5rem;
}
.form-section-label h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.form-actions {
  text-align: center;
  margin-top: 2rem;
}
.form-actions .btn-lg {
  padding: 1rem 3rem;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.form-disclaimer {
  color: var(--text-light);
  font-size: 0.8rem;
  margin-top: 0.75rem;
}
.form-success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

/* ========== CLIENT PORTAL ========== */
.portal-section-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.portal-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.portal-tab {
  flex: 1;
  padding: 1rem;
  text-align: center;
  background: var(--surface);
  color: var(--text-light);
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  transition: all 0.3s ease;
}
.portal-tab.active {
  background: var(--navy-lighter);
  color: var(--white);
  font-weight: 600;
}
.portal-tab:hover:not(.active) {
  background: rgba(99,102,241,0.1);
  color: var(--navy);
}
.portal-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}
.portal-form-card h2 {
  font-family: var(--font-heading);
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}
.portal-form-card .portal-subtitle {
  color: var(--text-light);
  margin-bottom: 2rem;
}
.portal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.portal-form-grid .form-field-full {
  grid-column: 1 / -1;
}
.portal-or-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  color: var(--text-light);
  font-size: 0.875rem;
}
.portal-or-divider::before,
.portal-or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.portal-forgot {
  text-align: right;
  margin-top: -0.5rem;
}
.portal-forgot a {
  color: var(--navy-lighter);
  font-size: 0.85rem;
  text-decoration: none;
}
.portal-forgot a:hover {
  text-decoration: underline;
}

/* Dashboard (shown after login) */
.portal-dashboard {
  display: none;
}
.portal-dashboard.visible {
  display: block;
}
.portal-welcome {
  text-align: center;
  margin-bottom: 2.5rem;
}
.portal-welcome h2 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1.75rem;
}
.portal-welcome p {
  color: var(--text-light);
  margin-top: 0.25rem;
}
.portal-dash-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.portal-dash-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.portal-dash-card:hover {
  border-color: var(--navy-lighter);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99,102,241,0.15);
}
.portal-dash-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(79,70,229,0.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-lighter);
}
.portal-dash-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.portal-dash-card p {
  color: var(--text-light);
  font-size: 0.85rem;
}
.portal-dash-count {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 0.25rem;
}
.portal-quick-actions {
  text-align: center;
  margin-top: 2rem;
}
.portal-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(99,102,241,0.04);
  border-radius: 8px;
  border: 1px dashed var(--lavender-dark);
}

@media (max-width: 768px) {
  .portal-form-grid { grid-template-columns: 1fr; }
  .portal-dash-grid { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr; }
  .portal-form-card { padding: 1.5rem; }
  .form-success-actions { flex-direction: column; }
}
