/* ==========================================================================
   RAPID HOME PAINTERS - MASTER MOBILE-FIRST STYLESHEET
   Zero-Overflow • Ultra-Responsive • Mobile-First Design System
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Brand Palette */
  --primary-navy: #0b1528;
  --primary-dark: #070e1c;
  --primary-surface: #111e38;
  --primary-card: #182848;
  --accent-crimson: #e11d48;
  --accent-crimson-hover: #be123c;
  --accent-crimson-light: rgba(225, 29, 72, 0.12);
  --accent-amber: #f59e0b;
  --accent-gold: #ffaa00;
  --accent-blue: #2563eb;
  --accent-green: #10b981;
  --whatsapp-green: #25d366;
  --whatsapp-hover: #1eb956;
  
  /* Neutrals */
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --text-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-subtle: #f1f5f9;
  --border-light: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.12);

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.14);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Radii */
  --container-width: 1260px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s ease;
  --transition-smooth: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Strict Zero-Overflow Foundation
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-light);
  line-height: 1.55;
  padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 16px; /* Prevents auto zoom on iOS */
  outline: none;
  max-width: 100%;
}

/* --------------------------------------------------------------------------
   3. Container & Layout Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 14px;
  padding-right: 14px;
}

@media (min-width: 768px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.section-padding {
  padding-top: 48px;
  padding-bottom: 48px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 75px;
    padding-bottom: 75px;
  }
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 48px;
  }
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-crimson-light);
  color: var(--accent-crimson);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.15);
  color: #ffd166;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 5vw, 2.35rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.22;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  word-break: break-word;
}

.section-title.light {
  color: var(--text-white);
}

.section-subtitle {
  font-size: clamp(0.88rem, 2.8vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.55;
  word-break: break-word;
}

.section-subtitle.light {
  color: #94a3b8;
}

/* --------------------------------------------------------------------------
   4. Buttons & CTAs
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  white-space: nowrap;
  min-height: 44px;
}

.btn:active {
  transform: scale(0.98);
}

.btn-crimson {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.3);
}

.btn-crimson:hover {
  background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
  color: #ffffff;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #ff8c00 100%);
  color: #070e1c;
  box-shadow: 0 4px 14px rgba(255, 170, 0, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffb703 0%, var(--accent-gold) 100%);
  color: #000;
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  color: #ffffff;
}

.btn-call {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-sm {
  padding: 7px 14px;
  font-size: 0.82rem;
  min-height: 36px;
}

.btn-lg {
  padding: 13px 24px;
  font-size: 1rem;
  min-height: 48px;
}

.btn-block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   5. Clean Fixed / Sticky Floating Responsive Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  width: calc(100% - 12px);
  max-width: 1880px;
  padding: 3px 8px;
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}

@media (min-width: 768px) {
  .site-header {
    width: 97%;
    top: 8px;
    padding: 4px 14px;
    border-radius: 14px;
  }
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  width: 100%;
  gap: 6px;
}

@media (min-width: 768px) {
  .header-container {
    height: 68px;
    gap: 12px;
  }
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  max-width: 60%;
  text-decoration: none;
}

@media (min-width: 768px) {
  .brand-logo {
    gap: 8px;
    max-width: none;
  }
}

.brand-logo-img {
  height: 42px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

@media (min-width: 768px) {
  .brand-logo-img {
    height: 52px;
    max-width: 280px;
  }
}

.logo-badge-icon {
  background: var(--accent-crimson);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 3px 8px rgba(225, 29, 72, 0.3);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .logo-badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
}

.brand-logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--accent-crimson);
  letter-spacing: -0.5px;
  line-height: 1;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .brand-logo-text {
    font-size: 1.4rem;
  }
}

.brand-logo-text span {
  color: #0f172a;
}

.brand-logo-sub {
  display: none;
  font-size: 0.62rem;
  color: #64748b;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .brand-logo-sub {
    display: block;
  }
}

.main-nav {
  display: none;
  align-items: center;
  gap: 16px;
}

@media (min-width: 1100px) {
  .main-nav {
    display: flex;
  }
}

.nav-link {
  color: #475569;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-crimson);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-crimson);
  transition: width var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

/* Header Integrated Quick Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .header-actions {
    gap: 10px;
  }
}

.header-contact-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: var(--radius-full);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all var(--transition-fast);
  text-decoration: none;
}

@media (min-width: 768px) {
  .header-contact-btn {
    padding: 6px 12px;
  }
}

.header-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .header-icon-circle {
    width: 30px;
    height: 30px;
  }
}

.call-icon-bg {
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
}

.wa-icon-bg {
  background: rgba(37, 211, 102, 0.15);
  color: #16a34a;
}

.header-contact-btn:hover .wa-icon-bg {
  background: #25d366;
  color: #ffffff;
}

.header-contact-text {
  display: none;
  flex-direction: column;
  line-height: 1.15;
}

@media (min-width: 860px) {
  .header-contact-text {
    display: flex;
  }
}

.contact-sub {
  font-size: 0.62rem;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-main {
  font-size: 0.8rem;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
}

/* Hide big Book Site Visit button in mobile header (it's already on sticky bottom bar) */
.header-actions .btn-crimson,
.header-call-btn {
  display: none;
}

@media (min-width: 640px) {
  .header-actions .btn-crimson {
    display: inline-flex;
  }
}

@media (min-width: 860px) {
  .header-call-btn {
    display: flex;
  }
}

.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: #0f172a;
  border-radius: 6px;
  flex-shrink: 0;
}

@media (min-width: 1100px) {
  .mobile-nav-toggle {
    display: none;
  }
}

/* Mobile Off-Canvas Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background: var(--primary-navy);
  z-index: 2000;
  padding: 20px 18px calc(20px + env(safe-area-inset-bottom, 0px));
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  transition: right 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-close {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
}

.drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.drawer-nav-link {
  color: #e2e8f0;
  font-size: 0.98rem;
  font-weight: 600;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
}

.drawer-nav-link:active {
  color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   6. Hero Section (NxtGen Style) & Clean Form
   -------------------------------------------------------------------------- */
.hero-nxtgen-section {
  position: relative;
  background: linear-gradient(135deg, #fdfbf7 0%, #f7f1e7 50%, #f0e6d6 100%);
  padding: 72px 0 28px;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  border-bottom: 1px solid #e5e7eb;
}

@media (min-width: 768px) {
  .hero-nxtgen-section {
    padding: 92px 0 40px;
  }
}

.hero-nxtgen-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  width: 100%;
}

@media (min-width: 992px) {
  .hero-nxtgen-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 32px;
  }
}

.hero-visual-area {
  width: 100%;
  max-width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-main-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 5.2vw, 2.5rem);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px 10px;
  width: 100%;
}

.title-phrase {
  display: inline-block;
  white-space: nowrap;
}

.title-phrase.crimson {
  color: var(--accent-crimson);
}

.hero-consultation-graphic {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  margin: 0 auto 16px;
  background: #ffffff;
  object-fit: contain;
}

/* Trust Badges Strip (Clean Modern 2x2 Card - No Egg Shape) */
.hero-trust-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.trust-badge-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.trust-badge-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.1);
  color: var(--accent-crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.trust-badge-label {
  font-family: var(--font-heading);
  font-size: clamp(0.68rem, 2vw, 0.78rem);
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

/* Simplified Form Card */
.hero-form-area {
  width: 100%;
  max-width: 100%;
}

.simple-form-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 18px 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .simple-form-card {
    padding: 26px 22px;
  }
}

.simple-form-header {
  margin-bottom: 14px;
}

.simple-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 3.2vw, 1.4rem);
  font-weight: 800;
  color: #0b1e48;
  line-height: 1.25;
  margin-bottom: 5px;
  word-break: break-word;
}

.simple-form-subtitle {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
}

.simple-contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.simple-input-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font-size: 16px;
  color: #1e293b;
  background: #ffffff;
  transition: border-color var(--transition-fast);
  min-height: 44px;
}

.simple-input-control:focus {
  border-color: var(--accent-crimson);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.15);
}

.simple-input-control::placeholder {
  color: #94a3b8;
}

.simple-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.74rem;
  color: #64748b;
  margin-top: 2px;
  line-height: 1.35;
}

.simple-checkbox-row input {
  margin-top: 2px;
  accent-color: var(--accent-crimson);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.simple-form-disclaimer {
  font-size: 0.7rem;
  color: #94a3b8;
  margin-top: 2px;
}

/* Callout Red Ribbon */
.callout-ribbon-bar {
  background: linear-gradient(90deg, #e11d48 0%, #be123c 100%);
  color: #ffffff;
  padding: 10px 0;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.callout-ribbon-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  width: 100%;
}

@media (min-width: 768px) {
  .callout-ribbon-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.callout-ribbon-text {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  line-height: 1.35;
}

@media (min-width: 768px) {
  .callout-ribbon-text {
    font-size: 1.02rem;
    justify-content: flex-start;
  }
}

.ribbon-phrase {
  white-space: nowrap;
  display: inline-block;
}

.ribbon-phone-link {
  color: #ffffff !important;
  text-decoration: underline;
  white-space: nowrap !important;
  display: inline-block;
  font-weight: 900;
}

.ribbon-wa-btn {
  background: #ffffff;
  color: #0f172a;
  padding: 3px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.callout-google-search-pill {
  background: #ffffff;
  color: #1e293b;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   7. Trust Bar Section
   -------------------------------------------------------------------------- */
.trust-bar-section {
  background: #ffffff;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 10px;
  width: 100%;
}

@media (min-width: 600px) {
  .trust-bar-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .trust-bar-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.trust-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 158, 0, 0.12);
  color: #d97706;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-text-box {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.trust-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--text-dark);
  line-height: 1.25;
  display: block;
  margin-bottom: 2px;
}

.trust-desc {
  font-size: 0.71rem;
  color: var(--text-muted);
  line-height: 1.3;
  display: block;
}

/* --------------------------------------------------------------------------
   8. Why Choose Us Section
   -------------------------------------------------------------------------- */
.why-choose-section {
  background: #f8fafc;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

@media (min-width: 580px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }
}

.why-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

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

.why-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(255, 170, 0, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d4ed8;
  margin-bottom: 14px;
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.why-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   9. Our Painting Services Section
   -------------------------------------------------------------------------- */
.services-section {
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
  }
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
}

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

.service-img-wrap {
  height: 170px;
  position: relative;
  overflow: hidden;
  background-color: var(--primary-surface);
}

@media (min-width: 768px) {
  .service-img-wrap {
    height: 195px;
  }
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(11, 21, 40, 0.85);
  backdrop-filter: blur(4px);
  color: var(--accent-gold);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.service-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .service-body {
    padding: 20px;
  }
}

.service-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 12px;
  flex-grow: 1;
}

.service-bullets {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.service-bullet-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--text-dark);
  font-weight: 500;
}

.service-bullet-item svg {
  color: var(--accent-green);
  flex-shrink: 0;
}

.service-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

/* --------------------------------------------------------------------------
   10. Our Painting Process
   -------------------------------------------------------------------------- */
.process-section {
  background: linear-gradient(180deg, #070e1c 0%, #0f1c33 100%);
  color: #ffffff;
}

.process-timeline {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

@media (min-width: 580px) {
  .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (min-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }
}

.process-timeline-row-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

@media (min-width: 580px) {
  .process-timeline-row-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (min-width: 900px) {
  .process-timeline-row-2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
}

.process-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 18px 16px;
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.process-step-desc {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   11. Surface Preparation Dedicated Section & Draggable Slider
   -------------------------------------------------------------------------- */
.surface-prep-section {
  background: #f8fafc;
}

.prep-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

@media (min-width: 992px) {
  .prep-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 36px;
  }
}

.comparison-slider-box {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  user-select: none;
  touch-action: pan-y;
}

@media (min-width: 580px) {
  .comparison-slider-box {
    height: 340px;
  }
}

@media (min-width: 992px) {
  .comparison-slider-box {
    height: 400px;
    border-radius: var(--radius-lg);
  }
}

.slider-img-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.slider-img-layer.after {
  background-image: url('../images/prep_after.svg');
}

.slider-img-layer.before {
  background-image: url('../images/prep_before.svg');
  width: 50%;
  border-right: 3px solid var(--accent-gold);
  z-index: 2;
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--accent-gold);
  border: 3px solid #ffffff;
  border-radius: 50%;
  z-index: 10;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.slider-label {
  position: absolute;
  bottom: 10px;
  padding: 3px 8px;
  background: rgba(11, 21, 40, 0.85);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 5;
}

.slider-label.before-label { left: 10px; }
.slider-label.after-label { right: 10px; }

.prep-steps-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prep-step-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.prep-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 2px;
}

.prep-step-content h4 {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.prep-step-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   12. Real Project Gallery & Touch Filter Scroll
   -------------------------------------------------------------------------- */
.gallery-section {
  background: #ffffff;
}

.gallery-filter-buttons {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  margin-bottom: 24px;
  scrollbar-width: none;
  width: 100%;
}

.gallery-filter-buttons::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .gallery-filter-buttons {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
  }
}

.filter-btn {
  background: #f1f5f9;
  border: 1px solid var(--border-light);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-btn.active {
  background: var(--primary-navy);
  color: #ffffff;
  border-color: var(--primary-navy);
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
  }
}

.gallery-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}

.gallery-img-wrap {
  height: 180px;
  position: relative;
  background: #0b1528;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-tag-pill {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(11, 21, 40, 0.85);
  color: var(--accent-gold);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}

.gallery-info {
  padding: 16px;
}

.gallery-location {
  font-size: 0.75rem;
  color: var(--accent-blue);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.gallery-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.gallery-paint-used {
  font-size: 0.75rem;
  background: #f8fafc;
  padding: 5px 8px;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  color: #475569;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   13. Trusted Paint Brands
   -------------------------------------------------------------------------- */
.brands-section {
  background: #f8fafc;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

@media (min-width: 600px) {
  .brands-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (min-width: 992px) {
  .brands-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
  }
}

.brand-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.brand-logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: #ffffff;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
}

.brand-tier {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.brand-guidance-box {
  background: #ffffff;
  border: 1px solid rgba(255, 170, 0, 0.3);
  border-left: 4px solid var(--accent-gold);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.brand-guidance-box p {
  font-size: 0.84rem;
}

/* --------------------------------------------------------------------------
   14. Painting Packages & Calculator
   -------------------------------------------------------------------------- */
.pricing-section {
  background: #ffffff;
}

.packages-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

@media (min-width: 992px) {
  .packages-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-bottom: 48px;
  }
}

.package-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
}

.package-card.featured {
  border: 2px solid var(--accent-gold);
  background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
  box-shadow: var(--shadow-md);
}

.featured-ribbon {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent-gold) 0%, #ff8c00 100%);
  color: #070e1c;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 12px;
  border-radius: var(--radius-full);
}

.package-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.package-target {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.package-pricing-box {
  background: #f8fafc;
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--border-light);
}

.package-price-range {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 2px 0;
}

.package-features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.package-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.82rem;
}

.package-feature-item svg {
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Calculator Widget */
.calculator-box {
  background: linear-gradient(135deg, #070e1c 0%, #12213d 100%);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .calculator-box {
    padding: 32px 26px;
  }
}

.calc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

@media (min-width: 900px) {
  .calc-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 32px;
    align-items: center;
  }
}

.calc-options-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.calc-group-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.calc-pill-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.calc-pill {
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 38px;
}

.calc-pill.active {
  background: var(--accent-gold);
  color: #070e1c;
  border-color: var(--accent-gold);
  font-weight: 700;
}

.calc-result-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-res-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 700;
}

.calc-res-amount {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 4.5vw, 2.3rem);
  font-weight: 800;
  color: var(--accent-gold);
}

.calc-res-note {
  font-size: 0.74rem;
  color: #94a3b8;
}

/* --------------------------------------------------------------------------
   15. Warranty & Testimonials
   -------------------------------------------------------------------------- */
.warranty-section {
  background: #f8fafc;
}

.warranty-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.warranty-header-banner {
  background: linear-gradient(135deg, #070e1c 0%, #152747 100%);
  color: #ffffff;
  padding: 24px 16px;
  text-align: center;
}

.warranty-badge-lg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 170, 0, 0.15);
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
}

.warranty-grid-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  padding: 18px 14px;
}

@media (min-width: 768px) {
  .warranty-grid-details {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
    padding: 28px 22px;
  }
}

.warranty-col {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--border-light);
}

.warranty-col-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.warranty-col-title.covered { color: #059669; }
.warranty-col-title.not-covered { color: #dc2626; }

.warranty-items-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.warranty-list-item {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.8rem;
}

/* Reviews Grid */
.reviews-section {
  background: #ffffff;
}

.google-rating-banner {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  max-width: 680px;
  margin: 0 auto 24px;
}

@media (min-width: 580px) {
  .google-rating-banner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
}

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

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-surface);
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer-info h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
}

.reviewer-loc {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.review-stars {
  color: #f59e0b;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.review-text {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.5;
  flex-grow: 1;
}

.review-project-badge {
  font-size: 0.7rem;
  color: #64748b;
  background: #f1f5f9;
  padding: 2px 7px;
  border-radius: 4px;
  margin-top: 10px;
  display: inline-block;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   16. Areas We Serve & FAQ Accordion
   -------------------------------------------------------------------------- */
.locations-section {
  background: #f8fafc;
}

.locations-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

@media (min-width: 580px) {
  .locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .locations-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
}

.location-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.location-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.location-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.loc-coverage-list {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.4;
  flex-grow: 1;
}

.loc-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
}

.loc-badge {
  font-size: 0.68rem;
  color: #059669;
  font-weight: 700;
}

/* FAQ Accordion */
.faq-section {
  background: #ffffff;
}

.faq-accordion-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
}

.faq-question {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-dark);
  min-height: 46px;
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  flex-shrink: 0;
  font-size: 0.7rem;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--accent-gold);
  color: #070e1c;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 16px;
  background: #fcfdfe;
}

.faq-item.active .faq-answer {
  padding: 0 16px 14px;
}

.faq-answer p {
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   17. Final CTA & Footer
   -------------------------------------------------------------------------- */
.final-cta-section {
  background: linear-gradient(135deg, #070e1c 0%, #132442 50%, #070e1c 100%);
  color: #ffffff;
  padding: 44px 0;
  text-align: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .final-cta-section {
    padding: 65px 0;
  }
}

.final-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}

.final-cta-subtitle {
  font-size: clamp(0.86rem, 2.5vw, 1.05rem);
  color: #cbd5e1;
  margin-bottom: 22px;
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.site-footer {
  background: #060c18;
  color: #94a3b8;
  padding: 40px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 36px;
  }
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-link {
  color: #94a3b8;
  font-size: 0.82rem;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.82rem;
  color: #cbd5e1;
}

.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* --------------------------------------------------------------------------
   18. Sticky Mobile Bottom Action Bar & Floating WhatsApp
   -------------------------------------------------------------------------- */
.mobile-sticky-bar {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  background: rgba(11, 21, 40, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0px));
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
}

@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.mobile-sticky-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 6px;
  max-width: 480px;
  margin: 0 auto;
}

.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 9px 4px;
  border-radius: var(--radius-sm);
  text-align: center;
  min-height: 40px;
  white-space: nowrap;
}

.floating-whatsapp {
  position: fixed;
  bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  right: 14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  z-index: 990;
}

@media (min-width: 992px) {
  .floating-whatsapp {
    bottom: 26px;
    right: 26px;
    width: 52px;
    height: 52px;
  }
}

/* --------------------------------------------------------------------------
   19. Modal Overlay & Toast
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  max-width: 480px;
  width: 100%;
  padding: 20px 16px;
  color: var(--text-dark);
  box-shadow: var(--shadow-xl);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

@media (min-width: 768px) {
  .modal-container {
    padding: 28px 22px;
    border-radius: var(--radius-lg);
  }
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f1f5f9;
  border: none;
  color: #0f172a;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.toast-notice {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(50px);
  background: #0f172a;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  z-index: 4000;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  max-width: 90%;
  width: max-content;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-notice.success { border-left: 4px solid var(--accent-green); }
.toast-notice.error { border-left: 4px solid #ef4444; }
