/* ==========================================================================
   Needletail Pearl Home Services - Production Stylesheet
   Pure CSS3 - Ultra Lightweight, 100% Responsive, Zero Dependencies
   Optimized for Asura Hosting & Fast Load Times
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Variables) - Natural Tones Theme
   -------------------------------------------------------------------------- */
:root {
  /* Brand Palette (Natural Tones & Pearl Sky) */
  --primary: #0284c7;          /* Pearl Sky Blue */
  --primary-hover: #0369a1;    /* Deep Sky Blue */
  --primary-light: #e0f2fe;    /* Soft Sky Tint */
  --primary-subtle: #f0f9ff;   /* Ultra-soft Ice Tint */
  --accent: #0284c7;           /* Sky Blue Accent */
  --accent-hover: #0369a1;     /* Darker Accent */
  --accent-light: #e0f2fe;     /* Soft Sky Accent Tint */
  
  /* Neutrals */
  --bg-main: #fdfcfb;          /* Natural Soft Warm Canvas */
  --bg-surface: #ffffff;       /* Pure Card White */
  --bg-subtle: #f8fafc;        /* Slate 50 Neutral Tint */
  --bg-dark: #0f172a;          /* Slate 900 Deep Canvas */
  --bg-topbar: #1e293b;        /* Slate 800 Top Bar */
  --bg-dark-surface: #1e293b;  /* Slate 800 Card Surface */

  /* Text Colors */
  --text-main: #0f172a;        /* Slate 900 Main Headings */
  --text-body: #334155;        /* Slate 700 Body */
  --text-muted: #64748b;       /* Slate 500 Descriptions */
  --text-light: #94a3b8;       /* Slate 400 Muted / Meta */
  --text-inverse: #ffffff;     /* White on Dark */

  /* Borders & Shadows */
  --border-light: #e2e8f0;     /* Slate 200 Border */
  --border-subtle: #f1f5f9;    /* Slate 100 Border */
  --border-focus: #0284c7;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05), 0 1px 2px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);

  /* Typography */
  --font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --container-max: 1200px;
  --container-safe: min(var(--container-max), calc(100% - 32px));
  --header-height: 76px;
  --topbar-height: 40px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-full: 9999px;
  --transition-fast: 0.2s ease;
}

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

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

body {
  font-family: var(--font-system);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-main);
  overflow-x: hidden;
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Safe image constraints */
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   Layout Containers & Utilities
   -------------------------------------------------------------------------- */
.container {
  width: var(--container-safe);
  margin-inline: auto;
}

.section {
  padding-block: clamp(48px, 6vw, 84px);
  position: relative;
}

.section-subtle {
  background-color: var(--bg-subtle);
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-inverse);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(32px, 4vw, 52px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background-color: var(--primary-light);
  color: var(--primary);
  margin-bottom: 12px;
  width: fit-content;
}

.badge-accent {
  background-color: var(--accent-light);
  color: var(--accent);
}

.badge-dark {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
}

.section-title {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 12px;
}

.section-dark .section-title {
  color: var(--text-inverse);
}

.section-desc {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--text-muted);
  line-height: 1.6;
}

.section-dark .section-desc {
  color: var(--text-light);
}

/* --------------------------------------------------------------------------
   Buttons & Action Controls
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
  text-align: center;
  min-height: 46px;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

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

.btn-accent {
  background-color: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

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

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary-light);
  color: var(--primary-hover);
}

.btn-outline-white {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
  min-height: 38px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
  min-height: 50px;
}

.btn-full {
  width: 100%;
}

/* --------------------------------------------------------------------------
   1. Top Information Bar
   -------------------------------------------------------------------------- */
.topbar {
  background-color: var(--bg-topbar);
  color: var(--text-light);
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 40;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: var(--topbar-height);
  padding-block: 6px;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #cbd5e1;
}

.topbar-item a {
  color: #e2e8f0;
}

.topbar-item a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--accent);
}

.topbar-pill {
  background-color: rgba(2, 132, 199, 0.2);
  color: #7dd3fc;
  border: 1px solid rgba(2, 132, 199, 0.4);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   2. Main Header & Navigation
   -------------------------------------------------------------------------- */
.header {
  background-color: var(--bg-surface);
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 16px;
}

/* Brand Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.25);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.logo-subtitle {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Desktop Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 12px;
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background-color: var(--primary-light);
}

/* Header CTAs */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--primary);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.header-phone:hover {
  background-color: var(--primary-light);
}

.header-phone svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
}

/* Hamburger Toggle Button */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  color: var(--text-main);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.menu-toggle:hover {
  background-color: var(--bg-subtle);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
  stroke: var(--text-main);
}

/* Mobile Navigation Overlay */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 35, 44, 0.5);
  backdrop-filter: blur(2px);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 85vw);
  background-color: var(--bg-surface);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-close {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
}

.mobile-nav-close:hover {
  color: var(--text-main);
  background-color: var(--bg-subtle);
}

.mobile-nav-list {
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  border-radius: var(--radius-md);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background-color: var(--primary-light);
  color: var(--primary);
}

.mobile-nav-footer {
  margin-top: auto;
  padding: 20px;
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-phone-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   3. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  padding-block: clamp(36px, 5vw, 68px);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 2.875rem);
  font-weight: 800;
  line-height: 1.18;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--primary);
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  width: 100%;
}

.hero-keypoints {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.hero-keypoint-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
}

.hero-keypoint-item svg {
  width: 18px;
  height: 18px;
  stroke: #10b981;
  flex-shrink: 0;
}

/* Hero Visual / Card */
.hero-visual {
  position: relative;
}

.hero-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.hero-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background-color: var(--bg-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-service-row span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-service-row svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
}

.hero-card-cta {
  background-color: var(--primary-light);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
}

.hero-card-cta-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.hero-card-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   4. Services Grid Section
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}

.service-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.service-card-title {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  padding-top: 12px;
  border-top: 1px dashed var(--border-light);
}

.service-includes li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-main);
  font-weight: 500;
}

.service-includes svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  flex-shrink: 0;
}

.service-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-card-link:hover {
  color: var(--accent);
  gap: 7px;
}

/* --------------------------------------------------------------------------
   5. Why Choose Us Section
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.why-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
}

.why-content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.why-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   6. Service Areas (Miami & Neighborhoods)
   -------------------------------------------------------------------------- */
.areas-wrapper {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.areas-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 28px;
}

.areas-intro h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.areas-intro p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.area-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
}

.area-pill svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  flex-shrink: 0;
}

.areas-note {
  text-align: center;
  padding: 14px 20px;
  background-color: var(--primary-light);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.areas-note a {
  font-weight: 700;
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   7. Our Process Section
   -------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
}

.process-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.process-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.process-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.process-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   8. FAQ Section
   -------------------------------------------------------------------------- */
.faq-container {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  gap: 12px;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--primary);
  transition: transform 0.25s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 20px;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 18px;
  transition: max-height 0.35s ease-in-out;
}

/* --------------------------------------------------------------------------
   9. Contact / Quote Section
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.contact-info-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.contact-info-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.contact-info-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.55;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  background-color: var(--bg-subtle);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.contact-channel-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-channel-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
}

.contact-channel-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.contact-channel-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-main);
}

.contact-channel-value a {
  color: var(--primary);
}

.contact-channel-value a:hover {
  text-decoration: underline;
}

/* Contact Form */
.form-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.form-header {
  margin-bottom: 20px;
}

.form-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background-color: #ffffff;
  color: var(--text-main);
  font-size: 0.9375rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 77, 94, 0.12);
  outline: none;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-integration-note {
  margin-top: 14px;
  padding: 10px 14px;
  background-color: #f1f5f9;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
  border-left: 3px solid var(--primary);
}

.form-status {
  margin-top: 14px;
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  display: none;
}

.form-status.info {
  display: block;
  background-color: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(27, 77, 94, 0.2);
}

/* --------------------------------------------------------------------------
   10. Final Call to Action (CTA)
   -------------------------------------------------------------------------- */
.final-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding-block: clamp(48px, 6vw, 72px);
  text-align: center;
}

.final-cta-content {
  max-width: 680px;
  margin-inline: auto;
}

.final-cta-title {
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.final-cta-desc {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  margin-bottom: 28px;
  line-height: 1.6;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   11. Footer & Social Links
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--bg-dark);
  color: #94a3b8;
  padding-top: clamp(48px, 6vw, 64px);
  padding-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 44px);
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.125rem;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #94a3b8;
}

.footer-col-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

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

.footer-links a {
  color: #94a3b8;
  font-size: 0.875rem;
}

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

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.875rem;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #cbd5e1;
}

.footer-contact-row svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-row a {
  color: #ffffff;
}

.footer-contact-row a:hover {
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   SOCIAL LINKS SECTION (Easy To Edit In Code)
   -------------------------------------------------------------------------- */
.social-links-section {
  padding-block: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.social-header-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #cbd5e1;
  text-align: center;
  margin-bottom: 16px;
}

.social-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background-color: var(--bg-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: #e2e8f0;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.social-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.social-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Footer Bottom Bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8125rem;
  color: #64748b;
}

.footer-bottom a {
  color: #94a3b8;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   Floating Back To Top & Quick Phone Button
   -------------------------------------------------------------------------- */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 50;
}

.floating-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
  border: none;
}

.floating-call {
  background-color: var(--accent);
  color: #ffffff;
}

.floating-call:hover {
  background-color: var(--accent-hover);
  transform: scale(1.06);
}

.floating-call svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
}

.back-to-top {
  background-color: var(--primary);
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
}

/* Download ZIP Admin Toolbar Banner */
.zip-download-banner {
  background: linear-gradient(90deg, #0f172a, #1e293b);
  color: #ffffff;
  padding: 10px 16px;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
  gap: 8px;
}

.zip-download-banner .badge {
  background-color: #ffffff;
  color: var(--primary);
  margin-bottom: 0;
}

.zip-btn {
  background-color: var(--accent);
  color: #ffffff;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.zip-btn:hover {
  background-color: var(--accent-hover);
}

/* --------------------------------------------------------------------------
   RESPONSIVE DESIGN BREAKPOINTS
   Ensures perfection on:
   1920px, 1440px, 1366px, 1280px, 1200px, 1024px, 768px, 480px, 390px, 375px
   -------------------------------------------------------------------------- */

/* Large Tablets and Laptops under 1024px */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-visual {
    max-width: 540px;
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

/* Tablets under 768px */
@media (max-width: 768px) {
  .topbar {
    display: none; /* Clean mobile header without clutter */
  }

  .header-inner {
    height: 66px;
  }

  .header-actions .btn {
    display: none; /* Kept inside mobile drawer */
  }

  .header-phone {
    font-size: 0.8125rem;
    padding: 4px 8px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .final-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .final-cta-actions .btn {
    width: 100%;
  }
}

/* Small mobile devices under 480px / 390px / 375px */
@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }

  .section {
    padding-block: 40px;
  }

  .logo-title {
    font-size: 0.9375rem;
  }

  .logo-icon-wrapper {
    width: 32px;
    height: 32px;
  }

  .header-phone span {
    display: none; /* Show phone icon only on ultra-narrow */
  }

  .areas-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .area-pill {
    padding: 8px 10px;
    font-size: 0.8125rem;
  }

  .service-card {
    padding: 20px 16px;
  }

  .why-card {
    padding: 18px 16px;
  }

  .form-card, .contact-info-card {
    padding: 20px 16px;
  }

  .floating-actions {
    bottom: 16px;
    right: 16px;
  }
}
