/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500;700;800;900&family=Figtree:wght@400;500;600;700;800;900&display=swap');

/* ===== CSS Custom Properties ===== */
:root {
  /* Brand Colors */
  --color-primary: #0B51AE;
  --color-primary-dark: #094492;
  --color-primary-deeper: #0A4D9E;
  --color-orange: #FF5F0E;
  --color-cyan: #45C7F2;
  --color-gold: #FFB803;
  --color-bg-light: #E9F8FF;
  --color-white: #FFFFFF;
  --color-text-dark: #0B51AE;
  --color-text-body: #4C4C4C;
  --color-text-body-light: #6C6C6C;
  --color-text-muted: #767676;
  --color-text-blue-muted: #536C8D;
  --color-text-blue-accent: #436B9F;
  --color-text-blue-link: #3771BD;
  --color-text-blue-medium: #4386DF;
  --color-text-nav: #5386BD;
  --color-border-card: #AAE4FF;
  --color-badge-bg: rgba(182, 236, 254, 0.4);
  --color-input-bg: #EEEEEE;
  --color-divider: #4386DF;

  /* Fonts */
  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Figtree', sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 60px;
  --space-2xl: 80px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 25px;
  --radius-2xl: 32px;
  --radius-pill: 35.5px;
}

/* ===== Reset / Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 160%;
  color: var(--color-text-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== Container ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px;
}

.container--narrow {
  max-width: 870px;
  margin: 0 auto;
  padding: 80px 0;
}

/* ===== Typography ===== */
.heading-display {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 64px;
  line-height: 110%;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

.heading-section {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 48px;
  line-height: 110%;
  letter-spacing: 0.02em;
  color: var(--color-primary);
}

.heading-card {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: 0.02em;
  color: var(--color-primary);
}

.eyebrow {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  line-height: 110%;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-white);
}

.subtitle {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.02em;
}

.body-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.02em;
  color: var(--color-text-body);
}

.label-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.02em;
}

.stat-number {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 80px;
  line-height: 110%;
  text-align: center;
  color: var(--color-white);
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 110%;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-cyan);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  gap: 10px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-align: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-orange);
  color: var(--color-white);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn--outline-primary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

/* ===== Shared Components ===== */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.star-rating svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gold);
}

.location-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 19px;
  background: var(--color-primary-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

.wave-decorator {
  display: inline-block;
  width: 51px;
  height: 10px;
}

.wave-decorator svg {
  width: 100%;
  height: 100%;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  background: url('https://imageassets.blob.core.windows.net/images-asp/e40793696746_blob') center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 81, 174, 0.8);
  z-index: 1;
}
.hero__gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 186px;
  background: linear-gradient(0deg, rgba(11, 81, 174, 0) 0%, #0B51AE 50%);
  z-index: 2;
}
.hero__gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 202px;
  background: linear-gradient(180deg, rgba(11, 81, 174, 0) 0%, #0B51AE 50%);
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding: 80px;
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 230px;
  padding-bottom: 100px;
}
.hero__left {
  flex: 1;
  max-width: 664px;
}
.hero__eyebrow {
  margin-bottom: 16px;
}
.hero__heading {
  margin-bottom: 28px;
}
.hero__subtitle {
  color: var(--color-white) !important;
  margin-bottom: 42px;
  max-width: 592px;
}
.hero__buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__right {
  flex: 0 0 480px;
}

/* Expert Card */
.expert-card {
  background: #E9F9FF;
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
}
.expert-card__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.expert-card__logo-wave {
  display: flex;
  align-items: center;
}
.expert-card__eyebrow {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  line-height: 110%;
  letter-spacing: 0.3em;
  color: var(--color-primary);
  margin-bottom: 24px;
}
.expert-card__profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.expert-card__photo {
  width: 84px;
  height: 78px;
  border: 3px solid var(--color-cyan);
  border-radius: var(--radius-md);
  object-fit: cover;
  background: #ccc;
}
.expert-card__details {
  display: flex;
  flex-direction: column;
}
.expert-card__name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: 0.02em;
  color: var(--color-primary);
}
.expert-card__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.02em;
  color: var(--color-primary);
}
.expert-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.expert-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  background: var(--color-badge-bg);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.02em;
  color: var(--color-text-blue-accent);
}
.expert-card__bio {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.02em;
  color: var(--color-text-blue-muted);
}
.expert-card__bio-full {
  display: none;
}
.expert-card__toggle {
  color: var(--color-primary);
  font-weight: 600;
  cursor: pointer;
}

/* Stats Bar */
.hero-stats {
  position: relative;
  z-index: 3;
  background: var(--color-primary);
}
.hero-stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 80px;
}
.hero-stat {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.hero-stat__number {
  margin-bottom: 8px;
}
.hero-stat__divider {
  width: 1px;
  height: 182px;
  background: var(--color-divider);
  flex-shrink: 0;
}

/* ===== Local Expertise Section ===== */
.local-expertise {
  background: var(--color-bg-light);
}
.local-expertise .container {
  padding-top: 100px;
  padding-bottom: 100px;
}
.local-expertise__header {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}
.local-expertise__heading {
  flex: 0 0 489px;
}
.local-expertise__divider {
  width: 1px;
  min-height: 141px;
  background: #58D3F7;
  flex-shrink: 0;
  align-self: stretch;
}
.local-expertise__description {
  flex: 1;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.02em;
  padding-top: 22px;
}
.local-expertise__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.feature-card {
  padding: 48px 40px;
}
.feature-card__icon {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.feature-card__title {
  margin-bottom: 16px;
}
.feature-card__text {
  color: var(--color-text-body-light);
}

/* ===== Pool Builder Section ===== */
.pool-builder {
  background: var(--color-primary);
}
.pool-builder .container {
  padding-top: 80px;
  padding-bottom: 80px;
}
.pool-builder__header {
  text-align: center;
  margin-bottom: 48px;
}
.pool-builder__wave {
  margin-bottom: 16px;
}
.pool-builder__heading {
  color: var(--color-white);
  margin-bottom: 16px;
}
.pool-builder__subtitle {
  color: var(--color-white);
  max-width: 700px;
  margin: 0 auto;
}
.pool-builder__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 48px;
}
.pool-builder__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pool-builder__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.pool-builder__text {
  color: var(--color-white);
}
.pool-builder__text h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  line-height: 130%;
  color: var(--color-white);
  margin-bottom: 20px;
}
.pool-builder__text p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 180%;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}
.pool-builder__list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.pool-builder__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}
.pool-builder__list svg {
  flex-shrink: 0;
  margin-top: 4px;
}
.pool-builder__phone {
  text-align: center;
}
.pool-builder__phone-text {
  color: var(--color-white);
  margin-bottom: 20px;
}
.pool-builder__phone-btn {
  border: 1px solid var(--color-white);
}

/* ===== Testimonials Section ===== */
.testimonials {
  background: var(--color-bg-light);
}
.testimonials .container {
  padding-top: 80px;
  padding-bottom: 80px;
}
.testimonials__header {
  text-align: center;
  margin-bottom: 16px;
}
.testimonials__wave {
  margin-bottom: 16px;
}
.testimonials__heading {
  margin-bottom: 16px;
}
.testimonials__subtitle {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 48px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 48px 40px;
}
.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.testimonial-card__photo {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  object-fit: cover;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 18px;
}
.testimonial-card__info {
  display: flex;
  flex-direction: column;
}
.testimonial-card__name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.02em;
  color: var(--color-primary);
}
.testimonial-card__location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: var(--color-text-blue-muted);
}
.testimonial-card__stars {
  margin-bottom: 16px;
}
.testimonial-card__quote {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}
.testimonial-card__date {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: var(--color-text-blue-link);
}

/* ===== Mid CTA Section ===== */
.mid-cta {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(0deg, rgba(11, 81, 174, 0.75), rgba(11, 81, 174, 0.75)),
              url('https://imageassets.blob.core.windows.net/images-asp/e045ddce2dfd_blob') center/cover no-repeat;
}
.mid-cta__content {
  max-width: 664px;
}
.mid-cta__eyebrow {
  margin-bottom: 16px;
}
.mid-cta__heading {
  margin-bottom: 24px;
}
.mid-cta__text {
  color: var(--color-white);
  font-size: 18px;
  line-height: 170%;
  margin-bottom: 32px;
  opacity: 0.95;
}
.mid-cta__buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* ===== Local Knowledge Section ===== */
.local-knowledge {
  background: var(--color-white);
}
.local-knowledge .container {
  max-width: 870px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.local-knowledge__heading {
  margin-bottom: 26px;
}
.local-knowledge__intro {
  color: var(--color-text-body-light);
  margin-bottom: 50px;
  font-size: 18px;
  line-height: 180%;
}
.local-knowledge__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}
.local-knowledge__subheading {
  margin-bottom: 16px;
}
.local-knowledge__body {
  color: var(--color-text-body-light);
}
.local-knowledge__callout {
  background: var(--color-bg-light);
  border-left: 4px solid var(--color-orange);
  padding: 24px;
  margin: 40px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.local-knowledge__callout-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.local-knowledge__callout-text {
  color: var(--color-text-body);
  font-size: 15px;
  line-height: 170%;
}

/* ===== Pool Process Section ===== */
.pool-process {
  background: var(--color-bg-light);
}
.pool-process .container {
  max-width: 870px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.pool-process__heading {
  margin-bottom: 26px;
}
.pool-process__intro {
  color: var(--color-text-body);
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 180%;
}
.pool-process__steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}
.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.process-step__number {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
}
.process-step__content {
  flex: 1;
}
.process-step__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.process-step__text {
  color: var(--color-text-body-light);
  line-height: 170%;
}
.pool-process__timeline {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--color-border-card);
}
.pool-process__timeline-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.pool-process__timeline-text {
  color: var(--color-text-body);
  line-height: 170%;
}

/* ===== Completed Projects Section ===== */
.completed-projects {
  background: var(--color-white);
}
.completed-projects .container {
  padding-top: 80px;
  padding-bottom: 80px;
}
.completed-projects__header {
  text-align: center;
  margin-bottom: 48px;
}
.completed-projects__wave {
  margin-bottom: 16px;
}
.completed-projects__heading {
  margin-bottom: 16px;
}
.completed-projects__subtitle {
  color: var(--color-primary);
}
.completed-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  height: 380px;
}
.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 81, 174, 0) 40%, rgba(11, 81, 174, 0.9) 100%);
  z-index: 2;
}
.project-card__info {
  position: relative;
  z-index: 3;
  color: var(--color-white);
}
.project-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: var(--color-white);
  margin-bottom: 4px;
}
.project-card__meta {
  display: flex;
  gap: 16px;
}
.project-card__meta span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.02em;
  color: var(--color-cyan);
}
.completed-projects__cta {
  text-align: center;
}

/* ===== Final CTA Section ===== */
.final-cta {
  background: var(--color-white);
  padding: 80px 0;
}
.final-cta__inner {
  background: var(--color-primary);
  border-radius: var(--radius-2xl);
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}
.final-cta__wave {
  margin-bottom: 24px;
}
.final-cta__heading {
  color: var(--color-white);
  margin-bottom: 24px;
  max-width: 640px;
}
.final-cta__subtitle {
  color: var(--color-white);
  margin-bottom: 16px;
  max-width: 670px;
  opacity: 0.95;
}
.final-cta__text {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 170%;
}
.final-cta__buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== Areas Served Section ===== */
.areas-served {
  background: var(--color-primary);
  padding: 50px 0;
}
.areas-served .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.areas-served__eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.2em;
  color: var(--color-white);
  margin-bottom: 30px;
}
.areas-served__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 960px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .container {
    padding: 40px;
  }
  .heading-display {
    font-size: 48px;
  }
  .heading-section {
    font-size: 36px;
  }
  .stat-number {
    font-size: 56px;
  }

  /* Hero */
  .hero__content {
    flex-direction: column;
    padding: 160px 40px 60px;
  }
  .hero__right {
    flex: none;
    width: 100%;
    max-width: 480px;
  }
  .hero-stats__inner {
    padding: 30px 40px;
    flex-wrap: wrap;
  }
  .hero-stat {
    flex: 0 0 50%;
    margin-bottom: 24px;
  }
  .hero-stat__divider {
    display: none;
  }

  /* Local Expertise */
  .local-expertise__header {
    flex-direction: column;
    gap: 24px;
  }
  .local-expertise__heading {
    flex: none;
  }
  .local-expertise__divider {
    display: none;
  }
  .local-expertise__description {
    padding-top: 0;
  }

  /* Pool Builder */
  .pool-builder__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Final CTA */
  .final-cta__inner {
    padding: 60px 40px;
    margin: 0 40px;
  }

  /* Completed Projects */
  .completed-projects__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 20px;
  }
  .heading-display {
    font-size: 36px;
  }
  .heading-section {
    font-size: 28px;
  }
  .heading-card {
    font-size: 20px;
  }
  .stat-number {
    font-size: 40px;
  }
  .stat-label {
    font-size: 14px;
  }
  .eyebrow {
    font-size: 14px;
  }

  /* Hero */
  .hero__content {
    padding: 120px 20px 40px;
    gap: 32px;
  }
  .hero__buttons {
    flex-direction: column;
  }
  .hero__buttons .btn {
    width: 100%;
  }
  .expert-card {
    padding: 24px;
  }
  .hero-stats__inner {
    padding: 20px;
  }
  .hero-stat {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }

  /* Local Expertise */
  .local-expertise__grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    padding: 32px 24px;
  }

  /* Pool Builder */
  .pool-builder__image img {
    height: 280px;
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    padding: 32px 24px;
  }

  /* Mid CTA */
  .mid-cta {
    min-height: 450px;
  }
  .mid-cta__buttons {
    flex-direction: column;
  }
  .mid-cta__buttons .btn {
    width: 100%;
  }

  /* Local Knowledge */
  .local-knowledge__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Process */
  .process-step {
    flex-direction: column;
    gap: 16px;
  }

  /* Completed Projects */
  .completed-projects__grid {
    grid-template-columns: 1fr;
  }
  .project-card {
    height: 300px;
  }

  /* Final CTA */
  .final-cta__inner {
    padding: 40px 20px;
    margin: 0 20px;
    border-radius: var(--radius-lg);
  }
  .final-cta__buttons {
    flex-direction: column;
    width: 100%;
  }
  .final-cta__buttons .btn {
    width: 100%;
  }

  /* Areas Served */
  .areas-served__badges {
    gap: 8px;
  }
}