/* Deratisation page only. Shared header, footer, buttons, typography and forms stay in global.css. */

.service-hero-media::after {
  background:
    linear-gradient(90deg, rgba(24, 18, 14, .92) 0%, rgba(24, 18, 14, .72) 48%, rgba(24, 18, 14, .24) 100%),
    linear-gradient(0deg, rgba(24, 18, 14, .7), rgba(24, 18, 14, .08) 62%);
}

.service-hero-media img {
  filter: saturate(.92) contrast(1.06);
}

.service-hero-copy .lead {
  max-width: 620px;
}

.service-hero-card {
  padding: 28px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, .24);
}

.service-hero-card span {
  color: var(--red);
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 900;
}

.service-hero-card strong {
  display: block;
  margin-top: 12px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.08;
}

.service-hero-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .78);
}

.service-intro-section {
  background: var(--white);
}

.service-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(0, 1fr);
  gap: 72px;
}

.service-intro-grid > div > h2,
.service-audience-grid > div > h2 {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 0;
}

.service-rich-copy {
  display: grid;
  gap: 18px;
  align-content: end;
  font-size: 18px;
}

.service-rich-copy p {
  margin: 0;
}

.service-detail-section {
  background: var(--soft);
}

.service-detail-grid {
  display: grid;
  gap: 34px;
}

.service-detail-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(24, 18, 14, .08);
  --service-flash-opacity: 0;
  --service-flash-x: -120%;
}

.service-detail-card-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
}

.service-detail-card-reverse img {
  grid-column: 2;
}

.service-detail-card-reverse div {
  grid-column: 1;
  grid-row: 1;
}

.service-detail-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
}

.service-detail-card span {
  color: var(--red);
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-detail-card h2 {
  margin-top: 12px;
}

.service-detail-card p:last-child {
  margin-bottom: 0;
}

.service-gallery-section {
  background: var(--white);
}

.service-gallery-inner {
  display: grid;
  gap: 34px;
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-gallery-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(24, 18, 14, .08);
  --service-flash-opacity: 0;
  --service-flash-x: -120%;
  transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.service-gallery-card:hover {
  border-color: rgba(182, 50, 47, .28);
  box-shadow: 0 24px 58px rgba(24, 18, 14, .13);
  transform: translateY(-3px);
}

.service-gallery-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-gallery-card div {
  padding: 20px;
}

.service-gallery-card h3 {
  margin-bottom: 10px;
}

.service-gallery-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-gallery-card p {
  margin: 0;
  color: var(--muted);
}

.service-reasons-section {
  background: var(--white);
}

.service-reasons-inner,
.service-reviews-inner {
  display: grid;
  gap: 34px;
}

.service-reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-reason-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  transition: background-color .24s ease, border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.service-reason-card:hover {
  border-color: rgba(182, 50, 47, .28);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(24, 18, 14, .09);
  transform: translateY(-3px);
}

.service-reason-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red);
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 900;
}

.service-reason-card h3 {
  margin-bottom: 14px;
}

.service-reason-card p {
  margin: 0;
  color: var(--muted);
}

.service-audience-section {
  background: var(--white);
}

.service-audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.audience-list span {
  position: relative;
  overflow: hidden;
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  background: var(--soft);
  --service-flash-opacity: 0;
  --service-flash-x: -120%;
  color: var(--ink);
  font-weight: 900;
  transition: background-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.audience-list span:hover {
  background: var(--white);
  box-shadow: 0 16px 36px rgba(24, 18, 14, .1);
  transform: translateY(-2px);
}

.service-reviews-section {
  background: var(--soft);
}

.service-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-review-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(24, 18, 14, .07);
  transition: box-shadow .24s ease, transform .24s ease;
}

.service-detail-card::after,
.service-gallery-card::after,
.audience-list span::after {
  position: absolute;
  inset: -10%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 18%, rgba(255, 79, 76, .18) 44%, rgba(182, 50, 47, .74) 50%, rgba(255, 79, 76, .18) 56%, transparent 82%);
  content: "";
  opacity: var(--service-flash-opacity);
  transform: translateX(var(--service-flash-x)) skewX(-16deg);
}

.service-review-card:hover {
  box-shadow: 0 22px 54px rgba(24, 18, 14, .12);
  transform: translateY(-3px);
}

.service-review-card p {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 21px;
  line-height: 1.32;
}

.service-review-card strong {
  color: var(--red);
  font-weight: 900;
}

@media (max-width: 1440px) {
  .service-detail-card,
  .service-detail-card-reverse {
    grid-template-columns: 1fr;
  }

  .service-detail-card-reverse img,
  .service-detail-card-reverse div {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 820px) {
  .service-intro-grid,
  .service-audience-grid,
  .audience-list,
  .service-gallery-grid,
  .service-reasons-grid,
  .service-reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .service-intro-grid,
  .service-audience-grid {
    gap: 30px;
  }

  .service-detail-card {
    padding: 18px;
    gap: 24px;
  }

  .service-detail-card img {
    height: auto;
    aspect-ratio: 1.18;
  }

  .service-gallery-card img {
    height: auto;
    aspect-ratio: 1.35;
  }
}

