/* Services page — 2026 comp */
body.page-services.home-2026 {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* —— Hero —— */
.services-hero {
  position: relative;
  z-index: 0;
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -48px;
  padding: calc(48px + 88px) 24px 96px;
  background-color: var(--home-navy-deep);
  overflow: hidden;
}

.services-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.services-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  display: block;
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Match home / showroom hero: light neutral scrim — photo stays clear, text readable */
  background: linear-gradient(
    180deg,
    rgba(12, 14, 18, 0.14) 0%,
    rgba(6, 8, 11, 0.28) 100%
  );
  z-index: 1;
}

.services-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.services-hero__title {
  margin: 0 0 28px;
  color: var(--home-white);
  font-size: clamp(1.65rem, 3.8vw, 6.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.services-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 14px;
}

.services-hero__phone-round {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--home-tan);
  color: var(--home-white) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 28px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
  transition: background 0.2s, transform 0.2s;
}

.services-hero__phone-round:hover {
  background: var(--home-tan-hover);
  color: var(--home-navy) !important;
  transform: translateY(-2px);
}

.services-hero__phone-round i {
  font-weight: 900;
  line-height: 1;
}

.services-hero__estimate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--home-tan);
  color: var(--home-white) !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  /* Match services page comp: rectangular CTAs (sharp corners) */
  border-radius: 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  transition: background 0.2s, transform 0.2s;
}

.services-hero__estimate:hover {
  background: var(--home-tan-hover);
  color: var(--home-navy) !important;
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .services-hero {
    margin-top: 0;
    padding: 100px 20px 72px;
    min-height: 58vh;
  }
}

/* —— Intro —— */
.services-intro {
  background: var(--home-cream);
  padding: 72px 20px 80px;
}

.services-intro__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.services-intro__title {
  margin: 0 0 8px;
  color: var(--home-navy);
  font-size: clamp(1.45rem, 2.4vw, 3.05rem);
  font-weight: 800;
  line-height: 1.2;
}

.services-intro__subtitle {
  margin: 0 0 22px;
  color: #a08052;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.services-intro__body p {
  margin: 0 0 16px;
  color: #2c3a4a;
  font-size: 15px;
  line-height: 1.65;
}

.services-intro__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.services-intro__figure {
  margin: 0;
}

.services-intro__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(12, 39, 69, 0.15);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

@media (max-width: 991px) {
  .services-intro__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .services-intro__figure {
    order: -1;
  }
}

/* —— Our Services carousel (textured navy over showroom photo) —— */
.services-carousel-section {
  position: relative;
  padding: 56px 20px 32px;
  background-color: var(--home-navy);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.services-carousel-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Navy blue opacity over showroom photo (matches .services-extra treatment) */
  background: linear-gradient(
    165deg,
    rgba(12, 39, 69, 0.84) 0%,
    rgba(10, 28, 48, 0.88) 45%,
    rgba(8, 26, 46, 0.91) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.services-carousel-section > * {
  position: relative;
  z-index: 1;
}

.services-carousel-section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.services-carousel-section__title {
  margin: 0 0 10px;
  color: var(--home-white);
  font-size: clamp(1.5rem, 2.5vw, 3.05rem);
  font-weight: 800;
}

.services-carousel-section__subtitle {
  margin: 0;
  color: var(--home-tan);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.services-carousel__stage {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 48px;
}

.services-carousel__nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
  padding: 0 4px;
}

.services-carousel__prev,
.services-carousel__next {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--home-tan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 36px;
  /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2); */
  transition: background 0.2s, transform 0.2s;
}

.services-carousel__prev:hover,
.services-carousel__next:hover {
  background: var(--home-tan-hover);
  transform: scale(1.05);
}

.services-carousel__stage .services-carousel__swiper {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.services-carousel__swiper .swiper-slide {
  height: auto;
  box-sizing: border-box;
}

.services-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background: transparent;
}

.services-card__img {
  aspect-ratio: 3 / 4;
  width: 100%;
  flex-shrink: 0;
  background: #1a2838 center / cover no-repeat;
  border-radius: 10px;
}

/* Same dimensions as photo cards; use until real photography is added */
.services-card__img--placeholder {
  background-color: #243246;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(165deg, #2d3f56 0%, #1a2838 55%, #15202e 100%);
  background-size: 22px 22px, 22px 22px, auto;
  background-position: center;
}

.services-card__body {
  flex: 0 0 auto;
  width: 100%;
  margin: 0;
  padding: 16px 14px 8px;
  background: none;
  text-align: center;
}

.services-card__body h3 {
  margin: 0 0 8px;
  color: var(--home-white);
  font-size: 2.15rem;
  font-weight: 800;
  text-align: center;
}

.services-card__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  text-align: center;
}

.services-card__body p.services-card__empty {
  min-height: calc(14px * 1.55);
  opacity: 0;
  pointer-events: none;
}

.services-carousel-section__footer {
  max-width: 1200px;
  margin: 36px auto 0;
  padding: 24px 16px 8px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.services-carousel-section__footer-left {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.services-carousel-section__footer-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.services-carousel-section__footer-right {
  text-align: right;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
}

.services-carousel-section__footer-right a {
  color: var(--home-tan);
  font-weight: 600;
  text-decoration: none;
}

.services-carousel-section__footer-right a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .services-carousel__stage {
    padding: 0 40px;
  }

  .services-carousel-section__footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .services-carousel-section__footer-right {
    text-align: center;
  }
}

/* —— Service area + map —— */
.services-area-section {
  background: var(--home-cream);
  padding: 72px 20px;
}

.services-area-section__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.services-area-section__title {
  margin: 0 0 8px;
  color: var(--home-navy);
  font-size: clamp(1.4rem, 2.2vw, 3.05rem);
  font-weight: 800;
}

.services-area-section__subtitle {
  margin: 0 0 18px;
  color: var(--home-navy);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.services-area-section__list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: var(--home-navy);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
}

.services-area-section__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
}

.services-area-section__cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 200px;
  line-height: 1.45;
}

.services-area-section__cta-lead {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--home-navy);
  letter-spacing: -0.01em;
}

.services-area-section__phone-note {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #5f7288;
}

.services-area-section__phone-note a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}

.services-area-section__phone-note a:hover {
  color: var(--home-navy);
  text-decoration: underline;
}

.services-area-section__map-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(12, 39, 69, 0.12);
  border: 2px solid rgba(12, 39, 69, 0.08);
  min-height: 320px;
  background: #e8e4dc;
}

.services-area-section__map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

@media (max-width: 991px) {
  .services-area-section__grid {
    grid-template-columns: 1fr;
  }
}

/* —— Design & sales (navy + showroom bg) —— */
.services-extra {
  position: relative;
  padding: 64px 20px 32px;
  background: var(--home-navy-deep) center / cover no-repeat;
  overflow: hidden;
}

.services-extra::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Navy blue scrim over showroom photo (section-specific; keeps brand tint) */
  background: linear-gradient(
    180deg,
    rgba(8, 26, 46, 0.82) 0%,
    rgba(12, 39, 69, 0.9) 100%
  );
  z-index: 0;
}

.services-extra__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.services-extra__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
  margin-bottom: 40px;
}

.services-extra__col h3 {
  margin: 0 0 18px;
  color: var(--home-tan);
  font-size: 3.05rem;
  font-weight: 800;
  text-align: center;
}

.services-extra__col ul {
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.75;
  text-align: center;
  list-style: none;
  font-weight: 600;
}

.services-extra__col li {
  margin-bottom: 8px;
  text-align: center;
}

.services-extra__cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 10px 0 18px;
}

.services-extra__cta-row .services-hero__estimate {
  min-width: 260px;
  text-align: center;
}

.services-extra__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.services-extra__bar-left {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.services-extra__bar-ctas {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.services-extra__bar-center .services-hero__estimate {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.services-extra__bar-right {
  text-align: right;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 767px) {
  .services-extra__grid {
    grid-template-columns: 1fr;
  }

  .services-extra__bar {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .services-extra__bar-right {
    text-align: center;
  }

  .services-carousel__stage {
    padding: 0 36px;
  }

  .services-intro {
    padding: 56px 14px 64px;
  }

  .services-area-section {
    padding: 56px 14px;
  }

  .services-extra {
    padding: 48px 14px 28px;
  }
}

@media (max-width: 575px) {
  /* Mobile: hero titles slightly bigger + subtitle-ish copy (pages with only CTAs keep layout) */
  .services-hero__title {
    font-size: clamp(2.4rem, 9.4vw, 4.25rem);
    line-height: 1.12;
  }

  .services-card__body h3 {
    font-size: clamp(1.25rem, 6.5vw, 1.85rem);
  }

  .services-carousel__stage {
    padding: 0 28px;
  }

  .services-carousel-section__head {
    padding-left: 4px;
    padding-right: 4px;
  }

  .services-area-section__map-wrap iframe {
    height: min(52vh, 320px);
  }
}
