

/* ============================================================
   SERVICE PAGE TEMPLATE
   ============================================================ */

/* ── Service Hero ───────────────────────────────────────── */
.service-hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px var(--pad-x-desktop);
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(89.11deg, rgba(18, 14, 31, 0.50) 7.61%, rgba(18, 14, 31, 0.00) 102.75%),
    linear-gradient(90deg, rgba(18, 14, 31, 0.40) 0%, rgba(18, 14, 31, 0.40) 100%);
  pointer-events: none;
}

.service-hero__inner {
  max-width: var(--site-max-w);
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.service-hero__content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.service-hero__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-hero__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 88px);
  letter-spacing: -1.76px;
  line-height: 1;
  color: #ffffff;
}

.service-hero__subheading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.85);
  max-width: 778px;
}

.service-hero__cta {
  display: flex;
}

@media (max-width: 1024px) {
  .service-hero {
    padding: 100px var(--pad-x-tablet);
  }

  .service-hero__content {
    gap: 40px;
  }
}

/* ── Service Intro ──────────────────────────────────────── */
.service-intro {
  background: #ffffff;
  padding: 80px var(--pad-x-desktop);
}

.service-intro__inner {
  max-width: var(--site-max-w);
  margin: 0 auto;
}

.service-intro__grid {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.service-intro__image {
  position: relative;
  width: 560px;
  flex-shrink: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-intro__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-intro__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.service-intro__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-intro__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--dark);
}

.service-intro__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1;
  color: var(--dark);
}

.service-intro__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
  row-gap: 32px;
}

.service-intro__point {
  border-top: 1px solid var(--accent);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-intro__point-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: var(--accent);
  text-transform: uppercase;
}

.service-intro__point-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1;
  color: var(--dark);
}

@media (max-width: 1024px) {
  .service-intro {
    padding: 48px var(--pad-x-tablet);
  }

  .service-intro__grid {
    flex-direction: column;
    gap: 20px;
  }

  .service-intro__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    align-self: auto;
  }

  .service-intro__content {
    gap: 32px;
  }

  .service-intro__text {
    gap: 12px;
  }

  .service-intro__title {
    font-size: 32px;
    line-height: 1.1;
  }

  .service-intro__points {
    column-gap: 20px;
    row-gap: 32px;
  }
}

@media (max-width: 767px) {
  .service-intro {
    padding: 48px var(--pad-x-mobile);
  }
}

@media (max-width: 767px) {
  .service-hero {
    padding: 32px var(--pad-x-mobile);
    min-height: 60vh;
    display: flex;
    align-items: center;
  }

  .service-hero__content {
    gap: 32px;
    align-items: center;
    text-align: center;
  }

  .service-hero__heading {
    font-size: 48px;
    line-height: 1.1;
  }

  .service-hero__subheading {
    font-size: 16px;
    max-width: 100%;
  }

  .service-hero__cta {
    width: 100%;
  }

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

/* ── Service Examples ───────────────────────────────────── */
.service-examples {
  background: var(--card-bg);
  padding: 80px var(--pad-x-desktop);
}

.service-examples__inner {
  max-width: var(--site-max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-examples__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.service-examples__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 3.9vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #0f253c;
}

.service-examples__project {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.service-examples__project--reverse {
  flex-direction: row-reverse;
}

.service-examples__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-examples__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-examples__eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--accent);
}

.service-examples__project-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 3.33vw, 48px);
  line-height: 1;
  color: #0f253c;
}

.service-examples__excerpt {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(16px, 1.67vw, 24px);
  line-height: 1;
  color: var(--dark);
}

.service-examples__view-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: #2a4f9c;
  border-bottom: 1px solid #2a4f9c;
  padding-bottom: 6px;
  align-self: flex-start;
  transition: opacity var(--transition);
}

.service-examples__view-link:hover { opacity: 0.7; }

.service-examples__media {
  width: 560px;
  flex-shrink: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.service-examples__ba {
  position: relative;
  width: 100%;
  height: 100%;
}

.service-examples__ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 400ms ease;
}

.service-examples__ba-img.active { opacity: 1; }

.service-examples__toggle {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 999px;
  padding: 4px 12px;
  gap: 4px;
}

.service-examples__toggle-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  border: none;
  background: none;
  color: #0f253c;
  cursor: pointer;
  padding: 0;
  transition: color 200ms ease, background 200ms ease;
}

.service-examples__toggle-btn.active {
  background: #2a4f9c;
  color: #ffffff;
  border-radius: 999px;
  padding: 6px 12px;
}

@media (max-width: 1024px) {
  .service-examples {
    padding: 48px var(--pad-x-tablet);
  }

  .service-examples__project {
    flex-direction: column-reverse;
    gap: 24px;
    align-items: stretch;
  }

  .service-examples__info {
    width: 100%;
  }

  .service-examples__media {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .service-examples {
    padding: 48px var(--pad-x-mobile);
  }
}

/* ── Service Included ───────────────────────────────────── */
.service-included {
  background: var(--dark);
  padding: 80px var(--pad-x-desktop);
}

.service-included__inner {
  max-width: var(--site-max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.service-included__header {
  display: flex;
  gap: 96px;
  align-items: flex-end;
}

.service-included__header-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-included__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(42px, 4.17vw, 60px);
  line-height: 1;
  color: #ffffff;
  text-transform: capitalize;
}

.service-included__subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(18px, 1.67vw, 24px);
  line-height: 1;
  color: var(--neutral);
}

.service-included__body {
  width: 440px;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1;
  color: var(--neutral);
}

.service-included__points {
  display: flex;
  gap: 48px;
}

.service-included__point {
  flex: 1;
  min-width: 0;
  border-top: 1px solid var(--accent);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-included__point-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  color: var(--accent);
  text-transform: capitalize;
}

.service-included__point-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-included__point-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
}

.service-included__point-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1;
  color: #f0f2f8;
}

@media (max-width: 1024px) {
  .service-included {
    padding: 48px var(--pad-x-tablet);
  }

  .service-included__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    text-align: center;
    align-items: center;
  }

  .service-included__header-left {
    width: 100%;
    gap: 12px;
  }

  .service-included__body {
    width: 100%;
  }

  .service-included__points {
    flex-direction: column;
    gap: 24px;
  }

  .service-included__point {
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
  }

  .service-included__point-num {
    flex-shrink: 0;
  }
}

@media (max-width: 767px) {
  .service-included {
    padding: 48px var(--pad-x-mobile);
  }
}

/* ── Service Quality ────────────────────────────────────── */
.service-quality {
  background: var(--card-bg);
  padding: 80px var(--pad-x-desktop) 40px;
}

.service-quality__inner {
  max-width: var(--site-max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-quality__header {
  display: flex;
  gap: 96px;
  align-items: flex-end;
}

.service-quality__title {
  flex: 1;
  min-width: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 4.17vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.service-quality__body {
  width: 460px;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1;
  color: var(--dark);
}

.service-quality__image {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.service-quality__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-quality__points {
  display: flex;
  gap: 48px;
}

.service-quality__point {
  flex: 1;
  min-width: 0;
  border-top: 1px solid var(--accent);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-quality__point-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(20px, 2.22vw, 32px);
  line-height: 1;
  color: var(--dark);
}

.service-quality__point-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1;
  color: var(--dark);
}

@media (max-width: 1024px) {
  .service-quality {
    padding: 48px var(--pad-x-tablet) 40px;
  }

  .service-quality__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .service-quality__body {
    width: 100%;
  }

  .service-quality__image {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .service-quality__points {
    flex-direction: column;
    gap: 20px;
  }

  .service-quality__point-title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .service-quality {
    padding: 48px var(--pad-x-mobile) 40px;
  }
}

/* ── Service Gallery ────────────────────────────────────── */
.service-gallery {
  background: #ffffff;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.service-gallery__header {
  width: 100%;
  max-width: calc(var(--site-max-w) + var(--pad-x-desktop) * 2);
  margin: 0 auto;
  padding: 0 var(--pad-x-desktop);
}

.service-gallery__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 3.33vw, 48px);
  line-height: 1;
  color: var(--dark);
}

.service-gallery__swiper {
  width: 100%;
}

.service-gallery__slide {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.service-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Pagination dots — mobile/tablet only */
.service-gallery__pagination {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.service-gallery__pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: rgba(37, 70, 141, 0.3);
  opacity: 1;
  border-radius: 99px;
  transition: width 200ms ease, background 200ms ease;
  margin: 0 !important;
}

.service-gallery__pagination .swiper-pagination-bullet-active {
  background: var(--accent);
  width: 46px;
}

/* Nav arrows — desktop only */
.service-gallery__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 200px;
}

.service-gallery__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--dark);
  transition: opacity var(--transition);
  flex-shrink: 0;
}

.service-gallery__btn:hover {
  opacity: 0.6;
}

.service-gallery__btn.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .service-gallery {
    padding: 48px 0;
  }

  .service-gallery__header {
    padding: 0 var(--pad-x-tablet);
  }

  .service-gallery__nav {
    display: none;
  }

  .service-gallery__pagination {
    display: flex;
  }

  .service-gallery__swiper {
    overflow: visible;
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 767px) {
  .service-gallery {
    padding: 48px 0;
  }

  .service-gallery__header {
    padding: 0 var(--pad-x-mobile);
  }

  .service-gallery__swiper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ── Service FAQs ───────────────────────────────────────── */
.service-faq {
  background: var(--card-bg);
  padding: 80px var(--pad-x-desktop);
}

.service-faq__inner {
  max-width: var(--site-max-w);
  margin: 0 auto;
  display: flex;
  gap: 96px;
  align-items: flex-start;
}

.service-faq__left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-faq__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 3.33vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.service-faq__subtitle {
  font-family: 'Inter', var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
}

.service-faq__btn {
  align-self: flex-start;
  font-family: var(--font-heading);
  font-weight: 700;
}

.service-faq__right {
  flex: 1;
  min-width: 0;
}

.service-faq__item {
  border-top: 1px solid var(--accent);
}

.service-faq__item:last-child {
  border-bottom: 1px solid var(--accent);
}

.service-faq__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 28px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

.service-faq__question-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--dark);
  flex: 1;
  min-width: 0;
}

.service-faq__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative;
  color: var(--dark);
}

.service-faq__icon::before,
.service-faq__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 250ms ease, opacity 250ms ease;
}

.service-faq__icon::before {
  width: 12px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-faq__icon::after {
  width: 1.5px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-faq__item--open .service-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.service-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease, padding 350ms ease;
  padding-right: 80px;
}

.service-faq__item--open .service-faq__answer {
  max-height: 400px;
  padding-bottom: 28px;
}

.service-faq__answer p {
  font-family: 'Inter', var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
}

@media (max-width: 1024px) {
  .service-faq {
    padding: 48px var(--pad-x-tablet);
  }

  .service-faq__inner {
    flex-direction: column;
    gap: 32px;
  }

  .service-faq__left {
    width: 100%;
  }

  .service-faq__answer {
    padding-right: 40px;
  }

  .service-faq__question {
    padding: 16px 0 8px;
  }

  .service-faq__item--open .service-faq__answer {
    padding-bottom: 16px;
  }
}

@media (max-width: 767px) {
  .service-faq {
    padding: 48px var(--pad-x-mobile);
  }

  .service-faq__answer {
    padding-right: 0;
  }
}

/* ── Service Cross-sell ─────────────────────────────────── */
.service-crosssell {
  background: #ffffff;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow: hidden;
}

.service-crosssell__header {
  width: 100%;
  padding: 0 var(--pad-x-desktop);
}

.service-crosssell__header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  max-width: var(--site-max-w);
  margin: 0 auto;
  text-align: center;
}

.service-crosssell__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 3.33vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--dark);
  flex: 1;
  min-width: 0;
}

.service-crosssell__body {
  width: 360px;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1;
  color: var(--dark);
}

.service-crosssell__swiper {
  max-width: var(--site-max-w-alt);
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.service-crosssell__card {
  aspect-ratio: 1 / 1;
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-decoration: none;
  overflow: hidden;
}

.service-crosssell__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(18, 14, 31, 0.74) 0%, rgba(18, 14, 31, 0) 53%),
    rgba(18, 14, 31, 0.3);
  transition: background 350ms ease;
  pointer-events: none;
}

.service-crosssell__card:hover .service-crosssell__overlay {
  background:
    linear-gradient(0deg, rgba(18, 14, 31, 0.74) 0%, rgba(18, 14, 31, 0) 53%),
    rgba(18, 14, 31, 0.8);
}

.service-crosssell__card-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 20px;
  overflow: hidden;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.25));
}

.service-crosssell__icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: none;
}

.service-crosssell__icon svg {
  width: 100%;
  height: 100%;
}

.service-crosssell__card:hover .service-crosssell__icon {
  display: block;
}

.service-crosssell__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 27px;
  line-height: 1;
  color: var(--neutral);
  text-align: center;
}

.service-crosssell__excerpt {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.3;
  color: var(--neutral);
  text-align: center;
  max-width: 315px;
  display: none;
}

.service-crosssell__card:hover .service-crosssell__excerpt {
  display: block;
}

.service-crosssell__pagination {
  display: none;
  justify-content: center;
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .service-crosssell {
    padding: 48px 0;
    gap: 24px;
  }

  .service-crosssell__header {
    padding: 0 var(--pad-x-tablet);
  }

  .service-crosssell__header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .service-crosssell__body {
    width: 100%;
  }

  .service-crosssell__swiper {
    max-width: 100%;
    overflow: visible;
    padding-left: 40px;
    padding-right: 40px;
  }

  .service-crosssell__icon,
  .service-crosssell__excerpt {
    display: block;
  }

  .service-crosssell__overlay {
    background:
      linear-gradient(0deg, rgba(18, 14, 31, 0.74) 0%, rgba(18, 14, 31, 0) 53%),
      rgba(18, 14, 31, 0.6);
  }

  .service-crosssell__pagination {
    display: flex;
  }
}

@media (max-width: 767px) {
  .service-crosssell__header {
    padding: 0 var(--pad-x-mobile);
  }

  .service-crosssell__swiper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ── Section 09 – Quote / CTA ──────────────────────────────── */
.service-quote {
  background: var(--card-bg);
  padding: 80px var(--pad-x-desktop);
}

.service-quote__inner {
  max-width: var(--site-max-w);
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.service-quote__form-wrap {
  width: 50%;
  flex-shrink: 0;
}

.service-quote__form-card {
  background: var(--dark-card);
  padding: 40px;
  position: relative;
}

.service-quote__form-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 32px;
}

.service-quote__tail {
  position: absolute;
  bottom: -66px;
  left: 0;
  width: 68px;
  height: 68px;
  background: var(--dark-card);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.service-quote__form-mobile {
  display: none;
}

.service-quote__form-mobile .service-quote__tail {
  position: static;
  width: 37px;
  height: 37px;
}

/* WPForms overrides inside the dark card */
.service-quote__form-card .wpforms-form .wpforms-field input,
.service-quote__form-card .wpforms-form .wpforms-field textarea,
.service-quote__form-card .wpforms-form .wpforms-field select {
  background: transparent;
  color: var(--white);
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

.service-quote__form-card .wpforms-form .wpforms-field input:focus,
.service-quote__form-card .wpforms-form .wpforms-field textarea:focus,
.service-quote__form-card .wpforms-form .wpforms-field select:focus {
  border-bottom-color: var(--white);
  outline: none;
}

.service-quote__form-card .wpforms-form .wpforms-field label {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.service-quote__form-card .wpforms-form .wpforms-field input::placeholder,
.service-quote__form-card .wpforms-form .wpforms-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

#wpforms-154-field_6 {
  height: fit-content;
}

.service-quote__form-card .wpforms-submit-container .wpforms-submit {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity var(--transition);
}

.service-quote__form-card .wpforms-submit-container .wpforms-submit:hover {
  opacity: 0.88;
}

/* Right content */
.service-quote__content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.service-quote__heading {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}

.service-quote__body {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 500;
  color: #555;
  line-height: 1.55;
}

.service-quote__divider {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-quote__divider-line {
  flex: 1;
  height: 1px;
  background: #c5cad6;
}

.service-quote__divider-text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #9298a8;
  white-space: nowrap;
}

.service-quote__contact {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.service-quote__phone {
  font-family: var(--font-body);
  font-size: 16px;
  color: #555;
}

.service-quote__phone a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
}

.service-quote__phone a:hover {
  text-decoration: underline;
}

@media (max-width: 1280px) {
  .service-quote__heading {
    font-size: 48px;
  }
}

@media (max-width: 1024px) {
  .service-quote {
    padding: 80px var(--pad-x-tablet);
  }

  .service-quote__inner {
    flex-direction: column;
    gap: 40px;
  }

  .service-quote__form-wrap {
    display: none;
  }

  .service-quote__form-mobile {
    display: block;
    width: 100%;
  }

  .service-quote__content {
    width: 100%;
  }

  .service-quote__heading {
    font-size: 48px;
  }

  .service-quote__body {
    font-size: 20px;
  }

  .service-quote__contact {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .service-quote__contact .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .service-quote {
    padding: 60px var(--pad-x-mobile);
  }

  .service-quote__inner {
    flex-direction: column;
    gap: 32px;
  }

  .service-quote__form-wrap {
    display: none !important;
  }

  .service-quote__content {
    gap: 24px;
  }

  .service-quote__form-mobile {
    display: block;
    width: 100%;
  }

  .service-quote__form-card {
    padding: 22px;
  }

  .service-quote__tail {
    bottom: -35px;
    width: 37px;
    height: 37px;
  }

  .service-quote__form-title {
    font-size: 42px;
    margin-bottom: 24px;
  }

  .service-quote__heading {
    font-size: 36px;
  }

  .service-quote__body {
    font-size: 18px;
  }

  .service-quote__contact {
    align-items: center;
  }
}
