/* =========================
   SERVICES PAGE
========================= */

:root {
  --mobcow-black: #000000;
  --mobcow-white: #ffffff;
  --mobcow-red: #e53935;
  --mobcow-grey: #5f6368;
  --mobcow-maroon: #800000;
  --mobcow-green: #2e7d32;
  --mobcow-blue: #004aad;
  --soft-bg: #fbf8f1;
}

html {
  scroll-behavior: smooth;
}

.services-page {
  font-family: "Poppins", Arial, sans-serif;
  background: var(--soft-bg);
  color: #111;
}

.services-page *,
.services-page *::before,
.services-page *::after {
  box-sizing: border-box;
}

.services-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.76) 42%, rgba(0,0,0,0.18) 100%),
    url("../images/featured/catering.jpg") center / cover no-repeat;
  color: #fff;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 70%, rgba(229,57,53,0.22), transparent 30%),
    linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.55));
  pointer-events: none;
}

.services-hero-container,
.services-container,
.service-enquiry-container {
  width: min(100% - 96px, 1440px);
  margin: 0 auto;
}

.services-hero-container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.services-hero-copy {
  max-width: 760px;
}

.services-eyebrow,
.services-section-eyebrow {
  display: inline-block;
  color: var(--mobcow-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.services-eyebrow {
  margin-bottom: 22px;
}

.services-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(54px, 5vw, 86px);
  line-height: 1.02;
  letter-spacing: -3px;
  font-weight: 900;
}

.services-hero p {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  line-height: 1.65;
}

.services-hero-actions {
  margin-top: 38px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.service-btn {
  min-height: 58px;
  min-width: 220px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.service-btn:hover {
  transform: translateY(-2px);
}

.service-btn-primary {
  background: var(--mobcow-red);
  color: #fff;
  border: 1px solid var(--mobcow-red);
}

.service-btn-primary:hover {
  background: #cf2f2c;
}

.service-btn-outline {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.04);
}

.service-btn-outline:hover {
  background: #fff;
  color: #111;
}

.services-overview {
  position: relative;
  overflow: hidden;
  padding: 92px 0 96px;
  background:
    radial-gradient(circle at 15% 12%, rgba(229,57,53,0.035), transparent 32%),
    linear-gradient(135deg, #fbf8f1 0%, #f7f2ea 52%, #fbfaf7 100%);
}

.services-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.11;
  pointer-events: none;
  background-image: radial-gradient(rgba(0,0,0,0.22) 0.55px, transparent 0.55px);
  background-size: 8px 8px;
}

.services-bg-word {
  position: absolute;
  top: 42px;
  right: -40px;
  font-size: clamp(110px, 15vw, 260px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -8px;
  color: rgba(0,0,0,0.035);
  pointer-events: none;
  user-select: none;
}

.services-container {
  position: relative;
  z-index: 2;
}

.services-intro {
  max-width: 860px;
  margin: 0 0 76px;
  text-align: left;
}

.services-section-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
}

.services-intro h2 {
  margin: 0;
  color: #111;
  font-size: clamp(38px, 3.6vw, 58px);
  line-height: 1.08;
  letter-spacing: -2px;
  font-weight: 900;
}

.services-intro p {
  max-width: 720px;
  margin: 20px auto 0;
  color: #5f6368;
  font-size: 16px;
  line-height: 1.65;
}

.service-block {
  display: grid;
  grid-template-columns: 47% 53%;
  gap: 58px;
  align-items: center;
  margin-bottom: 82px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.service-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-block:last-child {
  margin-bottom: 0;
}

.service-block-image-right {
  grid-template-columns: 53% 47%;
}

.service-block-image-right .service-image {
  order: 2;
}

.service-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 26px 70px rgba(0,0,0,0.12);
}

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

.service-content {
  min-width: 0;
}

.service-number {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.service-number::after {
  content: "";
  display: inline-block;
  width: 92px;
  height: 2px;
  margin-left: 18px;
  vertical-align: middle;
  background: currentColor;
  opacity: 0.45;
}

.service-number.red { color: var(--mobcow-red); }
.service-number.green { color: var(--mobcow-green); }
.service-number.blue { color: var(--mobcow-blue); }

.service-content h3 {
  margin: 0 0 18px;
  color: #111;
  font-size: clamp(30px, 2.5vw, 42px);
  line-height: 1.08;
  letter-spacing: -1px;
  font-weight: 900;
}

.service-content > p {
  margin: 0 0 26px;
  color: #3f4246;
  font-size: 15.5px;
  line-height: 1.65;
}

.service-meta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 32px;
  align-items: start;
  margin-bottom: 26px;
}

.service-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-benefits li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 26px;
  color: #2f2f2f;
  font-size: 14px;
  line-height: 1.42;
}

.service-benefits li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.service-benefits.red li::before { background: var(--mobcow-red); }
.service-benefits.green li::before { background: var(--mobcow-green); }
.service-benefits.blue li::before { background: var(--mobcow-blue); }

.pricing-note {
  min-height: 150px;
  padding: 22px 0 22px 28px;
  border-left: 2px solid currentColor;
}

.pricing-note .pricing-icon {
  display: block;
  margin-bottom: 12px;
  font-size: 36px;
}

.pricing-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 900;
}

.pricing-note p {
  margin: 0;
  color: #333;
  font-size: 13.5px;
  line-height: 1.45;
}

.pricing-note.red { color: var(--mobcow-red); }
.pricing-note.green { color: var(--mobcow-green); }
.pricing-note.blue { color: var(--mobcow-blue); }

.service-card-btn {
  min-height: 46px;
  min-width: 250px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--mobcow-red);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(229,57,53,0.2);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.service-card-btn:hover {
  background: #cf2f2c;
  transform: translateY(-2px);
}

/* =========================
   OUR IMPACT SLIDESHOW
========================= */

.impact-slider-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0 112px;
  background:
    radial-gradient(circle at 18% 16%, rgba(46, 125, 50, 0.06), transparent 28%),
    radial-gradient(circle at 86% 76%, rgba(229, 57, 53, 0.06), transparent 32%),
    linear-gradient(135deg, #fbf8f1 0%, #f7f2ea 52%, #fbfaf7 100%);
  color: #111;
}

.impact-slider-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.11;
  pointer-events: none;
  background-image: radial-gradient(rgba(0,0,0,0.22) 0.55px, transparent 0.55px);
  background-size: 8px 8px;
}

.impact-slider-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background: #2e7d32;
}

.impact-bg-word {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(110px, 15vw, 250px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -8px;
  color: rgba(0,0,0,0.035);
  pointer-events: none;
  user-select: none;
}

.impact-dot-pattern {
  position: absolute;
  width: 90px;
  height: 90px;
  opacity: 0.42;
  background-image: radial-gradient(#2e7d32 2px, transparent 2px);
  background-size: 18px 18px;
  pointer-events: none;
}

.impact-dot-left {
  left: 14%;
  top: 190px;
}

.impact-dot-right {
  right: 14%;
  top: 190px;
}

.impact-slider-container {
  position: relative;
  z-index: 2;
  width: min(100% - 96px, 1440px);
  margin: 0 auto;
}

.impact-slider-header {
  max-width: 980px;
  margin: 0 0 54px;
  text-align: left;
}

.impact-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 22px;
  color: #e53935;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.impact-eyebrow::before,
.impact-eyebrow::after {
  content: "";
  width: 48px;
  height: 3px;
  background: #2e7d32;
}

.impact-slider-header h2 {
  margin: 0;
  color: #080808;
  font-size: clamp(42px, 4.1vw, 66px);
  line-height: 1.06;
  letter-spacing: -2.6px;
  font-weight: 900;
}

.impact-slider-header h2 span {
  color: #e53935;
}

.impact-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 82px;
  gap: 28px;
  align-items: center;
}

.impact-stage {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
}

.impact-track {
  display: flex;
  transition: transform 0.55s ease;
  will-change: transform;
}

.impact-slide {
  flex: 0 0 100%;
  padding: 12px;
}

.impact-slide img {
  width: 100%;
  height: auto;
  max-height: 660px;
  display: block;
  object-fit: contain;
  border-radius: 18px;
  border: 3px solid rgba(229, 57, 53, 0.72);
  background: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,0.16);
}

.impact-arrow {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #111;
  font-size: 54px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(0,0,0,0.13);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.impact-arrow:hover {
  background: #e53935;
  color: #fff;
  transform: translateY(-2px);
}

.impact-arrow:focus-visible,
.impact-dot:focus-visible {
  outline: 3px solid rgba(0, 74, 173, 0.45);
  outline-offset: 4px;
}

.impact-dots {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.impact-dots::before,
.impact-dots::after {
  content: "";
  width: 82px;
  height: 3px;
  background: #2e7d32;
}

.impact-dot {
  width: 18px;
  height: 18px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid #e53935;
  background: transparent;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.impact-dot.is-active {
  background: #e53935;
  box-shadow: 0 0 0 8px rgba(229,57,53,0.12);
}

.impact-dot:hover {
  transform: scale(1.08);
}

.service-enquiry-cta {
  padding: 58px 0;
  background:
    radial-gradient(circle at 8% 70%, rgba(229,57,53,0.14), transparent 30%),
    linear-gradient(180deg, #070707, #000);
  color: #fff;
}

.service-enquiry-container {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 38px;
  align-items: center;
}

.cta-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #000;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.cta-icon img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  display: block;
}

.cta-copy h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
}

.cta-copy p {
  margin: 0;
  max-width: 620px;
  color: rgba(255,255,255,0.72);
  font-size: 15.5px;
  line-height: 1.55;
}

.service-cta-button {
  min-height: 60px;
  min-width: 240px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--mobcow-red);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.service-cta-button:hover {
  background: #cf2f2c;
  transform: translateY(-2px);
}

@media (max-width: 1120px) {
  .services-hero-container,
  .services-container,
  .service-enquiry-container {
    width: min(100% - 48px, 960px);
  }

  .service-block,
  .service-block-image-right {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-block-image-right .service-image {
    order: -1;
  }

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

  .pricing-note {
    min-height: auto;
  }

  .service-enquiry-container {
    grid-template-columns: 80px 1fr;
  }

  .service-cta-button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .impact-slider-container {
    width: min(100% - 48px, 960px);
  }

  .impact-carousel {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .impact-arrow {
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
  }

  .impact-arrow-prev {
    left: 18px;
  }

  .impact-arrow-next {
    right: 18px;
  }

  .impact-arrow:hover {
    transform: translateY(-50%);
  }
}

@media (max-width: 760px) {
  .services-hero {
    min-height: 720px;
    align-items: flex-end;
    padding-bottom: 110px;
  }

  .services-hero-container,
  .services-container,
  .service-enquiry-container {
    width: min(100% - 34px, 520px);
  }

  .services-hero h1 {
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -1.4px;
  }

  .services-hero p {
    font-size: 15px;
    line-height: 1.6;
  }

  .services-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .service-btn {
    width: 100%;
    min-width: 0;
  }

  .services-overview {
    padding: 34px 0 72px;
  }

  .services-intro {
    margin-bottom: 52px;
    text-align: left;
  }

  .services-intro h2 {
    font-size: 36px;
    line-height: 1.08;
  }

  .services-intro p {
    font-size: 14.5px;
  }

  .service-block {
    margin-bottom: 62px;
  }

  .service-image img {
    height: 270px;
  }

  .service-content h3 {
    font-size: 30px;
  }

  .service-content > p {
    font-size: 14.5px;
  }

  .service-number {
    font-size: 28px;
  }

  .service-number::after {
    width: 64px;
  }

  .pricing-note {
    padding: 20px;
    border-left: none;
    border-top: 2px solid currentColor;
    background: rgba(255,255,255,0.6);
    border-radius: 14px;
  }

  .service-card-btn {
    width: 100%;
  }

  .service-enquiry-container {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: left;
  }

  .enquiry-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enquiry-tag {
    min-height: 76px;
    padding: 14px 14px;
    gap: 12px;
  }

  .enquiry-tag:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(255,255,255,0.13);
  }

  .enquiry-tag:nth-child(2n) {
    border-right: none;
  }

  .enquiry-tag:nth-child(3),
  .enquiry-tag:nth-child(6) {
    border-right: 1px solid rgba(255,255,255,0.15);
  }

  .enquiry-tag span {
    font-size: 14px;
  }

  .cta-icon {
    width: 72px;
    height: 72px;
  }

  .cta-copy h2 {
    font-size: 30px;
  }

  .impact-slider-section {
    padding: 78px 0 86px;
  }

  .impact-slider-container {
    width: min(100% - 34px, 520px);
  }

  .impact-bg-word {
    top: 22px;
    font-size: 76px;
    letter-spacing: -3px;
  }

  .impact-dot-pattern {
    display: none;
  }

  .impact-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    gap: 14px;
  }

  .impact-eyebrow::before,
  .impact-eyebrow::after {
    width: 34px;
  }

  .impact-slider-header {
    margin-bottom: 34px;
    text-align: left;
  }

  .impact-slider-header h2 {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -1.4px;
  }

  .impact-stage {
    border-radius: 18px;
  }

  .impact-slide {
    padding: 6px;
  }

  .impact-slide img {
    max-height: 460px;
    border-radius: 14px;
    border-width: 2px;
  }

  .impact-arrow {
    width: 48px;
    height: 48px;
    font-size: 38px;
    background: rgba(255,255,255,0.92);
  }

  .impact-arrow-prev {
    left: 8px;
  }

  .impact-arrow-next {
    right: 8px;
  }

  .impact-dots {
    gap: 12px;
    margin-top: 26px;
  }

  .impact-dots::before,
  .impact-dots::after {
    width: 44px;
  }

  .impact-dot {
    width: 14px;
    height: 14px;
  }
}
