@font-face {
  font-family: "Montserrat";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-weight: 900;
  font-style: normal;
  src: url("../fonts/Montserrat-Black.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-display: swap;
}

/* ==========================================================================
   CSS Variables & Design Tokens
   ========================================================================== */

:root {
  /* Brand & Surfaces */
  --primary-600: #1E40AF;
  --primary-700: #1A3A9A;
  --accent-600: #F97316;
  --accent-700: #EA580C;

  --text-900: #0F172A;
  --text-700: #334155;
  --muted-600: #475569;

  --bg: #F6F8FB;
  --surface: #FFFFFF;
  --section-1: #EEF2F7;
  --section-2: #F0F5FF;
  --section-cta: #0B1220;
  --divider: rgba(15,23,42,0.06);

  --success-600: #16A34A;
  --warning-600: #F59E0B;
  --danger-600: #DC2626;

  /* Typography */
  --font-heading: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', 'Open Sans', sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-black: 900;

  /* Type Scale - Mobile First */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.5rem;
  --text-2xl: 1.875rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;

  /* Spacing */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 2.5rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-10: 5rem;
  --space-12: 6rem;

  /* Borders & Shadows */
  --border-radius: 14px;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 6px 20px rgba(2,6,23,0.06);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  color: var(--text-700);
  background-color: var(--bg);
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--space-2);
  color: var(--text-900);
}

h1 {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-black);
}

h2 {
  font-size: var(--text-2xl);
}

h3 {
  font-size: var(--text-xl);
}

p {
  margin-bottom: var(--space-2);
}

a {
  color: var(--primary-600);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-600);
}

/* ==========================================================================
   Layout Components
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-2);
}

.section {
  padding: var(--space-6) 0;
}

.section--tint-1 {
  background: var(--section-1);
}

.section--tint-2 {
  background: var(--section-2);
}

.section--inverse {
  background: var(--section-cta);
  color: var(--surface);
}

.section--inverse a {
  color: var(--surface);
}

.card {
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  padding: var(--space-4);
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: var(--text-sm);
  color: var(--accent-600);
}

.muted {
  color: var(--muted-600);
}

.measure {
  max-width: 64ch;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) 0;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-black);
  color: var(--text-900);
}

.header-cta {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.phone-link {
  color: var(--accent-600);
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.main-navigation {
  display: none;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: var(--text-2xl);
  cursor: pointer;
  padding: var(--space-1);
}

@media (min-width: 768px) {
  .main-navigation {
    display: block;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-4);
  }
  
  .nav-menu a {
    color: var(--text-900);
    font-weight: var(--font-weight-medium);
    padding: var(--space-1) 0;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  background: linear-gradient(135deg, var(--section-1) 0%, var(--surface) 100%);
  padding: var(--space-8) 0;
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-2);
  color: var(--text-900);
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--text-700);
  margin-bottom: var(--space-3);
}

.hero-city {
  color: var(--primary-600);
  font-weight: var(--font-weight-bold);
}

.hero-reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  margin-bottom: var(--space-3);
  color: var(--accent-600);
}

/* ==========================================================================
   Forms
   ========================================================================== */

.quote-form {
  background: var(--surface);
  border-radius: var(--border-radius);
  padding: var(--space-3);
  box-shadow: var(--shadow-md);
  max-width: 400px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-3);
}

.form-label {
  display: block;
  margin-bottom: var(--space-1);
  font-weight: var(--font-weight-medium);
  color: var(--text-900);
}

.form-input {
  width: 100%;
  padding: var(--space-2);
  border: 2px solid var(--divider);
  border-radius: var(--border-radius);
  font-size: var(--text-base);
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-600);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--border-radius);
  font-weight: var(--font-weight-bold);
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: var(--text-base);
}


.btn-primary {
  background: var(--accent-600);
  color: var(--surface);
  box-shadow: 0 4px 6px rgba(249, 115, 22, 0.2);
}

.btn-primary:hover {
  background: var(--accent-700);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(249, 115, 22, 0.3);
  color: var(--surface);
}

.btn-secondary {
  background: var(--primary-600);
  color: var(--surface);
}

.btn-secondary:hover {
  background: var(--primary-700);
  color: var(--surface);
}

.btn-block {
  display: block;
  width: 100%;
}

/* ==========================================================================
   Trust Indicators
   ========================================================================== */

.trust-bar {
  background: var(--surface);
  padding: var(--space-4) 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.trust-number {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-black);
  color: var(--primary-600);
}

.trust-label {
  font-size: var(--text-sm);
  color: var(--muted-600);
}

@media (min-width: 768px) {
  .trust-items {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   Service Cards
   ========================================================================== */

.services {
  padding: var(--space-8) 0;
  background: var(--section-1);
}

.services-grid {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.service-card {
  background: var(--surface);
  border-radius: var(--border-radius);
  padding: var(--space-4);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-2);
}

.service-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.service-description {
  color: var(--text-700);
  margin-bottom: var(--space-3);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--section-cta);
  color: var(--surface);
  padding: var(--space-6) 0 var(--space-4);
}

.footer-content {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.footer-brand {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-2);
}

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

.footer-links a {
  color: var(--surface);
  padding: var(--space-1) 0;
  display: inline-block;
  opacity: 0.8;
}

.footer-links a:hover {
  color: var(--accent-600);
  opacity: 1;
}

.footer-bottom {
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.7);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   Mobile CTA Bar & Text Photo Button
   ========================================================================== */

.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: var(--space-1);
  background: var(--surface);
  padding: var(--space-2);
  box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
  z-index: 999;
}

.mobile-cta-bar .btn {
  flex: 1;
  font-size: var(--text-sm);
  padding: var(--space-2);
}

body.has-mobile-cta {
  padding-bottom: 80px;
}

.floating-text-photo {
  position: fixed;
  bottom: 90px;
  right: var(--space-4);
  background: var(--accent-600);
  color: var(--surface);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
  font-size: var(--text-lg);
}

.floating-text-photo:hover {
  background: var(--accent-700);
}

@media (min-width: 992px) {
  .mobile-cta-bar,
  .floating-text-photo {
    display: none;
  }
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: var(--space-4);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}