/**
 * Modern booking, trust and feature sections for the home page.
 */

body.page-home {
  --home-ink: #102b44;
  --home-copy: #53697d;
  --home-muted: #7890a3;
  --home-line: #dfe9f0;
  --home-teal: #138f89;
  --home-blue: #257ab6;
  --home-orange: #e86113;
}

/* Consultation banner */
body.page-home .bookingBanner {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.75fr);
  width: min(calc(100% - 48px), 1392px);
  height: auto;
  min-height: 154px;
  margin: 34px auto 18px;
  overflow: hidden;
  border: 1px solid rgba(207, 224, 234, 0.82);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 24px 55px rgba(24, 66, 96, 0.11);
}

body.page-home .bookingBannerLeft {
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  padding: 30px 38px;
  overflow: hidden;
  clip-path: none;
  background:
    radial-gradient(circle at 86% -40%, rgba(85, 192, 215, 0.34), transparent 36%),
    linear-gradient(125deg, #0c4968 0%, #0e6e82 56%, #118f88 100%);
}

body.page-home .bookingBannerLeft::before {
  top: -100px;
  right: -75px;
  left: auto;
  width: 270px;
  height: 270px;
  border: 48px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  background: transparent;
  transform: none;
}

body.page-home .bookingBannerContent {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: 100%;
  max-width: 860px;
}

body.page-home .bookingBannerCopy {
  min-width: 0;
}

body.page-home .bookingBannerEyebrow {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 7px;
  color: #8fe5dc;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

body.page-home .bookingBannerEyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff8744;
  box-shadow: 0 0 0 5px rgba(255, 135, 68, 0.14);
  content: "";
}

body.page-home .bookingBannerTitle {
  display: block;
  max-width: 500px;
  color: #ffffff;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

body.page-home .bookingBannerText {
  margin: 8px 0 0;
  color: rgba(230, 245, 250, 0.76);
  font-size: 0.79rem;
  line-height: 1.5;
}

body.page-home .bookingCtaBtn {
  min-height: 54px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 13px 28px rgba(2, 38, 57, 0.2);
  font-size: 0.8rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

body.page-home .bookingCtaBtn:hover {
  background: rgba(255, 255, 255, 0.17);
  box-shadow: 0 16px 32px rgba(2, 38, 57, 0.27);
  transform: translateY(-2px);
}

body.page-home .bookingCtaBtn .btnIconLeft {
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.1);
}

body.page-home .bookingCtaBtn .btnText {
  padding: 0 5px 0 14px;
  white-space: nowrap;
}

body.page-home .bookingCtaBtn .btnIconRight {
  padding: 0 14px 0 10px;
}

body.page-home .bookingBannerMid {
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: 0;
  padding: 28px 34px;
  clip-path: none;
  background:
    radial-gradient(circle at 100% 0, rgba(31, 134, 180, 0.11), transparent 43%),
    #f7fafc;
  border-left: 1px solid var(--home-line);
}

body.page-home .bookingBannerMid::before {
  opacity: 0.22;
}

body.page-home .phoneLinkBlock {
  gap: 13px;
  margin: 0;
  padding: 10px;
  border-radius: 16px;
  transition: background-color 180ms ease, transform 180ms ease;
}

body.page-home .phoneLinkBlock:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

body.page-home .phoneIconBox {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #159d91, #197caf);
  box-shadow: 0 9px 20px rgba(25, 124, 175, 0.2);
}

body.page-home .phoneNumber {
  color: var(--home-ink);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  letter-spacing: -0.015em;
}

body.page-home .phoneLabel {
  color: var(--home-muted);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

body.page-home .bookingBannerStripe {
  display: none;
}

/* Trust statistics */
body.page-home .trustStats {
  position: relative;
  padding: 52px 0 62px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(32, 159, 150, 0.06), transparent 24%),
    #ffffff;
}

body.page-home .trustInner {
  width: min(100%, 1440px);
  padding: 0 24px;
}

body.page-home .trustBanner {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 17px;
  align-items: center;
  margin: 0 0 22px;
  padding: 22px 25px;
  border: 1px solid #d8ebe8;
  border-radius: 20px;
  background:
    linear-gradient(100deg, rgba(232, 248, 246, 0.98), rgba(245, 250, 253, 0.95));
  box-shadow: 0 12px 30px rgba(24, 94, 99, 0.065);
}

body.page-home .trustBannerIcon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(20, 143, 137, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--home-teal);
  box-shadow: 0 8px 20px rgba(20, 143, 137, 0.1);
}

body.page-home .trustBannerIcon svg {
  width: 25px;
  height: 25px;
}

body.page-home .trustBannerKicker {
  display: block;
  margin-bottom: 3px;
  color: var(--home-teal);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.page-home .trustBannerTitle {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

body.page-home .trustBannerText {
  margin: 4px 0 0;
  color: var(--home-copy);
  font-size: 0.79rem;
  line-height: 1.5;
}

body.page-home .statsGrid {
  gap: 14px;
}

body.page-home .statCard {
  position: relative;
  min-height: 144px;
  padding: 24px 22px 21px;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 19px;
  background: linear-gradient(145deg, #ffffff 0%, #f9fbfd 100%);
  box-shadow: 0 12px 28px rgba(27, 69, 98, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

body.page-home .statCard::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1aa79b, #48b9cf);
  content: "";
}

body.page-home .statCard:nth-child(2)::before {
  background: linear-gradient(90deg, #247eba, #64a8d4);
}

body.page-home .statCard:nth-child(3)::before {
  background: linear-gradient(90deg, #e65a0b, #f59a57);
}

body.page-home .statCard:nth-child(4)::before {
  background: linear-gradient(90deg, #275c82, #17918e);
}

body.page-home .statCard:hover {
  border-color: #c9dce7;
  box-shadow: 0 18px 38px rgba(27, 69, 98, 0.11);
  transform: translateY(-4px);
}

body.page-home .statCardIndex {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 24px;
  margin-bottom: 15px;
  border-radius: 999px;
  background: #edf7f6;
  color: var(--home-teal);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

body.page-home .statCard:nth-child(2) .statCardIndex {
  background: #eef5fb;
  color: var(--home-blue);
}

body.page-home .statCard:nth-child(3) .statCardIndex {
  background: #fff2e9;
  color: var(--home-orange);
}

body.page-home .statNumber {
  color: var(--home-ink);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  letter-spacing: -0.045em;
}

body.page-home .statNumber::after {
  display: none;
}

body.page-home .statLabel {
  margin-top: 7px;
  color: var(--home-copy);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Advantages */
body.page-home .features {
  position: relative;
  padding: 72px 0 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 10%, rgba(51, 145, 196, 0.09), transparent 26%),
    radial-gradient(circle at 5% 90%, rgba(232, 97, 19, 0.055), transparent 23%),
    #f4f8fb;
}

body.page-home .features::before {
  top: -120px;
  right: -90px;
  width: 330px;
  height: 330px;
  background: rgba(45, 138, 190, 0.045);
}

body.page-home .features::after {
  bottom: -150px;
  left: -110px;
  width: 340px;
  height: 340px;
  background: rgba(230, 90, 11, 0.035);
}

body.page-home .featuresHeader,
body.page-home .featuresInner {
  position: relative;
  z-index: 1;
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: 24px;
}

body.page-home .featuresHeader {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: 40px;
  align-items: end;
  margin-bottom: 30px;
}

body.page-home .featuresEyebrow {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 8px;
  color: var(--home-orange);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

body.page-home .featuresEyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-orange);
  box-shadow: 0 0 0 6px rgba(232, 97, 19, 0.1);
  content: "";
}

body.page-home .featuresTitle {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

body.page-home .featuresIntro {
  margin: 0;
  color: var(--home-copy);
  font-size: 0.9rem;
  line-height: 1.65;
}

body.page-home .featuresInner {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

body.page-home .featureCard {
  min-height: 282px;
  padding: 25px 23px 24px;
  text-align: left;
  border: 1px solid #dce7ee;
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 15px 34px rgba(25, 66, 95, 0.075);
}

body.page-home .featureCard::before {
  top: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 4px;
  opacity: 1;
  background: linear-gradient(90deg, #1aa79b, #4fc2c4);
}

body.page-home .featureCard:nth-child(2)::before {
  background: linear-gradient(90deg, #287fba, #72b8dc);
}

body.page-home .featureCard:nth-child(3)::before {
  background: linear-gradient(90deg, #e86113, #f4a268);
}

body.page-home .featureCard:nth-child(4)::before {
  background: linear-gradient(90deg, #275d82, #15918b);
}

body.page-home .featureCard:hover {
  border-color: #cddfe9;
  box-shadow: 0 22px 48px rgba(25, 66, 95, 0.13);
  transform: translateY(-6px);
}

body.page-home .featureCardTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

body.page-home .featureIconWrap {
  width: 58px;
  height: 58px;
  margin: 0;
  border: 1px solid #d7edea;
  border-radius: 17px;
  background: #ebf8f6;
  box-shadow: 0 10px 22px rgba(28, 145, 138, 0.12);
}

body.page-home .featureCard:nth-child(2) .featureIconWrap {
  border-color: #d7e8f3;
  background: #edf6fb;
  color: var(--home-blue);
  box-shadow: 0 10px 22px rgba(37, 122, 182, 0.11);
}

body.page-home .featureCard:nth-child(3) .featureIconWrap {
  border-color: #f1dfd3;
  background: #fff3eb;
  color: var(--home-orange);
  box-shadow: 0 10px 22px rgba(232, 97, 19, 0.1);
}

body.page-home .featureCard:nth-child(4) .featureIconWrap {
  border-color: #d8e5ec;
  background: #eef5f8;
  color: #275d82;
}

body.page-home .featureCard:hover .featureIconWrap {
  box-shadow: 0 12px 26px rgba(28, 145, 138, 0.17);
  transform: translateY(-2px) rotate(-2deg);
}

body.page-home .featureIconSvg {
  width: 27px;
  height: 27px;
  color: currentColor;
}

body.page-home .featureIndex {
  color: #a2b0bc;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

body.page-home .featureTitle {
  margin-bottom: 11px;
  color: var(--home-ink);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

body.page-home .featureText {
  color: var(--home-copy);
  font-size: 0.79rem;
  line-height: 1.68;
}

@media (max-width: 1100px) {
  body.page-home .bookingBanner {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  }

  body.page-home .bookingBannerContent {
    grid-template-columns: minmax(0, 1fr);
    gap: 17px;
  }

  body.page-home .bookingCtaBtn {
    width: max-content;
  }

  body.page-home .featuresInner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body.page-home .bookingBanner {
    grid-template-columns: minmax(0, 1fr);
  }

  body.page-home .bookingBannerLeft,
  body.page-home .bookingBannerMid {
    width: auto;
    padding: 25px;
  }

  body.page-home .bookingBannerMid {
    justify-content: flex-start;
    border-top: 1px solid var(--home-line);
    border-left: 0;
  }

  body.page-home .trustStats {
    padding: 44px 0 52px;
  }

  body.page-home .features {
    padding: 58px 0 66px;
  }

  body.page-home .featuresHeader {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
}

@media (max-width: 620px) {
  body.page-home .bookingBanner {
    width: calc(100% - 28px);
    margin-top: 20px;
    border-radius: 21px;
  }

  body.page-home .bookingBannerLeft,
  body.page-home .bookingBannerMid {
    padding: 23px 20px;
  }

  body.page-home .bookingBannerTitle {
    font-size: 1.45rem;
  }

  body.page-home .bookingCtaBtn {
    width: 100%;
  }

  body.page-home .bookingCtaBtn .btnText {
    flex: 1;
  }

  body.page-home .trustInner,
  body.page-home .featuresHeader,
  body.page-home .featuresInner {
    padding-inline: 14px;
  }

  body.page-home .trustBanner {
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 13px;
    padding: 19px 16px;
    border-radius: 17px;
  }

  body.page-home .trustBannerIcon {
    width: 45px;
    height: 45px;
    border-radius: 13px;
  }

  body.page-home .statsGrid,
  body.page-home .featuresInner {
    grid-template-columns: minmax(0, 1fr);
  }

  body.page-home .statCard,
  body.page-home .featureCard {
    min-height: 0;
  }

  body.page-home .featuresTitle {
    font-size: 2rem;
  }
}
