﻿@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

:root {
  --primary: #ff6a00;
  --secondary: #ffb48a;
  --brown: #7a4a2a;
  --cream: #fff3e6;
  --yellow: #ffc44d;
  --blue: #4e8ca1;
  --text: #7a4a2a;
  --muted: #6b6b6b;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(122, 74, 42, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Google Sans", sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: clip;
}

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

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

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 5px 0;
  transition: .25s ease;
}

.topbar.is-scrolled {
  background: rgba(255, 243, 230, .96);
  box-shadow: 0 10px 28px rgba(122, 74, 42, .13);
  backdrop-filter: blur(10px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  min-height: 62px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.topbar.is-scrolled .brand {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brand img {
  width: 130px;
  height: auto;
  /* object-fit: contain; */
  /* filter: drop-shadow(0 2px 0 rgba(255, 243, 230, .92)) drop-shadow(0 10px 18px rgba(122, 74, 42, .42)); */
}

.nav-menu {
  align-items: center;
  gap: 30px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.topbar.is-scrolled .nav-menu {
  color: var(--brown);
}

.nav-menu a:hover {
  color: var(--primary);
}

.hotline {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--brown);
  background: var(--yellow);
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(255, 196, 77, .42), 0 8px 20px rgba(122, 74, 42, .16);
  animation: maytripGlowYellow 1.75s ease-in-out infinite;
}

.menu-toggle {
  position: relative;
  overflow: hidden;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: var(--brown);
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(255, 196, 77, .28), 0 8px 20px rgba(122, 74, 42, .16), 0 0 16px rgba(255, 196, 77, .36);
}

.mobile-menu {
  display: none;
  margin-top: 10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 243, 230, .98);
  box-shadow: 0 14px 34px rgba(122, 74, 42, .16);
}

.mobile-menu.is-open {
  display: grid;
  gap: 8px;
}

.mobile-menu a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--brown);
  font-weight: 800;
}

.mobile-menu a:hover {
  background: rgba(255, 196, 77, .3);
}

.hotline::after,
.btn-main::after,
.btn-soft::after {
  content: "";
  position: absolute;
  top: -45%;
  left: -80%;
  width: 42%;
  height: 190%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, .8), transparent);
  transform: rotate(18deg);
  animation: buttonShine 2.15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes buttonShine {
  0% { left: -85%; opacity: 0; }
  18% { opacity: 1; }
  46% { left: 125%; opacity: 0; }
  100% { left: 125%; opacity: 0; }
}

@keyframes maytripGlowYellow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 196, 77, .28), 0 8px 20px rgba(122, 74, 42, .16), 0 0 16px rgba(255, 196, 77, .36);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(255, 196, 77, .14), 0 12px 28px rgba(122, 74, 42, .2), 0 0 28px rgba(255, 196, 77, .78);
  }
}

@keyframes maytripGlowOrange {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 106, 0, .32), 0 12px 26px rgba(255, 106, 0, .24), 0 0 14px rgba(255, 106, 0, .36);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 106, 0, .14), 0 16px 34px rgba(255, 106, 0, .32), 0 0 30px rgba(255, 106, 0, .8);
  }
}

@keyframes maytripGlowSoft {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 180, 138, .2), 0 0 14px rgba(255, 180, 138, .22);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(255, 180, 138, .12), 0 0 28px rgba(255, 180, 138, .58);
  }
}

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 132px;
  padding-bottom: 48px;
}

.pill,
.subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--brown);
  background: var(--yellow);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 14px;
  font-weight: 800;
}

h1 {
  display: grid;
  gap: 4px;
  max-width: 980px;
  margin: 0 0 12px;
  color: var(--primary);
  font-size: clamp(48px, 5.25vw, 78px);
  line-height: 5rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(255, 243, 230, .62);
  text-shadow:
    0 2px 0 rgba(122, 74, 42, .28),
    0 6px 18px rgba(122, 74, 42, .44),
    0 0 22px rgba(255, 243, 230, .34);
}

h1 span {
  display: block;
  white-space: nowrap;
}

.route {
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: clamp(21px, 3vw, 34px);
  font-weight: 800;
  text-shadow: 0 3px 14px rgba(122, 74, 42, .72), 0 1px 0 rgba(122, 74, 42, .4);
}

.hero-text {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  font-weight: normal;
  text-shadow: 0 2px 10px rgba(122, 74, 42, .8), 0 1px 0 rgba(122, 74, 42, .48);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-main,
.btn-soft {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 0;
  border-radius: 14px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.btn-main {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 12px 26px rgba(255, 106, 0, .26);
  animation: maytripGlowOrange 1.75s ease-in-out infinite;
}

.btn-main:hover {
  color: var(--white);
  background: var(--blue);
}

.btn-soft {
  color: var(--white);
  background: rgba(255, 180, 138, .32);
  border: 1px solid rgba(255, 255, 255, .5);
  animation: maytripGlowSoft 1.9s ease-in-out infinite;
}

.btn-soft::after {
  animation-delay: .45s;
}

.quick-form,
.lead-form {
  padding: 26px;
  border: 1px solid rgba(255, 180, 138, .45);
  border-radius: 18px;
  background: rgba(255, 243, 230, .96);
  box-shadow: var(--shadow);
}

.form-title {
  margin-bottom: 18px;
}

.form-title span {
  display: block;
  color: var(--primary);
  font-weight: 800;
}

.form-title strong {
  display: block;
  color: var(--brown);
  font-size: 25px;
  line-height: 1.2;
}

label {
  display: grid;
  gap: 8px;
  color: var(--brown);
  font-size: 14px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(122, 74, 42, .18);
  border-radius: 12px;
  color: var(--brown);
  background: var(--white);
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, .12);
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--blue);
  font-weight: 800;
}

.swiper-pagination-bullet {
  background: var(--white);
  opacity: .8;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
}

.stats-band {
  position: relative;
  z-index: 5;
  margin-top: -58px;
  padding-bottom: 58px;
}

.stat-card {
  position: relative;
  overflow: hidden;
  min-height: 128px;
  padding: 24px 22px 22px;
  border: 1px solid rgba(255, 180, 138, .54);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 243, 230, .92), var(--white) 58%),
    var(--white);
  box-shadow: 0 20px 48px rgba(122, 74, 42, .16);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--primary), var(--yellow));
}

.stat-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background: rgba(255, 196, 77, .24);
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 106, 0, .55);
  box-shadow: 0 24px 58px rgba(122, 74, 42, .22), 0 0 24px rgba(255, 196, 77, .26);
}

.stat-no {
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 1;
  color: rgba(122, 74, 42, .12);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.stat-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 16px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(78, 140, 161, .26);
}

.stat-card i {
  font-size: 22px;
}

.stat-card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--primary);
  font-size: 24px;
  line-height: 1.15;
}

.stat-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.stat-card .stat-no {
  margin-top: 0;
  color: rgba(122, 74, 42, .12);
}

.section {
  padding: clamp(62px, 8vw, 110px) 0;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 38px;
}

.section-heading h2,
.block-title,
.price-box h2,
.consult-copy h2 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(32px, 4.6vw, 40px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.feature-card {
  position: relative;
  min-height: 278px;
  padding: 36px 28px 28px;
  border: 1px solid rgba(255, 180, 138, .42);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(122, 74, 42, .09);
  overflow: visible;
}

#why .row {
  padding-top: 28px;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: rgba(255, 196, 77, .22);
}

.feature-card i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--white);
  background: var(--blue);
  font-size: 22px;
}

.feature-card .feature-no {
  position: absolute;
  top: -28px;
  left: auto;
  right: 26px;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--white);
  border-radius: 50% 50% 50% 10px;
  color: var(--white);
  background: var(--primary);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(255, 106, 0, .3);
  transform: rotate(-45deg);
  line-height: 1;
  color: transparent;
}

.feature-card .feature-no::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transform: rotate(45deg) translate(4px, 0);
  transform-origin: center;
}

.feature-card h3 {
  margin: 22px 0 12px;
  color: var(--brown);
  font-size: 23px;
  font-weight: 800;
}

.feature-card p,
.body-copy,
.day-card p,
.price-box p,
.consult-copy p,
.footer p {
  color: var(--muted);
  line-height: 1.72;
  margin-top: 15px;
}

.tour-summary,
.places-section {
  background: var(--white);
}

.photo-stack {
  position: relative;
  min-height: 540px;
}

.main-photo {
  width: 82%;
  height: 500px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.small-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 255px;
  object-fit: cover;
  border: 10px solid var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.experience-badge {
  position: absolute;
  left: 28px;
  bottom: 36px;
  padding: 16px 20px;
  border-radius: 18px;
  color: var(--brown);
  background: var(--yellow);
  box-shadow: var(--shadow);
}

.experience-badge strong,
.experience-badge span {
  display: block;
}

.summary-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
}

.summary-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brown);
  font-weight: 700;
}

.summary-list i {
  color: var(--primary);
}

.schedule-section {
  background: linear-gradient(180deg, var(--cream), var(--white));
}

.schedule-wrap {
  position: relative;
}

.schedule-swiper {
  padding: 4px 4px 66px;
}

.schedule-swiper .swiper-slide {
  height: auto;
}

.day-card {
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
  box-shadow: none;
}

.day-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.day-card div {
  padding: 23px;
}

.day-card span {
  color: var(--primary);
  font-weight: 900;
}

.day-card h3 {
  margin: 9px 0 9px;
  color: var(--brown);
  font-size: 24px;
  font-weight: 800;
}

.active-day {
  outline: 0;
}

.schedule-prev,
.schedule-next {
  position: absolute;
  top: 42%;
  z-index: 4;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 14px 32px rgba(255, 106, 0, .3), 0 0 22px rgba(255, 196, 77, .28);
  transition: transform .2s ease, background .2s ease;
}

.schedule-prev {
  left: -26px;
}

.schedule-next {
  right: -26px;
}

.schedule-prev:hover,
.schedule-next:hover {
  transform: translateY(-2px);
  background: var(--blue);
}

.price-section {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background:
    linear-gradient(90deg, rgba(78, 140, 161, .96), rgba(78, 140, 161, .88)),
    url("../images/footer/16.png") right center / auto 125% no-repeat,
    var(--blue);
}

.price-section::before {
  content: "";
  position: absolute;
  inset: 22px auto auto 7%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 196, 77, .2);
  filter: blur(8px);
}

.price-section::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -70px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 243, 230, .32);
  border-radius: 50%;
}

.price-box {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(255, 180, 138, .42);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 243, 230, .9));
  box-shadow: 0 26px 70px rgba(122, 74, 42, .16);
}

.price-box h2 strong {
  color: var(--primary);
}

.price-content {
  max-width: 760px;
}

.price-content .subtitle {
  margin-bottom: 18px;
}

.price-box h2 {
  margin-bottom: 12px;
}

.price-box p {
  max-width: 650px;
  margin-bottom: 20px;
}

.price-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.price-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--brown);
  background: rgba(255, 196, 77, .22);
  font-weight: 700;
  font-size: 14px;
}

.price-points i {
  color: var(--primary);
}

.price-action {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 240px;
}

.price-action .btn-main {
  min-width: 230px;
  min-height: 58px;
  border: 5px solid rgba(255, 196, 77, .5);
}

.price-action small {
  color: var(--brown);
  font-weight: 800;
}

.blink {
  animation: blink 1.4s infinite;
}

@keyframes blink {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 0 rgba(255, 196, 77, .32); }
  50% { transform: translateY(-3px); box-shadow: 0 0 0 12px rgba(255, 196, 77, .18); }
}

.place-swiper {
  padding: 8px 2px 72px;
}

.place-card {
  position: relative;
  height: 440px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--brown);
}

.place-card img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  /* transition: transform .4s ease; */
}

.place-card:hover img {
  transform: scale(1.06);
}

.place-card::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(0deg, rgba(122, 74, 42, .8), rgba(122, 74, 42, 0) 62%); */
}

.place-card div {
  position: absolute;
  inset: auto 22px 22px;
  z-index: 2;
  color: var(--white);
}

.place-card span {
  color: var(--yellow);
  font-weight: 900;
}

.place-card h3 {
  margin: 6px 0 0;
  font-size: 27px;
  font-weight: 900;
}

.place-controls {
  position: absolute;
  inset: 50% 16px auto 16px;
  z-index: 8;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.place-controls button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 12px 28px rgba(122, 74, 42, .22), 0 0 18px rgba(255, 196, 77, .28);
  pointer-events: auto;
}

.place-controls button:hover {
  background: var(--blue);
}

.consult-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 196, 77, .24), transparent 28%),
    var(--cream);
}

.consult-copy {
  height: 100%;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 24px;
  background: var(--brown);
  color: var(--white);
}

.consult-copy h2,
.consult-copy p {
  color: var(--white);
}

.phone-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
  padding: 16px;
  border-radius: 18px;
  color: var(--brown);
  background: var(--yellow);
}

.phone-card i {
  grid-row: span 2;
  font-size: 28px;
}

.phone-card span,
.phone-card strong {
  display: block;
}

.lead-form {
  height: 100%;
  background: var(--white);
  padding: clamp(24px, 3vw, 34px);
}

.lead-form textarea {
  min-height: 128px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.form-actions .btn-main {
  min-width: 220px;
}

.form-actions .form-status {
  flex: 1 1 260px;
  margin: 0;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 84px 0 28px;
  color: var(--brown);
  background:
    linear-gradient(rgba(255, 243, 230, .92), rgba(255, 243, 230, .92)),
    url("../images/footer/06.png") center bottom / cover no-repeat,
    var(--cream);
}

.footer::before,
.footer::after {
  content: "";
  position: absolute;
  z-index: 0;
  opacity: .16;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer::before {
  left: -20px;
  bottom: -18px;
  width: 320px;
  height: 220px;
  background-image: url("../images/footer/05.png");
  background-position: left bottom;
}

.footer::after {
  right: -10px;
  bottom: 0;
  width: 360px;
  height: 250px;
  background-image: url("../images/footer/07.png");
  background-position: right bottom;
}

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

.footer-main {
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(122, 74, 42, .14);
  align-items: center !important;
}

.footer-logo {
  width: 136px;
  margin-bottom: 20px;
}

.footer h2 {
  position: relative;
  margin-bottom: 24px;
  color: var(--brown);
  font-size: 22px;
  font-weight: 800;
}

.footer h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
}

.footer p {
  margin-bottom: 0;
  color: var(--brown);
  line-height: 1.75;
}

.footer-about {
  max-width: 430px;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--brown);
  background: rgba(255, 196, 77, .42);
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.footer-social a:hover {
  color: var(--white);
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-social span {
  font-size: 10px;
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: var(--brown);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact {
  display: grid;
  gap: 18px;
}

.footer-contact a {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  color: var(--brown);
}

.footer-contact span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
}

.footer-contact strong,
.footer-contact b {
  display: block;
}

.footer-contact strong {
  margin-bottom: 4px;
  color: var(--brown);
  font-size: 15px;
}

.footer-contact b {
  color: var(--brown);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}

.footer-offices {
  padding: 0;
  border: 0;
  margin-left: 26px;
}

.footer-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-section-title h2 {
  margin-bottom: 0;
}

.footer-section-title h2::after {
  bottom: -10px;
}

.office-controls {
  display: flex;
  gap: 10px;
}

.office-controls button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 10px 24px rgba(255, 106, 0, .25);
  transition: transform .2s ease, background .2s ease;
}

.office-controls button:hover {
  transform: translateY(-2px);
  background: var(--blue);
}

.office-swiper {
  padding: 4px 3px 10px;
}

.office-swiper .swiper-slide {
  height: auto;
}

.office-card {
  min-height: 138px;
  padding: 2px 20px 0 0;
  border-left: 0;
  background: transparent;
  box-shadow: none;
}

.office-card strong,
.office-card span {
  display: block;
}

.office-card strong {
  margin-bottom: 9px;
  color: var(--brown);
  font-size: 17px;
  font-weight: 800;
}

.office-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.footer-bottom {
  padding-top: 28px;
  text-align: center;
}

.footer-bottom strong {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .topbar {
    background: rgba(255, 243, 230, .96);
    box-shadow: 0 10px 28px rgba(122, 74, 42, .1);
  }

  .hero-container {
    align-items: center;
    padding-top: 118px;
    padding-bottom: 60px;
  }

  .photo-stack {
    min-height: 460px;
  }

  .footer-offices {
    margin-left: 0;
  }

  .main-photo {
    height: 420px;
  }

  .price-box {
    display: grid;
  }

  .price-box .btn-main {
    width: 100%;
  }

  .price-action {
    justify-items: stretch;
    min-width: 0;
  }
}

@media (max-width: 767.98px) {
  .topbar {
    padding: 8px 0;
  }

  .topbar-inner {
    gap: 10px;
  }

  .header-actions {
    gap: 8px;
  }

  .brand img {
    width: 70px;
    height: 42px;
  }

  .brand {
    min-width: 76px;
    min-height: 44px;
    padding: 4px 8px;
    border-radius: 14px;
  }

  .hotline {
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    justify-content: center;
    gap: 0;
    padding: 0;
    font-size: 0;
  }

  .hotline i {
    font-size: 15px;
  }

  .hero-section,
  .hero-container {
    min-height: auto;
  }

  .hero-section {
    padding-top: 90px;
  }

  .hero-container {
    padding-bottom: 46px;
  }

  h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.08;
    -webkit-text-stroke: .6px rgba(255, 243, 230, .72);
    overflow-wrap: anywhere;
  }

  h1 span {
    white-space: normal;
  }

  .hero-text {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions .btn-main,
  .hero-actions .btn-soft,
  .quick-form .btn-main,
  .lead-form .btn-main {
    width: 100%;
  }

  .stats-band {
    margin-top: 0;
    padding-top: 20px;
  }

  .section {
    padding: 58px 0;
  }

  .price-section {
    padding: 58px 0;
    background:
      linear-gradient(180deg, rgba(78, 140, 161, .96), rgba(78, 140, 161, .88)),
      url("../images/footer/16.png") center bottom / auto 80% no-repeat,
      var(--blue);
  }

  .price-points {
    display: grid;
  }

  .section-heading {
    margin-bottom: 28px;
    text-align: left !important;
    max-width: 100%;
  }

  #why .row {
    padding-top: 18px;
  }

  .feature-card {
    overflow: hidden;
    padding-top: 42px;
  }

  .feature-card .feature-no {
    top: 14px;
    right: 16px;
    width: 50px;
    height: 50px;
    border-width: 4px;
    box-shadow: 0 8px 18px rgba(255, 106, 0, .22);
  }

  .feature-card::after {
    right: -58px;
    bottom: -58px;
  }

  .photo-stack {
    min-height: auto;
    padding-bottom: 114px;
  }

  .main-photo {
    width: 100%;
    height: 360px;
  }

  .small-photo {
    width: 58%;
    height: 178px;
  }

  .experience-badge {
    left: 14px;
    bottom: 26px;
  }

  .schedule-swiper {
    padding-bottom: 58px;
  }

  .schedule-prev,
  .schedule-next {
    top: auto;
    bottom: 0;
    width: 46px;
    height: 46px;
  }

  .schedule-prev {
    left: calc(50% - 54px);
  }

  .schedule-next {
    right: calc(50% - 54px);
  }

  .place-card {
    height: 360px;
  }

  .place-controls {
    inset: 50% 8px auto 8px;
  }

  .quick-form,
  .lead-form,
  .consult-copy {
    padding: 22px;
    border-radius: 18px;
  }

  .form-actions {
    display: grid;
  }

  .form-actions .btn-main {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 30px;
    line-height: 1.08;
  }

  .route {
    font-size: 19px;
    line-height: 1.25;
  }

  .section-heading h2,
  .block-title,
  .price-box h2,
  .consult-copy h2 {
    font-size: 29px;
  }

  .stat-card {
    min-height: 122px;
    padding: 17px;
  }

  .stat-card strong {
    font-size: 18px;
  }
}
