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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: hsl(0 0% 100%);
  color: hsl(260 30% 15%);
}

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

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

button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Design tokens */
:root {
  --bg: hsl(0 0% 100%);
  --fg: hsl(260 30% 15%);
  --muted: hsl(270 30% 96%);
  --muted-strong: hsl(270 20% 35%);
  --primary: hsl(270 75% 55%);
  --primary-soft: hsl(270 75% 65%);
  --secondary: hsl(340 75% 60%);
  --accent: hsl(30 85% 60%);
  --border: hsl(270 25% 90%);
  --shadow-soft: 0 6px 24px hsla(270, 30%, 20%, 0.09);
  --shadow-glow: 0 0 32px hsla(270, 75%, 55%, 0.25);
  --radius-lg: 0.9rem;
  --radius-full: 999px;

  --gradient-hero: linear-gradient(135deg, hsl(270 75% 55%) 0%, hsl(340 75% 60%) 100%);
  --gradient-subtle: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(270 30% 98%) 100%);
}

.text-gradient {
  background-image: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Country banner */
.country-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background-image: var(--gradient-hero);
  color: #fff;
  font-size: 0.9rem;
}

.country-banner__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
}

.country-banner__icon {
  font-size: 1.1rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 2.75rem;
  left: 0;
  right: 0;
  z-index: 30;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 1.1rem 0;
}

.site-header--scrolled {
  background-color: hsla(0, 0%, 100%, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  padding: 0.6rem 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.logo__mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: var(--radius-full);
  background-image: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
}

.logo__mark--light {
  background-color: #fff;
  color: var(--primary);
}

.logo__text {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  background-image: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo__text--light {
  background: none;
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav--desktop {
  display: none;
}

.nav--mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem 1.25rem;
  background-color: #fff;
  border-radius: 0 0 1.25rem 1.25rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.nav--mobile.nav--open {
  display: flex;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: hsl(260 20% 35%);
  position: relative;
  padding-bottom: 0.15rem;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: var(--radius-full);
  background-image: var(--gradient-hero);
  transition: width 0.2s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--active {
  color: var(--primary);
}

.nav__link--active::after {
  width: 100%;
}

.nav__btn {
  width: 100%;
  margin-top: 0.25rem;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__cta {
  display: none;
}

.header__menu-btn {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0.25rem;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background-color: hsl(260 30% 20%);
  transition: transform 0.2s ease, opacity 0.2s ease;
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.menu-icon--open {
  transform: rotate(45deg);
}

.menu-icon--open::before {
  opacity: 0;
}

.menu-icon--open::after {
  transform: rotate(-90deg);
  top: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--compact {
  padding-inline: 0.95rem;
}

.btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn--primary {
  background-image: var(--gradient-hero);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.btn--outline {
  background-color: transparent;
  color: var(--fg);
  border-color: var(--border);
}

.btn--outline:hover {
  border-color: var(--primary-soft);
  background-color: hsl(270 30% 98%);
}

.btn--light {
  background-color: #fff;
  color: var(--primary);
}

.btn--light:hover {
  background-color: #fdf2ff;
  transform: translateY(-1px);
}

.btn--ghost {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.btn__icon {
  font-size: 1rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 4.5rem;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(248, 250, 252, 0.97) 0%,
    rgba(248, 250, 252, 0.9) 40%,
    rgba(248, 250, 252, 0.6) 100%
  );
}

.hero__floating {
  position: absolute;
  font-size: 2.8rem;
  opacity: 0.18;
  animation: float 6s ease-in-out infinite;
}

.hero__floating--one {
  top: 26%;
  right: 12%;
}

.hero__floating--two {
  bottom: 24%;
  right: 26%;
  animation-delay: 1.2s;
}

.hero__content {
  max-width: 40rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background-color: hsla(270, 75%, 55%, 0.09);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.3);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
  animation: pulse 1.6s ease-out infinite;
}

.hero__title {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 0.9rem;
}

.hero__subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: hsl(260 15% 45%);
  max-width: 32rem;
  margin-bottom: 1.9rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__actions--center {
  justify-content: center;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
  max-width: 18rem;
}

.hero__stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.15rem;
}

.hero__stat-label {
  font-size: 0.85rem;
  color: hsl(260 15% 50%);
}

/* Sections */
.section {
  padding: 3.75rem 0;
}

.section--subtle {
  background-image: var(--gradient-subtle);
}

.section--cta {
  background-image: var(--gradient-hero);
  color: #fff;
}

.section__header {
  margin-bottom: 2.5rem;
}

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

.section__header--light {
  color: #fff;
}

.section__title {
  font-size: 2rem;
  margin: 0 0 0.6rem;
}

.section__title--light {
  color: #fff;
}

.section__lead {
  margin: 0;
  font-size: 1.02rem;
  color: hsl(260 15% 45%);
}

.section__lead--light {
  color: rgba(255, 255, 255, 0.88);
}

.section__emphasis {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.section__muted {
  margin: 0;
  color: hsl(260 15% 50%);
}

.section__accent-bar {
  width: 8rem;
  height: 3px;
  border-radius: 999px;
  background-color: var(--accent);
  margin: 0.6rem auto 0;
}

/* Grids & cards */
.grid {
  display: grid;
  gap: 1.4rem;
}

.grid--three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid--four {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.card {
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card--highlight {
  background-image: linear-gradient(135deg, #fff, hsl(270 30% 98%));
}

.card--highlight:hover,
.card--specialty:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

.card__icon {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  background-image: var(--gradient-hero);
  color: #fff;
  font-size: 1.3rem;
}

.card__title {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
}

.card__text {
  margin: 0;
  font-size: 0.92rem;
  color: hsl(260 15% 45%);
}

.card--specialty {
  position: relative;
  padding-top: 1.6rem;
}

.card__badge {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.card__badge--red {
  background-image: linear-gradient(135deg, #ef4444, #fb7185);
}

.card__badge--blue {
  background-image: linear-gradient(135deg, #3b82f6, #22d3ee);
}

.card__badge--purple {
  background-image: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.card__badge--orange {
  background-image: linear-gradient(135deg, #f97316, #fbbf24);
}

.card__badge--teal {
  background-image: linear-gradient(135deg, #14b8a6, #22c55e);
}

.card__badge--green {
  background-image: linear-gradient(135deg, #22c55e, #16a34a);
}

.card__cta {
  display: inline-flex;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
}

/* Treatment showcase cards */
.treatment-card {
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16);
}

.treatment-card__image-wrapper {
  position: relative;
  padding-bottom: 130%;
}

.treatment-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(15, 23, 42, 0.75) 35%,
    transparent 100%
  );
}

.treatment-card__content {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.4rem 1.2rem 1.2rem;
  color: #fff;
}

.treatment-card__content h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.treatment-card__content p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.treatment-card__divider {
  width: 3rem;
  height: 2px;
  border-radius: 999px;
  background-color: var(--accent);
  margin-bottom: 0.45rem;
}

/* Pricing */
.pricing-table {
  background-color: #fff;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.pricing-table__header,
.pricing-table__row {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr;
}

.pricing-table__header {
  background-color: hsl(270 30% 97%);
  border-bottom: 1px solid var(--border);
}

.pricing-table__cell {
  padding: 0.95rem 1.1rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pricing-table__cell--left {
  justify-content: flex-start;
  text-align: left;
  font-weight: 500;
}

.pricing-table__cell--highlight {
  background-image: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: #fff;
  font-weight: 600;
}

.pricing-table__cell--accent {
  background-color: hsl(270 25% 98%);
  color: var(--primary);
  font-weight: 600;
}

.pricing-table__row:nth-child(even) {
  background-color: hsl(270 30% 99%);
}

.pricing-table__row + .pricing-table__row {
  border-top: 1px solid var(--border);
}

.pricing-table__icon {
  display: inline-flex;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  margin-right: 0.65rem;
  font-size: 1rem;
  background-image: var(--gradient-hero);
  color: #fff;
}

.pricing-table__note {
  margin: 1rem auto 0;
  text-align: center;
  font-size: 0.9rem;
  color: hsl(260 15% 50%);
}

/* Booking */
.booking {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem 1.4rem 1.6rem;
  border-radius: 1.5rem;
  background-image: linear-gradient(145deg, #fff, hsl(270 30% 98%));
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.booking__steps {
  margin-bottom: 1.8rem;
  position: relative;
}

.booking__progress {
  position: absolute;
  left: 0;
  right: 0;
  top: 1.4rem;
  height: 3px;
  background-color: hsl(270 25% 92%);
  border-radius: 999px;
}

.booking__progress-bar {
  height: 100%;
  width: 0;
  background-image: var(--gradient-hero);
  border-radius: inherit;
  transition: width 0.35s ease;
}

.booking__steps-inner {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.booking__step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  z-index: 1;
}

.booking__step-circle {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: hsl(260 15% 40%);
  background-color: #f9fafb;
  border: 1px solid hsl(270 25% 90%);
  transition: all 0.2s ease;
}

.booking__step-indicator--active .booking__step-circle,
.booking__step-indicator--completed .booking__step-circle {
  background-image: var(--gradient-hero);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.booking__step-label {
  font-size: 0.7rem;
  color: hsl(260 15% 48%);
}

.booking__form {
  margin-top: 1.4rem;
}

.booking__step {
  display: none;
  animation: fadeInUp 0.35s ease;
}

.booking__step--active {
  display: block;
}

.booking__step-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.booking__step-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.booking__step-icon {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 0.75rem;
  background-color: hsl(270 30% 96%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.booking__choice {
  border-radius: 0.9rem;
  border: 1px solid hsl(270 25% 90%);
  padding: 0.7rem 0.9rem;
  background-color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s ease;
}

.booking__choice:hover {
  border-color: var(--primary-soft);
  box-shadow: var(--shadow-soft);
}

.booking__choice--active {
  border-width: 2px;
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid hsl(270 25% 90%);
  padding: 0.6rem 0.7rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary-soft);
  box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.4);
}

.booking__times {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.6rem;
}

.booking__time-slot {
  border-radius: 0.85rem;
  border: 1px solid hsl(270 25% 90%);
  padding: 0.5rem 0.7rem;
  font-size: 0.88rem;
  cursor: pointer;
  background-color: #fff;
  transition: all 0.18s ease;
}

.booking__time-slot:hover {
  border-color: var(--primary-soft);
}

.booking__time-slot--active {
  border-width: 2px;
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.booking__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}

.booking__nav #booking-prev {
  min-width: 6rem;
}

.booking__nav #booking-next,
.booking__nav #booking-submit {
  margin-left: auto;
  min-width: 7.5rem;
}

.booking__nav #booking-submit {
  display: none;
}

.booking__nav button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.booking__success {
  display: none;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: hsl(142 72% 30%);
  background-color: hsl(142 76% 96%);
  border-radius: 0.75rem;
  padding: 0.6rem 0.75rem;
}

.booking__success--visible {
  display: block;
}

/* Footer */
.footer {
  background-color: hsl(260 30% 10%);
  color: rgba(255, 255, 255, 0.9);
  padding-top: 3rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer__logo {
  margin-bottom: 0.9rem;
}

.footer__text {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer__social {
  display: flex;
  gap: 0.6rem;
}

.footer__social-btn {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.18s ease;
}

.footer__social-btn:hover {
  background-image: var(--gradient-hero);
  border-color: transparent;
  transform: translateY(-1px);
}

.footer__title {
  font-size: 1rem;
  margin: 0 0 0.9rem;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.footer__link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.76);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer__link:hover {
  color: #fff;
}

.footer__icon {
  font-size: 1rem;
}

.footer__bottom {
  text-align: center;
  padding: 0.8rem 0 1.3rem;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Floating contact button */
.floating-contact {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 60;
  animation: fadeInUp 0.4s ease;
}

.floating-contact__card {
  background-image: linear-gradient(135deg, #fff, hsl(270 30% 98%));
  border-radius: 1.4rem;
  padding: 0.9rem 1rem 1rem;
  box-shadow: var(--shadow-glow);
  border: 2px solid rgba(167, 139, 250, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.floating-contact__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background-image: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  animation: pulse 1.8s ease-out infinite;
}

.floating-contact__title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fg);
}

.floating-contact__subtitle {
  font-size: 0.72rem;
  color: hsl(260 15% 50%);
}

.floating-contact__close {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 999px;
  border: none;
  background-color: hsl(0 84% 60%);
  color: #fff;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-on-scroll {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (min-width: 768px) {
  .nav--desktop {
    display: flex;
  }

  .header__cta {
    display: inline-flex;
  }

  .header__menu-btn {
    display: none;
  }

  .section {
    padding: 4.25rem 0;
  }

  .hero {
    padding-top: 9rem;
  }

  .hero__title {
    font-size: clamp(2.9rem, 4.4vw, 3.9rem);
  }

  .hero__subtitle {
    font-size: 1.08rem;
  }
}

@media (max-width: 767px) {
  .site-header {
    top: 2.4rem;
  }

  .hero {
    text-align: left;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__stats {
    max-width: 100%;
  }

  .pricing-table__header,
  .pricing-table__row {
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
  }

  .booking {
    padding-inline: 1rem;
  }

  .booking__nav {
    flex-wrap: wrap;
  }

  .footer__inner {
    grid-template-columns: minmax(0, 1.8fr);
  }
}


