body {
  margin: 0;
  padding: 0;
}
* {
  font-family: sans-serif, system-ui;
  max-width: 100vw;
}

/* ===== GAS HERO SECTION ===== */

.gas-hero-section {
  position: relative;
  padding: 140px 20px 120px;
  overflow: hidden;
  color: white;
  font-family: Arial, sans-serif;
}

/* Background */
.gas-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gas-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gas-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(124, 45, 18, 0.95),
    rgba(154, 52, 18, 0.85),
    rgba(124, 45, 18, 0.75)
  );
}

/* Content */
.gas-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
}

.gas-hero-content {
  max-width: 750px;
}

/* Badge */
.gas-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Title */
.gas-hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.1;
}

/* Subtitle */
.gas-hero-subtitle {
  font-size: 22px;
  color: #ffe5d0;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Buttons */
.gas-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}

.gas-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #c2410c;
  padding: 18px 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;
}

.gas-btn-primary:hover {
  background: #f3f3f3;
}

.gas-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 18px 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid white;
  color: white;
  transition: 0.3s ease;
}

.gas-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Features */
.gas-hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.gas-feature-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.gas-feature-sub {
  color: #ffd6c2;
}

/* Responsive */
@media (max-width: 992px) {
  .gas-hero-title {
    font-size: 44px;
  }

  .gas-hero-features {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .gas-hero-buttons {
    flex-direction: column;
  }
}
/* Testimonials */
/* Section */
.testimonials-section {
  padding: 60px 20px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  font-family: Arial, sans-serif;
}

/* Container */
.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-title {
  font-size: 36px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 15px;
}

.testimonials-subtitle {
  color: #6b7280;
  font-size: 16px;
}

/* Cards Wrapper */
.testimonials-cards {
  text-align: center;
}

/* Card */
.testimonial-card {
  width: 30%;
  display: inline-block;
  vertical-align: top;
  margin: 1.5%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-sizing: border-box;
}

.testimonial-content {
  padding: 25px;
  text-align: left;
}

/* Stars */
.testimonial-stars {
  margin-bottom: 15px;
}

/* Text */
.testimonial-text {
  color: #374151;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Name */
.testimonial-name {
  font-weight: bold;
  color: #111827;
  margin-bottom: 5px;
}

/* Location */
.testimonial-location {
  font-size: 14px;
  color: #9ca3af;
}

/* Responsive */
@media screen and (max-width: 900px) {
  .testimonial-card {
    width: 45%;
  }
}

@media screen and (max-width: 600px) {
  .testimonial-card {
    width: 94%;
    margin-bottom: 20px;
  }
}
/* Gas Emergency Content */
/* Section Background */
.gas-emergency {
  background-color: #fef2f2;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

/* Container */
.gas-emergency-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Card */
.gas-emergency-card {
  background-color: #ffffff;
  border: 2px solid #fecaca;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Content Padding */
.gas-emergency-content {
  padding: 40px;
}

/* Flex Layout */
.gas-emergency-flex {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Alert Icon Box */
.gas-emergency-icon-box {
  background-color: #fee2e2;
  padding: 15px;
  border-radius: 8px;
}

/* Alert Icon */
.gas-emergency-alert-icon {
  width: 32px;
  height: 32px;
  color: #dc2626;
}

/* Text Content */
.gas-emergency-title {
  font-size: 26px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 15px;
}

.gas-emergency-description {
  font-size: 16px;
  color: #374151;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Button Wrapper */
.gas-emergency-button-wrapper {
  margin-top: 10px;
}

/* Call Button */
.gas-emergency-button {
  background-color: #dc2626;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
}

.gas-emergency-button:hover {
  background-color: #b91c1c;
}

/* Phone Icon */
.gas-emergency-phone-icon {
  width: 20px;
  height: 20px;
}

/* Gas Service Section */
.gas-services-section {
  padding: 80px 20px;
  background: #ffffff;
  font-family: Arial, sans-serif;
}

.gas-services-container {
  max-width: 1200px;
  margin: auto;
}

.gas-services-header {
  text-align: center;
  margin-bottom: 50px;
}

.gas-services-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #111827;
}

.gas-services-header p {
  font-size: 20px;
  color: #6b7280;
  max-width: 700px;
  margin: auto;
}

.gas-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.gas-card {
  border: 1px solid #e5e7eb;
  border-top: 4px solid;
  border-radius: 10px;
  padding: 25px;
  transition: 0.3s;
  background: #fff;
}

.gas-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.gas-card-orange {
  border-top-color: #ea580c;
}
.gas-card-blue {
  border-top-color: #2563eb;
}
.gas-card-red {
  border-top-color: #dc2626;
}

.gas-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.gas-card-header h3 {
  font-size: 20px;
  color: #111827;
}

.gas-icon-box {
  padding: 8px;
  border-radius: 8px;
}

.gas-icon-box.orange {
  background: #ffedd5;
  color: #ea580c;
}
.gas-icon-box.blue {
  background: #dbeafe;
  color: #2563eb;
}
.gas-icon-box.red {
  background: #fee2e2;
  color: #dc2626;
}

.gas-card-text {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 15px;
  line-height: 1.6;
}

.gas-card ul {
  padding-left: 18px;
}

.gas-card ul li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #374151;
}

.gas-buttons {
  margin-top: 50px;
  text-align: center;
}

.gas-btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 6px;
  margin: 10px;
  transition: 0.3s;
}

.gas-btn.primary {
  background: #2563eb;
  color: #fff;
}

.gas-btn.primary:hover {
  background: #1d4ed8;
}

.gas-btn.outline {
  border: 2px solid #2563eb;
  color: #2563eb;
}

.gas-btn.outline:hover {
  background: #eff6ff;
}

/* Responsive */
@media (max-width: 768px) {
  .gas-services-header h2 {
    font-size: 28px;
  }
}
/* Quality Card */

.quality-section {
  background-color: #f9fafb;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
  color: #4b5563;
}

.quality-container {
  max-width: 1200px;
  margin: 0 auto;
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .quality-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Text Content */
.quality-heading {
  font-size: 48px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 24px;
}

.quality-paragraph {
  font-size: 18px;
  margin-bottom: 16px;
}

.quality-paragraph:last-child {
  margin-bottom: 32px;
}

/* Features Grid */
.quality-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .quality-features {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-item svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #2563eb;
  margin-top: 4px;
}

.feature-item p {
  margin: 0;
  font-weight: 600;
  color: #111827;
}

/* Buttons */
.quality-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .quality-buttons {
    flex-direction: row;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 18px;
  padding: 16px 32px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.btn-call {
  background-color: #2563eb;
  color: #fff;
}

.btn-call:hover {
  background-color: #1e40af;
}

.btn-quote {
  background-color: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-quote:hover {
  background-color: #e0f2fe;
}

.btn svg {
  width: 20px;
  height: 20px;
}

/* Cards Grid */
.quality-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.quality-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 60px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.quality-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-blue {
  background-color: #2563eb;
  color: #fff;
  border: none;
}

.card-white {
  background-color: #fff;
  color: #111827;
  border: 2px solid #e5e7eb;
}

.quality-card svg {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.quality-card h3 {
  margin-top: 0;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0;
}

.quality-card p {
  margin: 0;
}

.card-blue p {
  color: #bfdbfe;
}

/* Gas Service Section */
/* Section */
.gas-service-section {
  padding: 80px 20px;
  background: #f9fafb;
  font-family: Arial, sans-serif;
}

.gas-service-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gas-service-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.gas-service-header {
  text-align: center;
  margin-bottom: 50px;
}

.gas-service-title {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 15px;
}

.gas-service-subtitle {
  font-size: 20px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

/* Grid */
.gas-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

/* Card */
.gas-card {
  padding: 25px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.gas-card:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.gas-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gas-card-icon {
  width: 24px;
  height: 24px;
}

/* Lists */
.gas-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gas-card-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: #374151;
}

.gas-card-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}

/* Color Variations */
.gas-card-orange {
  border-left: 5px solid #ea580c;
  background: linear-gradient(to bottom right, #fff7ed, #ffffff);
}
.gas-card-orange li::before {
  background: #ea580c;
}

.gas-card-blue {
  border-left: 5px solid #2563eb;
  background: linear-gradient(to bottom right, #eff6ff, #ffffff);
}
.gas-card-blue li::before {
  background: #2563eb;
}

.gas-card-green {
  border-top: 5px solid #16a34a;
  border-left: 5px solid #16a34a;
  background: linear-gradient(to bottom right, #f0fdf4, #ffffff);
}
.gas-card-green li::before {
  background: #16a34a;
}

/* Info Box */
.gas-info-box {
  border-left: 5px solid #0d9488;
  background: linear-gradient(to right, #f0fdfa, #ffffff);
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.gas-info-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111827;
}

.gas-info-box p {
  color: #374151;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .gas-service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .gas-service-grid {
    grid-template-columns: 1fr;
  }

  .gas-service-title {
    font-size: 28px;
  }

  .gas-service-subtitle {
    font-size: 16px;
  }
}

/* Why Gas Fitter */
/* ===== Section Base ===== */
.why-gas-fitter-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.why-gas-fitter-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-gas-fitter-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/* ===== Title ===== */
.why-gas-fitter-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #111827;
  margin-bottom: 50px;
}

/* ===== Cards Layout ===== */
.why-gas-fitter-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ===== Card Base ===== */
.why-gas-fitter-card {
  padding: 30px;
  border-radius: 16px;
  background: linear-gradient(to right, #f9fafb, #ffffff);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-left: 6px solid;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.why-gas-fitter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

/* ===== Card Title ===== */
.why-gas-fitter-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 15px;
}

/* ===== Card Text ===== */
.why-gas-fitter-card-text {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}

/* ===== Color Variants ===== */
.why-gas-fitter-card-blue {
  border-color: #2563eb;
  background: linear-gradient(to right, #eff6ff, #ffffff);
}

.why-gas-fitter-card-green {
  border-color: #16a34a;
  background: linear-gradient(to right, #ecfdf5, #ffffff);
}

.why-gas-fitter-card-indigo {
  border-color: #4f46e5;
  background: linear-gradient(to right, #eef2ff, #ffffff);
}

.why-gas-fitter-card-orange {
  border-color: #ea580c;
  background: linear-gradient(to right, #fff7ed, #ffffff);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .why-gas-fitter-title {
    font-size: 30px;
  }

  .why-gas-fitter-card {
    padding: 22px;
  }

  .why-gas-fitter-card-title {
    font-size: 20px;
  }
}

/* FAQ Section */

.faq-section {
  padding: 80px 20px;
  background-color: #f3f4f6;
}

.faq-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.faq-section .faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-section .faq-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.faq-section .faq-header p {
  font-size: 1.25rem;
  color: #4b5563;
}

.faq-section .faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-section .faq-item {
  background-color: #ffffff;
  border-left: 4px solid #f97316;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-section .faq-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.faq-section .faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-section .faq-question:hover {
  background-color: #fff7ed;
}

.faq-section .faq-question h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.faq-section .faq-question svg {
  width: 24px;
  height: 24px;
  color: #f97316;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  background-color: #fff7ed;
}

.faq-section .faq-answer.open {
  padding: 16px 24px;
}

/* ===============================
   GAS CTA SECTION
=================================*/

.gas-cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #ffffff;
  text-align: center;
}

.gas-cta-container {
  max-width: 1100px;
  margin: 0 auto;
}

.gas-cta-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}

.gas-cta-subtitle {
  font-size: 22px;
  color: #ffedd5;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.gas-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gas-cta-link {
  text-decoration: none;
}

.gas-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  padding: 18px 40px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

/* Primary (White Button) */
.gas-cta-btn-primary {
  background: #ffffff;
  color: #ea580c;
}

.gas-cta-btn-primary:hover {
  background: #f3f4f6;
}

/* Outline Button */
.gas-cta-btn-outline {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.gas-cta-btn-outline:hover {
  background: #ea580c;
}

/* Icon Styling */
.gas-cta-icon {
  width: 24px;
  height: 24px;
}

/* ===============================
   RESPONSIVE
=================================*/

@media (max-width: 640px) {
  .gas-cta-title {
    font-size: 32px;
  }

  .gas-cta-subtitle {
    font-size: 18px;
  }

  .gas-cta-btn {
    width: 100%;
  }

  .gas-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}


/* Res */
/* ============================================
   MOBILE RESPONSIVE OVERRIDES
   Paste at the very end of your CSS file
   ============================================ */

/* ---------- Prevent horizontal scroll globally ---------- */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
*, *::before, *::after {
  box-sizing: border-box;
}
img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* ---------- Large Tablet (max 1024px) ---------- */
@media (max-width: 1024px) {
  .plumbing-projects-text h1 { font-size: 2.25rem; }
  .plumbing-projects-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .process-cards { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-title { font-size: 2rem; }
  .services-title { font-size: 2rem; }
  .projects-title { font-size: 2rem; }
  .faq-header h2 { font-size: 2rem; }
}

/* ---------- Tablet (max 900px) ---------- */
@media (max-width: 900px) {
  .plumbing-projects-section { padding: 6rem 1rem 4rem; }
  .plumbing-projects-text h1 { font-size: 2rem; }
  .plumbing-projects-stats { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .stat-title { font-size: 1.5rem; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Mobile (max 768px) ---------- */
@media (max-width: 768px) {

  /* --- Hero / Banner --- */
  .plumbing-projects-section {
    padding: 5rem 1rem 3rem;
    text-align: left;
  }
  .plumbing-projects-text { max-width: 100%; }
  .plumbing-projects-text h1 { font-size: 1.75rem; line-height: 1.2; margin-bottom: 1rem; }
  .plumbing-projects-text p { font-size: 1.125rem; margin-bottom: 1.5rem; }
  .plumbing-projects-badge { font-size: 0.875rem; padding: 0.4rem 0.875rem; }
  .plumbing-projects-buttons {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  .btn-call,
  .btn-estimate {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
  .plumbing-projects-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  .stat-title { font-size: 1.25rem; }
  .stat-desc { font-size: 0.75rem; }

  /* --- Testimonials --- */
  .testimonials-section { padding: 2.5rem 1rem; }
  .testimonials-title { font-size: 1.75rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-button {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
  }

  /* --- Services --- */
  .services-section { padding: 3rem 1rem; }
  .services-title { font-size: 1.75rem; }
  .services-subtitle { font-size: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.5rem; }
  .service-title { font-size: 1.25rem; }

  /* --- CTA (middle blue band) --- */
  .cta-section { padding: 2.5rem 1rem; }
  .cta-title { font-size: 1.5rem; }
  .cta-subtitle { font-size: 1rem; margin-bottom: 1.25rem; }
  .cta-button-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .cta-button {
    max-width: 100%;
    width: 100%;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }

  /* --- Projects --- */
  .projects-section { padding: 3rem 1rem; }
  .projects-title { font-size: 1.75rem; }
  .projects-subtitle { font-size: 1rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card { height: 380px; }
  .project-name { font-size: 1.25rem; }

  /* --- Process --- */
  .project-process-section { padding: 3rem 1rem; }
  .section-header h2 { font-size: 1.75rem; margin-bottom: 2rem; }
  .process-cards { grid-template-columns: 1fr; gap: 1rem; }
  .process-card { padding: 1.25rem; }
  .process-card-text h3 { font-size: 1.125rem; }
  .call-button {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }

  /* --- Service Areas --- */
  .service-areas-section { padding: 3rem 1rem; }
  .areas-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .area-card { padding: 1rem; }

  /* --- FAQ --- */
  .faq-section { padding: 3rem 1rem; }
  .faq-header h2 { font-size: 1.75rem; }
  .faq-header p { font-size: 1rem; }
  .faq-question { font-size: 1rem; padding: 1.25rem; }
  .faq-answer { padding: 0 1.25rem; }

  /* --- CTA End Section --- */
  .cta-title { font-size: 1.75rem; }
  .cta-subtitle { font-size: 1.125rem; }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-button {
    max-width: 100%;
    width: 100%;
  }
}

/* ---------- Small Mobile (max 480px) ---------- */
@media (max-width: 480px) {
  .plumbing-projects-text h1 { font-size: 1.5rem; }
  .plumbing-projects-text p { font-size: 1rem; }
  /* Stack stats vertically on very small screens */
  .plumbing-projects-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
  }
  .stat-title { font-size: 1.1rem; }
  .stat-desc { font-size: 0.7rem; }
  .testimonials-title { font-size: 1.5rem; }
  .services-title,
  .projects-title { font-size: 1.5rem; }
  .section-header h2 { font-size: 1.5rem; }
  .faq-header h2 { font-size: 1.5rem; }
  .project-card { height: 320px; }
  .cta-title { font-size: 1.5rem; }
  .cta-subtitle { font-size: 1rem; }
  .btn-call,
  .btn-estimate { font-size: 0.9rem; padding: 0.75rem 1.25rem; }
  .service-card { padding: 1.25rem; }
  .area-card { flex-direction: column; gap: 0.5rem; }
}

/* Res 2.0 */
/* ============================================
   QUALITY SECTION - MOBILE FIXES
   Paste at the very end of your CSS file
   ============================================ */

html, body {
  overflow-x: hidden;
}
*, *::before, *::after {
  box-sizing: border-box;
}

@media (max-width: 768px) {

  .quality-section {
    padding: 48px 16px;
  }

  .quality-heading {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .quality-paragraph {
    font-size: 16px;
  }

  /* Stack buttons vertically */
  .quality-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px 20px;
  }

  /* Cards: 1 per row on mobile */
  .quality-cards {
    grid-template-columns: 1fr;
    margin-top: 32px;
    gap: 12px;
  }

  .quality-card {
    padding: 32px 24px;
  }

  .quality-card h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .quality-heading { font-size: 24px; }
  .quality-card { padding: 24px 16px; }
  .quality-card svg { width: 36px; height: 36px; }
  .quality-card h3 { font-size: 18px; }
}