/* ==========================================================================
   SUNNYVALE APPLIANCE REPAIR PROS - "THE APPLIANCE WORKSHOP" STYLESHEET
   Authentic California Local Service & Workshop Aesthetic
   ========================================================================== */

:root {
  /* Core Palette */
  --color-charcoal-black: #121619;
  --color-charcoal-dark: #191f24;
  --color-charcoal-surface: #222a30;
  --color-warm-ivory: #faf8f5;
  --color-warm-ivory-alt: #f3efe8;
  --color-soft-sand: #eae3d6;
  --color-soft-sand-border: #ded5c5;
  
  /* Workshop Accents */
  --color-copper: #c4683c;
  --color-copper-hover: #ad552b;
  --color-copper-light: #faeee7;
  --color-copper-glow: rgba(196, 104, 60, 0.28);
  --color-deep-olive: #2a3830;
  --color-deep-olive-light: #edf2ee;
  
  /* Steel & Neutrals */
  --color-brushed-steel: #5a646e;
  --color-steel-light: #8e98a3;
  --color-steel-border: #e2ded7;
  --color-text-main: #242b30;
  --color-text-muted: #5e6871;
  --color-white: #ffffff;
  --color-success: #27ae60;
  --color-success-light: #e8f8ef;
  
  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Space Grotesk', 'JetBrains Mono', monospace;
  
  /* Layout & Spacing */
  --max-width: 1240px;
  --section-padding: 5rem 1.5rem;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --shadow-subtle: 0 4px 20px rgba(18, 22, 25, 0.05);
  --shadow-medium: 0 10px 30px rgba(18, 22, 25, 0.08);
  --shadow-card: 0 14px 40px rgba(18, 22, 25, 0.09);
  --shadow-glow: 0 8px 24px var(--color-copper-glow);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-warm-ivory);
  color: var(--color-text-main);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Section Header Shared */
.section-header {
  margin-bottom: 3.5rem;
}

.section-header.text-center {
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--color-copper);
  background-color: var(--color-copper-light);
  padding: 0.35rem 0.85rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(196, 104, 60, 0.25);
  margin-bottom: 1rem;
}

.tech-tag.tech-tag-dark {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ff9b6a;
  border-color: rgba(255, 255, 255, 0.15);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  line-height: 1.25;
  color: var(--color-charcoal-black);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-title-dark {
  color: var(--color-warm-ivory);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.section-subtitle-dark {
  color: #b3bcc5;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 0.85rem 1.65rem;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-primary {
  background-color: var(--color-copper);
  color: var(--color-white);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background-color: var(--color-copper-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(196, 104, 60, 0.4);
  color: var(--color-white);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-charcoal-black);
  border: 1.5px solid var(--color-charcoal-black);
}

.btn-secondary:hover {
  background-color: var(--color-charcoal-black);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-secondary-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--color-white);
}

.btn-secondary-light:hover {
  background-color: var(--color-white);
  color: var(--color-charcoal-black);
  border-color: var(--color-white);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ==========================================================================
   TOP ANNOUNCEMENT & DISPATCH BAR
   ========================================================================== */
.top-announcement-bar {
  background-color: var(--color-charcoal-black);
  color: #d1d7dc;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0;
  font-family: var(--font-mono);
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.top-bar-left .divider {
  color: var(--color-copper);
}

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

.top-bar-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ff9b6a;
  font-weight: 700;
  transition: color var(--transition-fast);
}

.top-bar-call:hover {
  color: var(--color-white);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-soft-sand-border);
  z-index: 1000;
  transition: all var(--transition-fast);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1rem;
}

.brand-wrapper {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-charcoal-black);
  letter-spacing: -0.01em;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-location {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-copper);
  font-weight: 700;
  margin-top: 2px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-charcoal-black);
  position: relative;
  padding: 0.4rem 0.2rem;
  white-space: nowrap;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.badge-24h {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--color-deep-olive);
  background-color: var(--color-deep-olive-light);
  padding: 0.35rem 0.65rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(42, 56, 48, 0.2);
  white-space: nowrap;
  flex-shrink: 0;
}

.badge-24h::before {
  content: '';
  width: 7px;
  height: 7px;
  background-color: #27ae60;
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0.4rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-soft-sand-border);
  background: var(--color-white);
  z-index: 1010;
  flex-shrink: 0;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--color-charcoal-black);
  transition: all var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION (LOCAL BUSINESS DISPATCH & HERO)
   ========================================================================== */
.hero-section {
  padding: 4rem 0 4.5rem;
  position: relative;
  background: linear-gradient(180deg, var(--color-warm-ivory) 0%, var(--color-warm-ivory-alt) 100%);
  border-bottom: 1px solid var(--color-soft-sand-border);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  max-width: 640px;
}

.hero-h1 {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  line-height: 1.18;
  color: var(--color-charcoal-black);
  font-weight: 700;
  margin-bottom: 1.35rem;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
}

.hero-trust-bullets {
  list-style: none;
  margin-bottom: 2rem;
}

.hero-trust-bullets li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-charcoal-black);
  margin-bottom: 0.6rem;
}

.hero-trust-bullets svg {
  color: var(--color-success);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero Dispatch Card (Interactive Booking Form) */
.hero-dispatch-card {
  background: var(--color-white);
  border: 1px solid var(--color-soft-sand-border);
  border-top: 4px solid var(--color-copper);
  border-radius: var(--border-radius-lg);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
}

.dispatch-header {
  margin-bottom: 1.35rem;
  text-align: center;
}

.dispatch-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-copper);
  font-weight: 700;
  display: block;
  margin-bottom: 0.3rem;
}

.dispatch-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-charcoal-black);
}

.dispatch-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--color-brushed-steel);
}

.form-select,
.form-input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  border: 1px solid var(--color-steel-border);
  border-radius: var(--border-radius-sm);
  background-color: var(--color-warm-ivory);
  color: var(--color-charcoal-black);
  transition: all var(--transition-fast);
}

.form-select:focus,
.form-input:focus {
  outline: none;
  border-color: var(--color-copper);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px var(--color-copper-light);
}

.dispatch-trust-note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 0.25rem;
}

.dispatch-call-alternative {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-soft-sand-border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.dispatch-call-alternative a {
  color: var(--color-copper);
  font-weight: 700;
  font-family: var(--font-mono);
}

/* ==========================================================================
   MAJOR BRANDS SERVICED STRIP
   ========================================================================== */
.brands-strip {
  background-color: var(--color-charcoal-black);
  color: var(--color-white);
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brands-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.brands-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ff9b6a;
  font-weight: 700;
}

.brands-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.brand-pill {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.85rem;
  border-radius: var(--border-radius-sm);
  color: #e2ded7;
  transition: all var(--transition-fast);
}

.brand-pill:hover {
  background: rgba(196, 104, 60, 0.2);
  border-color: var(--color-copper);
  color: var(--color-white);
}

/* ==========================================================================
   LOCAL TRUST STRIP
   ========================================================================== */
.trust-strip {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-soft-sand-border);
  padding: 2.25rem 0;
  box-shadow: var(--shadow-subtle);
}

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

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem 0.75rem;
  border-right: 1px solid var(--color-soft-sand-border);
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  width: 28px;
  height: 28px;
  color: var(--color-copper);
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-heading {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-charcoal-black);
  margin-bottom: 0.25rem;
}

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

.trust-link {
  color: var(--color-copper);
  font-weight: 600;
}

/* ==========================================================================
   WHY CHOOSE US (LOCAL BUSINESS PILLARS)
   ========================================================================== */
.why-us-section {
  padding: var(--section-padding);
  background-color: var(--color-warm-ivory);
}

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

.why-card {
  background: var(--color-white);
  border: 1px solid var(--color-soft-sand-border);
  border-radius: var(--border-radius-md);
  padding: 2rem 1.6rem;
  transition: all var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-copper);
  box-shadow: var(--shadow-medium);
}

.why-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background-color: var(--color-copper-light);
  color: var(--color-copper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(196, 104, 60, 0.2);
}

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

.why-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-charcoal-black);
  margin-bottom: 0.65rem;
}

.why-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   LOCAL SEO INTRO SECTION
   ========================================================================== */
.seo-intro-section {
  padding: var(--section-padding);
  background-color: var(--color-warm-ivory-alt);
  border-top: 1px solid var(--color-soft-sand-border);
}

.seo-card {
  background: var(--color-white);
  border: 1px solid var(--color-soft-sand-border);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-medium);
}

.seo-prose {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-main);
}

.seo-prose p {
  margin-bottom: 1.35rem;
}

.seo-prose p:last-child {
  margin-bottom: 0;
}

.address-highlight {
  display: inline-block;
  background-color: var(--color-warm-ivory-alt);
  padding: 0.15rem 0.5rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  color: var(--color-charcoal-black);
  border: 1px solid var(--color-soft-sand-border);
}

/* ==========================================================================
   SERVICE HUB (11 COMPLETE SERVICES)
   ========================================================================== */
.service-hub-section {
  padding: var(--section-padding);
  background-color: var(--color-warm-ivory);
  border-top: 1px solid var(--color-soft-sand-border);
  border-bottom: 1px solid var(--color-soft-sand-border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-soft-sand-border);
  border-radius: var(--border-radius-md);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
}

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

.service-card-top {
  margin-bottom: 1.5rem;
}

.service-icon-box {
  width: 52px;
  height: 52px;
  background-color: var(--color-copper-light);
  color: var(--color-copper);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(196, 104, 60, 0.2);
}

.service-icon-box svg {
  width: 28px;
  height: 28px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-charcoal-black);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.service-card-bottom {
  border-top: 1px solid var(--color-warm-ivory-alt);
  padding-top: 1rem;
}

.service-cta-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--color-copper);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-cta-link:hover {
  color: var(--color-copper-hover);
  transform: translateX(4px);
}

/* ==========================================================================
   APPLIANCE CATEGORY SECTION ("KITCHEN TO LAUNDRY")
   ========================================================================== */
.categories-section {
  padding: var(--section-padding);
  background-color: var(--color-white);
}

.category-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

.category-card {
  border: 1px solid var(--color-soft-sand-border);
  border-radius: var(--border-radius-lg);
  padding: 2.75rem 2.25rem;
  background: var(--color-warm-ivory);
}

.category-card.kitchen-card {
  border-top: 4px solid var(--color-copper);
}

.category-card.laundry-card {
  border-top: 4px solid var(--color-deep-olive);
}

.category-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-charcoal-black);
  margin-bottom: 1rem;
}

.category-text {
  font-size: 0.98rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.category-pill {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  background: var(--color-white);
  border: 1px solid var(--color-soft-sand-border);
  padding: 0.4rem 0.85rem;
  border-radius: var(--border-radius-sm);
  color: var(--color-charcoal-black);
  font-weight: 600;
}

/* ==========================================================================
   SYMPTOM-BASED SECTION ("WHAT'S GOING WRONG?")
   ========================================================================== */
.symptoms-section {
  padding: var(--section-padding);
  background-color: var(--color-charcoal-black);
  color: var(--color-white);
}

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

.symptom-card {
  background: var(--color-charcoal-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: 1.75rem 1.4rem;
  transition: all var(--transition-normal);
}

.symptom-card:hover {
  border-color: var(--color-copper);
  background: var(--color-charcoal-surface);
  transform: translateY(-3px);
}

.symptom-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.symptom-icon {
  width: 24px;
  height: 24px;
  color: #ff9b6a;
}

.symptom-name {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--color-white);
}

.symptom-desc {
  font-size: 0.88rem;
  color: #b3bcc5;
  line-height: 1.55;
}

.symptoms-cta-bar {
  text-align: center;
  background: var(--color-charcoal-surface);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-md);
  padding: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.symptoms-cta-text h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.symptoms-cta-text p {
  color: #b3bcc5;
  font-size: 0.92rem;
}

/* ==========================================================================
   SUNNYVALE LOCAL & SERVICE AREA NETWORK
   ========================================================================== */
.local-section {
  padding: var(--section-padding);
  background-color: var(--color-warm-ivory);
}

.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.local-info-block {
  background: var(--color-white);
  border: 1px solid var(--color-soft-sand-border);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-subtle);
}

.area-network-section {
  padding: var(--section-padding);
  background-color: var(--color-warm-ivory-alt);
  border-top: 1px solid var(--color-soft-sand-border);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.area-card {
  background: var(--color-white);
  border: 1px solid var(--color-soft-sand-border);
  border-radius: var(--border-radius-md);
  padding: 1.4rem 1.2rem;
  transition: all var(--transition-fast);
}

.area-card:hover {
  border-color: var(--color-copper);
  transform: translateY(-2px);
  box-shadow: var(--shadow-subtle);
}

.area-card-primary {
  background: #fdfaf7;
  border: 1.5px solid var(--color-copper);
}

.area-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--color-copper);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
  display: block;
}

.area-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-charcoal-black);
  margin-bottom: 0.35rem;
}

.area-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   DEEP DIVES (KITCHEN & LAUNDRY FEATURES)
   ========================================================================== */
.feature-split-section {
  padding: var(--section-padding);
  background-color: var(--color-white);
}

.feature-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-split-grid.reverse {
  direction: rtl;
}

.feature-split-grid.reverse > * {
  direction: ltr;
}

.feature-list {
  list-style: none;
  margin: 1.75rem 0;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--color-text-main);
}

.feature-list-icon {
  width: 20px;
  height: 20px;
  color: var(--color-copper);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-card-box {
  background: var(--color-warm-ivory);
  border: 1px solid var(--color-soft-sand-border);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-medium);
}

/* ==========================================================================
   APPLIANCE CARE & SERVICE PROCESS
   ========================================================================== */
.care-section {
  padding: var(--section-padding);
  background-color: var(--color-warm-ivory-alt);
  border-top: 1px solid var(--color-soft-sand-border);
}

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

.care-card {
  background: var(--color-white);
  border: 1px solid var(--color-soft-sand-border);
  border-radius: var(--border-radius-md);
  padding: 1.75rem;
}

.care-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-copper);
  margin-bottom: 0.6rem;
}

.care-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-charcoal-black);
  margin-bottom: 0.5rem;
}

.care-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Process Section */
.process-section {
  padding: var(--section-padding);
  background-color: var(--color-charcoal-black);
  color: var(--color-white);
}

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

.process-step {
  background: var(--color-charcoal-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: 2rem 1.5rem;
  position: relative;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ff9b6a;
  margin-bottom: 0.85rem;
  display: block;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 0.65rem;
}

.step-desc {
  font-size: 0.88rem;
  color: #b3bcc5;
  line-height: 1.55;
}

/* ==========================================================================
   LOCATION POINT & CONTACT CARD
   ========================================================================== */
.location-point-section {
  padding: var(--section-padding);
  background-color: var(--color-warm-ivory);
}

.location-box {
  background: var(--color-white);
  border: 1px solid var(--color-soft-sand-border);
  border-radius: var(--border-radius-lg);
  padding: 3.5rem 3rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-medium);
}

.nap-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.nap-icon {
  width: 26px;
  height: 26px;
  color: var(--color-copper);
  flex-shrink: 0;
  margin-top: 3px;
}

.nap-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-brushed-steel);
  margin-bottom: 0.2rem;
}

.nap-val {
  font-size: 1.05rem;
  color: var(--color-charcoal-black);
  font-weight: 600;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
  padding: var(--section-padding);
  background-color: var(--color-warm-ivory-alt);
  border-top: 1px solid var(--color-soft-sand-border);
}

.faq-container {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-soft-sand-border);
  border-radius: var(--border-radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--color-copper);
}

.faq-button {
  width: 100%;
  text-align: left;
  padding: 1.4rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--color-charcoal-black);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--color-copper);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  background: var(--color-warm-ivory);
}

.faq-answer-inner {
  padding: 1.25rem 1.6rem 1.6rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--color-soft-sand-border);
}

/* ==========================================================================
   FINAL CONVERSION SECTION
   ========================================================================== */
.final-cta-section {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, var(--color-charcoal-black) 0%, var(--color-charcoal-surface) 100%);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-content {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-cta-h2 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.final-cta-p {
  font-size: 1.15rem;
  color: #b3bcc5;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.final-nap-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-md);
  padding: 1.75rem;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.final-nap-item {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: #f1f3f5;
}

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

/* ==========================================================================
   GOOGLE MAPS MANDATORY EMBED
   ========================================================================== */
.maps-section {
  padding: 4.5rem 0 0;
  background-color: var(--color-warm-ivory);
  border-top: 1px solid var(--color-soft-sand-border);
}

.map-container {
  width: 100%;
  height: 440px;
  border: 1px solid var(--color-soft-sand-border);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  margin-top: 1.5rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-nap-bar {
  background: var(--color-white);
  border: 1px solid var(--color-soft-sand-border);
  border-top: none;
  border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
  padding: 1.25rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4.5rem;
}

.map-nap-address {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-charcoal-black);
}

.map-nap-call {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-copper);
}

/* ==========================================================================
   FOOTER (LARGE PREMIUM FOOTER)
   ========================================================================== */
.site-footer {
  background-color: var(--color-charcoal-black);
  color: #8e98a3;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

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

.footer-col-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-white);
  margin-bottom: 0.35rem;
}

.footer-col-brand .brand-sub {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ff9b6a;
  margin-bottom: 1.25rem;
  display: block;
}

.footer-nap-list {
  list-style: none;
  margin-top: 1rem;
}

.footer-nap-list li {
  margin-bottom: 0.65rem;
  line-height: 1.5;
  color: #d1d7dc;
}

.footer-nap-list a {
  color: #ff9b6a;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 0.55rem;
}

.footer-links-list a {
  color: #b3bcc5;
  transition: color var(--transition-fast);
}

.footer-links-list a:hover {
  color: #ff9b6a;
  padding-left: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a:hover {
  color: var(--color-white);
}

/* Modals for Legal Pages */
.legal-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 22, 25, 0.8);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.legal-modal.active {
  display: flex;
}

.legal-modal-content {
  background: var(--color-white);
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-card);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.5rem;
  color: var(--color-charcoal-black);
  cursor: pointer;
  line-height: 1;
}

/* ==========================================================================
   FLOATING MOBILE ACTION BAR (FOR AUTHENTIC LOCAL SERVICE CONVERSION)
   ========================================================================== */
.floating-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-charcoal-black);
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.floating-mobile-inner {
  display: flex;
  gap: 0.75rem;
}

.floating-btn-call {
  flex: 1.2;
  background-color: var(--color-copper);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.8rem 0.5rem;
  border-radius: var(--border-radius-sm);
  text-transform: uppercase;
}

.floating-btn-book {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.8rem 0.5rem;
  border-radius: var(--border-radius-sm);
  text-transform: uppercase;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1100px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: var(--color-white);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 2px solid var(--color-copper);
    box-shadow: 0 12px 30px rgba(18, 22, 25, 0.12);
    z-index: 999;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav .nav-link {
    font-size: 1.05rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--color-warm-ivory-alt);
    width: 100%;
  }

  .main-nav .nav-link:last-child {
    border-bottom: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .badge-24h {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .symptoms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(2) {
    border-right: none;
  }
  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    border-bottom: 1px solid var(--color-soft-sand-border);
    padding-bottom: 1rem;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .top-bar-inner {
    justify-content: center;
    text-align: center;
    gap: 0.4rem;
  }
  .top-bar-left {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .top-announcement-bar {
    display: none;
  }

  .site-header {
    height: 70px;
  }

  .header-inner {
    height: 70px;
  }

  .brand-title {
    font-size: 1.05rem;
  }

  .brand-location {
    font-size: 0.6rem;
  }

  .main-nav {
    top: 70px;
  }

  .hero-section {
    padding: 2.5rem 0 3.5rem;
  }

  .hero-h1 {
    font-size: 2.1rem;
    line-height: 1.2;
  }

  .hero-dispatch-card {
    padding: 1.6rem 1.25rem;
  }

  .form-select,
  .form-input {
    font-size: 16px; /* Prevents auto-zoom on mobile */
    padding: 0.8rem;
  }

  .category-columns,
  .local-grid,
  .feature-split-grid,
  .location-box {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-us-grid,
  .services-grid,
  .areas-grid,
  .care-grid,
  .symptoms-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .symptoms-cta-bar {
    flex-direction: column;
    text-align: center;
  }

  .final-cta-h2 {
    font-size: 1.95rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .floating-mobile-bar {
    display: block;
  }

  body {
    padding-bottom: 75px;
  }
}

@media (max-width: 580px) {
  .header-actions .btn {
    padding: 0.45rem 0.8rem;
    font-size: 0.76rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--color-soft-sand-border);
  }
}

@media (max-width: 420px) {
  .brand-title {
    font-size: 0.95rem;
  }
  .brand-location {
    font-size: 0.58rem;
  }
  .hero-h1 {
    font-size: 1.75rem;
  }
}
