/* ══════════════════════════════════════════════════════════
   SERVICE HERO BANNER  (full-bleed image + stats grid)
══════════════════════════════════════════════════════════ */
.service-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-block: 4rem;
}

.service-hero__overlay {
  display: none;
}

.service-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

/* ── Left: content ── */
.service-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* TODO: REPLACE WITH VARIABLES AFTERWARDS */
  background: rgba(200, 16, 46, 0.15);
  border: 1px solid rgba(200, 16, 46, 0.4);
  border-radius: var(--radius);
  color: var(--primary);
  font-family: var(--font-manrope);
  font-size: 11px;
  width: fit-content;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero_subheading {
  font-family: var(--font-poppins);
  font-size: 1.1rem;
  font-weight: 700;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-hero__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.15;
  max-width: 1200px;
}

.service-hero__accent {
  color: var(--primary);
}

.service-hero__desc {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 52ch;
}

.service-hero__links-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--muted-foreground);
}

.service-hero__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1.5rem;
}

.service-hero__links li a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.2s;
}

.service-hero__links li a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.service-hero__links li a:hover {
  color: var(--primary);
}

.service-hero__content .section_cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* outline button for light hero bg */
.btn--hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.4rem;
  border: 2px solid var(--foreground);
  border-radius: 999px;
  color: var(--foreground);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
  white-space: nowrap;
}

.btn--hero-outline:hover {
  background: var(--foreground);
  border-color: var(--foreground);
  color: #fff;
}

.trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 13px;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-item::before {
  content: "✓";
  width: 18px;
  height: 18px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--secondary-foreground);
  flex-shrink: 0;
}

/* ── Right: image collage ── */
.service-hero__collage {
  position: relative;
  height: 400px;
}

.service_image_section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service_image_section .btn {
  padding: 0.8rem 0.6rem;
  margin-inline: auto;
  width: 250px;
  border-radius: 40px;
  justify-content: center;
}

.service_image_section .btn-arrow {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1rem;
}

.service-hero__collage-img {
  position: absolute;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border: 3px solid var(--border);
}

.service-hero__collage-img--1 {
  width: 62%;
  height: 62%;
  top: 0;
  left: 0;
  transform: rotate(-4deg);
  z-index: 1;
}

.service-hero__collage-img--2 {
  width: 56%;
  height: 57%;
  top: 8%;
  right: 0;
  transform: rotate(3deg);
  z-index: 2;
}

.service-hero__collage-img--3 {
  width: 52%;
  height: 52%;
  bottom: 0;
  left: 24%;
  transform: rotate(-1.5deg);
  z-index: 3;
  border-color: var(--border);
}

/* ══════════════════════════════════════════════════════════
   HORIZONTAL STATS STRIP (below hero)
══════════════════════════════════════════════════════════ */
.service-stats-strip {
  background: var(--secondary);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.service-stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item__icon {
  font-size: 1.5rem;
  color: var(--secondary-foreground);
  margin-bottom: 0.4rem;
}

.service-stats-strip__inner .stat-item__num {
  font-size: 2.25rem;
  font-family: var(--font-manrope);
  font-weight: 500;
  color: var(--secondary-foreground);
  line-height: 1;
}

.stat-item__stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.stat-item__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary-foreground);
}

.stat-item__sub {
  font-size: 0.75rem;
  color: var(--secondary-foreground);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════
   MOVED CONTACT SECTION
══════════════════════════════════════════════════════════ */
.svc-contact-section {
  padding: 5rem 0 6rem;
  background: var(--muted);
}

.svc-contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

/* ── Left info ── */
.svc-contact-section__info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.svc-contact-section__heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
  max-width: 24ch;
}

.svc-contact-section__desc {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 48ch;
}

.svc-contact-section__details {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.svc-contact-detail {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--foreground);
}

.svc-contact-detail i {
  color: var(--primary);
  width: 16px;
  flex-shrink: 0;
}

.svc-contact-detail a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.svc-contact-detail a:hover {
  color: var(--primary);
}

/* images collage */
.svc-contact-section__imgs {
  position: relative;
  height: 240px;
  margin-top: 0.5rem;
}

.svc-contact-img {
  position: absolute;
  object-fit: cover;
  border-radius: 0.875rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.svc-contact-img--main {
  width: 70%;
  height: 100%;
  left: 0;
  top: 0;
}

.svc-contact-img--secondary {
  width: 46%;
  height: 65%;
  right: 0;
  bottom: 0;
  border: 3px solid #fff;
}

/* ── Right form card ── */
.svc-contact-section__form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
}

.svc-contact-form__title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.3rem;
  max-width: none;
}

.svc-contact-form__sub {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.svc-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.svc-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.svc-contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.svc-contact-form .form-labels {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--foreground);
}

.svc-contact-form input,
.svc-contact-form select,
.svc-contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--foreground);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.svc-contact-form input:focus,
.svc-contact-form select:focus,
.svc-contact-form textarea:focus {
  border-color: var(--primary);
}

.svc-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.svc-contact-form__submit {
  width: 100%;
  padding: 0.8rem 1.5rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.25rem;
}

.svc-contact-form__submit:hover {
  background: hsl(350 87% 35%);
}

.svc-contact-form__note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
}

@media (max-width: 860px) {
  .svc-contact-section__inner {
    grid-template-columns: 1fr;
  }

  .svc-contact-section__imgs {
    height: 200px;
  }
}

@media (max-width: 540px) {
  .svc-contact-form__row {
    grid-template-columns: 1fr;
  }

  .svc-contact-section__form-card {
    padding: 1.75rem 1.25rem;
  }
}

/* ══════════════════════════════════════════════════════════
   MAIN CONTENT WRAPPER
══════════════════════════════════════════════════════════ */
.service_main_content {
  width: 100%;
}

.service_container {
  max-width: 800px;
  margin-inline: auto;
}

.service_sub_heading {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  background: var(--muted);
  border-radius: 999px;
  padding: 8px 16px;
  width: fit-content;
  border: 1px solid var(--border);
  text-align: center;
}

.service_heading {
  font-size: 4rem;
  color: var(--secondary);
  text-align: center;
  max-width: 1200px;
}

.service_banner_img {
  width: 100%;
  border-radius: 1.25rem;
  margin-top: 2rem;
  object-fit: cover;
  max-width: 900px;
  margin-inline: auto;
}

.service_desc,
.service_desc li {
  max-width: 800px;
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.75em;
}

/* deliverable-section: PDF viewer + quick quote form */
.deliverable-section {
  padding: 4rem 0 5rem;
}

.deliverable-section__header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.deliverable-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
  max-width: 26ch;
}

.deliverable-section__desc {
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 1000px;
  line-height: 1.7;
}

.deliverable-section__note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 1000px;
  text-align: center;
  margin-inline: auto;
  text-wrap: balance;
}

/* service_cta layout defined in the SERVICE CTA block below */

.service_page_list {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 1rem;
  list-style-type: none;
}

.service_section_heading {
  font-size: 2rem;
  color: var(--secondary);
  font-weight: 600;
  line-height: 1.25em;
  margin-bottom: 1rem;
}

.service_page_list li a {
  position: relative;
  font-size: 14px;
  line-height: 1.75em;
  color: var(--primary);
  text-decoration: none;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}

.service_page_list li a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--primary);
  position: absolute;
  left: -16px;
  top: 30%;
}

.service_page_list li a:hover {
  text-decoration: underline;
}

/* ALTERNATING SPLIT SECTIONS */
.alternating-sections {
  padding: 4rem 0;
}

.alternating-sections .service_desc {
  max-width: unset !important;
}

.split-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.split-section--reverse {
  flex-direction: row-reverse;
}

.split-section__image {
  flex: 0 0 30%;
  width: 30%;
  align-self: stretch;
}

.split-section__content {
  flex: 0 0 70%;
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.split-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  transform: rotate(2deg);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.split-section--reverse .split-section__image img {
  transform: rotate(-2deg);
}

.split-section__image img:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.split-section--reverse .split-section__image img:hover {
  transform: rotate(0deg) scale(1.02);
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .split-section,
  .split-section--reverse {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .split-section__image,
  .split-section__content {
    flex: unset;
    width: 100%;
  }

  .split-section__image img,
  .split-section--reverse .split-section__image img {
    transform: none;
  }

  .service_section_heading {
    font-size: 1.5rem;
  }
}

/* TABS LIST */
.tabs_section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  margin-inline: auto;
}

.tabs_header {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.tabs_trigger {
  background: none;
  border: none;
  font-size: 0.8rem;
  color: var(--muted-foreground);
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.tabs_trigger.selected {
  color: var(--primary);
  border-color: var(--primary);
}

/* PDF IFRAME VIEWER */
.tab-pdf-viewer {
  flex: 1;
  min-height: 0;
  position: relative;
}

.tab-pdf-iframe {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
}

.tab-image-wrapper {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  line-height: 0;
  border: 2px solid var(--border);
}

.tab-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75rem;
}

.tab-fullscreen-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: none;
  border-radius: 0.375rem;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s ease;
}

.tab-fullscreen-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* ══════════════════════════════════════════════════════════
   TAB SPLIT LAYOUT (PDF viewer + Quote form)
══════════════════════════════════════════════════════════ */
.tab-split {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: start;
}

/* ── Doc / Browser panel ───────────────────────────────── */
.tab-browser {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tab-browser__bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  background: var(--secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-browser__dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.tab-browser__dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d0d4db;
  display: block;
}

.tab-browser__dots span:nth-child(1) {
  background: #ff5f57;
}
.tab-browser__dots span:nth-child(2) {
  background: #ffbd2e;
}
.tab-browser__dots span:nth-child(3) {
  background: #28c840;
}

.tab-browser__url {
  flex: 1;
  font-size: 0.78rem;
  color: var(--secondary-foreground);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 3px 12px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tab-browser__url i {
  color: var(--secondary-foreground);
  opacity: 0.7;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.tab-browser__body .tabs_header {
  background-color: var(--secondary);
}

.tab-browser__body .tabs_trigger {
  color: rgba(255, 255, 255, 0.6);
}

.tab-browser__body .tabs_trigger.selected {
  color: #fff;
  border-color: var(--primary);
}

.tab-browser__expand {
  flex-shrink: 0;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.375rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--secondary-foreground);
  font-size: 0.8rem;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}

.tab-browser__expand:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.tab-browser__body {
  background: #f8f9fa;
}

/* ── Quote form panel ──────────────────────────────────── */
.tab-quote-form {
  background: var(--primary-foreground);
  border: 1px solid var(--border);
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 90px;
}

.tab-quote-form__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.25rem;
  max-width: none;
}

.tab-quote-form__sub {
  font-size: 0.82rem;
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.tab-quote-form__fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tqf-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.tqf-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--foreground);
}

.tqf-label span {
  color: var(--primary);
}

.tqf-input,
.tqf-select {
  width: 100%;
  padding: 0.55rem 0.875rem;
  border: 1.5px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground);
  font-family: inherit;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.tqf-input:focus,
.tqf-select:focus {
  border-color: var(--primary);
}

.tqf-radios {
  display: flex;
  gap: 1.25rem;
}

.tqf-radio {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--foreground);
  cursor: pointer;
}

.tqf-radio input {
  accent-color: var(--primary);
  width: 15px;
  height: 15px;
}

.tqf-submit {
  width: 100%;
  padding: 0.7rem 1.25rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.25rem;
}

.tqf-submit:hover {
  background: hsl(350 87% 36%);
}

.tqf-note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

@media (max-width: 900px) {
  .tab-split {
    grid-template-columns: 1fr;
  }
  .tab-quote-form {
    position: static;
  }
  .tab-pdf-iframe {
    height: 380px;
  }
  .tab-list {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .tabs_trigger {
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .tab-pdf-iframe {
    height: 280px;
  }
  .tab-browser__url span {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
    display: inline-block;
    vertical-align: middle;
  }
}

/* ══════════════════════════════════════════════════════════
   SERVICES CAROUSEL SECTION
══════════════════════════════════════════════════════════ */
.srv-carousel-section {
  padding: 4rem 0 5rem;
  background: var(--muted);
}

.srv-carousel-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.srv-carousel-section__title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.25;
  max-width: 30ch;
}

.srv-carousel-section__desc {
  font-size: 0.975rem;
  color: var(--muted-foreground);
  max-width: 52ch;
  line-height: 1.65;
}

/* ── Carousel wrapper ──────────────────────────────────── */
.srv-carousel-wrap {
  position: relative;
  overflow: hidden;
}

.srv-carousel {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* ── Card ──────────────────────────────────────────────── */
.srv-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.srv-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13);
  transform: translateY(-4px);
}

.srv-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.srv-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.srv-card:hover .srv-card__img {
  transform: scale(1.07);
}

.srv-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #fff;
  background: var(--primary);
  border-radius: 999px;
  padding: 3px 11px;
}

.srv-card__body {
  padding: 1.25rem 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.6rem;
}

.srv-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.3;
  max-width: none;
}

.srv-card__desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  flex: 1;
}

.srv-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-top: 0.25rem;
  transition: gap 0.2s;
}

.srv-card__link:hover {
  gap: 0.7rem;
}

/* ── Carousel nav buttons ──────────────────────────────── */
.srv-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--secondary);
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.srv-carousel__btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.srv-carousel__btn--prev {
  left: 20px;
  box-shadow: var(--special-shadow);
}
.srv-carousel__btn--next {
  right: 20px;
  box-shadow: var(--special-shadow);
}

/* ── Dots ──────────────────────────────────────────────── */
.srv-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.srv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d4db;
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.25s,
    transform 0.25s;
}

.srv-dot--active {
  background: var(--primary);
  transform: scale(1.3);
}

/* SERVICE SECTION STYLES */

.service_section_styles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

/* CONTACT SECTION */
.contact-section {
  padding: 5rem 0;
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

/* Map card */
.contact-map-wrapper {
  height: 100%;
}

.contact-map-card {
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--card);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-map-card__header {
  padding: 1.5rem 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-map-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: 600;
}

.contact-map-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary);
  margin: 0;
}

.contact-map-card__address {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

.contact-map-card__frame {
  width: 100%;
  flex: 1;
  line-height: 0;
  min-height: 300px;
}

.contact-map-card__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .service_heading {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  .service_heading {
    font-size: 2.25rem;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form {
    max-width: 100%;
  }

  .tabs_header {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-section__inner {
    grid-template-columns: 1fr;
  }

  .contact-map-card__frame iframe {
    height: 260px;
  }
}

/* ══════════════════════════════════════════════════════════
   HERO CONTACT FORM
══════════════════════════════════════════════════════════ */
.service-hero__form {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.service-hero__form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-form__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary);
}

.hero-form__subtitle {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.service-hero__form label {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.service-hero__form .form-labels {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.service-hero__form input,
.service-hero__form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: inherit;
  background: var(--background);
  color: var(--foreground);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.service-hero__form input:focus,
.service-hero__form textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 2px hsl(350 87% 42% / 0.1);
}

.service-hero__form input::placeholder,
.service-hero__form textarea::placeholder {
  color: var(--muted-foreground);
}

.service-hero__form textarea {
  resize: vertical;
  min-height: 100px;
}

.hero-form__submit {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
  margin-top: 0.25rem;
}

.hero-form__submit:hover {
  background: hsl(350 87% 36%);
  box-shadow: 0 4px 18px hsl(350 87% 42% / 0.35);
}

/* ══════════════════════════════════════════════════════════
   RECOMMENDED PROJECTS
══════════════════════════════════════════════════════════ */
.projects-section {
  padding: 5rem 0;
}

.projects-section__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.projects-section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: 600;
}

.projects-section__title {
  font-size: clamp(1.75rem, 2.75vw, 2.75rem);
  font-weight: 600;
  color: var(--secondary);
  max-width: none;
}

.projects-grid {
  display: grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 420px), 1fr));
  gap: 2rem;
}

.project-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.project-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.project-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-card__img {
  transform: scale(1.05);
}

.project-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.project-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: hsl(350 87% 42% / 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  width: fit-content;
}

.project-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.35;
  max-width: none;
}

.project-card__desc {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  max-width: none;
}

.project-card__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  flex-wrap: wrap;
}

.project-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* ══════════════════════════════════════════════════════════
   HERO STATS BOX (large first + list items)
══════════════════════════════════════════════════════════ */
.service-hero__stats-box {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 250px;
  width: 100%;
  margin-inline: auto;
}

/* first card: spans full left column (3 rows tall) */
.service-hero__stat-item:nth-child(1) {
  grid-column: 1;
  background: var(--secondary);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

/* right column: 3 smaller list items */
.service-hero__stat-item:nth-child(2) {
  background: var(--primary);
}

.service-hero__stat-item:nth-child(3) {
  background: var(--secondary);
}

.service-hero__stat-item:nth-child(4) {
  background: var(--primary);
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.service-hero__stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-hero__stat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

/* large first card: bigger number */
.service-hero__stat-item .service-hero__stat-num {
  font-size: 2.5rem;
}

.service-hero__stat-num {
  font-family: "Manrope", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.service-hero__stat-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════
   SHARED SECTION HELPERS
══════════════════════════════════════════════════════════ */
.svc-section {
  padding: 5rem 0;
}

/* ══════════════════════════════════════════════════════════
   PAIN / SOLUTION
══════════════════════════════════════════════════════════ */
.svc-pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  gap: 2px;
  background: var(--border);
}

.svc-pain-col {
  padding: 2.5rem 2rem;
}

.svc-pain-col--bad {
  background: #fff;
}

.svc-pain-col--good {
  background: var(--secondary);
}

.svc-pain-col__heading {
  font-family: var(--font-manrope);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.svc-pain-col--bad .svc-pain-col__heading {
  color: var(--primary);
}

.svc-pain-col--good .svc-pain-col__heading {
  color: #5dcaa5;
}

.svc-pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.svc-pain-list li {
  font-size: 0.9rem;
  line-height: 1.65;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--muted-foreground);
}

.svc-pain-col--good .svc-pain-list li {
  color: rgba(255, 255, 255, 0.7);
}

.svc-pain-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

.svc-pain-col--bad .svc-pain-icon {
  background: hsl(350 87% 42% / 0.1);
  color: var(--primary);
}

.svc-pain-col--good .svc-pain-icon {
  background: rgba(93, 202, 165, 0.2);
  color: #5dcaa5;
}

/* ══════════════════════════════════════════════════════════
   DETAIL CARDS (What We Measure)
══════════════════════════════════════════════════════════ */
.svc-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-detail-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.svc-detail-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.svc-detail-card__icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.svc-detail-card__title {
  font-family: var(--font-manrope);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.svc-detail-card__body {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.svc-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.svc-detail-list li {
  font-size: 0.82rem;
  color: var(--muted-foreground);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  line-height: 1.5;
}

.svc-detail-list li::before {
  content: "→" !important;
  color: var(--primary);
  flex-shrink: 0;
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════════
   FLOORING SUB-TYPES — image cards
══════════════════════════════════════════════════════════ */
.svc-subtypes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.svc-subtype-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.svc-subtype-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13);
  transform: translateY(-4px);
}

.svc-subtype-card__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.svc-subtype-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.svc-subtype-card:hover .svc-subtype-card__img-wrap img {
  transform: scale(1.07);
}

.svc-subtype-card__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 20, 40, 0.45) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.svc-subtype-card__body {
  padding: 1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-top: 2px solid var(--primary);
}

.svc-subtype-card__name {
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.svc-subtype-card__desc {
  font-size: 0.78rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════
   PROCESS — How It Works
══════════════════════════════════════════════════════════ */
.svc-process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.svc-process-steps::after {
  content: "";
  position: absolute;
  top: 35px;
  left: calc(16.7% + 20px);
  right: calc(16.7% + 20px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0,
    var(--primary) 10px,
    transparent 10px,
    transparent 18px
  );
}

.svc-process-step {
  text-align: center;
  padding: 0 1.5rem;
}

.svc-process-step__num {
  width: 70px;
  height: 70px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-manrope);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}

.svc-process-step__title {
  font-family: var(--font-manrope);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.65rem;
  letter-spacing: 0.02em;
}

.svc-process-step__body {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   BENEFITS
══════════════════════════════════════════════════════════ */
.svc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.svc-benefit-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.25s ease;
}

.svc-benefit-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.svc-benefit-icon {
  width: 48px;
  height: 48px;
  background: hsl(350 87% 42% / 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.svc-benefit-card__title {
  font-family: var(--font-manrope);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.svc-benefit-card__body {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   DELIVERABLES TABLE
══════════════════════════════════════════════════════════ */
.svc-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.svc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.svc-table th {
  background: var(--secondary);
  color: #fff;
  font-family: var(--font-manrope);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.875rem 1.25rem;
  text-align: left;
  font-weight: 600;
}

.svc-table td {
  padding: 0.875rem 1.25rem;
  color: var(--muted-foreground);
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  line-height: 1.6;
}

.svc-table tr:nth-child(even) td {
  background: var(--muted);
}

.svc-table tr:last-child td {
  border-bottom: none;
}

.svc-table tr:hover td {
  background: hsl(350 87% 42% / 0.05);
}

.svc-table__check {
  color: #1a9e5f;
  font-weight: 700;
  font-size: 1rem;
}

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.svc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 820px;
  margin: 0 auto;
}

.svc-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.svc-faq-q {
  width: 100%;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-manrope);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card);
  transition: background 0.2s ease;
  border: none;
  text-align: left;
  letter-spacing: 0.01em;
}

.svc-faq-q:hover {
  background: var(--muted);
}

.svc-faq-q::after {
  content: "+";
  color: var(--primary);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-left: 1rem;
  line-height: 1;
}

.svc-faq-item.open .svc-faq-q::after {
  content: "−";
}

.svc-faq-a {
  display: none;
  padding: 0 1.25rem 1.1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  background: var(--muted);
}

.svc-faq-item.open .svc-faq-a {
  display: block;
}

/* ══════════════════════════════════════════════════════════
   CTA BANNER (replaces map above footer)
══════════════════════════════════════════════════════════ */
.svc-cta-banner {
  background: var(--primary);
  padding: 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.svc-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(0, 0, 0, 0.04) 40px,
    rgba(0, 0, 0, 0.04) 80px
  );
  pointer-events: none;
}

.svc-cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.svc-cta-banner h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  max-width: 22ch;
}

.svc-cta-banner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 54ch;
  line-height: 1.7;
}

.svc-cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* DOODLE STYLES */

.svc-section .section-doodle {
  right: 5%;
}

.svc-section .section-doodle__arrow {
  width: 90px;
  height: 90px;
}

.svc-section .section-doodle__text {
  font-size: 1.5rem;
}

.testimonials-section .section-doodle,
.projects-section .section-doodle,
.deliverable-section .section-doodle {
  top: 0px;
}

.projects-section .section-doodle {
  left: 10%;
  top: -10px;
}

.projects-section .section-doodle__arrow,
.deliverable-section .section-doodle__arrow {
  width: 90px;
  height: 90px;
}

.projects-section .section-doodle__arrow {
  transform: rotate(50deg);
  margin-left: 35px;
}

.projects-section .section-doodle__text,
.deliverable-section.section-doodle__text {
  font-size: 1.5rem;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — new sections
══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .svc-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-subtypes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service_cta,
  .deliverable-section,
  .svc-section {
    padding: 4rem 0;
  }

  .svc-section .section-head {
    align-items: center;
    text-align: center;
  }

  .service-hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-hero__collage {
    height: 300px;
  }

  .service-stats-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .srv-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 640px) {
  .svc-pain-grid,
  .svc-detail-grid,
  .svc-benefits-grid,
  .svc-process-steps {
    grid-template-columns: 1fr;
  }

  .svc-process-steps::after {
    display: none;
  }

  .svc-subtypes-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .service_cta,
  .svc-section,
  .deliverable-section,
  .srv-carousel-section {
    padding: 2rem 0;
  }
  .service-hero {
    padding: 2.5rem 0;
  }

  .service-hero__collage {
    height: 240px;
  }

  .service-stats-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 1rem;
  }

  .service-hero__links {
    grid-template-columns: 1fr;
  }

  .srv-card {
    flex: 0 0 100%;
  }
  .srv-carousel__btn--prev {
    left: 10px;
  }
  .srv-carousel__btn--next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .service_heading {
    font-size: 1.875rem;
  }
}
