@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

:root {
  --bg: 0 0% 100%;
  --bg-soft: 0 0% 96%;
  --ink: 0 0% 8%;
  --ink-2: 0 0% 22%;
  --muted-fg: 0 0% 45%;
  --line: 0 0% 88%;
  --nav: 22 90% 18%;
  --nav-2: 22 85% 25%;
  --blue: 22 100% 63%;
  --blue-2: 22 100% 52%;
  --blue-soft: 22 100% 95%;
  --green: 22 100% 66%;
  --green-2: 22 100% 55%;
  --green-soft: 22 100% 95%;
  --orange: 22 100% 63%;
  --orange-soft: 22 100% 95%;
  --background: var(--bg);
  --foreground: var(--ink);
  --border: var(--line);
  --radius: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Nunito", system-ui, sans-serif;
  background: hsl(var(--bg));
  color: hsl(var(--ink));
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.15;
}

.font-display {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.text-blue {
  color: hsl(var(--blue));
}

.text-green {
  color: hsl(var(--green));
}

.text-green-2 {
  color: hsl(var(--green-2));
}

.text-orange {
  color: hsl(var(--orange));
}

.text-ink {
  color: hsl(var(--ink));
}

.text-ink-2 {
  color: hsl(var(--ink-2));
}

.text-muted {
  color: hsl(var(--muted-fg));
}

.text-white {
  color: #fff;
}

.text-center {
  text-align: center;
}

.bg-soft {
  background: hsl(var(--bg-soft));
}

.bg-nav {
  background: hsl(var(--nav));
}

.bg-nav-2 {
  background: hsl(var(--nav-2));
}

.bg-white {
  background: #fff;
}

.icon-xs {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
}

.icon-sm {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
}

.icon-md {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

.icon-lg {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}

.icon-xl {
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: middle;
}

.hide-mobile {
  display: none;
}

.show-mobile {
  display: inline;
}

@media (min-width: 640px) {
  .hide-mobile {
    display: inline;
  }
  .show-mobile {
    display: none;
  }
}
.hide-desktop {
  display: block;
}

.show-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .hide-desktop {
    display: none;
  }
  .show-desktop {
    display: flex;
  }
}
.btn-outline-light, .btn-green, .btn-blue {
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.2;
}

.btn-blue {
  background: hsl(var(--blue));
  color: #fff;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 4px 14px hsl(var(--blue)/0.3);
}
.btn-blue:hover {
  background: hsl(var(--blue-2));
  transform: translateY(-1px);
}
.btn-blue.btn-sm {
  padding: 10px 16px;
  font-size: 14px;
}

.btn-green {
  background: hsl(var(--green));
  color: #fff;
  transition: background 0.15s;
  box-shadow: 0 4px 14px hsl(var(--green)/0.3);
}
.btn-green:hover {
  background: hsl(var(--green-2));
}

.btn-outline-back {
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid hsl(var(--line));
  cursor: pointer;
  font-size: 16px;
  line-height: 1.2;
  background: #fff;
  color: hsl(var(--ink-2));
  transition: border-color 0.15s, color 0.15s;
}
.btn-outline-back:hover {
  border-color: hsl(var(--ink));
  color: hsl(var(--ink));
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: background 0.15s, border-color 0.15s;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.field {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid hsl(var(--line));
  background: #fff;
  font-size: 15.5px;
  color: hsl(var(--ink));
  transition: border-color 0.15s, box-shadow 0.15s;
  font-family: inherit;
}
.field:focus {
  outline: none;
  border-color: hsl(var(--blue));
  box-shadow: 0 0 0 4px hsl(var(--blue)/0.15);
}

.field-label {
  font-size: 13px;
  font-weight: 600;
  color: hsl(var(--ink-2));
  margin-bottom: 6px;
  display: block;
}

.field-sm {
  height: 44px;
  border-radius: 8px;
  border: 1px solid hsl(var(--line));
  padding: 0 12px;
  font-size: 14px;
  font-family: inherit;
  color: hsl(var(--ink));
  width: 100%;
}
.field-sm:focus {
  outline: none;
  box-shadow: 0 0 0 2px hsl(var(--blue));
}

.booking-form-card .wpcf7 .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-checkbox):not(.wpcf7-acceptance) {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid hsl(var(--line));
  background: #fff;
  font-size: 15.5px;
  color: hsl(var(--ink));
  transition: border-color 0.15s, box-shadow 0.15s;
  font-family: inherit;
}
.booking-form-card .wpcf7 .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-checkbox):not(.wpcf7-acceptance):focus {
  outline: none;
  border-color: hsl(var(--blue));
  box-shadow: 0 0 0 4px hsl(var(--blue)/0.15);
}
.booking-form-card .wpcf7 textarea.wpcf7-form-control {
  resize: none;
}
.booking-form-card .wpcf7 label {
  font-size: 13px;
  font-weight: 600;
  color: hsl(var(--ink-2));
  margin-bottom: 6px;
  display: block;
}
.booking-form-card .wpcf7 .wpcf7-form > p,
.booking-form-card .wpcf7 .wpcf7-form > div {
  margin-bottom: 16px;
}
.booking-form-card .wpcf7 .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.booking-form-card .wpcf7 .wpcf7-list-item input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: hsl(var(--blue));
}
.booking-form-card .wpcf7 .wpcf7-list-item .wpcf7-list-item-label {
  font-size: 14px;
  font-weight: 400;
  color: hsl(var(--ink-2));
}
.booking-form-card .wpcf7 .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
  background: hsl(var(--blue));
  color: #fff;
}
.booking-form-card .wpcf7 .wpcf7-submit:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.booking-form-card .wpcf7 .wpcf7-not-valid-tip {
  color: #d32f2f;
  font-size: 12px;
  margin-top: 4px;
}
.booking-form-card .wpcf7 .wpcf7-response-output {
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  margin: 16px 0 0;
}
.booking-form-card .wpcf7 .wpcf7-spinner {
  margin: 12px auto 0;
  display: block;
}

.hp-wrap {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
  opacity: 0;
  z-index: -1;
}

.card-soft {
  background: #fff;
  border: 1px solid hsl(var(--line));
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card-soft:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.arch {
  border-radius: 9999px 9999px 16px 16px;
}

.utility-bar {
  background: hsl(var(--nav));
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}
.utility-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.utility-bar__left, .utility-bar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.utility-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.utility-bar__item--desktop {
  display: none;
}
@media (min-width: 640px) {
  .utility-bar__item--desktop {
    display: flex;
  }
}
.utility-bar__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #fff;
}
.utility-bar__phone:hover {
  opacity: 0.8;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.site-header::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, hsl(var(--ink)/0.1) 1.5px, transparent 2px);
  background-size: 12px 12px;
  transform: rotate(-12deg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.site-header::after {
  content: "●";
  position: absolute;
  bottom: 8px;
  right: 24px;
  font-size: 14px;
  color: hsl(var(--blue));
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  animation: twinkle 2.4s ease-in-out infinite;
}
@media (max-width: 768px) {
  .site-header::after {
    display: none;
  }
}
.site-header.is-scrolled {
  background: #fff;
  border-bottom-color: hsl(var(--line));
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.site-header.is-scrolled::before {
  opacity: 1;
}
.site-header.is-scrolled::after {
  opacity: 0.5;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 64px;
}
@media (min-width: 768px) {
  .site-header__inner {
    height: 96px;
    gap: 24px;
  }
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-header__logo:hover .site-header__logo-img {
  transform: scale(1.05);
}
.site-header__logo-img {
  height: 56px;
  width: auto;
  transition: transform 0.3s;
}
@media (min-width: 640px) {
  .site-header__logo-img {
    height: 80px;
  }
}
@media (min-width: 768px) {
  .site-header__logo-img {
    height: 96px;
  }
}
.site-header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .site-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
  }
}
.site-header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
@media (min-width: 1024px) {
  .burger {
    display: none;
  }
}
.burger:hover {
  background: hsl(var(--bg-soft));
}
.burger__line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: hsl(var(--ink));
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
  transform-origin: center;
}
.burger.is-open .burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-open .burger__line:nth-child(2) {
  opacity: 0;
}
.burger.is-open .burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 29;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 1024px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, hsl(var(--ink)/0.12) 2px, transparent 2.5px);
  background-size: 14px 14px;
  transform: rotate(-12deg);
  pointer-events: none;
}
.mobile-nav::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: 0;
  width: 100%;
  height: 120%;
  background: url("../images/road.svg") no-repeat center/contain;
  opacity: 0.06;
  pointer-events: none;
}
.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px;
  gap: 8px;
}
.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
}
.mobile-nav__list li {
  border-bottom: 1px solid hsl(var(--line));
}
.mobile-nav__list li:last-child {
  border-bottom: none;
}
.mobile-nav__list a {
  display: block;
  padding: 16px 12px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--ink));
  position: relative;
  transition: color 0.25s;
}
.mobile-nav__list a::after {
  content: "";
  position: absolute;
  left: 25%;
  right: 25%;
  bottom: 0;
  height: 0;
  border-bottom: 2px dashed hsl(var(--blue));
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav__list a:hover {
  color: hsl(var(--blue));
}
.mobile-nav__list a:hover::after {
  transform: scaleX(1);
}
.mobile-nav__phone {
  margin-top: 24px;
  width: 100%;
  max-width: 280px;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list li a,
.nav-list .nav-link {
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
  color: hsl(var(--ink));
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.25s;
}
.nav-list li a::after,
.nav-list .nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 0;
  border-bottom: 2px dashed hsl(var(--blue));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-list li a:hover,
.nav-list .nav-link:hover {
  color: hsl(var(--blue));
}
.nav-list li a:hover::after,
.nav-list .nav-link:hover::after {
  transform: scaleX(1);
}

.site-footer {
  background: hsl(var(--nav-2));
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0 100px;
}
@media (min-width: 768px) {
  .site-footer {
    padding-bottom: 40px;
  }
}
.site-footer__grid {
  display: grid;
  gap: 32px;
  font-size: 14px;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}
.site-footer__logo {
  display: block;
}
.site-footer__logo-img {
  height: 110px;
  width: auto;
  filter: brightness(0) invert(1);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .site-footer__logo-img {
    margin: 0;
  }
}
.site-footer__desc {
  margin-top: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}
.site-footer__heading {
  font-weight: 800;
  color: #fff;
  font-size: 16px;
  margin-bottom: 12px;
}
.site-footer__contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}
@media (min-width: 768px) {
  .site-footer__contact-item {
    justify-content: flex-start;
  }
}
.site-footer__partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .site-footer__partners {
    justify-content: flex-start;
  }
}
.site-footer__partner-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.site-footer__partner-logo--cpam {
  height: 56px;
}
.site-footer__bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media (min-width: 768px) {
  .site-footer__bottom {
    justify-content: space-between;
  }
}

.footer-nav-list {
  display: grid;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav-list a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s;
}
.footer-nav-list a:hover {
  color: #fff;
}

.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-top: 1px solid hsl(var(--line));
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .mobile-sticky-bar {
    display: none;
  }
}
.mobile-sticky-bar__call {
  padding: 16px;
  text-align: center;
  font-weight: 600;
  color: hsl(var(--ink));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid hsl(var(--line));
}
.mobile-sticky-bar__book {
  padding: 16px;
  background: hsl(var(--blue));
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.5));
}
@media (min-width: 768px) {
  .hero-section__bg-overlay {
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.2));
  }
}
.hero-section__inner {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 40px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .hero-section__inner {
    grid-template-columns: 1fr 1fr;
    padding-top: 128px;
    padding-bottom: 80px;
  }
}
.hero-section__eyebrow {
  font-weight: 800;
  color: hsl(var(--green-2));
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-section__title {
  font-weight: 800;
  font-size: 32px;
  line-height: 1.08;
  color: hsl(var(--ink));
  word-break: break-word;
  hyphens: auto;
}
@media (min-width: 640px) {
  .hero-section__title {
    font-size: 48px;
  }
}
@media (min-width: 768px) {
  .hero-section__title {
    font-size: 60px;
  }
}
.hero-section__subtitle {
  margin-top: 32px;
  font-size: 18px;
  color: hsl(var(--ink-2));
  max-width: 560px;
  line-height: 1.7;
}
.hero-section__buttons {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-form-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-top: 4px solid hsl(var(--green-2));
  border-left: 1px solid hsl(var(--line));
  border-right: 1px solid hsl(var(--line));
  border-bottom: 1px solid hsl(var(--line));
  padding: 24px;
}
@media (min-width: 768px) {
  .hero-form-card {
    padding: 32px;
  }
}
.hero-form-card__title {
  font-weight: 800;
  font-size: 24px;
  color: hsl(var(--ink));
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .hero-form-card__title {
    font-size: 30px;
  }
}
.hero-form-card__sub {
  font-size: 14px;
  color: hsl(var(--ink-2));
  margin-bottom: 20px;
}
.hero-form-card__grid {
  display: grid;
  gap: 12px;
}
.hero-form-card__row {
  display: grid;
  gap: 12px;
}
@media (min-width: 640px) {
  .hero-form-card__row {
    grid-template-columns: 1fr 1fr;
  }
}
.hero-form-card__footer {
  text-align: center;
  font-size: 12px;
  color: hsl(var(--muted-fg));
  margin-top: 4px;
}
.hero-form-card__footer a {
  font-weight: 600;
  color: hsl(var(--ink));
}
.hero-form-card__footer a:hover {
  text-decoration: underline;
}

.section-eyebrow {
  color: hsl(var(--blue));
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-weight: 800;
  font-size: 30px;
  line-height: 1.15;
  color: hsl(var(--ink));
}
@media (min-width: 768px) {
  .section-title {
    font-size: 48px;
  }
}

.services-grid-section {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .services-grid-section {
    padding: 96px 0;
  }
}
.services-grid-section {
  position: relative;
  overflow: hidden;
}
.services-grid-section__road-bl {
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 150%;
  height: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
}

.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  display: block;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card:hover .service-card__image-wrap img {
  transform: scale(1.05);
}
.service-card:hover .service-card__hover-overlay {
  opacity: 1;
}
.service-card:hover .service-card__icon {
  transform: translateY(-4px);
}
.service-card__image-wrap {
  border-radius: 9999px 9999px 16px 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}
.service-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), transparent);
  transition: opacity 0.3s;
}
.service-card__hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--green-2)/0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  color: #fff;
}
@media (min-width: 640px) {
  .service-card__content {
    padding: 24px;
  }
}
.service-card__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  opacity: 0.9;
  transition: transform 0.3s;
}
@media (max-width: 640px) {
  .service-card__icon {
    display: none;
  }
}
.service-card__title {
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 2px;
}
@media (min-width: 640px) {
  .service-card__title {
    font-size: 24px;
    margin-bottom: 4px;
  }
}
.service-card__desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}
@media (max-width: 640px) {
  .service-card__desc {
    display: none;
  }
}

.service-detail {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .service-detail {
    padding: 96px 0;
  }
}
.service-detail {
  scroll-margin-top: 96px;
  position: relative;
  overflow: hidden;
}
.service-detail::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: hsl(var(--orange)/0.08);
  filter: blur(80px);
  top: -60px;
  right: -80px;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 768px) {
  .service-detail::before {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -120px;
  }
}
.service-detail::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  bottom: 40px;
  left: -20px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(hsl(var(--orange)) 2px, transparent 2px);
  background-size: 16px 16px;
}
@media (min-width: 768px) {
  .service-detail::after {
    width: 180px;
    height: 180px;
    bottom: 60px;
    left: 20px;
  }
}
.service-detail--alt {
  background: hsl(var(--bg-soft));
}
.service-detail--alt::before {
  right: auto;
  left: -80px;
  top: auto;
  bottom: -60px;
}
@media (min-width: 768px) {
  .service-detail--alt::before {
    left: -120px;
    bottom: -100px;
  }
}
.service-detail--alt::after {
  left: auto;
  right: -20px;
  bottom: auto;
  top: 40px;
}
@media (min-width: 768px) {
  .service-detail--alt::after {
    right: 20px;
    top: 60px;
  }
}
.service-detail__road-wide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
}
.service-detail__grid {
  display: grid;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .service-detail__grid {
    grid-template-columns: repeat(12, 1fr);
  }
}
.service-detail__media {
  grid-column: span 6;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-detail__media--reverse {
  order: 2;
  transform: translateX(40px);
}
.is-visible .service-detail__media {
  opacity: 1;
  transform: translateX(0);
}
.service-detail__body {
  grid-column: span 6;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s 0.15s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-detail__body--reverse {
  order: 1;
  transform: translateX(-40px);
}
.is-visible .service-detail__body {
  opacity: 1;
  transform: translateX(0);
}
.service-detail__image-wrap {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.service-detail__image-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 4px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(90deg, hsl(var(--orange)), hsl(var(--orange)/0.3));
}
.service-detail__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail__image-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--green-2));
}
.service-detail__title {
  font-weight: 800;
  font-size: 30px;
  line-height: 1.15;
  color: hsl(var(--ink));
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .service-detail__title {
    font-size: 40px;
  }
}
.service-detail__desc {
  color: hsl(var(--ink-2));
  font-size: 17px;
  line-height: 1.7;
}
.service-detail__points {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}
.service-detail__point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.is-visible .service-detail__point {
  opacity: 1;
  transform: translateY(0);
}
.is-visible .service-detail__point:nth-child(1) {
  transition-delay: 0.4s;
}
.is-visible .service-detail__point:nth-child(2) {
  transition-delay: 0.5s;
}
.is-visible .service-detail__point:nth-child(3) {
  transition-delay: 0.6s;
}
.is-visible .service-detail__point:nth-child(4) {
  transition-delay: 0.7s;
}
.is-visible .service-detail__point:nth-child(5) {
  transition-delay: 0.8s;
}
.is-visible .service-detail__point:nth-child(6) {
  transition-delay: 0.9s;
}
.service-detail__point-icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  color: hsl(var(--green-2));
}
.service-detail__point-text {
  color: hsl(var(--ink));
  font-size: 16px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .service-detail__point-text {
    font-size: 17px;
  }
}

.image-banner {
  padding: 0;
}
.image-banner__wrap {
  position: relative;
  overflow: hidden;
  height: 320px;
}
@media (min-width: 640px) {
  .image-banner__wrap {
    height: 420px;
  }
}
@media (min-width: 768px) {
  .image-banner__wrap {
    height: 520px;
  }
}
.image-banner__wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsl(var(--orange)/0.7) 0%, hsl(var(--orange)/0.4) 50%, hsl(var(--orange)/0.15) 100%);
  pointer-events: none;
  z-index: 1;
}
.image-banner__deco {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.image-banner__deco--circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 4px solid hsla(0, 0%, 100%, 0.35);
  bottom: -70px;
  left: -50px;
}
@media (min-width: 768px) {
  .image-banner__deco--circle {
    width: 420px;
    height: 420px;
    border-width: 5px;
    bottom: -120px;
    left: -80px;
  }
}
.image-banner__deco--ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid hsla(0, 0%, 100%, 0.3);
  top: 20px;
  right: 40px;
}
@media (min-width: 768px) {
  .image-banner__deco--ring {
    width: 160px;
    height: 160px;
    border-width: 5px;
    top: 30px;
    right: 80px;
  }
}
.image-banner__deco--dots {
  width: 100px;
  height: 80px;
  bottom: 16px;
  right: 16px;
  opacity: 0.4;
  background-image: radial-gradient(hsl(0, 0%, 100%) 2.5px, transparent 2.5px);
  background-size: 14px 14px;
}
@media (min-width: 768px) {
  .image-banner__deco--dots {
    width: 160px;
    height: 120px;
    bottom: 30px;
    right: 50px;
  }
}

.about-section {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .about-section {
    padding: 96px 0;
  }
}
.about-section {
  background: hsl(var(--bg-soft));
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 200px;
  border-radius: 0 0 400px 400px;
  background: hsl(var(--orange)/0.06);
  filter: blur(60px);
  top: -40px;
  left: -100px;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 768px) {
  .about-section::before {
    width: 600px;
    height: 300px;
    border-radius: 0 0 600px 600px;
    top: -60px;
    left: -140px;
  }
}
.about-section::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  bottom: 30px;
  right: -10px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, hsl(var(--orange)) 1.5px, transparent 1.5px), radial-gradient(circle, hsl(var(--orange)) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
}
@media (min-width: 768px) {
  .about-section::after {
    width: 200px;
    height: 200px;
    bottom: 50px;
    right: 30px;
  }
}
.about-section__grid {
  display: grid;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .about-section__grid {
    grid-template-columns: 5fr 7fr;
  }
}
.about-section__photo {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1/1;
  position: relative;
}
.about-section__photo::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  width: 60%;
  height: 60%;
  border-top: 3px solid hsl(var(--orange)/0.35);
  border-left: 3px solid hsl(var(--orange)/0.35);
  border-radius: 24px 0 0 0;
  pointer-events: none;
  z-index: 2;
}
.about-section__photo::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 60%;
  height: 60%;
  border-bottom: 3px solid hsl(var(--orange)/0.35);
  border-right: 3px solid hsl(var(--orange)/0.35);
  border-radius: 0 0 24px 0;
  pointer-events: none;
  z-index: 2;
}
.about-section__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-section__eyebrow {
  color: hsl(var(--green-2));
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.about-section__title {
  font-weight: 800;
  font-size: 30px;
  line-height: 1.15;
  color: hsl(var(--ink));
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .about-section__title {
    font-size: 44px;
  }
}
.about-section__text {
  color: hsl(var(--ink-2));
  font-size: 17px;
  line-height: 1.7;
}
.about-section__text + .about-section__text {
  margin-top: 16px;
}
.about-section__badges {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}
@media (min-width: 640px) {
  .about-section__badges {
    grid-template-columns: repeat(3, 1fr);
  }
}
.about-section__badge {
  padding: 16px;
}
.about-section__badge-icon {
  width: 20px;
  height: 20px;
  margin-bottom: 8px;
}
.about-section__badge-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: hsl(var(--muted-fg));
}
.about-section__badge-value {
  font-weight: 600;
  color: hsl(var(--ink));
}

.pet-section {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .pet-section {
    padding: 96px 0;
  }
}
.pet-section {
  position: relative;
  overflow: hidden;
}
.pet-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 40% 60% 55% 45%/55% 40% 60% 45%;
  background: hsl(var(--orange)/0.07);
  filter: blur(70px);
  bottom: -80px;
  right: -60px;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 768px) {
  .pet-section::before {
    width: 550px;
    height: 550px;
    bottom: -120px;
    right: -100px;
  }
}
.pet-section::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  top: 30px;
  left: -10px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
  background: repeating-linear-gradient(-45deg, hsl(var(--orange)), hsl(var(--orange)) 2px, transparent 2px, transparent 14px);
  border-radius: 12px;
}
@media (min-width: 768px) {
  .pet-section::after {
    width: 180px;
    height: 180px;
    top: 50px;
    left: 30px;
  }
}
.pet-section__paw {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 80%;
  width: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
}
@media (min-width: 768px) {
  .pet-section__paw {
    display: block;
  }
}
.pet-section__grid {
  display: grid;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .pet-section__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.pet-section__body {
  order: 2;
}
@media (min-width: 768px) {
  .pet-section__body {
    order: 1;
  }
}
.pet-section__media {
  order: 1;
}
@media (min-width: 768px) {
  .pet-section__media {
    order: 2;
  }
}
.pet-section__image-wrap {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: 12px 12px 0 hsl(var(--orange)/0.12);
}
.pet-section__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pet-section__title {
  font-weight: 800;
  font-size: 30px;
  line-height: 1.15;
  color: hsl(var(--ink));
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .pet-section__title {
    font-size: 44px;
  }
}
.pet-section__desc {
  color: hsl(var(--ink-2));
  font-size: 17px;
  line-height: 1.7;
}
.pet-section__list {
  margin-top: 32px;
  border-top: 1px solid hsl(var(--line));
  border-bottom: 1px solid hsl(var(--line));
}
.pet-section__list-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid hsl(var(--line));
}
.pet-section__list-item:last-child {
  border-bottom: none;
}
.pet-section__list-num {
  font-family: "Courier New", monospace;
  font-size: 14px;
  color: hsl(var(--ink-2));
  width: 40px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.pet-section__list-text {
  color: hsl(var(--ink));
  font-size: 16px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .pet-section__list-text {
    font-size: 18px;
  }
}

.cpam-section {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .cpam-section {
    padding: 96px 0;
  }
}

.cpam-card {
  border-radius: 24px;
  background: #fff;
  border: 1px solid hsl(var(--line));
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  color: hsl(var(--ink));
  padding: 32px;
  display: grid;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cpam-card {
    grid-template-columns: 1fr 1fr;
    padding: 56px;
  }
}
.cpam-card__glow-1, .cpam-card__glow-2, .cpam-card__glow-3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}
.cpam-card__glow-1 {
  right: -80px;
  top: -80px;
  width: 448px;
  height: 448px;
  background: hsl(var(--green));
  opacity: 0.3;
}
.cpam-card__glow-2 {
  left: -96px;
  bottom: -96px;
  width: 320px;
  height: 320px;
  background: hsl(var(--green-2));
  opacity: 0.25;
}
.cpam-card__glow-3 {
  right: 33%;
  bottom: 0;
  width: 224px;
  height: 224px;
  background: hsl(var(--green));
  opacity: 0.2;
  filter: blur(32px);
}
.cpam-card__body {
  position: relative;
}
.cpam-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: hsl(var(--green-soft));
  color: hsl(var(--green-2));
  border: 1px solid hsl(var(--green-2)/0.15);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cpam-card__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 1.05;
}
@media (min-width: 768px) {
  .cpam-card__title {
    font-size: 56px;
  }
}
.cpam-card__highlight {
  display: inline-block;
  background: hsl(var(--green-2));
  color: #fff;
  padding: 4px 12px;
  border-radius: 8px;
}
.cpam-card__desc {
  margin-top: 20px;
  color: hsl(var(--ink-2));
  font-size: 18px;
  max-width: 448px;
  line-height: 1.7;
}
.cpam-card__list {
  position: relative;
  border-top: 1px solid hsl(var(--line));
  border-bottom: 1px solid hsl(var(--line));
}
.cpam-card__list-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid hsl(var(--line));
}
.cpam-card__list-item:last-child {
  border-bottom: none;
}
.cpam-card__list-num {
  font-weight: 800;
  font-size: 24px;
  color: hsl(var(--green-2));
  font-variant-numeric: tabular-nums;
  width: 32px;
  flex-shrink: 0;
}
.cpam-card__list-text {
  color: hsl(var(--ink));
  font-size: 16px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .cpam-card__list-text {
    font-size: 18px;
  }
}

.booking-section {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .booking-section {
    padding: 96px 0;
  }
}
.booking-section {
  background: hsl(var(--bg-soft));
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: hsl(var(--orange)/0.07);
  filter: blur(80px);
  top: -80px;
  right: -100px;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 768px) {
  .booking-section::before {
    width: 500px;
    height: 500px;
    top: -120px;
    right: -140px;
  }
}
.booking-section__road {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  height: 110%;
  width: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
}
@media (min-width: 768px) {
  .booking-section__road {
    display: block;
  }
}
.booking-section__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  max-width: 1152px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .booking-section__grid {
    grid-template-columns: 5fr 7fr;
  }
}
.booking-section__info-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.booking-section__info-list--centered {
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.booking-section--centered {
  text-align: center;
}
.booking-section__header {
  max-width: 700px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}
.booking-section__subtitle {
  margin-top: 20px;
  color: hsl(var(--ink-2));
  font-size: 18px;
  line-height: 1.7;
}
.booking-section__form-wrap {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.booking-info-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}
.booking-info-inline__link {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}
.booking-info-inline__link:hover {
  color: hsl(var(--orange));
}
.booking-info-inline__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: hsl(var(--orange));
}
.booking-info-inline__text {
  font-size: 15px;
  font-weight: 500;
  color: hsl(var(--ink-2));
}

.booking-form-card {
  padding: 24px;
}
@media (min-width: 768px) {
  .booking-form-card {
    padding: 32px;
  }
}

.booking-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.booking-form__col-full {
  grid-column: span 2;
}
.booking-form__col-half {
  grid-column: span 2;
}
@media (min-width: 640px) {
  .booking-form__col-half {
    grid-column: span 1;
  }
}
.booking-form__checkbox-row {
  grid-column: span 2;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (min-width: 640px) {
  .booking-form__checkbox-row {
    grid-column: span 1;
  }
}
.booking-form__checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.booking-form__checkbox-label input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: hsl(var(--blue));
}
.booking-form__checkbox-label span {
  font-size: 14px;
  color: hsl(var(--ink-2));
}
.booking-form__actions {
  grid-column: span 2;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) {
  .booking-form__actions {
    flex-direction: row;
    align-items: center;
  }
}
.booking-form__actions-note {
  font-size: 14px;
  color: hsl(var(--muted-fg));
}
.booking-form__actions-note a {
  font-weight: 600;
  color: hsl(var(--ink));
}
.booking-form__actions-note a:hover {
  color: hsl(var(--blue));
}

.msf-progress {
  margin-bottom: 24px;
}
.msf-progress__bar {
  height: 4px;
  background: hsl(var(--line));
  border-radius: 99px;
  overflow: hidden;
}
.msf-progress__fill {
  height: 100%;
  background: hsl(var(--green-2));
  border-radius: 99px;
  transition: width 0.3s ease;
}
.msf-progress__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.msf-progress__label {
  font-size: 11px;
  font-weight: 600;
  color: hsl(var(--muted-fg));
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.msf-progress__label.is-active {
  color: hsl(var(--green-2));
}
.msf-progress__label.is-done {
  color: hsl(var(--ink));
}

.msf-step {
  display: none;
}
.msf-step.is-active {
  display: block;
}

.msf-nav {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  align-items: center;
}
.msf-nav .btn-green {
  flex: 1;
  justify-content: center;
}

.form-success {
  text-align: center;
  padding: 48px 0;
}
.form-success__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: hsl(var(--green-soft));
  color: hsl(var(--green-2));
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success__title {
  font-weight: 800;
  font-size: 30px;
  margin-bottom: 8px;
  color: hsl(var(--ink));
}
.form-success__desc {
  color: hsl(var(--ink-2));
}

.destinations-section {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .destinations-section {
    padding: 96px 0;
  }
}
.destinations-section__footer {
  text-align: center;
  margin-top: 40px;
  color: hsl(var(--ink-2));
}
.destinations-section__footer a {
  color: hsl(var(--blue));
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.destinations-grid {
  display: grid;
  gap: 12px;
}
@media (min-width: 640px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.destination-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.destination-card:hover {
  border-color: hsl(var(--blue));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.destination-card:hover .destination-card__icon {
  background: hsl(var(--blue));
  color: #fff;
}
.destination-card__left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.destination-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: hsl(var(--blue-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--blue));
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.destination-card__city {
  font-weight: 600;
  color: hsl(var(--ink));
  line-height: 1.2;
}
.destination-card__from {
  font-size: 12px;
  color: hsl(var(--muted-fg));
}
.destination-card__time {
  font-size: 14px;
  font-weight: 600;
  color: hsl(var(--ink-2));
}

.cta-section {
  background: hsl(var(--nav));
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .cta-section {
    padding: 80px 0;
  }
}
.cta-section__eyebrow {
  color: hsl(var(--green));
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cta-section__title {
  font-weight: 800;
  font-size: 30px;
  line-height: 1.15;
}
@media (min-width: 768px) {
  .cta-section__title {
    font-size: 48px;
  }
}
.cta-section__title-accent {
  color: hsl(var(--blue));
}
.cta-section__phone {
  display: block;
  margin-top: 32px;
  font-weight: 800;
  font-size: 36px;
  color: #fff;
  transition: color 0.2s;
}
.cta-section__phone:hover {
  color: hsl(var(--blue));
}
@media (min-width: 768px) {
  .cta-section__phone {
    font-size: 60px;
  }
}
.cta-section__buttons {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.deco-sparkle {
  position: relative;
}
.deco-sparkle::before {
  content: "●";
  margin-right: 8px;
  color: hsl(var(--ink));
  opacity: 0.7;
}

.deco-stars {
  position: relative;
  display: inline-block;
}
.deco-stars::before, .deco-stars::after {
  content: "●";
  position: absolute;
  color: hsl(var(--ink));
  opacity: 0.65;
  font-size: 10px;
  animation: twinkle 2.4s ease-in-out infinite;
}
.deco-stars::before {
  top: -12px;
  left: -18px;
}
.deco-stars::after {
  bottom: -8px;
  right: -16px;
  font-size: 7px;
  animation-delay: 0.8s;
}

.deco-wave {
  position: relative;
  display: inline-block;
}
.deco-wave::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-bottom: 2px dashed hsl(var(--ink));
  opacity: 0.4;
}

.deco-dots {
  position: relative;
  display: inline-block;
}
.deco-dots::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 8px;
  background-image: radial-gradient(circle, hsl(var(--ink)) 1.5px, transparent 2px);
  background-size: 12px 8px;
  background-repeat: repeat-x;
  opacity: 0.55;
}

.deco-polka {
  position: relative;
  overflow: hidden;
}
.deco-polka::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 110px;
  height: 110px;
  background-image: radial-gradient(circle, hsl(var(--ink)/0.15) 2px, transparent 2.5px);
  background-size: 14px 14px;
  transform: rotate(-12deg);
  pointer-events: none;
}
.deco-polka::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(circle, hsl(var(--ink)/0.12) 2px, transparent 2.5px);
  background-size: 16px 16px;
  pointer-events: none;
}

.deco-quote {
  position: relative;
}
.deco-quote::before {
  content: "“";
  position: absolute;
  top: -40px;
  left: -10px;
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 1;
  color: hsl(var(--ink));
  opacity: 0.08;
  pointer-events: none;
}

.deco-plus {
  position: relative;
}
.deco-plus::before, .deco-plus::after {
  content: "+";
  position: absolute;
  color: hsl(var(--ink));
  opacity: 0.35;
  font-weight: 700;
  font-size: 22px;
}
.deco-plus::before {
  top: 12px;
  right: 24px;
}
.deco-plus::after {
  bottom: 14px;
  left: 18px;
  font-size: 16px;
}

.deco-corners {
  position: relative;
}
.deco-corners::before, .deco-corners::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid hsl(var(--ink));
  pointer-events: none;
}
.deco-corners::before {
  top: 8px;
  left: 8px;
  border-right: 0;
  border-bottom: 0;
}
.deco-corners::after {
  bottom: 8px;
  right: 8px;
  border-left: 0;
  border-top: 0;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.25;
    transform: scale(0.9) rotate(-12deg);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.15) rotate(0deg);
  }
}
@keyframes roadmove {
  to {
    background-position: -48px 0;
  }
}
.wp-block-acf-taxiflo71-hero {
  max-width: none;
}

.wp-block-acf-taxiflo71-services-grid {
  max-width: none;
}

.wp-block-acf-taxiflo71-service-detail {
  max-width: none;
}

.wp-block-acf-taxiflo71-image-banner {
  max-width: none;
}

.wp-block-acf-taxiflo71-about {
  max-width: none;
}

.wp-block-acf-taxiflo71-pet-friendly {
  max-width: none;
}

.wp-block-acf-taxiflo71-cpam-highlight {
  max-width: none;
}

.wp-block-acf-taxiflo71-booking-form {
  max-width: none;
}

.wp-block-acf-taxiflo71-destinations {
  max-width: none;
}

.wp-block-acf-taxiflo71-cta-final {
  max-width: none;
}

/*# sourceMappingURL=theme.css.map */
