/* ===================================
   Local Boost Labs - Main Stylesheet
   SEO Agency for HVAC Businesses
   Enhanced Visual Design
   =================================== */

/* CSS Variables */
:root {
  --primary-color: #1e40af;
  --primary-dark: #1e3a8a;
  --primary-light: #3b82f6;
  --secondary-color: #f97316;
  --secondary-dark: #ea580c;
  --secondary-light: #fb923c;
  --accent-color: #10b981;
  --accent-light: #34d399;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --text-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-dark: #0f172a;
  --bg-gradient: linear-gradient(135deg, #1e40af 0%, #0f172a 100%);
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(249, 115, 22, 0.3);
  --shadow-blue-glow: 0 0 40px rgba(30, 64, 175, 0.3);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  color: var(--secondary-color);
}

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h1 { font-size: 3rem; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; letter-spacing: -0.02em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
  color: var(--text-white);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(30, 64, 175, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.5);
  color: var(--text-white);
}

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
  transform: translateY(-3px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.98);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--secondary-color);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  transition: var(--transition);
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  min-width: 280px;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  color: var(--text-dark);
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
  color: var(--primary-color);
}

.header-cta {
  display: none;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 10rem 0 6rem;
  background: var(--bg-gradient);
  color: var(--text-white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

/* Animated Background Elements */
.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

/* Hero Decorative HVAC Icons */
.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.15);
}

.hero-icon-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 5%;
  animation: floatIcon 12s ease-in-out infinite;
}

.hero-icon-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  left: 10%;
  animation: floatIcon 15s ease-in-out infinite reverse;
}

.hero-icon-3 {
  width: 180px;
  height: 180px;
  top: 20%;
  right: 3%;
  animation: floatIcon 10s ease-in-out infinite;
}

.hero-icon-4 {
  width: 120px;
  height: 120px;
  bottom: 15%;
  right: 8%;
  animation: floatIcon 14s ease-in-out infinite reverse;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
    opacity: 0.15;
  }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.1));
  border: 1px solid rgba(249, 115, 22, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary-light);
  margin-bottom: 1.5rem;
  animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge svg {
  fill: var(--secondary-color);
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(249, 115, 22, 0);
  }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-benefit svg {
  width: 28px;
  height: 28px;
  fill: var(--accent-color);
  flex-shrink: 0;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.trust-badge:hover::before {
  opacity: 1;
}

.trust-badge:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(249, 115, 22, 0.2);
}

.trust-badge-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ea580c 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    0 6px 16px rgba(249, 115, 22, 0.4),
    0 0 0 3px rgba(249, 115, 22, 0.15);
  position: relative;
  z-index: 1;
}

.trust-badge-icon::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 10px 10px 50% 50%;
}

.trust-badge-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
  position: relative;
  z-index: 1;
}

.trust-badge-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  position: relative;
  z-index: 1;
}

.trust-badge-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.trust-badge-value {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  fill: var(--secondary-color);
}

/* Lead Form */
.lead-form-wrapper {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
}

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

.lead-form-wrapper h3 {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.lead-form-wrapper .form-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
}

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

.form-error {
  color: #dc2626;
  font-size: 0.75rem;
  display: none;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #dc2626;
}

.form-group.error .form-error {
  display: block;
}

.lead-form .btn {
  width: 100%;
  padding: 1.125rem;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
}

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

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  border-radius: 2px;
}

.section-header p {
  font-size: 1.125rem;
  margin-top: 1.5rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

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

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.service-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--text-white);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.375rem;
}

.service-card p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-card a.btn {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Cities Grid */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.city-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.city-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
  opacity: 0;
  transition: var(--transition);
}

.city-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.city-card:hover::before {
  opacity: 1;
}

.city-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  position: relative;
  z-index: 1;
}

.city-card p {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.city-card .btn {
  position: relative;
  z-index: 1;
}

.city-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.city-card-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--text-white);
}

.city-card:hover .city-card-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

.benefits-content h2 {
  margin-bottom: 1.5rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.benefit-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.benefit-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(16, 185, 129, 0.3);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--text-white);
}

.benefit-text h4 {
  margin-bottom: 0.5rem;
}

.benefit-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.benefits-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  position: relative;
}

.benefits-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
  z-index: 1;
}

.benefits-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  background-color: var(--bg-light);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: var(--transition);
}

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

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--border-color);
  line-height: 1;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  gap: 0.25rem;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: #fbbf24;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.testimonial-info p {
  margin-bottom: 0;
  font-size: 0.875rem;
}

/* Detailed Testimonial for Service Pages */
.testimonial-detailed {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin-bottom: 2rem;
  border-left: 5px solid var(--secondary-color);
}

.testimonial-detailed .testimonial-content {
  position: relative;
}

.testimonial-detailed .quote-icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.1;
}

.testimonial-detailed blockquote {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-left: 3.5rem;
}

.testimonial-detailed .testimonial-author {
  padding-left: 3.5rem;
}

.testimonial-detailed .testimonial-author strong {
  display: block;
  color: var(--text-dark);
  font-size: 1rem;
}

.testimonial-detailed .testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.testimonial-metrics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 2rem;
  border-left: 1px solid var(--border-color);
}

.testimonial-metrics .metric {
  text-align: center;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  min-width: 120px;
}

.testimonial-metrics .metric-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
}

.testimonial-metrics .metric-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
  padding: 5rem 0;
  text-align: center;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-section h2 {
  color: var(--text-white);
  margin-bottom: 1rem;
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-section .btn-primary {
  background: var(--text-white);
  color: var(--secondary-color);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
  background: var(--bg-light);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-outline {
  border-color: var(--text-white);
  color: var(--text-white);
}

.cta-section .btn-outline:hover {
  background-color: var(--text-white);
  color: var(--secondary-color);
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 1.5rem;
  text-align: center;
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.stat-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--secondary-color);
}

.stat-item:hover .stat-icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.2);
}

.stat-item h3 {
  font-size: 3.5rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 0;
}

/* Page Hero */
.page-hero {
  padding: 12rem 0 5rem;
  background: var(--bg-gradient);
  color: var(--text-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 30% 70%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
}

.page-hero h1 {
  color: var(--text-white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1.25rem 0;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.breadcrumbs-list a {
  color: var(--text-light);
  transition: var(--transition);
}

.breadcrumbs-list a:hover {
  color: var(--primary-color);
}

.breadcrumbs-list span {
  color: var(--text-light);
}

.breadcrumbs-list .current {
  color: var(--text-dark);
  font-weight: 600;
}

/* About Content */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  background-color: var(--bg-light);
}

/* Service Hero */
.service-hero {
  padding: 12rem 0 5rem;
  background: var(--bg-gradient);
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.service-hero-content h1 {
  color: var(--text-white);
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.service-hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 2rem 1rem;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -50%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0.3;
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.process-step h3 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

/* Features List */
.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.feature-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.feature-item svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  fill: var(--accent-color);
}

.feature-item h4 {
  margin-bottom: 0.5rem;
}

.feature-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* City Hero */
.city-hero {
  padding: 12rem 0 5rem;
  background: var(--bg-gradient);
}

.city-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.city-stat {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.city-stat h4 {
  color: var(--text-white);
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.city-stat p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Local Services */
.local-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.local-service-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--secondary-color);
  transition: var(--transition);
}

.local-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
}

.local-service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.375rem;
}

.local-service-card > p {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.local-service-card ul {
  margin-bottom: 1.75rem;
}

.local-service-card li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.local-service-card li::before {
  content: '✓';
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1rem;
}

/* Service Area Map */
.service-area-section {
  background-color: var(--bg-light);
}

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

.service-area-map {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.map-placeholder {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, var(--bg-light) 0%, rgba(30, 64, 175, 0.05) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: 500;
}

.service-area-cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.area-city {
  padding: 0.875rem 1.25rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}

.area-city:hover {
  background: var(--border-color);
}

.area-city.primary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
  color: var(--text-white);
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 15px rgba(30, 64, 175, 0.3);
}

.contact-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--text-white);
}

.contact-item h4 {
  margin-bottom: 0.25rem;
}

.contact-item p {
  margin-bottom: 0;
}

.contact-form-wrapper {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
}

/* FAQ Section */
.faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.faq-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  padding: 1.5rem 1.75rem;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question svg {
  width: 22px;
  height: 22px;
  fill: var(--text-light);
  transition: var(--transition);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  fill: var(--secondary-color);
}

.faq-answer {
  padding: 0 1.75rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  padding: 0 1.75rem 1.75rem;
  max-height: 600px;
}

/* ===================================
   About Page Styles
   E-E-A-T & Trust Signals
   =================================== */

/* About Hero */
.about-hero {
  background: var(--bg-gradient);
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-white);
}

.about-hero h1 {
  font-size: 3rem;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-hero .text-gradient {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero .hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* Hero Trust Stats */
.hero-trust-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.trust-stat {
  text-align: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 140px;
}

.trust-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.trust-stat:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.2),
    0 0 20px rgba(249, 115, 22, 0.2);
}

.trust-stat:hover::before {
  opacity: 1;
}

.trust-stat-value {
  display: block;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 0.625rem;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.trust-stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* Awards Banner - Why Choose Us */
.awards-banner {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 3rem 0;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

.awards-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.awards-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}

.awards-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.5rem 1.25rem;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: var(--radius-full);
}

.awards-logos {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.award-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.award-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.award-logo:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(249, 115, 22, 0.2);
}

.award-logo:hover::before {
  opacity: 1;
}

.award-logo-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ea580c 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 16px rgba(249, 115, 22, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.award-logo-icon::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 3px;
  right: 3px;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 10px 10px 50% 50%;
}

.award-logo-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.award-logo-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  position: relative;
  z-index: 1;
}

.award-logo-value {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.award-logo-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.award-svg {
  display: none;
}

/* Section Label */
.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

/* Story Section */
.story-section {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

.story-content .lead-text {
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.story-highlight {
  background: linear-gradient(135deg, #fef3e2, #fff7ed);
  border-left: 4px solid var(--secondary-color);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.story-highlight svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.story-highlight blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin: 0;
}

.story-highlight cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Timeline */
.story-timeline {
  position: relative;
  padding-left: 2rem;
}

.story-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.25rem;
  width: 14px;
  height: 14px;
  background: var(--bg-white);
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  transform: translateX(-5.5px);
}

.timeline-year {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.25rem;
}

.timeline-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* Featured In Section */
.featured-in-section {
  background: #f8fafc;
}

.featured-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.featured-logo {
  opacity: 0.5;
  transition: var(--transition);
}

.featured-logo:hover {
  opacity: 1;
}

.publication-logo {
  width: 140px;
  height: 45px;
  color: var(--text-dark);
}

/* Two Column Grid */
.two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.column-content h2 {
  margin-bottom: 1.5rem;
}

/* Check List */
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.check-list li svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.check-list li span {
  color: var(--text-dark);
}

/* Big Stat Cards */
.column-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.big-stat-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.big-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.big-stat-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
}

.big-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.big-stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.big-stat-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* Team Section */
.team-section {
  background: var(--bg-white);
}

/* Founder Spotlight */
.founder-spotlight {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: var(--radius-xl);
  padding: 3rem;
  margin-bottom: 4rem;
  border: 1px solid var(--border-color);
}

.founder-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.founder-photo-placeholder {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--bg-white);
}

.founder-photo-placeholder svg {
  color: var(--text-white);
}

.founder-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--bg-white);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.credential-badge {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.credential-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(249, 115, 22, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.credential-badge:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 20px rgba(249, 115, 22, 0.15),
    0 4px 8px rgba(0, 0, 0, 0.08);
  border-color: rgba(249, 115, 22, 0.3);
}

.credential-badge:hover::before {
  opacity: 1;
}

.credential-badge-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ea580c 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 12px rgba(249, 115, 22, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  flex-shrink: 0;
}

.credential-badge-icon::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 3px;
  right: 3px;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), transparent);
  border-radius: 8px 8px 50% 50%;
}

.credential-badge-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.credential-badge svg {
  color: var(--accent-color);
}

.credential-badge-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  position: relative;
  z-index: 1;
}

.credential-badge-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary-color);
  font-weight: 700;
}

.credential-badge-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.founder-bio h3 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.founder-title {
  font-size: 1rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1.5rem !important;
}

.founder-bio p {
  margin-bottom: 1rem;
}

.founder-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-member {
  text-align: center;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.member-photo-placeholder {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-member h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.member-role {
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.25rem !important;
}

.member-exp {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}

/* Results Section */
.results-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--bg-dark));
}

.results-section .section-header h2,
.results-section .section-header p,
.results-section .section-label {
  color: var(--text-white);
}

.results-section .section-label {
  color: var(--secondary-color);
}

.results-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

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

.result-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.result-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  padding: 1.5rem;
}

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

.metric-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.metric-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.result-testimonial {
  padding: 1.5rem;
}

.result-testimonial .testimonial-stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 1rem;
}

.result-testimonial blockquote {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0 0 1rem 0;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-weight: 700;
  font-size: 0.9rem;
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Values Section */
.values-section {
  background: #f8fafc;
}

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

.value-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* Certifications Section */
.certifications-section {
  background: var(--bg-white);
}

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

.certification-card {
  text-align: center;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.certification-card:hover {
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.cert-icon {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.certification-card h4 {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.certification-card p {
  font-size: 0.75rem;
  color: var(--text-light);
  margin: 0;
}

/* CTA Form Section */
.cta-form-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--bg-dark));
  padding: 5rem 0;
}

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

.cta-content {
  color: var(--text-white);
}

.cta-content .section-label {
  color: var(--secondary-color);
}

.cta-content h2 {
  color: var(--text-white);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-content > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-white);
}

/* Trust Proof */
.trust-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

.trust-avatars {
  display: flex;
}

.trust-avatars .avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-weight: 700;
  font-size: 0.75rem;
  margin-left: -10px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.trust-avatars .avatar:first-child {
  margin-left: 0;
}

.trust-proof p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin: 0;
}

/* Button Full Width */
.btn-full {
  width: 100%;
}

/* Form Disclaimer */
.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
}

/* Footer Awards */
.footer-awards {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.footer-award {
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.8);
}

/* About Page Responsive */
@media (max-width: 1024px) {
  .story-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .two-column-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .founder-spotlight {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-credentials {
    align-items: center;
  }

  .founder-social {
    justify-content: center;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .certifications-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-form-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 8rem 0 4rem;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .hero-trust-stats {
    gap: 1rem;
  }

  .trust-stat {
    padding: 1.25rem 1.5rem;
    min-width: 120px;
  }

  .trust-stat-value {
    font-size: 2rem;
  }

  .trust-stat-label {
    font-size: 0.7rem;
  }

  .credential-badge {
    padding: 0.75rem 1rem;
  }

  .credential-badge-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .credential-badge-icon svg {
    width: 16px;
    height: 16px;
  }

  .credential-badge-value {
    font-size: 0.85rem;
  }

  .awards-banner-inner {
    flex-direction: column;
    gap: 1.25rem;
  }

  .awards-logos {
    gap: 0.875rem;
  }

  .award-logo {
    padding: 0.875rem 1.25rem;
    gap: 0.75rem;
  }

  .award-logo-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .award-logo-icon svg {
    width: 18px;
    height: 18px;
  }

  .award-logo-value {
    font-size: 0.9rem;
  }

  .award-logo-label {
    font-size: 0.65rem;
  }

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

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

  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-content h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero-trust-stats {
    flex-direction: column;
    gap: 0.875rem;
    align-items: center;
  }

  .trust-stat {
    width: 100%;
    max-width: 200px;
    padding: 1rem 1.25rem;
  }

  .trust-stat-value {
    font-size: 1.75rem;
  }

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

  .founder-photo-placeholder {
    width: 150px;
    height: 150px;
  }

  .founder-photo {
    width: 150px;
    height: 150px;
  }

  .credential-badge {
    padding: 0.625rem 0.875rem;
    gap: 0.625rem;
  }

  .credential-badge-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 8px;
  }

  .credential-badge-icon svg {
    width: 14px;
    height: 14px;
  }

  .credential-badge-label {
    font-size: 0.6rem;
  }

  .credential-badge-value {
    font-size: 0.8rem;
  }

  .awards-logos {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .award-logo {
    width: 100%;
    max-width: 280px;
    padding: 0.75rem 1rem;
  }

  .award-logo-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 10px;
  }

  .award-logo-icon svg {
    width: 16px;
    height: 16px;
  }

  .award-logo-value {
    font-size: 0.85rem;
  }

  .award-logo-label {
    font-size: 0.6rem;
  }
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 5rem 0 2rem;
  position: relative;
}

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

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

.footer-brand .logo {
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 22px;
  height: 22px;
  fill: var(--text-white);
}

.footer-column h4 {
  color: var(--text-white);
  margin-bottom: 1.75rem;
  font-size: 1.125rem;
  position: relative;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  fill: var(--secondary-color);
  flex-shrink: 0;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
  font-size: 0.9rem;
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Content Sections */
.content-section {
  max-width: 900px;
}

.content-section h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 1rem;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  border-radius: 2px;
}

.content-section h3 {
  font-size: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.content-section h4 {
  font-size: 1.125rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.content-section p {
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.content-section a {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(30, 64, 175, 0.3);
}

.content-section a:hover {
  color: var(--secondary-color);
  text-decoration-color: var(--secondary-color);
}

.content-section ul {
  margin: 1.75rem 0;
  padding-left: 0;
}

.content-section ul li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-dark);
  list-style: none;
}

.content-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 8px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 50%;
}

.content-section ul li strong {
  color: var(--text-dark);
}

/* Stats Highlight Boxes */
.stats-highlight {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.stat-box {
  background: var(--bg-white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--secondary-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.03) 0%, rgba(30, 64, 175, 0.03) 100%);
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
}

.stat-number {
  display: block;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

/* Info Box */
.info-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--primary-color);
  margin: 2rem 0;
}

.info-box .info-icon {
  flex-shrink: 0;
}

.info-box .info-icon svg {
  width: 48px;
  height: 48px;
}

.info-box .info-content h4 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  font-size: 1.25rem;
}

.info-box .info-content p {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

/* Keyword List */
.keyword-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 2.5rem;
}

.keyword-group {
  background: var(--bg-white);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.keyword-group h4 {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-color);
}

.keyword-group ul {
  margin: 0;
  padding: 0;
}

.keyword-group ul li {
  padding: 0.5rem 0 0.5rem 1rem;
  font-family: 'Monaco', 'Consolas', monospace;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--bg-light);
  margin-bottom: 0.5rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--secondary-color);
}

.keyword-group ul li::before {
  display: none;
}

/* Process Detailed Section */
.process-detailed {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.process-step-detailed {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.process-step-detailed:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateX(5px);
}

.process-step-detailed .step-number {
  width: 90px;
  height: 90px;
  font-size: 2.25rem;
  margin: 0;
  flex-shrink: 0;
}

.step-content {
  display: flex;
  flex-direction: column;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 0;
  color: var(--text-dark);
}

.step-content h4 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  font-weight: 600;
}

.step-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.step-content ul {
  margin: 0.75rem 0 1rem;
  padding-left: 0;
}

.step-content ul li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-light);
  position: relative;
}

.step-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 6px;
  height: 6px;
  background: var(--secondary-color);
  border-radius: 50%;
}

.step-content ul li strong {
  color: var(--text-dark);
}

.step-content a {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.step-content a:hover {
  color: var(--secondary-color);
}

/* Subdivision/Platform Grid */
.subdivision-grid,
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.subdivision-card,
.platform-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.subdivision-card:hover,
.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.subdivision-card h3,
.platform-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.subdivision-card p,
.platform-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.subdivision-card p:first-of-type,
.platform-card p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.platform-card .platform-icon {
  margin-bottom: 1.25rem;
}

.platform-card .platform-icon svg {
  width: 48px;
  height: 48px;
}

/* Services Keyword Grid */
.services-keyword-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-keyword-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}

.service-keyword-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.service-keyword-card .service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  background: none;
  box-shadow: none;
}

.service-keyword-card .service-icon svg {
  width: 50px;
  height: 50px;
}

.service-keyword-card h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.service-keyword-card ul {
  margin: 0;
  padding: 0;
  text-align: left;
}

.service-keyword-card ul li {
  padding: 0.375rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
  list-style: none;
}

.service-keyword-card ul li::before {
  display: none;
}

/* Mobile Styles */
@media (max-width: 1024px) {
  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-highlight {
    grid-template-columns: repeat(2, 1fr);
  }

  .keyword-list {
    grid-template-columns: 1fr;
  }

  .subdivision-grid,
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-keyword-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-detailed {
    grid-template-columns: 1fr;
  }

  .testimonial-metrics {
    flex-direction: row;
    border-left: none;
    border-top: 1px solid var(--border-color);
    padding-left: 0;
    padding-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }

  .container {
    padding: 0 1.25rem;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow-xl);
    transform: translateX(-100%);
    transition: var(--transition);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 1rem;
    max-height: 0;
    overflow: hidden;
    border: none;
  }

  .nav-dropdown.active .dropdown-menu {
    max-height: 500px;
  }

  .header-cta {
    display: inline-block;
  }

  .hero {
    padding: 8rem 0 4rem;
  }

  .hero-container,
  .service-hero-grid,
  .about-grid,
  .benefits-grid,
  .contact-grid,
  .service-area-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .lead-form-wrapper {
    margin-top: 2rem;
  }

  .services-grid,
  .testimonials-grid,
  .features-list,
  .local-services-grid {
    grid-template-columns: 1fr;
  }

  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .city-stats {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .stats-highlight {
    grid-template-columns: 1fr;
  }

  .process-step-detailed {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .process-step-detailed .step-number {
    margin: 0 auto 1rem;
  }

  .step-content {
    text-align: left;
  }

  .content-section p,
  .content-section ul li {
    font-size: 1rem;
  }

  .content-section h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .subdivision-grid,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .services-keyword-grid {
    grid-template-columns: 1fr;
  }

  .info-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

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

  .trust-badges {
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .testimonial-metrics {
    flex-direction: column;
  }

  .testimonial-metrics .metric {
    min-width: auto;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-white { color: var(--text-white); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* HVAC Icon Styles */
.hvac-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hvac-icon svg {
  width: 100%;
  height: 100%;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animated Gradient Border */
.gradient-border {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 3px;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color), var(--accent-color));
}

.gradient-border > * {
  background: var(--bg-white);
  border-radius: calc(var(--radius-xl) - 3px);
}

/* Glass Effect */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===================================
   Before/After Comparison Section
   =================================== */

.transformation-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.before-after-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-top: 3rem;
}

.comparison-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition: var(--transition);
}

.comparison-card:hover {
  transform: translateY(-5px);
}

.before-card {
  border: 2px solid #ef4444;
}

.after-card {
  border: 2px solid #10b981;
}

.comparison-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-label.success {
  background: linear-gradient(135deg, #10b981, #059669);
}

/* Mock Google Search */
.mock-google-search {
  padding: 1.5rem;
}

.mock-search-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #f1f3f4;
  border-radius: 24px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.mock-search-icon {
  display: flex;
}

.mock-map-pack {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.mock-map {
  background: #e5e7eb;
}

.mock-map .map-svg {
  width: 100%;
  height: 100%;
  min-height: 180px;
}

.mock-listings {
  padding: 0.75rem;
}

.mock-listing {
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.mock-listing:last-child {
  margin-bottom: 0;
}

.mock-listing.highlighted {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05));
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.mock-listing.competitor {
  opacity: 0.7;
}

.listing-rank {
  width: 24px;
  height: 24px;
  background: #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #6b7280;
  flex-shrink: 0;
}

.listing-rank.winner {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
}

.listing-info {
  flex: 1;
  min-width: 0;
}

.listing-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: #1a0dab;
  margin-bottom: 0.125rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.listing-name.highlight {
  color: #f97316;
}

.listing-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
}

.listing-rating .stars {
  color: #fbbf24;
}

.listing-rating .stars.gold {
  color: #f97316;
}

.listing-rating .count {
  color: #6b7280;
}

.listing-meta {
  font-size: 0.7rem;
  color: #6b7280;
  margin-top: 0.125rem;
}

.listing-extras {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.25rem;
}

.extra-badge {
  font-size: 0.6rem;
  padding: 0.125rem 0.375rem;
  background: #dbeafe;
  color: #1d4ed8;
  border-radius: 4px;
  font-weight: 500;
}

.your-position {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  margin-top: 1rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
}

.your-position.not-visible {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.your-position.visible {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
}

/* Comparison Stats */
.comparison-stats {
  padding: 1.5rem;
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-label {
  font-size: 0.85rem;
  color: #6b7280;
}

.stat-value {
  font-weight: 700;
  font-size: 0.9rem;
}

.stat-value.bad {
  color: #dc2626;
}

.stat-value.good {
  color: #059669;
}

.stat-value .increase {
  font-size: 0.75rem;
  color: #10b981;
  margin-left: 0.25rem;
}

/* Transformation Arrow */
.transformation-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: var(--radius-xl);
  color: white;
  text-align: center;
}

.arrow-content svg {
  margin-bottom: 0.5rem;
}

.arrow-content span {
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
}

.arrow-timeline {
  margin-top: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Impact Metrics */
.impact-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.impact-metric {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.impact-metric:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.impact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-icon svg {
  fill: white;
}

.impact-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.impact-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ===================================
   Geo-Grid Ranking Visualization
   Local Falcon / Rankings.io Style
   =================================== */

.geo-grid-container {
  padding: 1.5rem;
}

.geo-grid-header {
  text-align: center;
  margin-bottom: 1rem;
}

.geo-grid-title {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.geo-grid-subtitle {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
}

.geo-grid-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  max-width: 320px;
  margin: 0 auto;
}

.geo-grid-map .map-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.geo-grid-map .map-streets {
  width: 100%;
  height: 100%;
}

.geo-grid-map.before .map-background svg rect {
  fill: #f3e8e8;
}

.geo-grid-map.after .map-background svg rect {
  fill: #e8f4e8;
}

/* Pin Grid - 7x7 layout */
.pin-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  padding: 12px;
  height: 100%;
}

.rank-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: var(--transition-fast);
  cursor: default;
}

.rank-pin:hover {
  transform: scale(1.15);
  z-index: 10;
}

/* Pin Colors based on ranking position */
.rank-pin.green {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.5);
}

.rank-pin.yellow {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.5);
}

.rank-pin.orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.5);
}

.rank-pin.red {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5);
}

/* Center pin (business location) */
.rank-pin.center-pin {
  border: 3px solid white;
  box-shadow: 0 0 0 2px currentColor, 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: pulse-ring 2s infinite;
}

.before .rank-pin.center-pin {
  box-shadow: 0 0 0 2px #f59e0b, 0 4px 12px rgba(0, 0, 0, 0.3);
}

.after .rank-pin.center-pin {
  box-shadow: 0 0 0 2px #10b981, 0 4px 12px rgba(0, 0, 0, 0.3);
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 2px currentColor, 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 0 4px currentColor, 0 4px 16px rgba(0, 0, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 0 2px currentColor, 0 4px 12px rgba(0, 0, 0, 0.3);
  }
}

/* Business Marker (optional overlay) */
.business-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
  display: none; /* Hidden since we use center-pin styling */
}

/* Geo Grid Legend */
.geo-grid-legend {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: var(--radius-md);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 500;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.legend-color.green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.legend-color.yellow {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.legend-color.orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.legend-color.red {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Geo Grid Stats */
.geo-grid-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: var(--radius-md);
}

.geo-grid-stats.bad {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border: 1px solid #fecaca;
}

.geo-grid-stats.good {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #a7f3d0;
}

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

.grid-stat-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.geo-grid-stats.bad .grid-stat-value {
  color: #dc2626;
}

.geo-grid-stats.good .grid-stat-value {
  color: #059669;
}

.grid-stat-label {
  display: block;
  font-size: 0.65rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Responsive Geo Grid */
@media (max-width: 768px) {
  .geo-grid-map {
    max-width: 280px;
  }

  .pin-grid {
    gap: 3px;
    padding: 8px;
  }

  .rank-pin {
    font-size: 0.55rem;
  }

  .geo-grid-legend {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .legend-item {
    font-size: 0.65rem;
  }

  .grid-stat-value {
    font-size: 1rem;
  }

  .grid-stat-label {
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .geo-grid-map {
    max-width: 240px;
  }

  .rank-pin {
    font-size: 0.5rem;
  }

  .geo-grid-stats {
    padding: 0.75rem;
  }
}

/* Responsive for Before/After */
@media (max-width: 1024px) {
  .before-after-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .transformation-arrow {
    transform: rotate(90deg);
    padding: 1rem 0;
  }

  .mock-map-pack {
    grid-template-columns: 1fr;
  }

  .mock-map {
    height: 100px;
  }

  .impact-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .impact-metrics {
    grid-template-columns: 1fr;
  }

  .impact-value {
    font-size: 2rem;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .lead-form-wrapper {
    display: none;
  }

  .hero,
  .service-hero,
  .page-hero,
  .city-hero {
    padding: 2rem 0;
    background: none;
    color: var(--text-dark);
  }

  .section {
    padding: 2rem 0;
  }
}

/* ===================================
   DESIGN ENHANCEMENTS - HVAC Theme
   Professional Modern Aesthetic
   =================================== */

/* Enhanced Color Variables */
:root {
  --gradient-hero: linear-gradient(135deg, #0c1929 0%, #1e3a5f 50%, #1e40af 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  --gradient-accent: linear-gradient(135deg, #f97316 0%, #fb923c 50%, #fbbf24 100%);
  --gradient-cool: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  --gradient-warm: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --shadow-colored: 0 20px 40px -12px rgba(30, 64, 175, 0.25);
  --shadow-orange: 0 20px 40px -12px rgba(249, 115, 22, 0.3);
  --shadow-glow-sm: 0 0 20px rgba(249, 115, 22, 0.2);
}

/* HVAC Background Pattern */
.hvac-pattern {
  position: relative;
}

.hvac-pattern::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5v50M5 30h50M15 15l30 30M45 15L15 45' stroke='%23ffffff' stroke-width='0.5' fill='none' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Enhanced Hero Section */
.hero {
  background: var(--gradient-hero);
  position: relative;
}

.hero::before {
  background-image:
    radial-gradient(ellipse at 20% 80%, rgba(249, 115, 22, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 60%);
}

/* Animated Grid Background */
.hero-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* Enhanced Hero Badge */
.hero-badge {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(251, 191, 36, 0.15));
  border: 1px solid rgba(249, 115, 22, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Enhanced Hero Benefits */
.hero-benefit {
  background: var(--glass-bg);
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition);
}

.hero-benefit:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(5px);
}

.hero-benefit svg {
  filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.5));
}

/* Enhanced Trust Badges */
.trust-badge {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

.trust-badge svg {
  filter: drop-shadow(0 0 6px rgba(249, 115, 22, 0.4));
}

/* Enhanced Lead Form */
.lead-form-wrapper {
  background: var(--gradient-card);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.lead-form-wrapper::before {
  height: 6px;
  background: linear-gradient(90deg,
    var(--secondary-color) 0%,
    var(--primary-color) 35%,
    var(--accent-color) 65%,
    #06b6d4 100%);
}

.lead-form-wrapper::after {
  content: '';
  position: absolute;
  top: 6px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), transparent);
  border-radius: 50%;
  pointer-events: none;
}

/* Enhanced Form Inputs */
.form-group input,
.form-group select,
.form-group textarea {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #cbd5e1;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow:
    0 0 0 4px rgba(30, 64, 175, 0.1),
    0 4px 12px rgba(30, 64, 175, 0.08);
  background: #ffffff;
}

/* Enhanced Submit Button */
.lead-form .btn-primary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ea580c 100%);
  box-shadow:
    0 8px 24px rgba(249, 115, 22, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
  overflow: hidden;
}

.lead-form .btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

/* Enhanced Service Cards */
.service-card {
  background: var(--gradient-card);
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.service-card::before {
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.service-card:hover {
  box-shadow:
    0 25px 50px -12px rgba(30, 64, 175, 0.2),
    0 0 0 1px rgba(30, 64, 175, 0.1);
}

/* Enhanced Service Icons */
.service-icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
  box-shadow:
    0 12px 24px rgba(30, 64, 175, 0.35),
    0 0 0 4px rgba(30, 64, 175, 0.1);
  position: relative;
}

.service-icon::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.2), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 50% 50%;
}

.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow:
    0 16px 32px rgba(30, 64, 175, 0.4),
    0 0 0 6px rgba(30, 64, 175, 0.15);
}

/* Enhanced City Cards */
.city-card {
  background: var(--gradient-card);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 10px 15px -3px rgba(0, 0, 0, 0.06);
}

.city-card:hover {
  box-shadow:
    0 25px 50px -12px rgba(249, 115, 22, 0.2),
    0 0 0 2px var(--secondary-color);
}

.city-card-icon {
  box-shadow:
    0 8px 20px rgba(30, 64, 175, 0.3),
    0 0 0 4px rgba(30, 64, 175, 0.1);
}

.city-card:hover .city-card-icon {
  box-shadow:
    0 12px 28px rgba(249, 115, 22, 0.4),
    0 0 0 6px rgba(249, 115, 22, 0.15);
}

/* Enhanced Stats Section */
.stats-section {
  background: linear-gradient(135deg, #0c1929 0%, #1e3a5f 50%, #1e40af 100%);
}

.stats-section::before {
  background-image:
    radial-gradient(ellipse at 10% 50%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
}

.stat-item {
  position: relative;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition);
}

.stat-item:hover::before {
  opacity: 1;
  width: 150px;
  height: 150px;
}

.stat-icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced Feature Items */
.feature-item {
  background: var(--gradient-card);
  border: 1px solid rgba(226, 232, 240, 0.6);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.feature-item:hover::before {
  transform: scaleY(1);
}

.feature-item:hover {
  box-shadow: var(--shadow-colored);
}

.feature-item svg {
  filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.3));
}

/* Enhanced Benefits Section */
.benefit-item {
  background: var(--gradient-card);
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.benefit-item:hover {
  box-shadow: var(--shadow-colored);
  border-color: var(--accent-color);
}

.benefit-icon {
  box-shadow:
    0 8px 20px rgba(16, 185, 129, 0.35),
    0 0 0 4px rgba(16, 185, 129, 0.1);
}

/* Enhanced CTA Section */
.cta-section {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
  position: relative;
}

.cta-section::before {
  background-image:
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23ffffff' opacity='0.1'/%3E%3C/svg%3E"),
    radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-section .btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.cta-section .btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

/* Enhanced Page Heroes */
.page-hero,
.service-hero,
.city-hero {
  background: var(--gradient-hero);
}

.page-hero::before,
.service-hero::before,
.city-hero::before {
  background-image:
    radial-gradient(ellipse at 30% 70%, rgba(249, 115, 22, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
}

/* Enhanced Footer */
.footer {
  background: linear-gradient(180deg, #0a0f1a 0%, #0f172a 100%);
}

.footer::before {
  height: 5px;
  background: linear-gradient(90deg,
    var(--secondary-color),
    var(--primary-color),
    var(--accent-color),
    #06b6d4);
}

.footer-social a {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--secondary-color), #ea580c);
  border-color: var(--secondary-color);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

/* Enhanced Header */
.header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.05),
    0 4px 12px rgba(0, 0, 0, 0.02);
}

.header.scrolled {
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.07),
    0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.header-cta {
  display: inline-flex !important;
  padding: 0.75rem 1.5rem !important;
  font-size: 0.9rem !important;
}

/* Enhanced Dropdown Menu */
.dropdown-menu {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  box-shadow:
    0 20px 40px -12px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.03);
}

.dropdown-menu a:hover {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.08) 0%, rgba(249, 115, 22, 0.06) 100%);
}

/* HVAC Industry Icons Enhancement */
.hvac-icon-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hvac-icon-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, transparent 70%);
  filter: blur(10px);
  animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

/* Temperature Indicator Styling */
.temp-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
}

.temp-indicator.cooling {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(59, 130, 246, 0.1));
  color: #0891b2;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.temp-indicator.heating {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(239, 68, 68, 0.1));
  color: #ea580c;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

/* Enhanced Testimonial Cards */
.testimonial-card {
  background: var(--gradient-card);
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.testimonial-card:hover {
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(249, 115, 22, 0.1);
}

.testimonial-card::before {
  color: var(--secondary-color);
  opacity: 0.15;
}

.testimonial-stars svg {
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.testimonial-avatar {
  box-shadow:
    0 8px 16px rgba(30, 64, 175, 0.25),
    0 0 0 3px rgba(255, 255, 255, 0.8);
}

/* Enhanced Process Steps */
.step-number {
  box-shadow:
    0 12px 28px rgba(30, 64, 175, 0.35),
    0 0 0 6px rgba(30, 64, 175, 0.1);
  position: relative;
}

.step-number::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  height: 45%;
  background: linear-gradient(180deg, rgba(255,255,255,0.25), transparent);
  border-radius: 50%;
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow:
    0 16px 36px rgba(30, 64, 175, 0.4),
    0 0 0 8px rgba(30, 64, 175, 0.15);
}

/* Content Enhancements */
.content-section h2 {
  position: relative;
  display: inline-block;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  border-radius: 2px;
}

/* Enhanced Stats Highlight */
.stats-highlight {
  position: relative;
}

.stat-box {
  background: var(--gradient-card);
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-colored);
  border-color: var(--primary-color);
}

.stat-box h3 {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Keyword List Enhancement */
.keyword-list li {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(249, 115, 22, 0.03));
  border-left: 3px solid var(--secondary-color);
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transition: var(--transition);
}

.keyword-list li:hover {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.08), rgba(249, 115, 22, 0.05));
  transform: translateX(5px);
}

/* Thank You Page Enhancement */
.thank-you-container {
  text-align: center;
  padding: 4rem 2rem;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--accent-color), #34d399);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 20px 40px rgba(16, 185, 129, 0.3),
    0 0 0 8px rgba(16, 185, 129, 0.1);
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3), 0 0 0 8px rgba(16, 185, 129, 0.1); }
  50% { box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4), 0 0 0 16px rgba(16, 185, 129, 0.05); }
}

.thank-you-icon svg {
  width: 50px;
  height: 50px;
  fill: white;
}

/* Scroll Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading State */
.btn.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Enhanced About Hero */
.about-hero {
  background: var(--gradient-hero);
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(ellipse at 30% 70%, rgba(249, 115, 22, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

/* Enhanced Mobile Styles */
@media (max-width: 768px) {
  .hero-benefit {
    padding: 0.75rem 1rem;
  }

  .trust-badge {
    padding: 0.625rem 1rem;
    font-size: 0.825rem;
  }

  .lead-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .service-card {
    padding: 2rem;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }
}

/* Legal Pages Styling */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin: 2.5rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.legal-content h2:first-of-type {
  margin-top: 1.5rem;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin: 1.5rem 0 0.75rem;
}

.legal-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding-left: 0;
}

.legal-content ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  line-height: 1.7;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
}

.legal-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--secondary-color);
}

.legal-updated {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(249, 115, 22, 0.03));
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
  margin-bottom: 2rem;
}

.legal-contact {
  background: var(--bg-light);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  margin-top: 1.5rem;
}

.legal-contact p {
  margin-bottom: 0.5rem;
}

.legal-contact p:last-child {
  margin-bottom: 0;
}
