/* ============================================
   STAIRLIFT SOLUTIONS - MASTER STYLESHEET
   ============================================
   
   TO CHANGE COLORS: Edit the CSS variables below.
   All colors throughout the site will update automatically.
   
   ============================================ */

:root {
  /* ==========================================
     🎨 COLOR SCHEME - EDIT THESE TO REBRAND
     ========================================== */
  
  /* Primary Color (headers, buttons, links) */
  --color-primary: #0369A1;
  --color-primary-dark: #075985;
  --color-primary-light: #0EA5E9;
  
  /* Accent Color (CTAs, highlights, phone icons) */
  --color-accent: #EA580C;
  --color-accent-light: #F97316;
  --color-accent-dark: #C2410C;
  
  /* Background Colors */
  --color-white: #FFFFFF;
  --color-cream: #F8FAFC;
  --color-warm-white: #F1F5F9;
  
  /* Text Colors */
  --color-text: #1E293B;
  --color-text-light: #475569;
  --color-text-muted: #64748B;
  
  /* Borders */
  --color-border: #E2E8F0;
  
  /* Semantic Colors */
  --color-success: #16A34A;
  --color-emergency: #DC2626;
  --color-whatsapp: #25D366;
  
  /* ==========================================
     END OF COLOR SCHEME
     ========================================== */
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  
  /* Effects */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { 
  font-family: var(--font-body); 
  color: var(--color-text); 
  line-height: 1.6; 
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ============================================
   EMERGENCY BAR - Ultra compact
   ============================================ */
.emergency-bar {
  background: var(--color-emergency);
  color: var(--color-white);
  padding: 3px 10px;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .emergency-bar {
    font-size: 0.75rem;
    padding: 4px 15px;
  }
}
@media (max-width: 400px) {
  .emergency-bar strong { display: none; }
  .emergency-bar::before { content: '24/7 — '; font-weight: 600; }
}
.emergency-bar a {
  color: var(--color-white);
  font-weight: 700;
  text-decoration: underline;
}
.emergency-pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-white);
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 1.5s ease-in-out infinite;
}
@media (min-width: 768px) {
  .emergency-pulse { width: 8px; height: 8px; margin-right: 8px; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* Email Warning Bar */
.email-warning-bar {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  padding: 0.75rem var(--space-md);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
}
.email-warning-bar a {
  color: #fef08a;
  font-weight: 700;
  text-decoration: underline;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  background: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 15px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 52px;
  height: 52px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.logo-mark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,0.15) 100%);
  border-radius: var(--radius-md);
}
.logo-mark svg { width: 28px; height: 28px; fill: var(--color-white); position: relative; z-index: 1; }
.logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}
.logo-text span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Logo banner - scales with viewport */
.logo-banner {
  height: clamp(42px, 5vw, 38px);
  width: auto;
  object-fit: contain;
}
.logo-tagline {
  font-size: clamp(0.7rem, 1.2vw, 0.9rem);
  color: var(--color-text-muted);
  font-weight: 500;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 2px solid #e2e8f0;
  white-space: nowrap;
}

/* Navigation */
.nav { display: none; }
@media (min-width: 1024px) { .nav { display: block; } }
.nav-list { display: flex; gap: 0.25rem; list-style: none; }
.nav-link {
  padding: 0.65rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.nav-link:hover, .nav-link.active { background: var(--color-cream); color: var(--color-primary); }

/* Header CTA - scales with viewport */
.header-cta { 
  display: flex; 
  align-items: center; 
  gap: clamp(8px, 1.5vw, 15px);
  flex-shrink: 0;
}
.phone-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-primary);
  color: var(--color-white);
  padding: clamp(0.6rem, 1.5vw, 0.9rem) clamp(0.8rem, 2vw, 1.6rem);
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.phone-btn:hover { background: var(--color-primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.phone-btn svg { width: clamp(16px, 2vw, 20px); height: clamp(16px, 2vw, 20px); fill: currentColor; flex-shrink: 0; }

.wa-btn {
  width: clamp(38px, 5vw, 48px);
  height: clamp(38px, 5vw, 48px);
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  flex-shrink: 0;
}
.wa-btn:hover { transform: scale(1.1); background: #20BA5C; }
.wa-btn svg { width: clamp(20px, 3vw, 26px); height: clamp(20px, 3vw, 26px); }

/* Mobile adjustments */
@media (max-width: 768px) {
  .header-inner {
    padding: 0 12px;
    min-height: 60px;
  }
  .logo-banner {
    height: 44px;
  }
  .logo-tagline {
    display: none;
  }
  .header-cta {
    display: none; /* Hide phone and WhatsApp buttons on mobile - use bottom bar instead */
  }
}

@media (max-width: 480px) {
  .logo-banner {
    height: 40px;
  }
}

/* Mobile menu */
.menu-toggle { display: flex; flex-direction: column; gap: 5px; padding: 10px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--color-text); border-radius: 2px; transition: var(--transition-fast); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  z-index: 1000;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  font-weight: 500;
}
.mobile-nav a:hover { background: var(--color-cream); }

/* ============================================
   PAGE HEADER (for inner pages)
   Controlled sizes - easy to adjust
   ============================================ */
:root {
  /* PAGE HEADER SIZING - Change these to adjust all page headers */
  --page-header-padding-desktop: 0.75rem;
  --page-header-padding-mobile: 0.4rem;
  --page-header-title-desktop: 1.1rem;
  --page-header-title-mobile: 0.85rem;
  --page-header-subtitle-desktop: 0.75rem;
  --page-header-subtitle-mobile: 0.65rem;
}
.page-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  padding: var(--page-header-padding-mobile) var(--space-sm);
  text-align: center;
  color: var(--color-white);
}
@media (min-width: 768px) {
  .page-header {
    padding: var(--page-header-padding-desktop) var(--space-md);
  }
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: var(--page-header-title-mobile);
  font-weight: 700;
  margin-bottom: 0.1rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .page-header h1 {
    font-size: var(--page-header-title-desktop);
  }
}
.page-header p {
  font-size: var(--page-header-subtitle-mobile);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .page-header p {
    font-size: var(--page-header-subtitle-desktop);
  }
}
.breadcrumb {
  margin-top: var(--space-md);
  font-size: 0.9rem;
  opacity: 0.8;
}
.breadcrumb a { text-decoration: underline; }
.breadcrumb span { margin: 0 0.5rem; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-warm-white) 50%, #E2E8F0 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(3,105,161,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  position: relative;
}
@media (min-width: 1024px) {
  .hero-container { 
    display: grid;
    grid-template-columns: 1fr 1.1fr; 
    padding: var(--space-2xl) var(--space-md);
    gap: var(--space-lg);
  }
}
.hero-content { 
  text-align: center;
  padding: var(--space-md);
  order: 2;
}
@media (min-width: 1024px) { 
  .hero-content { 
    text-align: left;
    order: 1;
    padding: 0;
  } 
}

/* Slider on mobile - full width on top, fit viewport */
.hero-media {
  order: 1;
  width: 100%;
}
@media (max-width: 1023px) {
  .hero-media {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    max-height: 50vh;
    overflow: hidden;
  }
  .slider {
    aspect-ratio: 16 / 9;
    max-height: 50vh;
  }
  .slider img {
    object-fit: cover;
    max-height: 50vh;
  }
}
@media (min-width: 1024px) {
  .hero-media {
    order: 2;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-white);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  border: 1px solid var(--color-border);
}
.hero-badge svg { width: 18px; height: 18px; fill: var(--color-accent); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}
.hero h1 .price { color: var(--color-primary); }

.hero-text {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  max-width: 480px;
}
@media (min-width: 1024px) { .hero-text { margin-left: 0; } }

/* Big Phone Number */
.hero-phone { margin-bottom: var(--space-lg); }
.hero-phone-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.hero-phone-number {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--color-primary);
  transition: var(--transition-normal);
}
.hero-phone-number:hover { color: var(--color-primary-light); }
.hero-phone-number svg {
  width: clamp(36px, 5vw, 48px);
  height: clamp(36px, 5vw, 48px);
  fill: var(--color-accent);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition-normal);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--color-accent-dark); transform: translateY(-2px); }
.btn-secondary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-secondary:hover { background: var(--color-primary-dark); }
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: var(--color-white); }
.btn-whatsapp { background: var(--color-whatsapp); color: var(--color-white); }
.btn-whatsapp:hover { background: #20BA5C; }
.btn-white { background: var(--color-white); color: var(--color-primary); }
.btn-white:hover { background: var(--color-cream); }
.btn svg { width: 20px; height: 20px; fill: currentColor; }
.btn-lg { padding: 1.25rem 2.25rem; font-size: 1.1rem; }

.hero-btns, .btns { display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; }
@media (min-width: 1024px) { .hero-btns { justify-content: flex-start; } }

/* ============================================
   SLIDER
   ============================================ */
.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-primary);
}
.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}
@media (min-width: 768px) { .slider { aspect-ratio: 16 / 10; } }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; z-index: 1; }
.slide img, .slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
  color: var(--color-white);
}
.slide-placeholder svg { 
  width: 64px; 
  height: 64px; 
  fill: currentColor; 
  opacity: 0.4;
  margin-bottom: var(--space-sm);
}
.slide-placeholder span { font-size: 1rem; opacity: 0.7; font-weight: 500; }
.slide-placeholder small { font-size: 0.8rem; opacity: 0.5; margin-top: 0.5rem; }

.slide:nth-child(1) .slide-placeholder { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%); }
.slide:nth-child(2) .slide-placeholder { background: linear-gradient(135deg, var(--color-primary-light) 0%, #38BDF8 100%); }
.slide:nth-child(3) .slide-placeholder { background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%); }
.slide:nth-child(4) .slide-placeholder { background: linear-gradient(135deg, #1E293B 0%, #334155 100%); }

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-lg);
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }
.play-btn svg { width: 28px; height: 28px; fill: var(--color-primary); margin-left: 4px; }

.slider-dots {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 20;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}
.slider-dot.active { background: var(--color-white); transform: scale(1.3); }
.slider-dot:hover { background: rgba(255,255,255,0.7); }

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  padding: var(--space-2xl) var(--space-md);
}
.section-alt {
  background: var(--color-cream);
}
.section-dark {
  background: var(--color-text);
  color: var(--color-white);
}
.section-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.container-narrow {
  max-width: 900px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-xs);
}
.section-dark .section-label { color: var(--color-accent-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}
.section-dark .section-title { color: var(--color-white); }
.section-text {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 550px;
  margin: 0 auto;
}
.section-dark .section-text { color: rgba(255,255,255,0.7); }

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  border: 1px solid transparent;
  display: block;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}
.service-icon {
  width: 72px;
  height: 72px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  box-shadow: var(--shadow-sm);
}
.service-icon svg { width: 32px; height: 32px; stroke: var(--color-primary); fill: none; stroke-width: 1.5; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}
.service-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* ============================================
   OFFER CARDS (Buyback, Loyalty)
   ============================================ */
.offers-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 768px) { .offers-container { grid-template-columns: repeat(2, 1fr); } }

.offer-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.offer-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-icon svg { width: 28px; height: 28px; fill: var(--color-white); }
.offer-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
.offer-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}
.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-accent-light);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}
.offer-link:hover { color: var(--color-white); }
.offer-link svg { width: 16px; height: 16px; fill: currentColor; transition: var(--transition-fast); }
.offer-link:hover svg { transform: translateX(4px); }

/* ============================================
   FEATURES LIST
   ============================================ */
.features { display: flex; flex-direction: column; gap: var(--space-md); }
.feature {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--color-primary); fill: none; stroke-width: 2; }
.feature h4 { font-size: 1.05rem; font-weight: 600; color: var(--color-text); margin-bottom: 0.2rem; }
.feature p { font-size: 0.9rem; color: var(--color-text-muted); }

/* ============================================
   STATS
   ============================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}
.stat {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  text-align: center;
}
.stat-num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--color-primary); line-height: 1.2; }
.stat-label { font-size: 0.7rem; color: var(--color-text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

/* ============================================
   AREAS GRID
   ============================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}
@media (min-width: 600px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .areas-grid { grid-template-columns: repeat(5, 1fr); } }

.area-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  background: var(--color-cream);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  transition: var(--transition-fast);
  border: 1px solid transparent;
}
.area-tag:hover { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }
.area-tag svg { width: 14px; height: 14px; fill: var(--color-primary); transition: var(--transition-fast); }
.area-tag:hover svg { fill: var(--color-white); }

.areas-note {
  margin-top: var(--space-lg);
  text-align: center;
  padding: var(--space-md);
  background: var(--color-cream);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--color-text-light);
}
.areas-note a { color: var(--color-primary); font-weight: 600; text-decoration: underline; }

/* ============================================
   BRANDS
   ============================================ */
.brands-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
  text-align: center;
}
.brands-list { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-sm); }
.brand-tag {
  padding: 0.6rem 1.2rem;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-muted);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}
.brand-tag:hover { color: var(--color-primary); transform: translateY(-2px); }

/* ============================================
   GRANTS (minimal)
   ============================================ */
.grants-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.grants-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.3rem;
}
.grants-content p { font-size: 0.9rem; color: var(--color-text-muted); }
.grants-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.grant-tag {
  padding: 0.3rem 0.7rem;
  background: var(--color-cream);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-light);
}
.grants-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
}
.grants-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  padding: var(--space-2xl) var(--space-md);
  background: var(--color-text);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='%23ffffff' stroke-width='0.3' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.cta-container { max-width: 700px; margin: 0 auto; position: relative; }
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}
.cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-lg);
}
.cta-phone { margin-bottom: var(--space-lg); }
.cta-phone-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}
.cta-phone-number {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--color-accent);
  transition: var(--transition-normal);
}
.cta-phone-number:hover { color: var(--color-accent-light); }
.cta-phone-number svg { width: 48px; height: 48px; fill: var(--color-accent); }
.cta-btns { display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; margin-bottom: var(--space-md); }
.cta-note { font-size: 0.9rem; color: rgba(255,255,255,0.5); }

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: var(--space-md);
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition-fast);
  background: var(--color-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(3,105,161,0.1);
}
.form-group textarea {
  min-height: 150px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 600px) {
  .form-row { grid-template-columns: repeat(2, 1fr); }
}
.form-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

/* ============================================
   CONTENT BLOCKS
   ============================================ */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 1024px) {
  .content-grid { grid-template-columns: 1fr 1fr; }
  .content-grid.reverse { direction: rtl; }
  .content-grid.reverse > * { direction: ltr; }
}

.content-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}
.content-text p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}
.content-text ul {
  margin: var(--space-md) 0;
}
.content-text li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--color-text-light);
}
.content-text li svg {
  width: 20px;
  height: 20px;
  fill: var(--color-success);
  flex-shrink: 0;
  margin-top: 2px;
}

.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-image .placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-align: center;
  padding: var(--space-lg);
}
.content-image .placeholder svg {
  width: 64px;
  height: 64px;
  fill: currentColor;
  opacity: 0.4;
  margin-bottom: var(--space-sm);
}

/* ============================================
   PRICE CARDS
   ============================================ */
.price-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 768px) { .price-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .price-cards { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-border);
  transition: var(--transition-normal);
}
.price-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
}
.price-card.featured {
  border-color: var(--color-primary);
  position: relative;
}
.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}
.price-card .price {
  font-family: var(--font-body);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}
.price-card .price span {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 500;
}
.price-card ul {
  margin-bottom: var(--space-lg);
}
.price-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
  color: var(--color-text-light);
}
.price-card li:last-child { border-bottom: none; }
.price-card li svg { width: 18px; height: 18px; fill: var(--color-success); }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  padding: var(--space-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
}
.faq-question:hover { color: var(--color-primary); }
.faq-question svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-text-muted);
  fill: none;
  stroke-width: 2;
  transition: var(--transition-fast);
}
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer p {
  padding-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0F172A;
  color: var(--color-white);
  padding: var(--space-xl) var(--space-md) var(--space-md);
}
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }

.footer-brand h4 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: var(--space-sm); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; }
.footer-section h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: var(--space-sm); color: var(--color-accent); }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: var(--transition-fast); }
.footer-links a:hover { color: var(--color-white); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--color-white); }
.footer-contact-item svg { width: 18px; height: 18px; stroke: var(--color-accent); fill: none; stroke-width: 2; flex-shrink: 0; }

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--color-white); }

/* ============================================
   FLOATING BUTTONS - Mobile Bottom Bar
   ============================================ */
.floating {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
@media (min-width: 1024px) { .floating { display: none; } }
@media (max-width: 1023px) { body { padding-bottom: 60px; } }
.float-btn {
  flex: 1;
  height: 56px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  transition: var(--transition-normal);
  text-decoration: none;
}
.float-btn:hover { opacity: 0.9; }
.float-btn.phone { background: var(--color-primary); }
.float-btn.whatsapp { background: #25D366; }
.float-btn svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.float-btn span { display: inline; font-size: 0.85rem; }

/* Hide duplicate sticky bar from conversion.js */
.sticky-call-bar { display: none !important; }

/* ============================================
   VIDEO RESPONSIVE SCALING
   ============================================ */
.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
}
.video-container video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 450px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .video-container video {
    max-height: 280px;
  }
}
.video-container.aspect-16-9 {
  aspect-ratio: 16/9;
}
.video-container.aspect-16-9 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   VIDEO MODAL
   ============================================ */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}
.video-modal.active { display: flex; }
.video-modal-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--color-white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}
.video-modal-close:hover { color: var(--color-accent); }
.video-modal video { width: 100%; height: 100%; object-fit: contain; }

/* ============================================
   HELP POPUP / QUIZ MODAL - Wider than tall
   ============================================ */
.quiz-modal, .help-popup, .stairlift-popup {
  max-width: 95vw !important;
  width: 700px !important;
  max-height: 70vh !important;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .quiz-modal, .help-popup, .stairlift-popup {
    width: 800px !important;
    max-width: 800px !important;
    max-height: 60vh !important;
  }
}
.quiz-modal h2, .help-popup h2, .stairlift-popup h2 {
  font-size: 1.1rem !important;
}
@media (min-width: 768px) {
  .quiz-modal h2, .help-popup h2, .stairlift-popup h2 {
    font-size: 1.3rem !important;
  }
}
.quiz-modal p, .help-popup p, .stairlift-popup p {
  font-size: 0.85rem !important;
}
@media (min-width: 768px) {
  .quiz-modal p, .help-popup p, .stairlift-popup p {
    font-size: 0.95rem !important;
  }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.rounded-image { border-radius: var(--radius-md); box-shadow: var(--shadow-md); }

/* ============================================
   FEATURE LIST (checkmarks)
   ============================================ */
.feature-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.feature-list li svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-success);
  stroke-width: 3;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   FEATURE CARDS (icon + title + text)
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}
.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition-normal);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-card .feature-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ============================================
   PROCESS STEPS (numbered)
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
.process-step {
  text-align: center;
  padding: var(--space-md);
}
.process-step .step-number {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto var(--space-sm);
}
.process-step h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}
.process-step p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
