/* ==========================================================================
   DESIGN SYSTEM VARIABLES
   ========================================================================== */
:root {
  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Colors */
  --color-primary: #0284c7;       /* Ocean Sky Blue */
  --color-primary-dark: #0369a1;  /* Deeper Blue */
  --color-primary-light: #e0f2fe; /* Light Ice Blue */
  --color-secondary: #0d9488;     /* Teal Accents */
  --color-secondary-dark: #0f766e;
  
  --color-bg-main: #fafaf9;       /* Soft Stone Warm White */
  --color-bg-card: rgba(255, 255, 255, 0.85); /* Glassmorphism Base */
  --color-border: #e7e5e4;        /* Light Grey Border */
  
  --color-text-main: #1c1917;     /* Soft Charcoal */
  --color-text-muted: #57534e;    /* Cool Grey */
  --color-text-light: #878680;
  --color-text-inverse: #ffffff;
  
  --color-success: #16a34a;       /* Clean Green */
  --color-error: #dc2626;         /* Clear Red */
  --color-warning: #ea580c;       /* Safety Orange */

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   BASE & RESET STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.topbar {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: var(--color-text-inverse);
  padding: 10px 0;
  font-size: 14px;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar p {
  margin: 0;
  font-weight: 500;
}

.phone-link {
  color: #38bdf8;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-heading);
  transition: var(--transition-fast);
}

.phone-link:hover {
  color: var(--color-text-inverse);
}

.badge-pill {
  background-color: var(--color-warning);
  color: var(--color-text-inverse);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(234, 88, 12, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(234, 88, 12, 0);
  }
}

.header {
  background-color: rgba(250, 250, 249, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
  transition: var(--transition-fast);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-text-main);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
}

.brand-badge {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-text-inverse);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition-fast);
}

.nav a:not(.nav-cta):hover {
  color: var(--color-primary);
}

.nav-cta {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
  color: var(--color-text-inverse) !important;
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  filter: brightness(1.1);
}

/* ==========================================================================
   HERO SECTION & GRID
   ========================================================================== */
.hero-section {
  padding: 60px 0;
  background: radial-gradient(circle at 80% 20%, rgba(224, 242, 254, 0.6) 0%, rgba(250, 250, 249, 0) 50%),
              radial-gradient(circle at 10% 80%, rgba(204, 251, 241, 0.4) 0%, rgba(250, 250, 249, 0) 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-info h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 2rem + 1.5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 20px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--color-primary-dark);
  background-color: var(--color-primary-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.hero-subtext {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

.hero-subtext strong {
  color: var(--color-text-main);
}

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.trust-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check-icon {
  background-color: #dcfce7;
  color: var(--color-success);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 14px;
}

.trust-list li strong {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.trust-list li p {
  font-size: 14px;
  color: var(--color-text-muted);
}

.hero-stats {
  display: flex;
  gap: 24px;
}

.stat-card {
  background-color: white;
  border: 1px solid var(--color-border);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  flex: 1;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-fast);
}

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

.stat-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: var(--color-primary-dark);
  margin-bottom: 4px;
}

.stat-card p {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 700;
}

/* ==========================================================================
   FOUNDING MEMBER BANNER
   ========================================================================== */
.founding-member-banner {
  max-width: 720px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-xl);
  text-align: left;
}

.founding-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.founding-member-banner h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--color-text-inverse);
}

.founding-member-banner > p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 18px;
}
.founding-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.founding-perks li {
  font-size: 14px;
  line-height: 1.5;
  padding-left: 26px;
  position: relative;
  opacity: 0.97;
}

.founding-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}

.form-hint {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: -6px;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* ==========================================================================
   FORM CONTAINER & FIELDS
   ========================================================================== */
.form-card {
  background-color: var(--color-bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.form-card-header {
  margin-bottom: 24px;
}

.form-kicker {
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-card-header h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  margin: 4px 0 8px 0;
}

.form-card-header p {
  font-size: 14px;
  color: var(--color-text-muted);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.label-hint {
  font-size: 11px;
  color: var(--color-text-light);
}

.required {
  color: var(--color-error);
}

.form-group input, 
.form-group select, 
.form-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-border);
  background-color: white;
  color: var(--color-text-main);
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.checkbox-group {
  margin-top: 6px;
}

.checkbox-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input {
  width: auto;
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-text {
  font-size: 11px;
  line-height: 1.4;
  color: var(--color-text-muted);
}

.submit-btn {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-text-inverse);
  border: none;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.05);
}

.submit-btn:disabled {
  background: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Spinner */
.btn-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Feedback messages */
.form-feedback {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
}

.form-feedback.success {
  background-color: #dcfce7;
  color: var(--color-success);
  border: 1px solid #bbf7d0;
}

.form-feedback.error {
  background-color: #fee2e2;
  color: var(--color-error);
  border: 1px solid #fecaca;
}

/* ==========================================================================
   SERVICES LIST
   ========================================================================== */
.services-section {
  padding: 100px 0;
  background-color: white;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.section-kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-secondary-dark);
  background-color: #ccfbf1;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--color-text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card-panel {
  background-color: var(--color-bg-main);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card-panel:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
  background-color: white;
}

.service-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.service-card-panel h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.service-card-panel p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary-dark);
  text-decoration: none;
  transition: var(--transition-fast);
}

.service-card-link:hover {
  color: var(--color-secondary-dark);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #fafaf9, #f5f5f4);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background-color: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 4px solid var(--color-primary);
  transition: var(--transition-fast);
}

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

.stars {
  color: #fbbf24; /* Warm Gold */
  font-size: 18px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-style: italic;
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #0f172a;
}

.author-location {
  font-size: 12px;
  color: var(--color-text-light);
  font-weight: 600;
}

/* ==========================================================================
   SERVICE AREA & MAP
   ========================================================================== */
.service-area-section {
  padding: 100px 0;
  background-color: white;
  border-top: 1px solid var(--color-border);
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.area-info h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: #0f172a;
  margin: 12px 0 16px 0;
}

.area-info p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.cities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}

.cities-grid strong {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #0f172a;
  display: block;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--color-primary-light);
  padding-bottom: 6px;
}

.cities-grid ul {
  list-style: none;
}

.cities-grid li {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.cities-grid li::before {
  content: '•';
  color: var(--color-primary);
  position: absolute;
  left: 0;
  font-weight: 800;
}

.quick-callout {
  display: flex;
  gap: 16px;
  background-color: var(--color-primary-light);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  align-items: flex-start;
}

.callout-icon {
  font-size: 24px;
}

.quick-callout h4 {
  font-family: var(--font-heading);
  color: var(--color-primary-dark);
  font-weight: 800;
  margin-bottom: 4px;
}

.quick-callout p {
  font-size: 13px;
  margin: 0;
}

.quick-callout a {
  color: var(--color-primary-dark);
  font-weight: 700;
  text-decoration: none;
}

.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid white;
}

.map-frame {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
  padding: 100px 0;
  background-color: var(--color-bg-main);
  border-top: 1px solid var(--color-border);
}

.faq-section .section-header {
  margin-bottom: 40px;
}

.faq-accordion {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.faq-item:hover {
  border-color: #cbd5e1;
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.faq-icon {
  font-size: 18px;
  color: var(--color-text-light);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--color-primary-dark);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out, padding var(--transition-normal) ease-out;
  padding: 0 24px;
}

.faq-item.active .faq-content {
  max-height: 300px; /* arbitrary height to slide down */
  padding-bottom: 20px;
}

.faq-content p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 80px 0 40px 0;
  border-top: 1px solid #1e293b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.footer-brand-col .brand {
  color: white;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-license {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
}

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

.footer-links-col li {
  margin-bottom: 10px;
}

.footer-links-col a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-fast);
}

.footer-links-col a:hover {
  color: white;
}

.footer-contact-col p {
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-contact-col strong {
  color: white;
}

.footer-contact-col a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
}

.emergency-tag {
  background-color: #7f1d1d;
  color: #fca5a5;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 30px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

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

.footer-bottom a:hover {
  color: white;
}

.opt-out {
  font-size: 11px;
  color: #64748b;
}

/* ==========================================================================
   MOBILE BAR & STICKY CTA
   ========================================================================== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: white;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.08);
  padding: 10px 16px;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mobile-btn {
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  padding: 12px 0;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition-fast);
}

.call-btn {
  background-color: var(--color-success);
  color: white;
}

.quote-btn {
  background-color: var(--color-primary);
  color: white;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-info {
    text-align: center;
  }
  
  .hero-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
  
  .trust-list {
    align-items: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .trust-list li {
    text-align: left;
  }

  .hero-stats {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .area-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  body {
    padding-bottom: 70px; /* Make space for sticky bar */
  }

  .nav {
    display: none; /* Hide header nav links on mobile */
  }

  .mobile-cta-bar {
    display: grid;
  }

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

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

@media (max-width: 480px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  
  .form-card {
    padding: 24px;
  }
}

/* ==========================================================================
   CONTRACTOR SIGNUP SECTION
   ========================================================================== */
.contractor-signup-section {
  padding: 100px 0;
  background-color: var(--color-bg-main);
  border-top: 1px solid var(--color-border);
}

.max-width-md {
  max-width: 680px;
  width: 100%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
