/* ============================================================
   HOME PAGE — Responsive Styles
   Bootstrap 5 compatible. Supports: mobile, tablet, desktop, wide.
   Uses Bootstrap container widths set in bootstrap.min.css:
     ≥ 1200px → 1140px | ≥ 1400px → 1320px
     ≥ 1700px → 1620px | ≥ 2000px → 1920px
   ============================================================ */

/* ────────────────────────────────────────────────────────────
   RESET — Override Figma fixed dimensions on layout wrapper
   The .home class in style.css sets width:1920px, height:6551px
   which breaks the responsive layout. Fix it here with higher
   specificity selector (.layout-inner.home = 3 classes).
   ──────────────────────────────────────────────────────────── */
.reneta-cleaning .layout-inner.home {
  width: 100%;
  height: auto;
  max-width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* ────────────────────────────────────────────────────────────
   SHARED HELPERS
   ──────────────────────────────────────────────────────────── */
.h-label-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ════════════════════════════════════════════════════════════
   SECTION 1 · HERO
   ════════════════════════════════════════════════════════════ */
/* Nav is position:fixed, so hero needs top padding to not hide behind it */
body {
  padding-top: 0;
}

.h-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* top padding accounts for fixed nav (~80px) + some breathing room */
  padding: 120px 0 80px;
}

/* Background image fills the section */
.h-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.h-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* White gradient from left → transparent at right */
.h-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.9) 25%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 70%
  );
}

/* Content sits above background */
.h-hero__container {
  position: relative;
  z-index: 1;
}

/* Badge pill */
.h-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(46, 204, 113, 0.1);
  border: 1.25px solid rgba(46, 204, 113, 0.3);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: "Be Vietnam Pro", Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #2ecc71;
  letter-spacing: 0.02em;
  margin-bottom: 1.6rem;
  white-space: nowrap;
}

/* Heading — font-size comes from global --fz-h1 variable */
.h-hero__title {
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
  font-size: var(--fz-h1);
}
.h-hero__title-dark {
  color: var(--rc-navy);
}
.h-hero__title-green {
  color: var(--rc-green);
  font-size: 0.58em;
}

/* Subtitle */
.h-hero__subtitle {
  font-weight: 400;
  color: var(--rc-navy);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 2rem;
}

/* Quote form card */
.h-hero__card {
  background: #fff;
  border-radius: 20px;
  padding: 22px 22px 20px;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.22);
  max-width: 620px;
}
.h-hero__card-title {
  font-family: "Be Vietnam Pro", Helvetica, sans-serif;
  font-weight: 800;
  color: #1f4e79;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.h-hero__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Input rows inside card */
.h-hero__input-row {
  position: relative;
  display: flex;
  align-items: center;
  height: 58px;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 0 16px 0 50px;
  overflow: hidden;
  cursor: pointer;
}
.h-hero__input-icon {
  position: absolute;
  left: 16px;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.h-hero__input-arrow {
  position: absolute;
  right: 16px;
  width: 22px;
  height: 22px;
}
.h-hero__input-placeholder {
  font-family: "Be Vietnam Pro", Helvetica, sans-serif;
  font-weight: 500;
  color: rgba(30, 30, 30, 0.5);
  font-size: 1rem;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Real select & input inside hero card rows */
.h-hero__real-select,
.h-hero__real-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: "Be Vietnam Pro", Helvetica, sans-serif;
  font-weight: 500;
  color: rgba(30, 30, 30, 0.85);
  font-size: 1rem;
  padding: 0;

  width: 100%;
  cursor: pointer;
}
.h-hero__real-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 38px;
}
.h-hero__real-select option {
  color: #1e1e1e;
}
.h-hero__real-input::placeholder {
  color: rgba(30, 30, 30, 0.5);
  font-weight: 500;
}

.h-hero__real-select:focus,
.h-hero__real-input:focus {
  outline: none;
  background: white;
}
/* CTA Button */
.h-hero__btn {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  width: 100%;
  height: 65px;
  border-radius: var(--btn-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-viet);
  font-weight: var(--btn-fw);
  font-size: var(--btn-fz);
  color: var(--btn-color);
  background: var(--btn-bg);
  box-shadow: var(--btn-shadow);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.2s;
}
.h-hero__btn:hover {
  background: var(--btn-hover);
  transform: translateY(-2px);
  box-shadow: none;
}

/* Trust line */
.h-hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: "Be Vietnam Pro", Helvetica, sans-serif;
  font-size: 0.85rem;
  color: #6b7280;
  text-align: center;
}

/* Wave at bottom of hero */
.h-hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
}
.h-hero__wave img {
  width: 100%;
  display: block;
}

/* ════════════════════════════════════════════════════════════
   SECTION 2 · BOOKING FORM
   ════════════════════════════════════════════════════════════ */
.h-booking {
  background: #fff;
  padding: 70px 0;
}

/* Left side image */
.h-booking__side-img {
  width: 100%;
  flex: 1;
  min-height: 800px;
  background-image: url("../images/form-side-img.png");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
}

/* Right form wrapper */
.h-booking__form-wrap {
  position: relative;
  border-radius: 23.703px;
  border: 0.847px solid #e5e7eb;
  border-top: 3px solid #2dc97c; /* replaced by gradient pseudo-element */
  background: #fff;
  box-shadow:
    0 16.931px 21.164px -4.233px rgba(0, 0, 0, 0.1),
    0 6.772px 8.465px -5.079px rgba(0, 0, 0, 0.1);
  padding: 50px 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Each section block (Your Details / Service Details) */
.h-booking__block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.h-booking__block-head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Be Vietnam Pro", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #1f4e79;
  padding-bottom: 14px;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.08);
}

/* Field label */
.h-booking__label {
  display: block;
  font-family: "Be Vietnam Pro", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 6px;
}
.h-booking__field {
  display: flex;
  flex-direction: column;
}

/* Input wrapper */
.h-booking__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
/* Icon sits on the LEFT side of every input */
.h-booking__input-wrap > img:first-child {
  position: absolute;
  left: 14px;
  pointer-events: none;
  z-index: 1;
}

.h-booking__input:focus {
  border-color: var(--rc-green);
}
.h-booking__input::placeholder {
  color: rgba(30, 30, 30, 0.4);
}

/* Select variant — location icon left, chevron right */
.h-booking__input-wrap--select .h-booking__input {
  padding-left: 44px;
  padding-right: 60px;
  appearance: none;
  -webkit-appearance: none;
}
.h-booking__select-arrow {
  position: absolute;
  right: 14px;
  pointer-events: none;
}

/* Textarea */
.h-booking__textarea {
  width: 100%;
  min-height: 90px;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px 16px;
  font-family: "Be Vietnam Pro", Helvetica, sans-serif;
  font-size: 0.95rem;
  color: #1e1e1e;
  outline: none;
  resize: vertical;
  transition: border-color 0.15s;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #f7f9fb;
}
.h-booking__textarea:focus {
  border-color: #2ecc71;
}
.h-booking__textarea::placeholder {
  color: rgba(30, 30, 30, 0.4);
}

/* Pets radio buttons */
.h-booking__pets-row {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.h-booking__pets-opt {
  cursor: pointer;
  margin: 0;
}
.h-booking__pets-opt input[type="radio"] {
  display: none;
}
.h-booking__pets-btn {
  display: inline-block;
  padding: 8px 28px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-family: "Be Vietnam Pro", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #6b7280;
  background: #f7f9fb;
  transition:
    border-color 0.15s,
    color 0.15s,
    background 0.15s;
  cursor: pointer;
  user-select: none;
}
.h-booking__pets-opt input[type="radio"]:checked + .h-booking__pets-btn {
  border-color: #2dca73;
  color: #2dca73;
  background: #f0fdf6;
}

/* Cleaning type selector button */
.h-booking__type-row {
  display: flex;
  align-items: start;
  gap: 12px;

  background: rgba(46, 204, 113, 0.06);
  border: 2px solid rgba(46, 204, 113, 0.25);
  border-radius: 14px;
  padding: 16px;
  cursor: pointer;
}
.h-booking__type-name {
  font-family: "Be Vietnam Pro", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1f4e79;
  flex: 1;
}
.h-booking__type-price {
  font-family: "Be Vietnam Pro", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #178d71;
}

/* Cost + Submit footer */
.h-booking__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(247, 249, 251, 1);
  border-radius: 16px;
  padding: 18px 22px;
  flex-wrap: wrap;
}
.h-booking__cost {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.h-booking__cost-label {
  font-family: "Be Vietnam Pro", Helvetica, sans-serif;
  font-size: 0.8rem;

  font-weight: 500;
}
.h-booking__cost-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.h-booking__cost-amount strong {
  font-family: "Be Vietnam Pro", Helvetica, sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
}
.h-booking__cost-amount span {
  font-size: 0.85rem;
}
.h-booking__cost-min {
  font-size: 0.78rem;
}
.h-booking__submit-btn {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: var(--btn-py) var(--btn-px);
  background: var(--btn-bg-solid);
  border-radius: var(--btn-radius);
  color: var(--btn-color);
  font-family: var(--f-viet);
  font-weight: var(--btn-fw);
  font-size: var(--btn-fz);
  transition:
    background 0.15s,
    transform 0.15s;
  white-space: nowrap;
}
.h-booking__submit-btn:hover {
  background: var(--btn-hover);
  transform: translateY(-1px);
}

/* ════════════════════════════════════════════════════════════
   SECTION 3 · HOW IT WORKS
   ════════════════════════════════════════════════════════════ */
.h-how {
  position: relative;
  background-color: #f5f5f5;
  padding: 80px 0 100px;
  overflow: hidden;
}

/* Background image */
.h-how__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
  mix-blend-mode: luminosity;
}

.h-how .container {
  position: relative;
  z-index: 1;
}

/* Label */
.h-how__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Be Vietnam Pro", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: #5c5e5e;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Title */
.h-how__title {
  font-size: var(--fz-h2);
  color: var(--rc-dark);
  line-height: 1.2;
  margin-bottom: 56px;
}
.h-how__title-green {
  color: #00a650;
}

/* Cards row — desktop: staggered waterfall effect */
.h-how__row {
  align-items: flex-start;
}

.h-how__col--1 {
  padding-top: 0;
}
.h-how__col--2 {
  padding-top: 50px;
}
.h-how__col--3 {
  padding-top: 100px;
}

/* Single card */
.h-how__card {
  background: #fff;
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

/* Card image area */
.h-how__card-img-wrap {
  position: relative;
  padding: 10px 10px 0;
}
.h-how__card-img {
  width: 100%;
  border-radius: 18px;
}
.h-how__card-tag {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 100px;
  height: auto;
}
.h-how__card-num {
  position: absolute;
  right: 44px;
  bottom: -26px;
  width: 52px;
  height: 52px;
  background: #00a650;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto Flex", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  z-index: 2;
}

/* Card body */
.h-how__card-body {
  padding: 46px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.h-how__card-title {
  font-family: "Inter", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #212e3b;
  margin: 0;
}
.h-how__card-text {
  font-family: "Roboto Flex", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: #5c5e5e;
  line-height: 1.5;
  margin: 0;
}

/* ════════════════════════════════════════════════════════════
   SECTION 4 · WHAT WE OFFER
   ════════════════════════════════════════════════════════════ */
.h-services {
  background: #f7f9fb;
  padding-top: 80px;
}

/* Header */
.h-services__header {
  padding-bottom: 60px;
}

.h-services__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Be Vietnam Pro", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  color: #178d71;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.h-services__title {
  font-size: var(--fz-h2);
  color: var(--rc-navy);
  line-height: 1.15;
  margin-bottom: 14px;
}
.h-services__subtitle {
  font-family: "Be Vietnam Pro", Helvetica, sans-serif;
  font-weight: 400;
  color: #6b7280;
  font-size: clamp(0.95rem, 1.6vw, 1.35rem);
  margin: 0 auto;
  max-width: 700px;
  line-height: 1.5;
}

/* Background image section */
.h-services__bg {
  background-size: cover;
  background-position: center;
  padding: 80px 0 90px;
}

/* Service card */
.h-services__card {
  background: #fff;
  border-radius: 30px;
  padding: 34px 34px 34px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
}

.h-services__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.h-services__card-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.h-services__card-name {
  font-family: "Be Vietnam Pro", Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #1f4e79;
  margin: 0 0 4px;
  line-height: 1.2;
}
.h-services__card-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Be Vietnam Pro", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: #6b7280;
}
.h-services__card-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.h-services__price-num {
  font-family: "Be Vietnam Pro", Helvetica, sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #178d71;
  line-height: 1;
}
.h-services__price-unit {
  font-family: "Be Vietnam Pro", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  color: #6b7280;
  text-align: right;
}

.h-services__card-desc {
  font-family: "Be Vietnam Pro", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: rgba(30, 30, 30, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.h-services__card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.h-services__card-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Be Vietnam Pro", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1e1e1e;
}

.h-services__card-btn {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 62px;
  background: var(--btn-bg-solid);
  border-radius: var(--btn-radius);
  font-family: var(--f-viet);
  font-weight: var(--btn-fw);
  font-size: var(--btn-fz);
  color: var(--btn-color);
  box-shadow: var(--btn-shadow);
  transition:
    background 0.15s,
    transform 0.15s;
}
.h-services__card-btn:hover {
  background: var(--btn-hover);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════
   SECTION 5 · WHY CHOOSE US
   ════════════════════════════════════════════════════════════ */
.h-why {
  position: relative;
  background: #f5f5f5;
  padding: 80px 0 90px;
  overflow: hidden;
}

/* Label */
.h-why__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Be Vietnam Pro", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: #5c5e5e;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Title */
.h-why__title {
  font-size: var(--fz-h2);
  color: var(--rc-navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.h-why__accent {
  color: #2ecc71;
}

/* Subtitle */
.h-why__subtitle {
  font-family: "Roboto Flex", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #5c5e5e;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 16px;
}

/* Decorative stars — desktop only */
.h-why__deco {
  position: absolute;
  pointer-events: none;
  display: none;
}
.h-why__deco--1 {
  top: 48px;
  left: 3%;
  width: 54px;
}
.h-why__deco--2 {
  top: 56px;
  right: 4%;
  width: 60px;
}
.h-why__deco--3 {
  top: 200px;
  right: 8%;
  width: 40px;
}

/* Content grid */
.h-why__content {
  margin-top: 40px;
}

/* Service type items */
.h-why__item {
  padding: 24px 0;
}
.h-why__item--bordered {
  border-top: 1px solid rgba(92, 94, 94, 0.18);
  border-bottom: 1px solid rgba(92, 94, 94, 0.18);
}
.h-why__item-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.h-why__item-inner > img {
  flex-shrink: 0;
  margin-top: 2px;
}
.h-why__item-title {
  font-family: "Inter", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #212e3b;
  margin: 0 0 6px;
  line-height: 1.4;
}
.h-why__item-text {
  font-family: "Roboto Flex", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #5c5e5e;
  line-height: 1.5;
  margin: 0;
}

/* Photos grid */
.h-why__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  height: 100%;
  min-height: 360px;
}
.h-why__photo {
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  min-height: 340px;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE OVERRIDES
   ════════════════════════════════════════════════════════════ */

/* ── Large desktop (≥ 1400px) ── */
@media (min-width: 1400px) {
  .h-hero {
    padding: 140px 0 100px;
  }
  .h-why__deco {
    display: block;
  }
  .h-how__col--1 {
    padding-top: 0;
  }
  .h-how__col--2 {
    padding-top: 60px;
  }
  .h-how__col--3 {
    padding-top: 120px;
  }
}

/* ── Desktop (≥ 1200px) ── */
@media (min-width: 1200px) {
  .h-hero {
    padding: 130px 0 100px;
  }
  .h-booking__form-wrap {
    padding: 60px 50px 70px;
  }
  .h-why__deco {
    display: block;
  }
}

/* ── Tablet landscape (≥ 992px, < 1200px) ── */
@media (min-width: 992px) and (max-width: 1199px) {
  .h-hero__overlay {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.9) 35%,
      rgba(255, 255, 255, 0.55) 60%,
      rgba(255, 255, 255, 0) 80%
    );
  }
  .h-how__col--1 {
    padding-top: 0;
  }
  .h-how__col--2 {
    padding-top: 40px;
  }
  .h-how__col--3 {
    padding-top: 80px;
  }
  .h-booking__form-wrap {
    padding: 40px 32px 50px;
  }
}

/* ── Tablet portrait (≥ 768px, < 992px) ── */
@media (min-width: 768px) and (max-width: 991px) {
  .h-hero {
    min-height: auto;
    padding: 100px 0 80px;
  }
  .h-hero__overlay {
    background: rgba(255, 255, 255, 0.88);
  }
  .h-hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }
  .h-hero__card {
    max-width: 100%;
  }

  /* How it works: remove stagger on tablet */
  .h-how__col--1,
  .h-how__col--2,
  .h-how__col--3 {
    padding-top: 0;
  }

  .h-booking__form-wrap {
    padding: 36px 24px 48px;
  }

  .h-services__bg {
    padding: 60px 0 70px;
  }
}

/* ── Mobile (< 768px) ── */
@media (max-width: 767px) {
  .h-hero {
    min-height: 100vh;
    padding: 100px 0 70px;
    align-items: flex-start;
  }
  /* Stronger overlay on mobile so text is readable */
  .h-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.92) 70%,
      rgba(255, 255, 255, 0.8) 100%
    );
  }
  .h-hero__badge {
    font-size: 0.82rem;
    padding: 8px 14px;
  }
  .h-hero__title {
    font-size: clamp(2.4rem, 10vw, 3.8rem);
  }
  .h-hero__subtitle {
    font-size: 0.95rem;
    max-width: 100%;
  }
  .h-hero__card {
    padding: 18px 16px 16px;
  }
  .h-hero__input-row {
    height: 52px;
  }
  .h-hero__btn {
    height: 58px;
    font-size: 1rem;
  }

  /* How it works: single column, no stagger */
  .h-how__col--1,
  .h-how__col--2,
  .h-how__col--3 {
    padding-top: 0;
  }
  .h-how {
    padding: 60px 0 70px;
  }
  .h-how__title {
    font-size: 1.8rem;
    margin-bottom: 36px;
  }

  /* Booking */
  .h-booking {
    padding: 50px 15px;
  }
  .h-booking__form-wrap {
    padding: 28px 16px 40px;
  }
  .h-booking__footer {
    flex-direction: column;
    align-items: stretch;
  }
  .h-booking__submit-btn {
    justify-content: center;
    width: 100%;
  }

  /* Services */
  .h-services {
    padding-top: 60px;
  }
  .h-services__header {
    padding-bottom: 40px;
  }
  .h-services__bg {
    padding: 50px 0 60px;
  }
  .h-services__card {
    padding: 24px 20px;
  }
  .h-services__card-top {
    flex-direction: column;
    gap: 12px;
  }
  .h-services__card-price {
    align-items: flex-start;
  }

  /* Why choose us */
  .h-why {
    padding: 60px 0 70px;
  }
  .h-why__photos {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .h-why__photo {
    min-height: 220px;
  }
}

/* ── Small mobile (< 480px) ── */
@media (max-width: 479px) {
  .h-hero__title {
    font-size: 2.2rem;
  }
  .h-hero__badge {
    flex-wrap: wrap;
    white-space: normal;
  }
  .h-booking__form-wrap {
    padding: 20px 12px 32px;
  }
  .h-services__card {
    padding: 18px 14px;
  }
  .h-why__photos {
    grid-template-columns: 1fr;
  }
}
