/* =========================
   Global Styles & Reset
   ========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors - Blues and Oranges (NO pink/purple) */
  --primary-color: #1e40af;
  --primary-dark: #1e3a8a;
  --primary-light: #3b82f6;
  --secondary-color: #f97316;
  --secondary-dark: #ea580c;
  --accent-color: #10b981;

  /* Grays */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

  /* Glassmorphic */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-blur: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--gray-800);
  background: white;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

/* =========================
   Glassmorphic Effect
   ========================= */

.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

/* =========================
   Scroll Animations
   ========================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* =========================
   Navigation
   ========================= */

.navbar {
  position: sticky;
  top: 0;
  background: white;
  box-shadow: var(--shadow-md);
  z-index: 1000;
  padding: var(--spacing-sm) 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.8;
}

.logo-icon {
  width: 32px;
  height: 32px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.5rem 0;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu .nav-cta {
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
}

.nav-menu .nav-cta:hover {
  background: var(--primary-dark);
  color: white;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 24px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gray-700);
  transition: all 0.3s;
}

.mobile-menu-toggle.active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* =========================
   Hero Section
   ========================= */

.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--spacing-2xl) 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    var(--primary-dark) 0%,
    var(--primary-color) 50%,
    #2563eb 100%
  );
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.1;
  transition: transform 0.3s ease-out;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: white;
  top: -100px;
  right: 10%;
  animation: float 20s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--secondary-color);
  bottom: -50px;
  left: 15%;
  animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: white;
  top: 40%;
  right: -50px;
  animation: float 18s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  width: 100%;
}

.hero-text {
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
}

.title-line {
  display: block;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.5;
}

.hero-cta-group {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.trust-check {
  width: 24px;
  height: 24px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.trust-check::after {
  content: '';
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  position: absolute;
  top: 4px;
  left: 8px;
}

/* =========================
   Stats Bar
   ========================= */

.stats-bar {
  background: var(--gray-900);
  color: white;
  padding: var(--spacing-xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  text-align: center;
}

.stat-item {
  padding: var(--spacing-md);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--gray-300);
  font-weight: 500;
}

/* =========================
   Buttons
   ========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
}

.btn-primary {
  background: var(--secondary-color);
  color: white;
}

.btn-primary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid white;
}

.btn-secondary:hover {
  background: var(--gray-50);
}

.btn-secondary-inverse {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary-inverse:hover {
  background: white;
  color: var(--primary-color);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* =========================
   Section Styles
   ========================= */

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--spacing-sm);
}

.section-header p {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
}

/* =========================
   Services Section
   ========================= */

.services-section {
  padding: var(--spacing-2xl) 0;
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
}

.service-card {
  padding: var(--spacing-xl);
  border-radius: 1rem;
  transition: all 0.3s;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-number {
  position: absolute;
  top: var(--spacing-lg);
  right: var(--spacing-lg);
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  opacity: 0.2;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--gray-900);
}

.service-card > p {
  color: var(--gray-600);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.service-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 0.75rem;
}

.service-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
}

/* =========================
   Process Section
   ========================= */

.process-section {
  padding: var(--spacing-2xl) 0;
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.process-step:last-child .step-connector {
  display: none;
}

.step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.step-connector {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + var(--spacing-xl));
  background: var(--gray-300);
}

.step-content {
  padding: var(--spacing-lg);
  border-radius: 1rem;
  margin-top: 10px;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.step-content p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* =========================
   Coverage Section
   ========================= */

.coverage-section {
  padding: var(--spacing-2xl) 0;
  background: var(--gray-50);
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.city-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
  border-left: 4px solid var(--primary-color);
}

.city-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.city-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.city-card p {
  color: var(--gray-600);
  margin-bottom: var(--spacing-sm);
}

.city-card a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* =========================
   Why Us Section
   ========================= */

.why-us-section {
  padding: var(--spacing-2xl) 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.benefit-card {
  padding: var(--spacing-lg);
  text-align: center;
  position: relative;
}

.benefit-number {
  position: absolute;
  top: 0;
  right: var(--spacing-lg);
  width: 32px;
  height: 32px;
  background: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  opacity: 0.3;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* =========================
   CTA Banner
   ========================= */

.cta-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: var(--spacing-2xl) 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================
   Contact Section
   ========================= */

.contact-section {
  padding: var(--spacing-2xl) 0;
  background: var(--gray-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--spacing-2xl);
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--gray-900);
}

.contact-info > p {
  color: var(--gray-600);
  margin-bottom: var(--spacing-xl);
  font-size: 1.125rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact-item {
  display: flex;
  gap: var(--spacing-md);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: white;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-item p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Contact Form */

.contact-form-wrapper {
  background: white;
  padding: var(--spacing-xl);
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.form-group label {
  font-weight: 500;
  color: var(--gray-700);
  font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid var(--gray-300);
  border-radius: 0.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  font-size: 0.875rem;
  color: var(--gray-600);
  text-align: center;
  margin-top: var(--spacing-sm);
}

/* =========================
   Footer
   ========================= */

.footer {
  background: var(--gray-900);
  color: white;
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-col h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.footer-col p {
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-bottom {
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--gray-700);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.footer-bottom p {
  color: var(--gray-400);
}

.footer-links {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

/* =========================
   Mobile Responsiveness
   ========================= */

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-step {
    grid-template-columns: 60px 1fr;
    gap: var(--spacing-md);
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .step-connector {
    top: 50px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    min-height: 600px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .shape-1 {
    width: 300px;
    height: 300px;
  }

  .shape-2 {
    width: 200px;
    height: 200px;
  }

  .shape-3 {
    width: 180px;
    height: 180px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .services-grid,
  .cities-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 50px 1fr;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .step-connector {
    top: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1.125rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.125rem;
  }

  .hero {
    min-height: 500px;
    padding: var(--spacing-xl) 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .trust-item {
    font-size: 0.875rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 1.75rem;
  }
}

/* =========================
   NEW PROFESSIONAL SECTIONS
   ========================= */

/* Logo with License */
.logo {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.logo-license {
  font-size: 0.75rem;
  color: var(--gray-600);
  font-weight: 500;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 600;
  transition: color 0.2s;
}

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

/* Hero with Real Background Image */
.hero {
  position: relative;
  min-height: 650px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: var(--spacing-2xl) 0;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--spacing-md);
}

.hero-subtitle {
  font-size: 1.375rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
}

.hero-cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.hero-trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--spacing-md);
  max-width: 700px;
}

.trust-badge {
  text-align: center;
  padding: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-number {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--secondary-color);
}

.badge-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Problem Section */
.problem-section {
  padding: var(--spacing-2xl) 0;
  background: white;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.problem-card {
  padding: var(--spacing-xl);
  background: var(--gray-50);
  border-radius: 1rem;
  transition: all 0.3s;
}

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

.problem-icon {
  color: var(--secondary-color);
  margin-bottom: var(--spacing-md);
}

.problem-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--gray-900);
}

.problem-card p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* Services Content with Images */
.services-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.service-row-reverse {
  direction: rtl;
}

.service-row-reverse > * {
  direction: ltr;
}

.service-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.service-image:hover img {
  transform: scale(1.05);
}

.service-content {
  position: relative;
}

.service-number {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
}

.service-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--gray-900);
  padding-right: 60px;
}

.service-lead {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.service-features {
  list-style: none;
  margin-bottom: var(--spacing-md);
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--gray-700);
  line-height: 1.6;
}

.service-features svg {
  flex-shrink: 0;
  color: var(--accent-color);
  margin-top: 0.25rem;
}

.service-note {
  background: var(--gray-50);
  padding: var(--spacing-md);
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary-color);
  margin-top: var(--spacing-md);
}

/* Before/After Section */
.before-after-section {
  padding: var(--spacing-2xl) 0;
  background: var(--gray-900);
  color: white;
}

.before-after-section .section-header h2,
.before-after-section .section-header p {
  color: white;
}

.before-after-image {
  max-width: 900px;
  margin: 0 auto var(--spacing-xl);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.before-after-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-caption {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 0 0 1rem 1rem;
  margin-top: -4px;
}

.caption-item {
  text-align: center;
  font-size: 0.875rem;
}

.results-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  max-width: 900px;
  margin: 0 auto;
}

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

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: var(--spacing-2xl) 0;
  background: var(--gray-50);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
}

.why-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}

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

.why-icon {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.why-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--gray-900);
}

.why-card p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* Team Section */
.team-section {
  padding: var(--spacing-2xl) 0;
  background: white;
}

.team-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.team-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.team-image img {
  width: 100%;
  height: auto;
  display: block;
}

.team-text h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--gray-900);
}

.team-intro {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.team-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--spacing-lg);
}

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

.credential svg {
  flex-shrink: 0;
  color: var(--accent-color);
}

.team-quote {
  background: var(--gray-50);
  padding: var(--spacing-lg);
  border-left: 4px solid var(--primary-color);
  border-radius: 0.5rem;
  font-style: italic;
  margin-top: var(--spacing-lg);
}

.team-quote cite {
  display: block;
  margin-top: var(--spacing-sm);
  font-style: normal;
  font-weight: 600;
  color: var(--primary-color);
}

/* Coverage Section Updates */
.city-time {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.coverage-note {
  text-align: center;
  margin-top: var(--spacing-xl);
  font-size: 1.125rem;
  color: var(--gray-700);
}

.coverage-note a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

/* Contact Section Updates */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--spacing-2xl);
}

.contact-lead {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.contact-method {
  display: flex;
  gap: var(--spacing-md);
}

.method-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  color: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
}

.method-link:hover {
  text-decoration: underline;
}

.trust-seals {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.seal {
  background: var(--accent-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.contact-form-container {
  background: white;
  padding: var(--spacing-xl);
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  color: var(--gray-900);
}

/* Footer Updates */
.footer-license {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--gray-700);
}

/* Mobile Responsive Updates */
@media (max-width: 1024px) {
  .service-row,
  .service-row-reverse,
  .team-content {
    grid-template-columns: 1fr;
  }
  
  .service-row-reverse {
    direction: ltr;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
  }
  
  .hero-cta-buttons .btn {
    width: 100%;
  }
  
  .hero-trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-content h3 {
    font-size: 1.5rem;
  }
  
  .results-stats {
    grid-template-columns: 1fr;
  }
  
  .image-caption {
    grid-template-columns: 1fr;
  }
}
