/*1*/
<style>
    /* Reset */
* {
  box-sizing: border-box;
}

/* SEO Hidden Content */
.seo-content,
.hidden-seo-text {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 80px 5%;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(45deg, rgba(211, 39, 39, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Hero Content */
.hero-content {
  flex: 1;
  min-width: 320px;
  max-width: 650px;
  z-index: 2;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d32727, #e63946);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(211, 39, 39, 0.3);
}

.badge-icon {
  font-size: 14px;
}

.visible-headline {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
  color: #1a1a1a !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.highlight {
  color: #d32727;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #d32727, #e63946);
  border-radius: 2px;
}

.location-text {
  font-weight: 600;
}

.service-tagline {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 25px;
  padding: 12px 0 12px 15px;
  border-left: 4px solid #d32727;
  background: linear-gradient(90deg, rgba(211, 39, 39, 0.05), transparent);
}

.tagline-highlight {
  color: #d32727;
  font-weight: 700;
}

.key-benefits {
  margin-bottom: 25px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.benefit-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #d32727;
}

.hero-description {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-description strong {
  color: #d32727;
  font-weight: 700;
}

/* Hero Image */
.hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
  position: relative;
}

.image-container {
  position: relative;
  display: inline-block;
  border-radius: 20px;
  margin: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  margin-bottom: 20px;
}

.image-container img {
  max-width: 100%;
  height: auto;
  max-height: 80vh;
  display: block;
  transition: transform 0.3s ease;
}

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

.image-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.quality-badge {
  background: rgba(255,255,255,0.95);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-align: center;
  backdrop-filter: blur(10px);
}

.badge-text {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.stars {
  color: #fbbf24;
  font-size: 14px;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #1f2937, #374151);
  color: white;
  padding: 15px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.location-icon {
  font-size: 24px;
  color: #d32727;
}

.location-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.location-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
}

.location-subtitle {
  font-size: 11px;
  opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    
  h2 {
      line-height: 1.4 !important;
  }

  .hero-section {
    flex-direction: column;
    padding: 60px 5%;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 40px;
    max-width: 100%;
  }
  
  .visible-headline {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }
  
  .service-tagline {
    padding-left: 0;
    border-left: none;
    background: none;
    text-align: center;
    margin: 20px 0;
  }
  
  .key-benefits {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 25px auto;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 50px 5%;
    min-height: auto;
  }
  
  .visible-headline {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
  
  .benefit-item {
    font-size: 13px;
  }
  
  .hero-description {
    font-size: 15px;
  }
  
  .hero-image {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 5%;
  }
  
  .visible-headline {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  
  .service-tagline {
    font-size: 16px;
  }
  
  .benefit-item {
    font-size: 12px;
    margin-bottom: 6px;
  }
  
  .hero-description {
    font-size: 14px;
  }
  
  .image-overlay {
    bottom: 10px;
    right: 10px;
  }
  
  .quality-badge {
    padding: 8px 12px;
  }
  
  .badge-text {
    font-size: 11px;
  }
  
  .stars {
    font-size: 12px;
  }
  
  .location-badge {
    padding: 12px 16px;
    gap: 10px;
  }
  
  .location-icon {
    font-size: 20px;
  }
  
  .location-title {
    font-size: 13px;
  }
  
  .location-subtitle {
    font-size: 10px;
  }
}

</style>

/*2*/

<style>
/* Section Base Styles */
.services-showcase-section {
  padding: 100px 20px 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
}

/* Background Elements */
.section-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="servicePattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="%23d32727" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23servicePattern)"/></svg>') repeat;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  background: rgba(211, 39, 39, 0.05);
  border-radius: 50%;
  animation: floatServices 15s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 10%;
  animation-delay: 5s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 75%;
  animation-delay: 10s;
}

@keyframes floatServices {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  33% { transform: translateY(-40px) rotate(120deg) scale(1.1); }
  66% { transform: translateY(20px) rotate(240deg) scale(0.9); }
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d32727, #e63946);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(211, 39, 39, 0.3);
}

.badge-icon {
  font-size: 14px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #1a1a1a;
  line-height: 1.4;
}

.highlight {
  color: #d32727;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d32727, #e63946);
  border-radius: 2px;
}

.section-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 30px;
}

.section-description strong {
  color: #d32727;
  font-weight: 600;
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d32727, transparent);
}

.divider-dot {
  width: 8px;
  height: 8px;
  background: #d32727;
  border-radius: 50%;
}

/* Main Services Grid - Improved Layout */
.main-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Cards */
.primary-service-card,
.secondary-service-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(211, 39, 39, 0.1);
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 600px;
  transition: all 0.3s ease;
  position: relative;
}

.primary-service-card {
  background: linear-gradient(135deg, #d32727, #e63946);
  color: white;
  border: none;
  box-shadow: 0 20px 60px rgba(211, 39, 39, 0.3);
}

.primary-service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.secondary-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d32727, #e63946);
  border-radius: 24px 24px 0 0;
}

.primary-service-card:hover,
.secondary-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

.primary-service-card:hover {
  box-shadow: 0 30px 80px rgba(211, 39, 39, 0.4);
}

/* Service Header */
.service-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.2);
  color: white;
}

.secondary-service-card .service-icon {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  color: #d32727;
}

.service-meta {
  flex: 1;
}

.service-category {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.9;
  display: block;
  margin-bottom: 8px;
}

.secondary-service-card .service-category {
  color: #d32727;
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.secondary-service-card .service-title {
  color: #1a1a1a;
}

/* Service Content */
.service-content {
  flex: 1;
  margin-bottom: 30px;
}

.service-summary {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
}

.secondary-service-card .service-summary {
  color: #555;
  opacity: 1;
}

/* Service Includes/Brands */
.service-includes h4,
.trusted-brands h4,
.whats-included h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-left: 15px;
}

.service-includes h4::before,
.trusted-brands h4::before,
.whats-included h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  border-radius: 2px;
}

.primary-service-card .service-includes h4::before {
  background: rgba(255,255,255,0.6);
}

.secondary-service-card .trusted-brands h4::before,
.secondary-service-card .whats-included h4::before {
  background: linear-gradient(180deg, #d32727, #e63946);
}

.secondary-service-card .trusted-brands h4,
.secondary-service-card .whats-included h4 {
  color: #1a1a1a;
}

.includes-list,
.brands-list,
.included-list {
  display: grid;
  gap: 12px;
}

.include-item,
.brand-item,
.included-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.primary-service-card .include-item {
  background: rgba(255,255,255,0.15);
}

.primary-service-card .include-item:hover {
  background: rgba(255,255,255,0.25);
  transform: translateX(5px);
}

.secondary-service-card .brand-item,
.secondary-service-card .included-item {
  background: rgba(211, 39, 39, 0.05);
  color: #333;
}

.secondary-service-card .brand-item:hover,
.secondary-service-card .included-item:hover {
  background: rgba(211, 39, 39, 0.12);
  transform: translateX(5px);
}

.include-icon,
.brand-icon,
.check-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.trusted-brands {
  margin-bottom: 25px;
}

/* Service CTA */
.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.secondary-service-card .service-cta {
  border-top: 1px solid rgba(211, 39, 39, 0.1);
}

.time-badge,
.warranty-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.time-badge {
  background: rgba(255,255,255,0.2);
  color: white;
}

.warranty-badge {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.service-btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 14px;
}

.service-btn.primary {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}

.service-btn.primary:hover {
  background: white;
  color: #d32727;
  border-color: white;
}

.service-btn.secondary {
  background: #d32727;
  color: white;
  border: 2px solid #d32727;
}

.service-btn.secondary:hover {
  background: #991b1b;
  border-color: #991b1b;
  transform: translateY(-2px);
}

/* Additional Services */
.additional-services {
  margin-bottom: 60px;
}

.services-subtitle {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.services-subtitle::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #d32727, #e63946);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Service Tiles */
.service-tile {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(211, 39, 39, 0.1);
  transition: all 0.3s ease;
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.service-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d32727, #e63946);
  border-radius: 20px 20px 0 0;
}

.service-tile.eco-tile::before {
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

.service-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.tile-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.tile-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  color: #d32727;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(211, 39, 39, 0.1);
}

.tile-icon.eco {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  color: #22c55e;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.1);
}

.tile-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0;
  flex: 1;
}

.tile-content {
  flex: 1;
}

.tile-description {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Vehicle Services & Eco Process */
.vehicle-services h5,
.eco-process h5 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
  padding-left: 15px;
  position: relative;
}

.vehicle-services h5::before,
.eco-process h5::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, #d32727, #e63946);
  border-radius: 2px;
}

.eco-process h5::before {
  background: linear-gradient(180deg, #22c55e, #16a34a);
}

.vehicle-list,
.eco-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.vehicle-item,
.eco-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(211, 39, 39, 0.05);
  border-radius: 8px;
  font-size: 13px;
  color: #333;
  transition: all 0.3s ease;
}

.eco-item {
  background: rgba(34, 197, 94, 0.05);
}

.vehicle-item:hover {
  background: rgba(211, 39, 39, 0.12);
  transform: translateX(3px);
}

.eco-item:hover {
  background: rgba(34, 197, 94, 0.12);
  transform: translateX(3px);
}

.vehicle-icon,
.eco-icon {
  font-size: 14px;
  flex-shrink: 0;
}

/* Hidden SEO Content */
.seo-hidden-content {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Section CTA */
.section-cta {
  background: linear-gradient(135deg, #1f2937, #374151);
  color: white;
  padding: 50px 40px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  max-width: 1000px;
  margin: 0 auto;
}

.cta-content {
  flex: 1;
}

.cta-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.cta-content p {
  font-size: 16px;
  color: #d1d5db;
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.cta-btn {
  padding: 15px 25px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.cta-btn.emergency {
  background: #ef4444;
  color: white;
}

.cta-btn.emergency:hover {
  background: #dc2626;
  transform: translateY(-2px);
}

.cta-btn.primary {
  background: white;
  color: #1f2937;
}

.cta-btn.primary:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 16px;
}

.btn-arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.cta-btn.primary:hover .btn-arrow {
  transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .main-services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .vehicle-list,
  .eco-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-showcase-section {
    padding: 60px 15px 40px;
  }
  
  .primary-service-card,
  .secondary-service-card,
  .service-tile {
    padding: 30px 25px;
    min-height: auto;
  }
  
  .service-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .tile-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .service-cta {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  
  .section-cta {
    flex-direction: column;
    text-align: center;
    padding: 40px 25px;
  }
  
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .primary-service-card,
  .secondary-service-card,
  .service-tile {
    padding: 25px 20px;
  }
  
  .section-cta {
    padding: 30px 20px;
  }
}

/* Animations */
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.primary-service-card,
.secondary-service-card,
.service-tile {
  animation: slideInUp 0.8s ease-out both;
}

.primary-service-card { animation-delay: 0.1s; }
.secondary-service-card { animation-delay: 0.2s; }
.service-tile:nth-child(1) { animation-delay: 0.3s; }
.service-tile:nth-child(2) { animation-delay: 0.4s; }
</style>

/*3*/


<style>
/* Section Base Styles */
.testimonials-section {
  padding: 100px 20px 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
}

/* Background Elements */
.section-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonialPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23d32727" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonialPattern)"/></svg>') repeat;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  background: rgba(211, 39, 39, 0.05);
  border-radius: 50%;
  animation: floatTestimonials 15s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  right: 10%;
  animation-delay: 7s;
}

@keyframes floatTestimonials {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-30px) rotate(180deg) scale(1.1); }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d32727, #e63946);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(211, 39, 39, 0.3);
}

.badge-icon {
  font-size: 14px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 30px;
  color: #1a1a1a;
  line-height: 1.1;
}

.highlight {
  color: #d32727;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d32727, #e63946);
  border-radius: 2px;
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d32727, transparent);
}

.divider-dot {
  width: 8px;
  height: 8px;
  background: #d32727;
  border-radius: 50%;
}

/* Google Rating */
.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: white;
  padding: 25px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(211, 39, 39, 0.1);
}

.google-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.google-logo {
  width: 24px;
  height: 24px;
}

.rating-text {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.stars {
  color: #fbbf24;
  font-size: 24px;
  text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.rating-details {
  display: flex;
  align-items: center;
  gap: 8px;
}

.score {
  font-size: 24px;
  font-weight: 800;
  color: #d32727;
}

.count {
  font-size: 14px;
  color: #666;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* Testimonial Card */
.testimonial-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(211, 39, 39, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d32727, #e63946);
  border-radius: 20px 20px 0 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.quote {
  font-size: 60px;
  color: #d32727;
  opacity: 0.2;
  font-family: serif;
  line-height: 1;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
}

.customer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  background: linear-gradient(135deg, #d32727, #e63946);
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(211, 39, 39, 0.3);
  flex-shrink: 0;
}

.info h4 {
  margin: 0 0 3px 0;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}

.info span {
  font-size: 13px;
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 15px 40px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .google-rating {
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    text-align: center;
  }
  
  .testimonial-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .google-rating {
    padding: 20px;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .quote {
    font-size: 45px;
  }
  
  .customer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* Animations */
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.google-rating,
.testimonial-card {
  animation: slideInUp 0.8s ease-out both;
}

.google-rating { animation-delay: 0.1s; }
.testimonial-card:nth-child(1) { animation-delay: 0.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.3s; }
.testimonial-card:nth-child(3) { animation-delay: 0.4s; }
</style>


/*4*/

<style>
/* Section Base Styles */
.rating-banner {
  background: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #991b1b 100%);
  color: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Background Elements - Reduced opacity for better contrast */
.banner-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.geometric-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pattern" width="20" height="20" patternUnits="userSpaceOnUse"><polygon points="10,0 20,10 10,20 0,10" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>') repeat;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(20px) translateY(20px); }
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.shape {
  position: absolute;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  top: 80%;
  left: 70%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

/* Rating Text Section */
.rating-text {
  flex: 1;
  min-width: 320px;
  max-width: 650px;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.badge-icon {
  font-size: 14px;
}

/* Rating Display */
.rating-display {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 25px;
}

.rating-number {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.score {
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.max-score {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #f3f4f6;
}

.rating-info {
  flex: 1;
}

.rating-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.rating-visual {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stars-container {
  position: relative;
  display: inline-block;
}

.stars-background {
  color: rgba(255,255,255,0.3);
  font-size: 24px;
}

.stars-filled {
  position: absolute;
  top: 0;
  left: 0;
  color: #fbbf24;
  font-size: 24px;
  overflow: hidden;
  width: 96%;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.rating-label {
  font-size: 12px;
  color: #e5e7eb;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Description */
.rating-desc {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f9fafb;
}

.rating-desc strong {
  font-weight: 700;
  color: #ffffff;
}

.highlight-text {
  color: #fcd34d;
  font-weight: 600;
}

/* Trust Metrics */
.trust-metrics {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

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

.metric-number {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.metric-label {
  font-size: 11px;
  color: #e5e7eb;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.metric-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
}

/* CTA Section */
.cta-section {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: #ffffff;
  color: #991b1b;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.learn-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  background: #f8fafc;
  color: #7f1d1d;
}

.btn-icon {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.learn-more-btn:hover .btn-icon {
  transform: translateX(3px);
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 15px;
}

.google-verified {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #e5e7eb;
  font-weight: 500;
}

.google-icon {
  width: 16px;
  height: 16px;
}

/* Visual Section */
.rating-visual-section {
  flex: 1;
  min-width: 320px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.van-container {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.van-wrapper {
  position: relative;
  z-index: 2;
}

.van-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}

.van-wrapper:hover .van-image {
  transform: scale(1.05);
}

.van-shadow {
  position: absolute;
  bottom: -20px;
  left: 10%;
  right: 10%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.5) 0%, transparent 70%);
  border-radius: 50%;
}

/* Floating Reviews - Improved contrast */
.floating-reviews {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.review-bubble {
  position: absolute;
  background: #ffffff;
  color: #1f2937;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  animation: bubbleFloat 4s ease-in-out infinite;
  min-width: 140px;
  border: 2px solid rgba(0,0,0,0.1);
}

.bubble-1 {
  top: 20%;
  left: -20px;
  animation-delay: 0s;
}

.bubble-2 {
  top: 50%;
  right: -30px;
  animation-delay: 1.5s;
}

.bubble-3 {
  bottom: 30%;
  left: -10px;
  animation-delay: 3s;
}

.bubble-stars {
  color: #f59e0b;
  font-size: 12px;
  margin-bottom: 4px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.bubble-text {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 2px;
  color: #111827;
}

.bubble-author {
  font-size: 9px;
  color: #6b7280;
  font-style: italic;
}

@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.9; }
  50% { transform: translateY(-10px) scale(1.05); opacity: 1; }
}

/* Achievement Badges - Better contrast */
.achievement-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.badge-item {
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  padding: 18px 22px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.badge-item:hover {
  transform: translateY(-3px);
  background: rgba(0,0,0,0.7);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.badge-icon-large {
  font-size: 24px;
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.2);
}

.badge-content strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 3px;
  color: #ffffff;
}

.badge-content span {
  font-size: 10px;
  color: #d1d5db;
}

/* Responsive Design */
@media (max-width: 768px) {
  .rating-banner {
    padding: 60px 20px;
  }
  
  .rating-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }
  
  .rating-display {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .trust-metrics {
    justify-content: center;
  }
  
  .metric-divider {
    display: none;
  }
  
  .cta-section {
    justify-content: center;
    flex-direction: column;
    gap: 15px;
  }
  
  .floating-reviews .review-bubble {
    position: static;
    display: inline-block;
    margin: 5px;
    animation: none;
  }
  
  .floating-reviews {
    position: static;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    pointer-events: auto;
  }
  
  .achievement-badges {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .rating-banner {
    padding: 40px 15px;
  }
  
  .trust-metrics {
    flex-direction: column;
    gap: 15px;
  }
  
  .badge-item {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
  }
  
  .review-badge {
    padding: 8px 14px;
    font-size: 11px;
  }
}

/* Loading Animation */
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.rating-text {
  animation: slideInFromLeft 0.8s ease-out;
}

.rating-visual-section {
  animation: slideInFromRight 0.8s ease-out 0.2s both;
}
</style>

/*5*/


<style>
/* Section Base Styles */
.services-section {
  padding: 100px 20px 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
}

/* Background Elements */
.section-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23d32727" stroke-width="0.5" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  background: rgba(211, 39, 39, 0.05);
  border-radius: 50%;
  animation: floatShape 12s ease-in-out infinite;
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 70%;
  right: 10%;
  animation-delay: 4s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  bottom: 15%;
  left: 75%;
  animation-delay: 8s;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  33% { transform: translateY(-30px) rotate(120deg) scale(1.1); }
  66% { transform: translateY(15px) rotate(240deg) scale(0.9); }
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Section Title */
.section-title {
  margin-bottom: 60px;
}

.services-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d32727, #e63946);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(211, 39, 39, 0.3);
}

.badge-icon {
  font-size: 14px;
}

.section-title h2 {
  font-size: clamp(2.35rem, 4.5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #1a1a1a;
  line-height: 1.35;
}

.highlight {
  color: #d32727;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d32727, #e63946);
  border-radius: 2px;
}

.section-title .desc {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title .desc strong {
  color: #d32727;
  font-weight: 600;
}

.emphasis {
  color: #d32727;
  font-weight: 600;
  font-style: italic;
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.divider-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d32727, transparent);
}

.divider-dot {
  width: 8px;
  height: 8px;
  background: #d32727;
  border-radius: 50%;
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto 60px;
}

/* Service Card */
.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(211, 39, 39, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d32727, #e63946);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border-color: rgba(211, 39, 39, 0.2);
}

/* Featured Card */
.service-card.featured {
  transform: scale(1.05);
  border: 2px solid #d32727;
  box-shadow: 0 15px 50px rgba(211, 39, 39, 0.2);
}

.service-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 25px 70px rgba(211, 39, 39, 0.3);
}

.featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #d32727, #e63946);
  color: white;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(211, 39, 39, 0.4);
}

/* Card Image */
.card-image-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  opacity: 1; /* Remove the opacity: 0 from JS */
  transform: scale(1); /* Remove the initial scale from JS */
  background: #f8f9fa; /* Placeholder background */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

@keyframes loading-shimmer {
  0% { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}

/* Stop shimmer when image loads */
.card-image-wrapper.loaded {
  background: none;
  animation: none;
}

.service-card:hover .card-image-wrapper img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(211, 39, 39, 0.8), rgba(230, 57, 70, 0.6));
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
}

.service-badge {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}

.overlay-icon {
  font-size: 32px;
  opacity: 0.9;
}

/* Card Text Content */
.text {
  padding: 30px 25px;
  text-align: left;
}

.service-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 15px;
}

.service-header h2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  flex: 1;
  position: relative;
  padding-left: 15px;
  margin: 0;
}

.service-header h2::before {
  content: "";
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, #d32727, #e63946);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 2px;
}

.service-link {
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #d32727;
  text-decoration: underline;
}

.service-number {
  font-size: 24px;
  font-weight: 800;
  color: rgba(211, 39, 39, 0.2);
  line-height: 1;
}

.text p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Service Features */
.service-features {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(211, 39, 39, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.feature-icon {
  font-size: 14px;
}


/* Services Bottom */
.services-bottom {
  text-align: center;
}

.guarantee-section {
  background: linear-gradient(135deg, #1f2937, #374151);
  color: white;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.guarantee-icon {
  font-size: 48px;
  animation: pulse 3s infinite;
}

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

.guarantee-content {
  flex: 1;
  text-align: left;
}

.guarantee-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.guarantee-content p {
  font-size: 14px;
  color: #d1d5db;
  margin: 0;
}

.guarantee-btn {
  background: #d32727;
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.guarantee-btn:hover {
  background: #991b1b;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 15px 40px;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .service-card.featured {
    transform: none;
  }
  
  .service-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .guarantee-section {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .guarantee-content {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .card-image-wrapper {
    height: 200px;
  }
  
  .text {
    padding: 20px;
  }
  
  .service-features {
    justify-content: center;
  }
  
  .guarantee-section {
    padding: 25px 15px;
  }
}

/* Animation Classes */
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: slideInUp 0.6s ease-out both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
</style>


/*6*/

<style>
/* Section Base Styles */
.contact-info-section {
  padding: 100px 20px 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
}

/* Background Elements */
.section-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contactPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23d32727" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23contactPattern)"/></svg>') repeat;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  background: rgba(211, 39, 39, 0.05);
  border-radius: 50%;
  animation: floatContact 15s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 10%;
  animation-delay: 5s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 75%;
  animation-delay: 10s;
}

@keyframes floatContact {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  33% { transform: translateY(-40px) rotate(120deg) scale(1.1); }
  66% { transform: translateY(20px) rotate(240deg) scale(0.9); }
}

/* Container */
.contact-info-section .container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d32727, #e63946);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(211, 39, 39, 0.3);
}

.badge-icon {
  font-size: 14px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #1a1a1a;
  line-height: 1.1;
}

.highlight {
  color: #d32727;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d32727, #e63946);
  border-radius: 2px;
}

.section-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 30px;
}

.section-description strong {
  color: #d32727;
  font-weight: 600;
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d32727, transparent);
}

.divider-dot {
  width: 8px;
  height: 8px;
  background: #d32727;
  border-radius: 50%;
}

/* Contact Content - Fixed Grid */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Info Card - Restored Original Design */
.contact-info-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(211, 39, 39, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d32727, #e63946);
  border-radius: 24px 24px 0 0;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* Business Header - Original Design */
.business-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(211, 39, 39, 0.1);
}

.business-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d32727, #e63946);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 8px 25px rgba(211, 39, 39, 0.3);
  flex-shrink: 0;
}

.business-info {
  flex: 1;
}

.business-name {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 5px;
  line-height: 1.2;
}

.business-tagline {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Contact Details - Original Design */
.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(211, 39, 39, 0.03);
  transform: translateX(5px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(211, 39, 39, 0.1);
}

.contact-item .contact-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-label {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-link {
  font-size: 16px;
  font-weight: 600;
  color: #d32727;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #991b1b;
  text-decoration: underline;
}

.contact-text {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

/* Contact Actions - Original Design */
.contact-actions {
  display: flex;
  gap: 15px;
}

.action-btn {
  flex: 1;
  padding: 15px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.call-btn {
  background: linear-gradient(135deg, #d32727, #e63946);
  color: white;
  box-shadow: 0 4px 15px rgba(211, 39, 39, 0.3);
}

.call-btn:hover {
  background: linear-gradient(135deg, #991b1b, #dc2626);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 39, 39, 0.4);
}

.visit-btn {
  background: white;
  color: #1a1a1a;
  border: 2px solid rgba(211, 39, 39, 0.2);
}

.visit-btn:hover {
  background: rgba(211, 39, 39, 0.05);
  border-color: #d32727;
  color: #d32727;
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 16px;
}

.btn-arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.visit-btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* Contact Form Card - Simplified */
.contact-form-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(211, 39, 39, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 24px 24px 0 0;
}

.contact-form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.form-header {
  text-align: center;
  /*margin-bottom: 30px;*/
}

.form-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.form-header p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Form Container - Simple Constraint */
.form-container {
  position: relative;
  overflow: hidden;
}

/* Form Styling - Only Essential Constraints */
.form-container form {
  max-width: 100%;
}

.form-container input,
.form-container textarea,
.form-container select {
  max-width: 100%;
  box-sizing: border-box;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .contact-info-section {
    padding: 60px 15px 40px;
  }
  
  .contact-info-card,
  .contact-form-card {
    padding: 30px 25px;
  }
  
  .business-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .contact-actions {
    flex-direction: column;
  }
  
  .action-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-info-card,
  .contact-form-card {
    padding: 25px 20px;
  }
  
  .business-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .business-name {
    font-size: 20px;
  }
  
  .contact-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .contact-item {
    padding: 12px;
  }
}

/* Animations */
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-info-card,
.contact-form-card {
  animation: slideInUp 0.8s ease-out both;
}

.contact-info-card {
  animation-delay: 0.1s;
}

.contact-form-card {
  animation-delay: 0.3s;
}
</style>


/*7*/

<style>
/* Section Base Styles */
.cities-section {
  padding: 80px 20px 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 70%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
}

/* Background Elements */
.section-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cityPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23d32727" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23cityPattern)"/></svg>') repeat;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  background: rgba(211, 39, 39, 0.05);
  border-radius: 50%;
  animation: floatCities 15s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 10%;
  animation-delay: 5s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 75%;
  animation-delay: 10s;
}

@keyframes floatCities {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  33% { transform: translateY(-40px) rotate(120deg) scale(1.1); }
  66% { transform: translateY(20px) rotate(240deg) scale(0.9); }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.cities-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d32727, #e63946);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(211, 39, 39, 0.3);
}

.badge-icon {
  font-size: 14px;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 15px;
  color: #1a1a1a;
  line-height: 1.1;
}

.highlight {
  color: #d32727;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #d32727, #e63946);
  border-radius: 2px;
}

.section-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 30px;
}

.section-description strong {
  color: #d32727;
  font-weight: 600;
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.divider-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d32727, transparent);
}

.divider-dot {
  width: 8px;
  height: 8px;
  background: #d32727;
  border-radius: 50%;
}

/* Cities Grid */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

/* City Card */
.city-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(211, 39, 39, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.city-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d32727, #e63946);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.city-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  border-color: rgba(211, 39, 39, 0.2);
}

/* City Icon */
.city-icon-wrapper {
  flex-shrink: 0;
}

.city-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(211, 39, 39, 0.1);
}

.city-card:hover .city-icon {
  background: linear-gradient(135deg, #d32727, #e63946);
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 20px rgba(211, 39, 39, 0.3);
}

/* City Content */
.city-content {
  flex: 1;
}

.city-name {
  font-size: 16.5px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
}

.city-link {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.city-link:hover {
  color: #d32727;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cities-section {
    padding: 60px 15px 40px;
  }
  
  .cities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .city-card {
    padding: 20px;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .city-card {
    flex-direction: column;
    gap: 15px;
  }
  
  .city-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  .city-name {
    font-size: 16px;
  }
}

/* Animations */
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.city-card {
  animation: slideInUp 0.6s ease-out both;
}

.city-card:nth-child(1) { animation-delay: 0.1s; }
.city-card:nth-child(2) { animation-delay: 0.2s; }
.city-card:nth-child(3) { animation-delay: 0.3s; }
.city-card:nth-child(4) { animation-delay: 0.4s; }
.city-card:nth-child(5) { animation-delay: 0.5s; }
.city-card:nth-child(6) { animation-delay: 0.6s; }
</style>

/*8*/



<style>
/* Section Base Styles */
.zip-codes-section {
  padding: 100px 20px 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
}

.zip-table-container {
    max-width: 1000px;
}

/* Background Elements */
.section-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="zipPattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="%23d32727" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23zipPattern)"/></svg>') repeat;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  background: rgba(211, 39, 39, 0.05);
  border-radius: 50%;
  animation: floatZip 15s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 10%;
  animation-delay: 5s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 75%;
  animation-delay: 10s;
}

@keyframes floatZip {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  33% { transform: translateY(-40px) rotate(120deg) scale(1.1); }
  66% { transform: translateY(20px) rotate(240deg) scale(0.9); }
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.zip-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d32727, #e63946);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(211, 39, 39, 0.3);
}

.badge-icon {
  font-size: 14px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #1a1a1a;
  line-height: 1.1;
}

.highlight {
  color: #d32727;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d32727, #e63946);
  border-radius: 2px;
}

.section-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 30px;
}

.section-description strong {
  color: #d32727;
  font-weight: 600;
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d32727, transparent);
}

.divider-dot {
  width: 8px;
  height: 8px;
  background: #d32727;
  border-radius: 50%;
}

/* Table Container - Updated with Max Height and Scroll */
.zip-table-container {
  background: white;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(211, 39, 39, 0.1);
  overflow: hidden;
  margin-bottom: 60px;
  position: relative;
  margin: 40px auto;
  max-height: 600px; /* Set maximum height */
}

.zip-table-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d32727, #e63946);
  z-index: 10; /* Ensure it stays on top when scrolling */
}

/* Fade effect at bottom of scroll area */
.zip-table-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(transparent, rgba(255,255,255,0.9));
  pointer-events: none;
  z-index: 5;
}

.table-wrapper {
  overflow-x: auto;
  overflow-y: auto; /* Enable vertical scrolling */
  max-height: 596px; /* Account for the top border */
  position: relative;
}

/* Custom Scrollbar Styling */
.table-wrapper::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #d32727, #e63946);
  border-radius: 4px;
  transition: background 0.3s ease;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #991b1b, #dc2626);
}

.table-wrapper::-webkit-scrollbar-corner {
  background: #f1f1f1;
}

/* Table Styles */
.zip-codes-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

/* Sticky Header */
.zip-codes-table thead {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  position: sticky;
  top: 0;
  z-index: 5;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Add shadow under sticky header */
}

.zip-codes-table th {
  padding: 20px 15px;
  text-align: left;
  font-weight: 700;
  color: #1a1a1a;
  border-bottom: 2px solid rgba(211, 39, 39, 0.1);
  position: sticky;
  top: 0;
  font-size: 16px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.col-subtitle {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  display: block;
  margin-top: 2px;
}

.zip-codes-table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
}

.zip-codes-table tbody tr:hover {
  background: rgba(211, 39, 39, 0.02);
  transform: scale(1.005);
}

.featured-row {
  background: linear-gradient(135deg, rgba(211, 39, 39, 0.05), rgba(230, 57, 70, 0.03));
  border-left: 4px solid #d32727;
}

.featured-row:hover {
  background: linear-gradient(135deg, rgba(211, 39, 39, 0.08), rgba(230, 57, 70, 0.05));
}

.zip-codes-table td {
  padding: 18px 15px;
  vertical-align: middle;
}

/* Distance Badge */
.distance-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(211, 39, 39, 0.1);
  color: #d32727;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  min-width: 50px;
  transition: all 0.3s ease;
}

.distance-badge.primary {
  background: linear-gradient(135deg, #d32727, #e63946);
  color: white;
  box-shadow: 0 4px 15px rgba(211, 39, 39, 0.3);
}

.distance-badge:hover {
  transform: scale(1.1);
}

/* Zip Code Links */
.zip-link {
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 15px;
}

.zip-link:hover {
  background: rgba(211, 39, 39, 0.1);
  color: #d32727;
  transform: translateY(-2px);
}

.zip-link.primary {
  background: linear-gradient(135deg, #d32727, #e63946);
  color: white;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(211, 39, 39, 0.2);
}

.zip-link.primary:hover {
  background: linear-gradient(135deg, #991b1b, #dc2626);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(211, 39, 39, 0.3);
}

/* City and County Links */
.city-link,
.county-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 6px;
}

.city-link:hover,
.county-link:hover {
  color: #d32727;
  background: rgba(211, 39, 39, 0.05);
  text-decoration: underline;
}

/* Map Button */
.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  color: #333;
  padding: 8px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(211, 39, 39, 0.1);
}

.map-btn:hover {
  background: linear-gradient(135deg, #d32727, #e63946);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(211, 39, 39, 0.3);
}

.map-btn.primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  border-color: #22c55e;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.map-btn.primary:hover {
  background: linear-gradient(135deg, #15803d, #166534);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

.map-icon {
  font-size: 14px;
}

/* Column Widths */
.distance-col { width: 15%; }
.zip-col { width: 15%; }
.city-col { width: 25%; }
.county-col { width: 20%; }
.map-col { width: 25%; }

/* Footer */
.zip-footer {
  text-align: center;
}

.coverage-cta {
  background: linear-gradient(135deg, #1f2937, #374151);
  color: white;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.cta-content {
  flex: 1;
  text-align: left;
}

.cta-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.cta-content p {
  font-size: 14px;
  color: #d1d5db;
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cta-btn {
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.cta-btn.phone {
  background: #d32727;
  color: white;
}

.cta-btn.phone:hover {
  background: #991b1b;
  transform: translateY(-2px);
}

.cta-btn.quote {
  background: white;
  color: #1f2937;
}

.cta-btn.quote:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 16px;
}

.btn-arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.cta-btn.quote:hover .btn-arrow {
  transform: translateX(3px);
}

/* Responsive Design - Updated breakpoints */
@media (max-width: 768px) {
  .zip-codes-section {
    padding: 60px 15px 40px;
  }
  
  /* Mobile table height adjustment */
  .zip-table-container {
    max-height: 500px; /* Smaller height on mobile */
  }
  
  .table-wrapper {
    max-height: 496px;
  }
  
  .zip-codes-table {
    font-size: 12px;
  }
  
  .zip-codes-table th,
  .zip-codes-table td {
    padding: 12px 8px;
  }
  
  .zip-codes-table th {
    font-size: 14px;
  }
  
  .distance-col { width: 12%; }
  .zip-col { width: 18%; }
  .city-col { width: 25%; }
  .county-col { width: 20%; }
  .map-col { width: 25%; }
  
  .coverage-cta {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .cta-content {
    text-align: center;
  }
  
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  /* Small mobile table height adjustment */
  .zip-table-container {
    max-height: 400px; /* Even smaller on small mobile */
  }
  
  .table-wrapper {
    max-height: 396px;
  }
  
  .zip-codes-table th,
  .zip-codes-table td {
    padding: 10px 6px;
  }
  
  .map-btn {
    padding: 6px 10px;
    font-size: 11px;
  }
  
  .distance-badge {
    padding: 4px 8px;
    font-size: 11px;
    min-width: 40px;
  }
  
  .zip-link {
    padding: 6px 8px;
    font-size: 13px;
  }
}

/* Animations */
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.zip-table-container {
  animation: slideInUp 0.8s ease-out both;
  animation-delay: 0.2s;
}

.zip-codes-table tbody tr {
  animation: slideInUp 0.6s ease-out both;
}

.zip-codes-table tbody tr:nth-child(1) { animation-delay: 0.1s; }
.zip-codes-table tbody tr:nth-child(2) { animation-delay: 0.15s; }
.zip-codes-table tbody tr:nth-child(3) { animation-delay: 0.2s; }
.zip-codes-table tbody tr:nth-child(4) { animation-delay: 0.25s; }
.zip-codes-table tbody tr:nth-child(5) { animation-delay: 0.3s; }
.zip-codes-table tbody tr:nth-child(6) { animation-delay: 0.35s; }
.zip-codes-table tbody tr:nth-child(7) { animation-delay: 0.4s; }
.zip-codes-table tbody tr:nth-child(8) { animation-delay: 0.45s; }
.zip-codes-table tbody tr:nth-child(9) { animation-delay: 0.5s; }
.zip-codes-table tbody tr:nth-child(10) { animation-delay: 0.55s; }
.zip-codes-table tbody tr:nth-child(11) { animation-delay: 0.6s; }
.zip-codes-table tbody tr:nth-child(12) { animation-delay: 0.65s; }
.zip-codes-table tbody tr:nth-child(13) { animation-delay: 0.7s; }
.zip-codes-table tbody tr:nth-child(14) { animation-delay: 0.75s; }
.zip-codes-table tbody tr:nth-child(15) { animation-delay: 0.8s; }
</style>

/*8*/

<style>
/* Section Base Styles */
.faq-section {
  padding: 100px 20px 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
}

.faq-container {
    max-width: 1000px;
}

/* Background Elements */
.section-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faqPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23d32727" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23faqPattern)"/></svg>') repeat;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  background: rgba(211, 39, 39, 0.05);
  border-radius: 50%;
  animation: floatFAQ 15s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 10%;
  animation-delay: 5s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 75%;
  animation-delay: 10s;
}

@keyframes floatFAQ {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  33% { transform: translateY(-40px) rotate(120deg) scale(1.1); }
  66% { transform: translateY(20px) rotate(240deg) scale(0.9); }
}


/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d32727, #e63946);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(211, 39, 39, 0.3);
}

.badge-icon {
  font-size: 14px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #1a1a1a;
  line-height: 1.1;
}

.highlight {
  color: #d32727;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d32727, #e63946);
  border-radius: 2px;
}

.section-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 30px;
}

.section-description strong {
  color: #d32727;
  font-weight: 600;
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d32727, transparent);
}

.divider-dot {
  width: 8px;
  height: 8px;
  background: #d32727;
  border-radius: 50%;
}

/* FAQ Container */
.faq-container {
  margin-bottom: 60px;
}

/* FAQ Item */
.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(211, 39, 39, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-color: rgba(211, 39, 39, 0.2);
}

.faq-item.active {
  border-color: #d32727;
  box-shadow: 0 8px 30px rgba(211, 39, 39, 0.15);
}

/* FAQ Question */
.faq-question {
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: rgba(211, 39, 39, 0.02);
}

.question-content {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
}

.question-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #d32727, #e63946);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(211, 39, 39, 0.3);
}

.question-icon .icon-text {
  color: white;
  font-weight: 700;
  font-size: 16px;
}

.question-text {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 0;
}

.toggle-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(211, 39, 39, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.plus,
.minus {
  position: absolute;
  font-size: 18px;
  font-weight: 700;
  color: #d32727;
  transition: all 0.3s ease;
}

.minus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-item.active .plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-item.active .minus {
  opacity: 1;
  transform: rotate(0deg);
}

.faq-item.active .toggle-icon {
  background: #d32727;
}

.faq-item.active .plus,
.faq-item.active .minus {
  color: white;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.answer-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0 30px 25px 30px;
  border-top: 1px solid rgba(211, 39, 39, 0.1);
  margin-top: 0;
}

.answer-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 5px;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.answer-icon .icon-text {
  color: #22c55e;
  font-weight: 700;
  font-size: 16px;
}

.answer-text {
  flex: 1;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 8px 0 0 0;
}

/* FAQ Footer */
.faq-footer {
  text-align: center;
}

.contact-cta {
  background: linear-gradient(135deg, #1f2937, #374151);
  color: white;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.cta-content {
  flex: 1;
  text-align: left;
}

.cta-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.cta-content p {
  font-size: 14px;
  color: #d1d5db;
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cta-btn {
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.cta-btn.phone {
  background: #d32727;
  color: white;
}

.cta-btn.phone:hover {
  background: #991b1b;
  transform: translateY(-2px);
}

.cta-btn.quote {
  background: white;
  color: #1f2937;
}

.cta-btn.quote:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 16px;
}

.btn-arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.cta-btn.quote:hover .btn-arrow {
  transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 15px 40px;
  }
  
  .question-content {
    padding: 20px;
    gap: 15px;
  }
  
  .answer-content {
    padding: 0 20px 20px 20px;
    gap: 15px;
  }
  
  .question-icon,
  .answer-icon {
    width: 35px;
    height: 35px;
  }
  
  .question-icon .icon-text,
  .answer-icon .icon-text {
    font-size: 14px;
  }
  
  .question-text {
    font-size: 16px;
  }
  
  .answer-text {
    font-size: 14px;
  }
  
  .contact-cta {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .cta-content {
    text-align: center;
  }
  
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .question-content {
    padding: 18px 15px;
  }
  
  .answer-content {
    padding: 0 15px 18px 15px;
  }
  
  .toggle-icon {
    width: 25px;
    height: 25px;
  }
  
  .plus,
  .minus {
    font-size: 16px;
  }
}

/* Animations */
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item {
  animation: slideInUp 0.6s ease-out both;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
</style>