body {
  margin: 0;
  padding: 0;
}
* {
  font-family: sans-serif, system-ui;
}

/* Hero Section */
/* Section */
.plumbing-projects-section {
  position: relative;
  padding: 8rem 1rem 5rem;
  overflow: hidden;
  color: #fff;
}

/* Background Image */
.plumbing-projects-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.plumbing-projects-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plumbing-projects-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(30, 58, 138, 0.9),
    rgba(31, 41, 55, 0.85),
    rgba(30, 58, 138, 0.75)
  );
}

/* Content */
.plumbing-projects-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
}

/* Text Wrapper */
.plumbing-projects-text {
  max-width: 700px;
}

/* Badge */
.plumbing-projects-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-top: 2rem;

  margin-bottom: 1.5rem;
  font-weight: 600;
}

.plumbing-projects-badge svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Heading + Paragraph */
.plumbing-projects-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.plumbing-projects-text p {
  font-size: 1.5rem;
  color: #bfdbfe;
  margin-bottom: 2rem;
}

/* Buttons */
.plumbing-projects-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-call,
.btn-estimate {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.btn-call {
  background-color: #2563eb;
  color: #fff;
}

.btn-call:hover {
  background-color: #1d4ed8;
}

.btn-estimate {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-estimate:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Stats */
.plumbing-projects-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-desc {
  color: #bfdbfe;
}
/* Testimonials */
.testimonials-section {
  background: #ffffff;
  padding: 3rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  font-family: sans-serif;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 2rem;
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.testimonials-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.star-large {
  width: 1.5rem;
  height: 1.5rem;
  fill: #facc15;
  stroke: #facc15;
}

.star-small {
  width: 1rem;
  height: 1rem;
  fill: #facc15;
  stroke: #facc15;
}

.testimonials-subtitle {
  color: #6b7280;
  font-size: 1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.testimonial-text {
  color: #374151;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.testimonial-author {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0;
}

.testimonial-location {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  background-color: #2563eb;
  color: white;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #1d4ed8;
}

.cta-button svg {
  width: 1.25rem;
  height: 1.25rem;
}
/* Services Section */
/* Container */
.services-section {
  padding: 5rem 1rem;
  background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-label {
  display: inline-block;
  background-color: #dbeafe;
  color: #1447e6;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.services-subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Cards */
.service-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Icons */
.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.blue-bg {
  background-color: #dbeafe;
  color: #1447e6;
}
.green-bg {
  background-color: #dcfce7;
  color: #16a34a;
}
.orange-bg {
  background-color: #ffedd5;
  color: #ea580c;
}
.red-bg {
  background-color: #fee2e2;
  color: #dc2626;
}
.purple-bg {
  background-color: #ede9fe;
  color: #7c3aed;
}
.teal-bg {
  background-color: #ccfbf1;
  color: #0d9488;
}

/* Titles & Descriptions */
.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
}

/* CTA Section */
/* Section Container */
.cta-section {
  padding: 3rem 1rem;
  background: linear-gradient(
    to right,
    #2563eb,
    #1e40af
  ); /* blue-600 to blue-700 */
}

/* Content Wrapper */
.cta-container {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

/* Icon */
.cta-icon {
  margin-bottom: 1rem;
}

.cta-icon svg {
  width: 3rem; /* h-12 */
  height: 3rem; /* w-12 */
  display: block;
  margin: 0 auto 1rem auto;
  stroke: #ffffff;
}

/* Heading */
.cta-title {
  font-size: 1.875rem; /* text-3xl */
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* Subtitle */
.cta-subtitle {
  font-size: 1.25rem; /* text-xl */
  color: #bfdbfe; /* blue-100 */
  margin-bottom: 1.5rem;
}

/* Button Wrapper */
.cta-button-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-button-wrapper {
    flex-direction: row;
  }
}

/* Button */
.cta-button {
  background-color: #ffffff;
  color: #2563eb; /* blue-600 */
  font-size: 1.125rem; /* text-lg */
  font-weight: 500;
  padding: 0.75rem 2rem; /* px-8 py-6 approx */
  border-radius: 0.375rem; /* rounded-md */
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  max-width: 300px;
}

@media (min-width: 640px) {
  .cta-button {
    width: auto;
  }
}

.cta-button:hover {
  background-color: #f3f4f6; /* hover:bg-gray-100 */
}

/* Projects CTA */
/* Section */
.projects-section {
  padding: 5rem 1rem;
  background-color: #ffffff;
}

/* Container */
.projects-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.projects-header {
  text-align: center;
  margin-bottom: 3rem;
}

.projects-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.projects-subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr; /* 1 column by default (mobile) */
  gap: 2rem;
}

/* Project Card */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  height: 500px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.project-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}

/* Overlay */
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 64, 175, 0.9),
    rgba(30, 64, 175, 0.4),
    transparent
  );
}

/* Info */
.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: #ffffff;
}

.project-label {
  display: inline-block;
  background-color: #2563eb;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}

.project-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.project-desc {
  font-size: 0.875rem;
  color: #bfdbfe;
  margin-bottom: 0.5rem;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #ffffff;
}

.project-location svg {
  width: 1rem;
  height: 1rem;
  stroke: #ffffff;
}

/* CTA Button */
.projects-cta {
  text-align: center;
  margin-top: 3rem;
}

.projects-button {
  background-color: #2563eb;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.projects-button:hover {
  background-color: #1e40af;
}

@media (min-width: 640px) {
  /* Small tablets / sm: two columns */
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  /* Laptop / desktop: 2x2 */
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Our Project Procces */
/* Container */
.project-process-section {
  padding: 5rem 1rem;
  background-color: #f9fafb;
  font-family: sans-serif;
}
.project-process-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #111827;
}

/* Process Cards Grid */
.process-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Process Card */
.process-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Card Content */
.process-card-content {
  display: flex;
  gap: 1rem;
}

/* Icon Circle */
.process-card-icon {
  width: 3rem;
  height: 3rem;
  background-color: #2563eb;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Text */
.process-card-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111827;
}
.process-card-text p {
  color: #4b5563;
  line-height: 1.6;
}

/* Call Button */
.process-call {
  text-align: center;
  margin-top: 3rem;
}
.call-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #2563eb;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.call-button:hover {
  background-color: #1e40af;
}
.call-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Service Area Section */
/* Section Styles */
.service-areas-section {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, #ffffff, #f9fafb);
  font-family: sans-serif;
}

.service-areas-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111827;
}
.section-header p {
  font-size: 1rem;
  color: #4b5563;
}

/* Grid */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Area Card */
.area-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  gap: 0.75rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.area-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Highlight Card */
.area-card-highlight {
  background-color: #2563eb;
  color: #ffffff;
}
.area-card-highlight .area-card-text h3,
.area-card-highlight .area-card-text p {
  color: #ffffff;
}
.highlight-icon {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Card Icon */
.area-card-icon {
  background-color: #dbeafe;
  color: #2563eb;
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
}
.area-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Text */
.area-card-text h3 {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  margin-top: 0;
}
.area-card-text p {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.4;
}

/* Call Button */
.section-call {
  text-align: center;
}
.call-button {
  background-color: #2563eb;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.call-button:hover {
  background-color: #1e40af;
}

/* FAQ */
/* FAQ Section */
.faq-section {
  padding: 5rem 1rem;
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
  font-family: sans-serif;
}

.faq-section .container {
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-label {
  display: inline-flex;
  background-color: #dbeafe;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.25rem 1.25rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}
.faq-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
.faq-header p {
  font-size: 1.125rem;
  color: #4b5563;
}

/* FAQ Items */
.faq-item {
  margin: 0.6rem 0;
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
  overflow: hidden;
}
.faq-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Question Button */
.faq-question {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  align-items: start;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: 1.125rem;
  color: #111827;
  gap: 1rem;
  transition: color 0.3s;
}
.faq-question svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #2563eb;
  transition: transform 0.3s;
}

/* Answer Panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}
.faq-answer p {
  margin: 0.75rem 0 1.5rem;
  color: #4b5563;
  line-height: 1.6;
}

/* Active / Open */
.faq-question.active svg {
  transform: rotate(180deg);
}
.faq-answer.open {
  max-height: 1000px; /* large enough to show content */
}
/* CTA END */
/* Section wrapper */
.cta-section {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  text-align: center;
  font-family: Arial, sans-serif;
}

/* Container */
.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Title & Subtitle */
.cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.5rem;
  color: #bfdbfe; /* Light blue */
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons wrapper */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* Button common styles */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1.5rem 2rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 250px;
}

/* Call button */
.cta-button-call {
  background-color: #ffffff;
  color: #1d4ed8;
  border: none;
}

.cta-button-call:hover {
  background-color: #f3f4f6;
}

/* Free estimate button */
.cta-button-estimate {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cta-button-estimate:hover {
  background-color: #2563eb;
  border-color: #ffffff;
}

/* Res */

/* ============================================
   MOBILE RESPONSIVE OVERRIDES
   ============================================ */

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* ---------- Tablet (max 1024px) ---------- */
@media (max-width: 1024px) {
  .plumbing-projects-text h1 {
    font-size: 2.25rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-title,
  .projects-title,
  .cta-title {
    font-size: 2rem;
  }
  .faq-header h2 {
    font-size: 2rem;
  }
}

/* ---------- Mobile (max 768px) ---------- */
@media (max-width: 768px) {
  /* --- Hero --- */
  .plumbing-projects-section {
    padding: 5rem 1rem 3rem;
  }
  .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-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 {
    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;
  }
  .testimonials-cta .cta-button {
    width: 100%;
    justify-content: center;
  }

  /* --- 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 (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: 360px;
  }
  .project-name {
    font-size: 1.25rem;
  }
  .projects-button {
    width: 100%;
    font-size: 1rem;
  }

  /* --- 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;
  }

  /* --- 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 --- */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-button {
    max-width: 100%;
    width: 100%;
    padding: 1rem 1.5rem;
  }
}

/* ---------- Small Mobile (max 480px) ---------- */
@media (max-width: 480px) {
  .plumbing-projects-text h1 {
    font-size: 1.4rem;
  }
  .plumbing-projects-text p {
    font-size: 1rem;
  }
  .stat-title {
    font-size: 1rem;
  }
  .stat-desc {
    font-size: 0.65rem;
  }
  .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: 300px;
  }
  .cta-title {
    font-size: 1.4rem;
  }
  .cta-subtitle {
    font-size: 1rem;
  }
  .area-card {
    flex-direction: column;
    gap: 0.5rem;
  }
  .service-card {
    padding: 1.25rem;
  }
}
