/* ===== Toler's Cleaning Services — Global Stylesheet ===== */

/* ===== SELF-HOSTED FONTS ===== */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/outfit/outfit-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/work-sans/work-sans-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #2B7A4B;
  --primary-hover: #236B3F;
  --primary-light: #4CAF73;
  --primary-pale: #E8F5EE;
  --accent: #10B981;
  --dark: #0D1F15;
  --dark-surface: #142A1E;
  --surface: #FFFFFF;
  --bg: #F7FAF8;
  --text: #1A2A21;
  --text-muted: #5B6E62;
  --border: #D4DDD7;
  --amber: #F59E0B;
  --amber-dark: #D97706;
  --amber-light: #FEF3C7;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.1), 0 8px 32px rgba(0,0,0,0.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo svg { flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--primary-hover); transform: translateY(-1px); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  padding: 8px;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ===== HERO ===== */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  background: linear-gradient(180deg, var(--primary-pale) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,122,75,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-headline {
  margin-bottom: 32px;
}
.hero-line {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark);
}
.hero-line:nth-child(2) {
  margin-top: 4px;
}
.hero-rotating-line {
  display: block;
  margin-top: 8px;
  height: clamp(3rem, 7vw, 4.8rem);
  position: relative;
  overflow: hidden;
}
.rotate-word {
  position: absolute;
  left: 0;
  right: 0;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--primary);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.rotate-word.active {
  opacity: 1;
  transform: translateY(0);
}
.rotate-word.exit {
  opacity: 0;
  transform: translateY(-100%);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 36px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(43,122,75,0.25);
}
.hero-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(43,122,75,0.35);
}

/* ===== SECTION COMMON ===== */
.section { padding: 96px 0; }
.section-alt { background: var(--surface); }
.section-dark {
  background: var(--dark);
  color: #fff;
}
.section-title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
  color: var(--dark);
}
.section-dark .section-title { color: #fff; }
.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 56px;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.65); }

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step {
  text-align: center;
  padding: 0 12px;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-pale);
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
}
.step p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== WHAT YOU GET / SERVICE CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-accent {
  height: 5px;
  background: var(--primary);
}
.card-body { padding: 36px 32px; }
.card-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin-bottom: 16px;
}
.card-title {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.checklist { list-style: none; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text);
}
.checklist li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

/* ===== PRICING ===== */
.pricing-card {
  max-width: 480px;
  margin: 0 auto 48px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  overflow: hidden;
}
.pricing-header {
  background: var(--dark);
  padding: 36px 32px;
  color: #fff;
}
.pricing-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.pricing-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-amount span {
  font-size: 1.25rem;
  font-weight: 500;
  opacity: 0.7;
}
.pricing-period {
  font-size: 0.95rem;
  opacity: 0.65;
}
.pricing-body { padding: 32px; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li svg { color: var(--accent); flex-shrink: 0; }
.pricing-cta {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.pricing-cta:hover { background: var(--primary-hover); transform: translateY(-1px); }

/* ===== BANNER ===== */
.banner {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  padding: 40px 24px;
  text-align: center;
  color: #fff;
}
.banner h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.banner p {
  font-size: 1.05rem;
  opacity: 0.9;
}

/* ===== ADD-ONS ===== */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.addon-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.addon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.addon-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--dark);
}
.addon-card .quote-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--amber-dark);
  background: var(--amber-light);
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.addon-items { list-style: none; }
.addon-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.addon-items li:last-child { border-bottom: none; }
.addon-items li svg { color: var(--primary); flex-shrink: 0; }
.addon-cta {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.addon-cta:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

/* ===== QUOTE / CALENDAR ===== */
.quote-section { background: var(--surface); }
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.calendar-wrapper {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cal-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
}
.cal-nav {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  color: var(--text);
  transition: background 0.2s;
}
.cal-nav:hover { background: var(--primary-pale); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}
.cal-day-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cal-day {
  padding: 10px 0;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border: none;
  background: transparent;
  color: var(--text);
  font-family: inherit;
}
.cal-day:hover { background: var(--primary-pale); color: var(--primary); }
.cal-day.selected {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}
.cal-day.empty { pointer-events: none; }
.cal-day.past { opacity: 0.35; pointer-events: none; }
.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.time-slot {
  padding: 12px;
  border: 2px solid var(--border);
  border-radius: 10px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
}
.time-slot:hover { border-color: var(--primary); }
.time-slot.selected {
  border-color: var(--primary);
  background: var(--primary-pale);
  color: var(--primary);
  font-weight: 600;
}
.time-slot-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.pickup-estimate {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--primary-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  display: none;
}
.pickup-estimate.visible { display: flex; }
.pickup-estimate svg { color: var(--primary); flex-shrink: 0; }
.pickup-estimate p {
  font-size: 0.95rem;
  color: var(--dark);
}
.pickup-estimate strong { color: var(--primary); }
.quote-form { display: flex; flex-direction: column; gap: 16px; }
.quote-form h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.quote-form p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(43,122,75,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-checkbox { margin: -4px 0; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.checkbox-label input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--primary);
}
.form-submit {
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.form-submit:hover { background: var(--primary-hover); transform: translateY(-1px); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.contact-info p {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { color: var(--primary); }
.contact-detail .label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-detail .value {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}
.section-dark .contact-info h3 { color: #fff; }
.section-dark .contact-info p { color: rgba(255,255,255,0.7); }
.section-dark .contact-detail { border-bottom-color: rgba(255,255,255,0.12); }
.section-dark .contact-icon { background: rgba(255,255,255,0.1); }
.section-dark .contact-icon svg { color: var(--accent); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links { list-style: none; }
.footer-links li { padding: 6px 0; }
.footer-links li {
  color: rgba(255,255,255,0.75);
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

/* ===== CHATBOT ===== */
.chatbot-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(43,122,75,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  transition: background 0.2s, transform 0.2s;
}
.chatbot-toggle:hover { background: var(--primary-hover); transform: scale(1.05); }
.chatbot-panel {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 380px;
  max-height: 520px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  z-index: 200;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.chatbot-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.chat-header h4 { font-size: 1rem; font-weight: 600; }
.chat-close {
  background: none;
  border: none;
  color: #fff;
  opacity: 0.7;
  padding: 4px;
  transition: opacity 0.2s;
}
.chat-close:hover { opacity: 1; }
.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
  max-height: 340px;
}
.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.chat-msg.bot {
  background: var(--bg);
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: var(--primary);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-msg.typing {
  display: flex;
  gap: 4px;
  padding: 14px 18px;
}
.typing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typingBounce 1.4s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}
.chat-input-area {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
}
.chat-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
}
.chat-input:focus {
  outline: none;
  border-color: var(--primary);
}
.chat-send {
  padding: 10px 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  transition: background 0.2s;
}
.chat-send:hover { background: var(--primary-hover); }

/* ===== ABOUT ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-text h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--dark);
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--primary-pale);
  border-radius: var(--radius);
}
.about-highlight svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}
.about-highlight strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 2px;
}
.about-highlight span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--surface);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  gap: 16px;
}
.faq-question svg {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.3s;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== REVIEW CTA ===== */
.review-banner {
  text-align: center;
  padding: 64px 24px;
  background: linear-gradient(135deg, var(--primary-pale) 0%, #fff 100%);
}
.review-banner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--dark);
  margin-bottom: 12px;
}
.review-banner p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}
.review-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}
.review-stars svg { color: var(--amber); }
.review-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(43,122,75,0.2);
}
.review-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(43,122,75,0.3);
}

/* ===== INNER PAGE STYLES ===== */
.page-hero {
  padding: 120px 0 48px;
  background: linear-gradient(180deg, var(--primary-pale) 0%, var(--bg) 100%);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumbs a {
  color: var(--primary);
  font-weight: 500;
}
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { margin: 0 8px; }

/* Inner page content */
.page-content {
  padding: 64px 0;
}
.page-content h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--dark);
}
.page-content h3 {
  font-size: 1.3rem;
  margin: 32px 0 12px;
  color: var(--dark);
}
.page-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 780px;
}
.page-content ul,
.page-content ol {
  margin: 0 0 24px 24px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Citable block (for GEO) */
.citable-block {
  background: var(--surface);
  border-left: 4px solid var(--primary);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0 32px;
  box-shadow: var(--shadow);
}
.citable-block p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  max-width: none;
  margin-bottom: 0;
}

/* Service list on inner pages */
.service-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

/* Quote form (inner page simplified) */
.inner-quote-form {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Blog styles */
.blog-article {
  max-width: 780px;
  margin: 0 auto;
}
.blog-article h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: left;
}
.blog-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.blog-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.blog-article th,
.blog-article td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.blog-article th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}
.blog-article td { color: var(--text); }
.blog-article tr:last-child td { border-bottom: none; }

/* Legal page styles */
.legal-page {
  max-width: 780px;
  margin: 0 auto;
}
.legal-page h2 {
  font-size: 1.5rem;
  margin: 40px 0 12px;
}
.legal-page p,
.legal-page li {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .mobile-toggle { display: block; }
  .steps-grid { grid-template-columns: 1fr; gap: 48px; }
  .cards-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-content { grid-template-columns: 1fr; gap: 32px; }
  .about-highlights { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 130px 0 72px; }
  .page-hero { padding: 100px 0 36px; }
  .about-highlights { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .hero-rotating { height: 36px; }
  .rotate-word { font-size: 1.1rem; }
  .section { padding: 64px 0; }
  .page-content { padding: 40px 0; }
  .time-slots { grid-template-columns: 1fr; }
  .chatbot-panel { width: calc(100vw - 32px); right: 16px; bottom: 92px; }
  .inner-quote-form { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .rotate-word { transition: none; }
}
