/* ============================================
   TOTALFIX PROS — Global Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #F97316;
  --orange-dark: #ea6c0a;
  --orange-light: #FED7AA;
  --orange-50: #FFF7ED;
  --gray-900: #111827;
  --gray-800: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50: #F9FAFB;
  --dark-bg: #1A1A2E;
  --white: #ffffff;
  --radius: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12);
  --shadow-orange: 0 8px 24px rgba(249,115,22,.25);
}

html { font-family: 'Inter', sans-serif; scroll-behavior: smooth; }
body { background: var(--white); color: var(--gray-900); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white); padding: 12px 0;
  transition: box-shadow .3s, padding .3s;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); padding: 8px 0; }

.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo-icon {
  width: 40px; height: 40px; background: var(--orange); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 17px; letter-spacing: -0.5px;
}
.logo-text .name { font-size: 18px; font-weight: 800; color: var(--gray-900); line-height: 1; }
.logo-text .name span { color: var(--orange); }
.logo-text .tagline { font-size: 10px; font-weight: 600; color: var(--gray-400); letter-spacing: 2px; margin-top: -1px; }

/* Desktop Nav */
.desktop-nav { display: flex; align-items: center; gap: 2px; }
.desktop-nav .nav-item { position: relative; }
.desktop-nav .nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px; font-size: 14px; font-weight: 500;
  color: var(--gray-700); border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.desktop-nav .nav-link:hover, .desktop-nav .nav-link.active { color: var(--orange); }
.desktop-nav .nav-link svg { width: 14px; height: 14px; }

.dropdown {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 220px; padding: 6px; z-index: 200;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block; padding: 8px 12px; font-size: 14px; color: var(--gray-700);
  border-radius: 6px; transition: background .15s, color .15s;
}
.dropdown a:hover { background: var(--orange-50); color: var(--orange); }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--gray-900);
  transition: color .2s;
}
.header-phone:hover { color: var(--orange); }
.header-phone svg { width: 16px; height: 16px; }
.btn-book-header {
  display: inline-flex; align-items: center; padding: 10px 20px;
  background: var(--orange); color: white; font-size: 14px; font-weight: 700;
  border-radius: 10px; transition: background .2s;
}
.btn-book-header:hover { background: var(--orange-dark); }

/* Hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; color: var(--gray-700);
}
.hamburger svg { width: 24px; height: 24px; }

/* Mobile Menu */
.mobile-menu {
  display: none; background: var(--white); border-top: 1px solid var(--gray-100);
  box-shadow: var(--shadow-lg); max-height: 80vh; overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu-inner { padding: 16px; }
.mobile-nav-link {
  display: block; padding: 10px 12px; font-size: 14px; font-weight: 500;
  color: var(--gray-700); border-radius: 8px; transition: background .15s;
}
.mobile-nav-link.active { color: var(--orange); background: var(--orange-50); }
.mobile-submenu { margin-left: 16px; border-left: 2px solid var(--gray-100); margin-top: 2px; }
.mobile-submenu a { display: block; padding: 7px 12px; font-size: 13px; color: var(--gray-600); }
.mobile-submenu a:hover { color: var(--orange); }
.mobile-menu-cta { border-top: 1px solid var(--gray-100); padding-top: 16px; margin-top: 8px; display: flex; flex-direction: column; gap: 8px; }
.btn-mobile-phone {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px; border: 1px solid var(--gray-200); border-radius: 10px;
  font-size: 14px; font-weight: 600; color: var(--gray-900);
}
.btn-mobile-book {
  display: block; padding: 11px; background: var(--orange); color: white;
  text-align: center; border-radius: 10px; font-size: 14px; font-weight: 700;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--dark-bg); color: white; }
.footer-main { max-width: 1280px; margin: 0 auto; padding: 64px 24px; }
.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.footer-logo-text { color: white; }
.footer-logo-text .name { color: white; }
.footer-logo-text .tagline { color: var(--gray-400); }
.footer-desc { color: var(--gray-400); font-size: 14px; line-height: 1.7; margin: 16px 0; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; color: white;
}
.social-btn:hover { background: var(--orange); }
.social-btn svg { width: 16px; height: 16px; }

.footer-col h3 { font-size: 16px; font-weight: 600; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  color: var(--gray-400); font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-col ul li a .dot { width: 4px; height: 4px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--gray-400); }
.footer-contact-item + .footer-contact-item { margin-top: 12px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: var(--gray-400); transition: color .2s; }
.footer-contact-item a:hover { color: var(--orange); }
.footer-hours { color: var(--gray-500); font-size: 12px; margin-top: 12px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); }
.footer-bottom-inner {
  max-width: 1280px; margin: 0 auto; padding: 16px 24px;
  text-align: center; color: var(--gray-500); font-size: 14px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 896px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-block; color: var(--orange); font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
}
.section-title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--gray-900); line-height: 1.2; margin-bottom: 16px; }
.section-subtitle { font-size: 18px; color: var(--gray-600); max-width: 640px; margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.section-head { text-align: center; margin-bottom: 56px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; font-size: 16px; font-weight: 700; border-radius: 12px;
  transition: all .2s; border: none; cursor: pointer; line-height: 1;
}
.btn-primary { background: var(--orange); color: white; box-shadow: var(--shadow-orange); }
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 12px 32px rgba(249,115,22,.35); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,.3); }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-white { background: white; color: var(--orange); font-weight: 700; }
.btn-white:hover { background: var(--gray-100); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn svg { width: 20px; height: 20px; }

/* ============================================
   HERO (Service/Area pages)
   ============================================ */
.page-hero {
  position: relative; min-height: 60vh; display: flex; align-items: center;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: rgba(17,24,39,.7); }
.page-hero-content { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 80px 24px; }
.page-hero-inner { max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,.2); border: 1px solid rgba(249,115,22,.3);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 24px;
  font-size: 14px; color: #FDBA74; font-weight: 500;
}
.hero-badge .pulse { width: 8px; height: 8px; background: #fb923c; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.4} }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: white; line-height: 1.15; margin-bottom: 20px; }
.page-hero p { font-size: 18px; color: #E5E7EB; line-height: 1.7; margin-bottom: 32px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* Dark hero */
.dark-hero { background: var(--gray-900); padding: 80px 0; text-align: center; }
.dark-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: white; margin-bottom: 16px; }
.dark-hero p { font-size: 18px; color: var(--gray-300); max-width: 640px; margin: 0 auto; }

/* ============================================
   HOME — HERO SECTION
   ============================================ */
.home-hero {
  position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden;
}
.home-hero-bg { position: absolute; inset: 0; }
.home-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.home-hero-bg::after { content: ''; position: absolute; inset: 0; background: rgba(17,24,39,.7); }
.home-hero-content { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 80px 24px; }
.home-hero-inner { max-width: 760px; }
.home-hero h1 { font-size: clamp(36px, 5.5vw, 64px); font-weight: 800; color: white; line-height: 1.1; margin-bottom: 24px; }
.home-hero h1 span { color: #fb923c; }
.home-hero p { font-size: 20px; color: #E5E7EB; line-height: 1.6; margin-bottom: 32px; max-width: 680px; }
.hero-trust-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border-radius: 10px; padding: 8px 16px; color: white; font-size: 14px; font-weight: 500;
}
.trust-badge svg { width: 18px; height: 18px; color: #fb923c; }
.hero-gradient-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 96px;
  background: linear-gradient(to top, white, transparent);
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-section { padding: 80px 0; background: white; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  padding: 32px; border-radius: var(--radius-2xl); background: var(--gray-50);
  border: 1px solid var(--gray-100);
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.feature-card:hover { background: white; border-color: #FED7AA; box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 56px; height: 56px; background: #FFF7ED; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  transition: background .3s;
}
.feature-card:hover .feature-icon { background: var(--orange); }
.feature-icon svg { width: 28px; height: 28px; color: var(--orange); transition: color .3s; }
.feature-card:hover .feature-icon svg { color: white; }
.feature-card h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; }
.feature-card p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section { padding: 80px 0; background: var(--gray-50); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: white; border-radius: var(--radius-2xl); overflow: hidden;
  border: 1px solid var(--gray-100); transition: box-shadow .3s;
}
.service-card:hover { box-shadow: var(--shadow-lg); }
.service-card-img { aspect-ratio: 4/3; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 24px; }
.service-card-body h3 { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; transition: color .2s; }
.service-card:hover .service-card-body h3 { color: var(--orange); }
.service-card-body p { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; }
.learn-more { display: inline-flex; align-items: center; gap: 6px; color: var(--orange); font-size: 14px; font-weight: 600; transition: gap .2s; }
.service-card:hover .learn-more { gap: 10px; }
.learn-more svg { width: 16px; height: 16px; }

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section { padding: 80px 0; background: white; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.price-hero-card { background: var(--orange); border-radius: var(--radius-2xl); padding: 32px; color: white; }
.price-hero-card .price-label { font-size: 13px; font-weight: 500; opacity: .8; margin-bottom: 4px; }
.price-hero-card .price-amount { font-size: 56px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.price-hero-card .price-sub { opacity: .8; margin-bottom: 8px; }
.price-hero-card .price-note { font-size: 13px; opacity: .6; }
.price-includes { background: var(--gray-900); border-radius: var(--radius-2xl); padding: 32px; color: white; margin-top: 16px; }
.price-includes h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.price-includes h3 svg { width: 18px; height: 18px; color: #fb923c; }
.price-includes ul { display: flex; flex-direction: column; gap: 12px; }
.price-includes li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--gray-300); }
.price-includes li svg { width: 16px; height: 16px; color: #fb923c; flex-shrink: 0; }

.calc-card { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius-2xl); padding: 32px; }
.calc-card h3 { font-size: 22px; font-weight: 700; color: var(--gray-900); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--gray-700); margin-bottom: 8px; }
.form-group select, .form-group input, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 12px;
  border: 1px solid var(--gray-200); background: white;
  font-size: 14px; color: var(--gray-900); font-family: inherit;
  outline: none; transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-group select:focus, .form-group input:focus, .form-group textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}
.price-display {
  background: var(--gray-900); border-radius: 12px; padding: 24px;
  text-align: center; margin-bottom: 20px;
}
.price-display .pd-label { color: var(--gray-400); font-size: 13px; margin-bottom: 4px; }
.price-display .pd-amount { color: white; font-size: 42px; font-weight: 800; }
.price-display .pd-note { color: var(--gray-500); font-size: 12px; margin-top: 8px; }
.btn-block { display: flex; width: 100%; justify-content: center; }
.btn-schedule { width: 100%; padding: 16px; background: var(--orange); color: white; font-weight: 700; font-size: 16px; border-radius: 12px; border: none; cursor: pointer; transition: background .2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-schedule:hover { background: var(--orange-dark); }
.btn-call-alt { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 12px; color: var(--orange); font-weight: 600; font-size: 15px; transition: color .2s; margin-top: 12px; }
.btn-call-alt:hover { color: var(--orange-dark); }
.btn-call-alt svg { width: 18px; height: 18px; }

/* ============================================
   SERVICE AREAS SECTION
   ============================================ */
.areas-section { padding: 80px 0; background: var(--gray-900); color: white; }
.areas-section .section-title { color: white; }
.areas-section .section-subtitle { color: var(--gray-400); }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.area-card { position: relative; border-radius: var(--radius-2xl); overflow: hidden; aspect-ratio: 4/3; display: block; }
.area-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.area-card:hover img { transform: scale(1.1); }
.area-card-overlay { position: absolute; inset: 0; background: rgba(17,24,39,.55); transition: background .3s; }
.area-card:hover .area-card-overlay { background: rgba(17,24,39,.45); }
.area-card-body { position: absolute; inset: 0; padding: 20px; display: flex; flex-direction: column; justify-content: flex-end; }
.area-state { display: flex; align-items: center; gap: 6px; color: #fb923c; font-size: 13px; margin-bottom: 4px; }
.area-state svg { width: 14px; height: 14px; }
.area-card h3 { font-size: 20px; font-weight: 700; color: white; margin-bottom: 4px; }
.area-desc { color: var(--gray-300); font-size: 13px; opacity: 0; transition: opacity .3s; }
.area-card:hover .area-desc { opacity: 1; }
.area-link { display: inline-flex; align-items: center; gap: 4px; color: #fb923c; font-size: 13px; font-weight: 600; margin-top: 8px; opacity: 0; transition: opacity .3s; }
.area-card:hover .area-link { opacity: 1; }
.area-link svg { width: 14px; height: 14px; }

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section { padding: 80px 0; background: white; }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.stat-box { text-align: center; }
.stat-icon { width: 48px; height: 48px; background: var(--orange-50); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.stat-icon svg { width: 24px; height: 24px; color: var(--orange); }
.stat-val { font-size: 28px; font-weight: 800; color: var(--gray-900); }
.stat-label { font-size: 14px; color: var(--gray-500); }

.testimonial-carousel { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius-2xl); padding: 32px; }
.stars { display: flex; gap: 4px; margin-bottom: 16px; }
.stars svg { width: 20px; height: 20px; color: #FBBF24; fill: #FBBF24; }
.testimonial-text { font-size: 17px; color: var(--gray-700); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.testimonial-author { font-weight: 700; color: var(--gray-900); }
.testimonial-location { font-size: 14px; color: var(--gray-500); }
.carousel-controls { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--gray-200); padding-top: 16px; margin-top: 24px; }
.carousel-dots { display: flex; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-300); border: none; cursor: pointer; transition: background .2s; padding: 0; }
.dot.active { background: var(--orange); }
.carousel-arrows { display: flex; gap: 8px; }
.arrow-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--gray-200);
  background: white; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s; color: var(--gray-600);
}
.arrow-btn:hover { background: var(--orange-50); border-color: #FED7AA; }
.arrow-btn svg { width: 20px; height: 20px; }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section { padding: 80px 0; background: var(--gray-50); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: white; border-radius: var(--radius-xl); border: 1px solid var(--gray-100); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; background: none; border: none; cursor: pointer;
  text-align: left; font-family: inherit; transition: background .15s;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question span { font-size: 16px; font-weight: 600; color: var(--gray-900); padding-right: 16px; }
.faq-question svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 24px 22px; font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* FAQ Page categories */
.faq-category { margin-bottom: 48px; }
.faq-category h2 { font-size: 24px; font-weight: 700; color: var(--gray-900); margin-bottom: 20px; }
.faq-still { background: var(--orange-50); border-radius: var(--radius-2xl); padding: 48px; text-align: center; margin-top: 48px; }
.faq-still h3 { font-size: 22px; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; }
.faq-still p { color: var(--gray-600); margin-bottom: 24px; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner-section { padding: 80px 0; }
.cta-banner {
  position: relative; background: var(--orange); border-radius: 24px; overflow: hidden;
  padding: 64px 32px; text-align: center;
}
.cta-banner-pattern {
  position: absolute; inset: 0; opacity: .1;
  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%3Cg fill='%23fff'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-badge { display: inline-flex; align-items: center; background: rgba(255,255,255,.2); border-radius: 100px; padding: 6px 16px; font-size: 13px; color: white; font-weight: 500; margin-bottom: 24px; }
.cta-banner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: white; margin-bottom: 16px; }
.cta-banner p { font-size: 18px; color: rgba(255,255,255,.85); max-width: 640px; margin: 0 auto 40px; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.story-section { padding: 80px 0; background: white; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-text .section-label { display: block; }
.story-text h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 800; color: var(--gray-900); margin-bottom: 24px; }
.story-text p { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.story-img { position: relative; }
.story-img img { border-radius: var(--radius-2xl); box-shadow: var(--shadow-lg); width: 100%; }
.story-badge {
  position: absolute; bottom: -24px; left: -24px;
  background: var(--orange); border-radius: 14px; padding: 24px;
  color: white; text-align: center;
}
.story-badge .num { font-size: 36px; font-weight: 800; line-height: 1; }
.story-badge .label { font-size: 13px; opacity: .85; }

.stats-section { padding: 64px 0; background: var(--gray-50); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card { text-align: center; padding: 24px; }
.stat-card .val { font-size: 42px; font-weight: 800; color: var(--orange); margin-bottom: 4px; }
.stat-card .label { font-size: 15px; color: var(--gray-600); font-weight: 500; }

.values-section { padding: 80px 0; background: white; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.value-card { display: flex; align-items: flex-start; gap: 20px; padding: 24px; background: var(--gray-50); border-radius: var(--radius-2xl); }
.value-icon { width: 56px; height: 56px; background: var(--orange-50); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value-icon svg { width: 28px; height: 28px; color: var(--orange); }
.value-card h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.value-card p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

.cities-section { padding: 80px 0; background: var(--gray-50); }
.cities-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }
.city-chip {
  padding: 10px 22px; background: white; border: 1px solid var(--gray-200);
  border-radius: 12px; font-size: 15px; font-weight: 500; color: var(--gray-700);
  transition: background .2s, color .2s, border-color .2s;
}
.city-chip:hover { background: var(--orange); color: white; border-color: var(--orange); }

/* ============================================
   BOOK NOW PAGE
   ============================================ */
.book-section { padding: 80px 0; background: white; }
.book-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.booking-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-wrap { position: relative; }
.input-wrap svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--gray-400); pointer-events: none; }
.input-wrap.top-icon svg { top: 16px; transform: none; }
.input-wrap input, .input-wrap select, .input-wrap textarea {
  width: 100%; padding: 12px 16px 12px 40px;
  border-radius: 12px; border: 1px solid var(--gray-200);
  font-size: 15px; color: var(--gray-900); font-family: inherit;
  outline: none; transition: border-color .2s, box-shadow .2s; background: white;
  appearance: none;
}
.input-wrap input:focus, .input-wrap select:focus, .input-wrap textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}
.input-wrap textarea { padding-top: 12px; resize: none; }
.submit-btn {
  width: 100%; padding: 16px; background: var(--orange); color: white;
  font-size: 17px; font-weight: 700; border-radius: 12px; border: none;
  cursor: pointer; transition: background .2s; box-shadow: var(--shadow-orange);
}
.submit-btn:hover { background: var(--orange-dark); }

.success-box { background: #F0FDF4; border: 1px solid #BBF7D0; border-radius: var(--radius-2xl); padding: 64px 32px; text-align: center; }
.success-icon { width: 64px; height: 64px; background: #DCFCE7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.success-icon svg { width: 32px; height: 32px; color: #22C55E; }
.success-box h2 { font-size: 24px; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; }
.success-box p { color: var(--gray-600); }
.success-box a { color: var(--orange); font-weight: 600; }

.book-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius-2xl); padding: 24px; }
.sidebar-card h3 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 16px; }
.steps-list { display: flex; flex-direction: column; gap: 16px; }
.step-item { display: flex; align-items: flex-start; gap: 12px; }
.step-num { width: 32px; height: 32px; background: var(--orange-50); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--orange); flex-shrink: 0; }
.step-text { font-size: 14px; color: var(--gray-600); padding-top: 6px; }
.sidebar-dark { background: var(--gray-900); border-color: transparent; color: white; }
.sidebar-dark h3 { color: white; display: flex; align-items: center; gap: 8px; }
.sidebar-dark h3 svg { width: 18px; height: 18px; color: #fb923c; }
.sidebar-dark p { color: var(--gray-300); font-size: 14px; margin-bottom: 16px; }
.sidebar-call { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 12px; background: var(--orange); color: white; font-weight: 700; border-radius: 10px; transition: background .2s; }
.sidebar-call:hover { background: var(--orange-dark); }
.sidebar-call svg { width: 18px; height: 18px; }
.sidebar-promo { background: var(--orange-50); border-color: #FED7AA; }
.sidebar-promo h3 { color: var(--gray-900); }
.sidebar-promo p { color: var(--gray-600); font-size: 14px; }

/* ============================================
   SERVICE TEMPLATE PAGE
   ============================================ */
.features-3-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.f3-card { text-align: center; padding: 32px; background: var(--gray-50); border-radius: var(--radius-2xl); }
.f3-icon { width: 56px; height: 56px; background: var(--orange-50); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.f3-icon svg { width: 28px; height: 28px; color: var(--orange); }
.f3-card h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.f3-card p { font-size: 15px; color: var(--gray-600); }

.issues-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.issue-card { display: flex; align-items: flex-start; gap: 14px; padding: 20px; background: white; border: 1px solid var(--gray-100); border-radius: 14px; }
.issue-check { width: 40px; height: 40px; background: var(--orange-50); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.issue-check svg { width: 18px; height: 18px; color: var(--orange); }
.issue-card h3 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.issue-card p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

.brands-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }
.brand-chip { padding: 10px 20px; background: var(--gray-100); border-radius: 12px; font-size: 14px; font-weight: 600; color: var(--gray-800); }

/* ============================================
   AREA TEMPLATE PAGE
   ============================================ */
.services-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-list-card {
  padding: 24px; background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: var(--radius-2xl); transition: background .3s, box-shadow .3s, border-color .3s;
}
.service-list-card:hover { background: white; box-shadow: var(--shadow-lg); border-color: #FED7AA; }
.service-list-card h3 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; transition: color .2s; }
.service-list-card:hover h3 { color: var(--orange); }
.service-list-card p { font-size: 14px; color: var(--gray-600); margin-bottom: 16px; }
.service-list-card .learn-more { font-size: 14px; }

.neighborhoods-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.hood-chip { padding: 8px 18px; background: white; border: 1px solid var(--gray-200); border-radius: 12px; font-size: 14px; font-weight: 500; color: var(--gray-700); }

.nearby-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.nearby-btn {
  padding: 10px 22px; background: var(--gray-100); border-radius: 12px;
  font-size: 14px; font-weight: 600; color: var(--gray-800);
  transition: background .2s, color .2s;
}
.nearby-btn:hover { background: var(--orange); color: white; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-section { padding: 80px 0; background: white; }
.legal-content h1 { font-size: 36px; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; }
.legal-date { color: var(--gray-500); font-size: 14px; margin-bottom: 32px; }
.legal-content h2 { font-size: 22px; font-weight: 700; color: var(--gray-900); margin: 40px 0 16px; }
.legal-content p { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.legal-content ul li { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 8px; }
.legal-content a { color: var(--orange); }

/* ============================================
   MAIN CONTENT PADDING (for fixed header)
   ============================================ */
.main-content { padding-top: 72px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .issues-grid { grid-template-columns: repeat(2, 1fr); }
  .services-list-grid { grid-template-columns: repeat(2, 1fr); }
  .features-3-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .desktop-nav, .header-cta { display: none; }
  .hamburger { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 300px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .issues-grid { grid-template-columns: 1fr; }
  .services-list-grid { grid-template-columns: 1fr; }
  .features-3-grid { grid-template-columns: 1fr; }
  .story-badge { position: static; margin-top: 24px; display: inline-block; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}
