/* =====================================================
   COMPLETE STYLES FOR ALL SECTIONS
   ===================================================== */

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: #f8f9fa;
}

/* =====================================================
   1. HEADER STYLES
   ===================================================== */
.site-header {
  background: linear-gradient(135deg, #0077BE 0%, #4A90E2 100%);
  padding: 15px 0;
  box-shadow: 0 3px 15px rgba(0, 119, 190, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Compact header on scroll for mobile */
@media (max-width: 768px) {
  .site-header.compact-scroll {
    padding: 5px 0;
    box-shadow: 0 2px 10px rgba(0, 119, 190, 0.4);
  }

  .site-header.compact-scroll .logo-icon {
    width: 28px;
    height: 28px;
  }

  .site-header.compact-scroll .logo-title {
    font-size: 14px;
  }

  .site-header.compact-scroll .blog-link {
    padding: 6px 12px;
    font-size: 12px;
  }
}

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

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

.logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.logo-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.blog-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #DC3545, #FF6B6B);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.blog-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
  background: linear-gradient(135deg, #FF6B6B, #DC3545);
}

.blog-link svg {
  width: 20px;
  height: 20px;
}

/* =====================================================
   2. HERO SECTION STYLES - COMPLETELY REDESIGNED
   ===================================================== */
.plumber-hero-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 0;
  position: relative;
}

/* Emergency Alert Bar */
.emergency-alert-bar {
  background: linear-gradient(90deg, #DC3545 0%, #FF6B6B 50%, #DC3545 100%);
  padding: 12px 0;
  animation: alertPulse 3s ease-in-out infinite;
}

@keyframes alertPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.95;
  }
}

.alert-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  color: white;
  font-weight: 600;
  flex-wrap: wrap;
}

.alert-icon {
  font-size: 20px;
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.alert-badge {
  background: white;
  color: #DC3545;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  white-space: nowrap;
  /* Prevent 0-24 from breaking */
}

/* Main Hero Content */
.hero-main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Left Section - Text and CTA */
.hero-left-section {
  padding-right: 20px;
}

.hero-description {
  font-size: 18px;
  color: #5a6c7d;
  line-height: 1.6;
  margin: 20px 0 25px;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
  display: flex;
  gap: 15px;
  margin: 30px 0;
}

.hero-badge {
  display: inline-block;
  background: #0077BE;
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-main-title {
  font-size: 42px;
  font-weight: 800;
  color: #2c3e50;
  margin: 15px 0;
  line-height: 1.2;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #5a6c7d;
}

.feature-check {
  font-size: 16px;
}

.hero-phone-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #FF6B35, #FF8C42);
  color: white;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  font-weight: 700;
  line-height: 1;
}

.hero-phone-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 107, 53, 0.4);
}

.phone-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-number {
  font-size: 16px;
  font-weight: 700;
}

.hero-form-button {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #0077BE;
  padding: 14px 25px;
  border: 2px solid #0077BE;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-form-button:hover {
  background: #0077BE;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 190, 0.3);
}

/* Trust Numbers Row */
.trust-numbers-row {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}

.trust-number-item {
  text-align: center;
}

.trust-number {
  font-size: 32px;
  font-weight: 800;
  color: #0077BE;
  margin-bottom: 5px;
}

.trust-label {
  font-size: 12px;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Right Section - Image and Services */
.hero-right-section {
  position: relative;
}

.hero-image-main {
  position: relative;
  margin-bottom: 20px;
}

.hero-image-main img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 119, 190, 0.95);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* Services Quick Grid */
.services-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.service-quick {
  background: white;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-quick:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 119, 190, 0.15);
  background: #f0f8ff;
}

.service-quick .service-emoji {
  display: block;
  font-size: 24px;
  margin-bottom: 5px;
}

.service-quick span:last-child {
  font-size: 11px;
  color: #5a6c7d;
  font-weight: 600;
}

/* =====================================================
   3. SERVICES SECTION STYLES
   ===================================================== */
.services-section {
  padding: 80px 0;
  background: white;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  color: #0077BE;
  margin-bottom: 15px;
  position: relative;
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  color: #5a6c7d;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 119, 190, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 119, 190, 0.2);
  border-color: #0077BE;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0077BE, #4A90E2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.service-card p {
  color: #5a6c7d;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 8px 0;
  color: #4A90E2;
  font-weight: 600;
  position: relative;
  padding-left: 25px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0077BE;
  font-weight: bold;
}

/* Service Card Link */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #0077BE, #4A90E2);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 119, 190, 0.2);
}

.service-link:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 119, 190, 0.3);
  background: linear-gradient(135deg, #005a8d, #0077BE);
}

/* =====================================================
   4. EMERGENCY SECTION STYLES
   ===================================================== */
.emergency-section {
  background: linear-gradient(135deg, #DC3545 0%, #FF6B6B 100%);
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.emergency-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.emergency-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.emergency-section .section-title {
  color: white;
}

.emergency-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.emergency-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

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

.feature-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.emergency-feature h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.emergency-feature p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
}

.emergency-cta {
  background: rgba(0, 0, 0, 0.2);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}

.emergency-cta h3 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 800;
}

.emergency-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
}

.emergency-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 40px;
  background: white;
  color: #DC3545;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 800;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.emergency-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.emergency-button svg {
  width: 28px;
  height: 28px;
}


/* =====================================================
   6. REVIEWS SECTION STYLES
   ===================================================== */
.reviews-section {
  padding: 80px 0;
  background: white;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.review-card {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 119, 190, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e3f2fd;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 119, 190, 0.15);
}

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

.review-author strong {
  display: block;
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 5px;
}

.review-service {
  font-size: 12px;
  color: #4A90E2;
  background: #e3f2fd;
  padding: 3px 10px;
  border-radius: 15px;
  display: inline-block;
}

.review-rating {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 14px;
}

.review-comment {
  color: #5a6c7d;
  line-height: 1.6;
  font-size: 14px;
}

/* View All Reviews Button */
.reviews-button-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.view-all-reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #0077BE, #4A90E2);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0, 119, 190, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.view-all-reviews-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.5s ease;
}

.view-all-reviews-btn:hover::before {
  left: 100%;
}

.view-all-reviews-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 119, 190, 0.35);
}

.view-all-reviews-btn:hover .arrow-icon {
  transform: translateX(5px);
}

.view-all-reviews-btn .arrow-icon {
  transition: transform 0.3s ease;
}

/* =====================================================
   7. FAQ SECTION STYLES
   ===================================================== */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f8ff 0%, #e3f2fd 100%);
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 119, 190, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #0077BE;
}

.faq-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 119, 190, 0.15);
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0077BE;
  margin-bottom: 15px;
}

.faq-item p {
  color: #5a6c7d;
  line-height: 1.6;
}

/* =====================================================
   8. CONTACT SECTION STYLES
   ===================================================== */
.contact-section {
  padding: 80px 0;
  background: white;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 119, 190, 0.1);
}

/* Form styles for jq_form */
#jq_form {
  display: block;
  width: 100%;
}

/* Bootstrap-style form controls */
.form-control {
  display: block;
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #2c3e50;
  background-color: #fff;
  background-clip: padding-box;
  border: 2px solid #e3f2fd;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-control:focus {
  color: #2c3e50;
  background-color: #fff;
  border-color: #0077BE;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0, 119, 190, 0.1);
}

.form-control::placeholder {
  color: #8795a1;
  opacity: 1;
}

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

/* Bootstrap utility classes */
.mb-0 {
  margin-bottom: 0 !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

/* Button styles */
.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.forms__button {
  background: linear-gradient(135deg, #0077BE, #4A90E2);
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 8px 25px rgba(0, 119, 190, 0.25);
}

.forms__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 119, 190, 0.35);
  background: linear-gradient(135deg, #005a8d, #0077BE);
}

/* Success message */
#jq_success {
  padding: 15px;
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border: 2px solid #28a745;
  border-radius: 10px;
  color: #155724;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
}

.form-submit {
  padding: 15px 30px;
  background: linear-gradient(135deg, #0077BE, #4A90E2);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 119, 190, 0.3);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 119, 190, 0.4);
}

.contact-info {
  background: linear-gradient(135deg, #0077BE, #4A90E2);
  padding: 40px 30px;
  border-radius: 15px;
  color: white;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-info p {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  background: white;
  color: #0077BE;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  justify-content: center;
}

.contact-phone:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.contact-phone svg {
  width: 24px;
  height: 24px;
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-benefits .benefit {
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

/* =====================================================
   CTA BUTTONS STYLES
   ===================================================== */
.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-button.cta-primary {
  background: linear-gradient(135deg, #FF6B35, #FF8C42);
}

.cta-button.cta-secondary {
  background: linear-gradient(135deg, #2c3e50, #34495e);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1024px) {

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

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

  /* Hero adjustments for tablet */
  .hero-main-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-right-section {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {

  /* Header - Compact Mobile Version */
  .site-header {
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
  }

  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    gap: 10px;
  }

  /* Logo section more compact */
  .logo-section {
    gap: 10px;
  }

  .logo-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
  }

  .logo-text {
    display: flex;
    flex-direction: column;
  }

  .logo-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
  }

  .logo-subtitle {
    font-size: 10px;
    line-height: 1.2;
    opacity: 0.9;
  }

  /* Blog button smaller */
  .blog-link {
    padding: 8px 14px;
    font-size: 13px;
    gap: 5px;
    border-radius: 20px;
  }

  .blog-link svg {
    width: 16px;
    height: 16px;
  }

  .blog-link span {
    display: none;
    /* Hide text on very small screens */
  }

  /* Add padding to body to compensate for fixed header */
  body {
    padding-top: 60px;
  }

  /* Emergency Alert Bar - Mobile */
  .emergency-alert-bar {
    padding: 8px 0;
  }

  .alert-content {
    gap: 8px;
    font-size: 13px;
    padding: 0 10px;
    flex-wrap: nowrap;
    text-align: center;
    justify-content: space-between;
  }

  .alert-icon {
    font-size: 16px;
    flex-shrink: 0;
  }

  .alert-text {
    flex: 1;
    font-size: 12px;
    line-height: 1.2;
    padding: 0 5px;
    text-align: left;
  }

  .alert-badge {
    padding: 3px 10px;
    font-size: 12px;
    flex-shrink: 0;
    font-weight: 800;
  }

  /* Hero - Mobile - H1 First */
  .hero-left-section {
    order: 1;
    padding-right: 0;
    text-align: center;
  }

  .hero-right-section {
    order: 2;
  }

  .hero-main-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-phone-button,
  .hero-form-button {
    width: 100%;
    justify-content: center;
  }

  .hero-phone-button .phone-icon {
    width: 18px;
    height: 18px;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
  }

  .trust-numbers-row {
    justify-content: space-around;
    gap: 15px;
  }

  .trust-number {
    font-size: 24px;
  }

  .services-quick-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 15px;
  }

  .hero-image-main img {
    border-radius: 15px;
  }

  .image-badge {
    font-size: 11px;
    padding: 5px 12px;
    bottom: 10px;
    left: 10px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-link {
    width: 100%;
    justify-content: center;
  }

  /* Emergency */
  .emergency-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Districts */
  .districts-grid {
    grid-template-columns: 1fr;
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* View All Reviews Button */
  .view-all-reviews-btn {
    padding: 15px 30px;
    font-size: 15px;
  }

  /* FAQ */
  .faq-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  /* Titles */
  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {

  /* Ultra-compact header for small phones */
  .site-header {
    padding: 5px 0;
  }

  .header-container {
    padding: 0 10px;
  }

  .logo-icon {
    width: 30px;
    height: 30px;
  }

  .logo-title {
    font-size: 14px;
  }

  .logo-subtitle {
    display: none;
    /* Hide subtitle on very small screens */
  }

  .blog-link {
    padding: 6px 10px;
    font-size: 12px;
  }

  /* Show only icon for blog button */
  .blog-link {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  body {
    padding-top: 50px;
  }

  /* Ultra-compact Emergency Alert Bar */
  .emergency-alert-bar {
    padding: 5px 0;
  }

  .alert-content {
    gap: 8px;
    padding: 0 8px;
    display: flex;
    align-items: center;
  }

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

  .alert-text {
    flex: 1;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .alert-badge {
    padding: 2px 8px;
    font-size: 11px;
    margin-left: 5px;
    background: rgba(255, 255, 255, 0.95);
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .emergency-button {
    font-size: 16px;
    padding: 15px 25px;
  }
}