*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #72bd77;
  --green-dark: #5aa360;
  --dark: #111111;
  --white: #ffffff;
  --gray: #f5f5f5;
  --border: #eeeeee;
  --text: #333333;
  --text-light: #666666;
  --radius: 5px;
  --radius-lg: 15px;
  --shadow: 0 0 10px rgba(0,0,0,0.15);
  --container: 1200px;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  line-height: 1.5;
  background: var(--white);
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 65px; transition: background-color 0.3s;
}
.header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 65px; max-width: var(--container); margin: 0 auto; padding: 0 40px;
}
.header__logo img { width: 90px; height: auto; }
.header__nav { display: flex; align-items: center; gap: 30px; }
.header__nav a {
  color: var(--dark); font-weight: 900; text-transform: uppercase;
  font-size: 13px; position: relative; transition: color 0.3s; padding-bottom: 2px;
}
.header__nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px; background: var(--green);
  transform: scaleX(0); transition: transform 0.3s;
}
.header__nav a:hover::after, .header__nav a.active::after { transform: scaleX(1); }
.header__nav a.active, .header__nav a:hover { color: var(--green); }
.header.scrolled .header__nav a.active,
.header.scrolled .header__nav a:hover { color: var(--green); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 24px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; transition: all 0.2s; white-space: nowrap;
}
.btn--outline-green { color: var(--green); border: 1px solid var(--green); background: var(--white); }
.btn--outline-green:hover { background: var(--green); color: var(--white); }
.btn--green { background: var(--green); color: var(--white); border: 1px solid var(--green); }
.btn--green:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn--white { background: #fff; color: #1a1a1a; border: 1px solid #fff; text-transform: uppercase; font-weight: 700; }
.btn--white:hover { background: #f0f0f0; border-color: #f0f0f0; }
.btn--sm { padding: 8px 16px; font-size: 13px; }

/* ===== BURGER ===== */
.burger { display: none; flex-direction: column; gap: 5px; width: 22px; z-index: 1100; }
.burger span { display: block; height: 2px; background: var(--dark); border-radius: 2px; transition: 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--white);
  z-index: 1050; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 28px; font-weight: 700; color: var(--dark); }
.mobile-menu a:hover { color: var(--green); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 350px; display: flex;
  align-items: center; justify-content: center; text-align: center; overflow: hidden;
  background-size: cover; background-position: center top;
}
.hero--tall { height: 50vh; }
.hero--short { height: 30vh; min-height: 200px; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(255,255,255,1)); }
.hero__overlay--dark { background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)); }
.hero__content { position: relative; z-index: 2; max-width: 960px; padding: 0 20px; }
.hero__title { font-size: clamp(28px, 5vw, 36px); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.hero__subtitle { font-size: clamp(14px, 2vw, 18px); color: var(--white); line-height: 1.5; opacity: 0.95; }

.top-photo {
  position: relative;
  min-height: 180px;
  background-size: cover;
  background-position: center top;
}
.top-photo__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(255,255,255,0.18)); }
.top-photo__content {
  position: relative;
  z-index: 2;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 10px 20px;
}
.top-photo__content h1 { font-size: clamp(28px, 4vw, 52px); line-height: 1.2; font-weight: 700; margin-bottom: 8px; }
.top-photo__content p { font-size: 20px; font-size: clamp(14px, 1.5vw, 20px); opacity: 0.95; }
.top-photo--calendar .top-photo__content h1 { font-size: clamp(22px, 3.1vw, 44px); }

/* ===== SEARCH ===== */
.search { padding: 15px 0; }
.search__form { display: flex; max-width: 800px; margin: 0 auto; gap: 10px; }
.search__input {
  flex: 1; padding: 12px 18px; border: 1px solid var(--green);
  border-radius: var(--radius); font-size: 15px; font-family: inherit;
  outline: none; transition: border-color 0.2s;
}
.search__input:focus { border-color: var(--green-dark); }
.search__input::placeholder { color: rgba(0,0,0,0.4); }

/* ===== SECTION ===== */
.section { padding: 40px 0 60px; }
.section-title { font-size: 24px; font-weight: 700; margin-bottom: 24px; }
.section-descr { color: var(--text-light); font-size: 16px; margin-bottom: 30px; max-width: 560px; }

/* ===== TABS ===== */
.tabs-card { box-shadow: var(--shadow); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); }
.tabs-header { display: flex; border-bottom: 1px solid var(--border); }
.tabs-header button {
  flex: 1; padding: 16px 20px; font-size: 14px; font-weight: 400;
  text-transform: uppercase; color: var(--text-light); position: relative; transition: color 0.3s;
}
.tabs-header button.active { color: var(--green); }
.tabs-header button.active::after {
  content: ''; position: absolute; left: 0; bottom: -1px; width: 100%; height: 2px; background: var(--green);
}
.tabs-header button:hover { color: var(--green); }
.tab-content { display: none; gap: 30px; padding: 30px; align-items: center; }
.tab-content.active { display: flex; }
.tab-content__img { flex: 1; min-width: 280px; }
.tab-content__img img { width: 100%; border-radius: 10px; }
.tab-content__text { flex: 1; min-width: 280px; }
.tab-content__text h3 { font-size: 22px; font-weight: 600; margin-bottom: 12px; line-height: 1.3; }
.tab-content__text p { font-size: 15px; color: var(--text-light); margin-bottom: 20px; line-height: 1.6; }
.link-green { color: var(--green); font-weight: 600; font-size: 15px; transition: opacity 0.2s; }
.link-green:hover { opacity: 0.7; }

/* ===== SCHEDULE PAGE ===== */
.section--schedule { padding-top: 16px; }
.section--schedule .tabs-card { box-shadow: none; border-radius: 0; background: transparent; overflow: visible; }
.schedule-tabs {
  max-width: 520px;
  margin: 0 auto 18px;
  border: 1px solid #72bd77;
  border-radius: 4px;
  overflow: hidden;
}
.schedule-tabs button { text-transform: none; font-weight: 400; font-size: 12px; padding: 8px 14px; }
.schedule-pane { padding: 0; }
.schedule-grid-board { display: grid; gap: 0; align-items: start; }
.schedule-grid-board--walk { grid-template-columns: 70px repeat(7, 1fr); }
.schedule-grid-board--online { grid-template-columns: 70px repeat(5, 1fr); }
.time-col, .day-col { border-left: 1px solid #d8d8d8; padding: 0 8px; }
.day-col:last-child { border-right: 1px solid #d8d8d8; }
.day-title { text-align: center; font-weight: 400; margin-bottom: 8px; font-size: 14px; }
.time-spacer { height: 28px; }
.time-col > div { height: 36px; font-size: 13px; color: #444; display: flex; align-items: center; }
.schedule-cell { height: 36px; display: flex; align-items: center; }
.slot {
  display: inline-block; background: #bdbdbd; color: #fff; border-radius: 5px;
  font-size: 10px; padding: 5px 8px; margin: 0; width: 100%; text-align: center;
}
.slot:hover { background: #9fa4a8; }

/* ===== CARDS GRID ===== */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  border-radius: 10px; overflow: hidden; box-shadow: var(--shadow);
  background: var(--white); display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.card__img { position: relative; padding-bottom: 76.9%; overflow: hidden; }
.card__img--square { padding-bottom: 100%; }
.card__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card__heart {
  position: absolute; top: 10px; right: 10px; width: 32px; height: 32px;
  background: rgba(255,255,255,0.85); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s;
}
.card__heart:hover { background: var(--white); }
.card__heart svg { width: 16px; height: 14px; }
.card__body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.card__title { font-size: 14px; font-weight: 700; margin-bottom: 16px; line-height: 1.4; flex: 1; }
.card__btns { display: flex; flex-direction: column; gap: 8px; }

/* ===== BANNER CARDS ===== */
.banner-card {
  position: relative; border-radius: 10px; overflow: hidden;
  min-height: 300px; display: flex; align-items: center; margin-bottom: 30px;
  background-size: cover; background-position: center;
}
.banner-card__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.banner-card__content { position: relative; z-index: 2; padding: 40px; color: var(--white); max-width: 600px; }
.banner-card__uptitle { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; opacity: 0.85; }
.banner-card__title { font-size: 28px; font-weight: 700; line-height: 1.2; margin-bottom: 12px; }
.banner-card__descr { font-size: 15px; line-height: 1.6; opacity: 0.9; }

.promo-split {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 190px;
  margin-bottom: 24px;
}
.promo-split__text { color: #fff; padding: 32px 38px; display: flex; flex-direction: column; justify-content: center; }
.promo-split__text--violet { background: #40439b; }
.promo-split__text--orange { background: #ee9d1b; }
.promo-split__title { font-size: 42px; font-size: clamp(26px, 3vw, 42px); line-height: 1.2; font-weight: 800; margin-bottom: 12px; max-width: 760px; }
.promo-split__descr { font-size: 23px; font-size: clamp(16px, 1.8vw, 23px); margin-bottom: 18px; opacity: 0.95; }
.promo-split__image { background-size: cover; background-position: center; min-height: 190px; }

/* ===== REVIEWS ===== */
.review-card { background: var(--gray); border-radius: 20px; padding: 24px; display: flex; flex-direction: column; }
.review-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-card__avatar { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.review-card__meta { display: flex; flex-direction: column; }
.review-card__stars { color: #f5c518; font-size: 12px; margin-bottom: 10px; letter-spacing: 2px; }
.review-card__text { font-size: 14px; line-height: 1.55; color: #333; flex: 1; margin-bottom: 8px; }
.review-card__author { font-size: 27px; font-size: clamp(15px, 1.1vw, 27px); font-weight: 700; line-height: 1.1; }
.review-card__role { font-size: 10px; color: #8f8f8f; margin-top: 2px; }
.guide-booking {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  padding: 10px 0;
  margin-bottom: 14px;
}
.guide-booking__avatar {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
}
.guide-booking__name { font-weight: 700; font-size: 14px; }
.booking-pick {
  border: 1px solid #e8eef7;
  background: #f8fbff;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
}
.booking-pick__title { font-weight: 700; margin-bottom: 6px; }
.booking-pick__row { font-size: 13px; color: #4a5568; line-height: 1.45; }
.booking-pick__row span { color: #6b7280; }
.booking-pick__row strong { color: #111827; font-weight: 600; }
.booking-pick__list { display: grid; gap: 8px; }
.booking-pick__item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 10px;
  align-items: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px;
}
.booking-pick__icon {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background: #16d6d1;
  color: #fff;
  font-weight: 700;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
}
.booking-pick__meta { font-size: 12px; line-height: 1.35; color: #4b5563; }
.booking-pick__meta strong { font-size: 20px; color: #111827; display: block; line-height: 1.1; margin-bottom: 4px; }
.booking-pick__remove {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.booking-cart-btn {
  position: fixed;
  right: 18px;
  top: 84px;
  z-index: 1100;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #ececec;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.booking-cart-btn__icon { font-size: 20px; line-height: 1; }
.booking-cart-btn__count {
  position: absolute;
  right: -2px;
  bottom: -2px;
  min-width: 18px;
  height: 18px;
  border-radius: 10px;
  background: #e11d48;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ===== INFO CARDS (About page) ===== */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.info-card { background: var(--gray); border-radius: var(--radius-lg); padding: 32px; }
.info-card__title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.info-card__text { font-size: 15px; line-height: 1.7; color: var(--text-light); }
.info-card__text ul { margin-top: 10px; padding-left: 20px; }
.info-card__text ul li { list-style: disc; margin-bottom: 8px; }
.info-card .btn { margin-top: 20px; }

/* ===== ARTICLES / FEED ===== */
.article-card { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); background: var(--white); transition: transform 0.2s; }
.article-card:hover { transform: translateY(-4px); }
.article-card__img { aspect-ratio: 16/9; overflow: hidden; }
.article-card__img img { width: 100%; height: 100%; object-fit: cover; }
.article-card__body { padding: 16px; }
.article-card__tag {
  display: inline-block; font-size: 11px; text-transform: uppercase;
  color: var(--green); font-weight: 600; margin-bottom: 8px; letter-spacing: 0.5px;
}
.article-card__title { font-size: 16px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.article-card__date { font-size: 12px; color: var(--text-light); }

.photo-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.photo-carousel__viewport {
  position: relative;
  width: min(980px, 100%);
  height: 340px;
  overflow: hidden;
}
.photo-carousel__slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52%;
  max-width: 520px;
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}
.photo-carousel__slide img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 2px;
}
.photo-carousel__slide.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
}
.photo-carousel__slide.is-prev {
  opacity: 0.25;
  transform: translate(-132%, -50%) scale(0.92);
  z-index: 2;
}
.photo-carousel__slide.is-next {
  opacity: 0.25;
  transform: translate(32%, -50%) scale(0.92);
  z-index: 2;
}
.photo-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ececec;
  color: #72bd77;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.photo-carousel__arrow--left { left: calc(50% - 250px); }
.photo-carousel__arrow--right { right: calc(50% - 250px); }

.video-card__thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 10px;
}
.video-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-card__thumb iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.video-card__title { font-size: 22px; font-size: clamp(15px, 1.4vw, 22px); font-weight: 700; margin-bottom: 4px; }
.video-card__meta { font-size: 13px; color: var(--text-light); }

/* ===== FAQ ===== */
.accordion-item { border-top: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: 18px; font-weight: 600; text-align: left; color: var(--text);
}
.accordion-trigger:hover { color: var(--green); }
.accordion-icon {
  width: 36px; height: 36px; border-radius: 50%; background: var(--gray);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform 0.3s; font-size: 20px; color: var(--text);
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-body__inner {
  padding: 4px 0 22px;
  font-size: 19px;
  line-height: 1.56;
  color: #171717;
  font-weight: 400;
}
.accordion-body__inner strong {
  display: block;
  margin: 14px 0 6px;
  font-size: 20px;
  font-weight: 700;
  color: #111;
}
.accordion-body__inner ul {
  list-style: disc;
  margin: 0 0 10px 26px;
  padding: 0;
}
.accordion-body__inner li {
  margin: 0 0 6px;
}

/* ===== REGISTRATION ===== */
.registration { padding: 60px 0; background: var(--gray); }
.reg-form { max-width: 600px; margin: 0 auto; }
.reg-form .section-title { text-align: center; }
.reg-form__descr { text-align: center; color: var(--text-light); margin-bottom: 30px; font-size: 15px; }
.form-group { margin-bottom: 16px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1px solid #c9c9c9;
  border-radius: var(--radius); font-family: inherit; font-size: 15px;
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }

/* ===== GOSUSLUGI KEY BLOCK ===== */
.goskey-block {
  border: 1px dashed #9ab8de; border-radius: 12px;
  background: #f4f9ff; padding: 20px 16px; margin-bottom: 8px;
  text-align: center;
}
.goskey-block__label {
  margin: 0 0 4px; font-size: 12px; color: #4f6584;
  text-transform: uppercase; letter-spacing: 0.8px; font-weight: 700;
}
.goskey-block__value {
  margin: 0; font-size: 40px; line-height: 1.1; font-weight: 800;
  color: #0a57a2; letter-spacing: 2px; font-variant-numeric: tabular-nums;
}
.goskey-block__value--empty { color: #94a3b8; font-weight: 600; font-size: 28px; letter-spacing: 0; }
.goskey-actions { display: flex; gap: 8px; margin-top: 12px; justify-content: center; flex-wrap: wrap; }
.goskey-actions .btn-gen {
  background: #0d67b8; color: #fff; border: none; border-radius: 10px;
  padding: 10px 18px; font-size: 14px; font-weight: 700; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 6px 16px rgba(13,103,184,0.2);
}
.goskey-actions .btn-gen:hover { background: #0a57a2; transform: translateY(-1px); }
.goskey-actions .btn-copy {
  background: #eef4fb; color: #2f4869; border: none; border-radius: 10px;
  padding: 10px 18px; font-size: 14px; font-weight: 700; cursor: pointer;
  transition: background 0.2s;
}
.goskey-actions .btn-copy:hover { background: #e3edf9; }
.goskey-actions .btn-copy:disabled { opacity: 0.5; cursor: not-allowed; }
.goskey-cooldown { margin: 8px 0 0; font-size: 13px; color: #64748b; min-height: 18px; }
.goskey-cooldown:empty { display: none; }
.goskey-error { margin: 6px 0 0; font-size: 13px; color: #e73f62; text-align: left; }
.goskey-error:empty { display: none; }
.goskey-hint {
  margin: 10px 0 0; font-size: 13px; color: #64748b; text-align: left; line-height: 1.4;
}
.goskey-link {
  display: inline-flex; align-items: center; gap: 4px;
  color: #0d67b8; text-decoration: none; font-weight: 600;
}
.goskey-link:hover { text-decoration: underline; }

.radio-group, .checkbox-group { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.radio-group label, .checkbox-group label {
  display: flex; align-items: center; gap: 8px;
  font-weight: 400; font-size: 14px; cursor: pointer;
}
.radio-group input, .checkbox-group input { width: 18px; height: 18px; accent-color: var(--green); cursor: pointer; }

.form-section-title {
  font-size: 15px; font-weight: 600; margin-top: 24px; margin-bottom: 12px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.schedule-grid {
  display: grid; grid-template-columns: 1fr; gap: 6px;
}
.schedule-grid label {
  display: flex; align-items: center; gap: 8px;
  font-weight: 400; font-size: 13px; cursor: pointer; padding: 4px 0;
}
.schedule-grid input { width: 16px; height: 16px; accent-color: var(--green); cursor: pointer; flex-shrink: 0; }
.form-footer-text { text-align: center; margin-top: 16px; font-size: 14px; color: var(--text-light); }

/* ===== POPUP ===== */
.popup-overlay {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.6); overflow-y: auto; padding: 20px;
}
.popup-overlay.open { display: flex; align-items: flex-start; justify-content: center; }
.popup {
  background: var(--white); border-radius: 10px; width: 100%; max-width: 640px;
  padding: 40px 50px; position: relative; margin: 5vh auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.popup__close {
  position: absolute; top: 16px; right: 20px; font-size: 28px;
  color: var(--text); cursor: pointer; line-height: 1; background: none; border: none;
  transition: color 0.2s;
}
.popup__close:hover { color: var(--green); }
.popup .section-title { text-align: center; margin-bottom: 24px; }
.popup--review { max-width: 640px; padding-top: 0; overflow: hidden; }
.popup-review__top {
  height: 170px;
  background-size: cover;
  background-position: center;
  margin: -40px -50px 20px;
}
@media (max-width: 640px) {
  .popup { padding: 30px 20px; margin: 10px auto; }
  .popup-review__top { margin: -30px -20px 16px; height: 140px; }
}

/* ===== WHATSAPP WIDGET ===== */
.wa-widget {
  display: none;
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); transition: transform 0.2s;
}
.wa-widget:hover { transform: scale(1.1); }
.wa-widget svg { width: 28px; height: 28px; fill: white; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 0; }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer__col { min-width: 200px; }
.footer__logo img { width: 90px; margin-bottom: 16px; }
.footer__text { font-size: 13px; line-height: 1.6; max-width: 300px; }
.footer__company { font-size: 12px; margin-top: 12px; line-height: 1.6; opacity: 0.6; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer__links a:hover { color: var(--white); }
.footer__social { display: none; gap: 12px; margin-top: 10px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.footer__social a:hover { background: var(--green); }
.footer__social svg { width: 18px; height: 18px; fill: white; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 20px; text-align: center; font-size: 13px; }
.footer__hotline { display: none; font-size: 14px; margin-top: 10px; }
.footer__hotline a { color: var(--green); font-weight: 600; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 980px) {
  .header__nav, .header > .header__inner > .btn { display: none; }
  .burger { display: flex; }
  .hero { min-height: 280px; }
}
@media (max-width: 768px) {
  .cards-grid, .cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .tabs-header { flex-wrap: wrap; }
  .tabs-header button { flex: none; width: 50%; }
  .tab-content.active { flex-direction: column; }
  .schedule-grid-board--walk, .schedule-grid-board--online { display: block; }
  .time-col { display: none; }
  .day-col { border: 1px solid #e7e7e7; margin-bottom: 10px; border-radius: 8px; padding: 10px; }
  .day-col:last-child { border-right: 1px solid #e7e7e7; }
  .day-title { text-align: left; }
  .promo-split { grid-template-columns: 1fr; }
  .promo-split__text { padding: 20px; }
  .top-photo, .top-photo__content { min-height: 150px; }
  .photo-carousel { min-height: 280px; }
  .photo-carousel__viewport { height: 250px; }
  .photo-carousel__slide,
  .photo-carousel__slide img { height: 250px; }
  .photo-carousel__slide { width: 70%; }
  .photo-carousel__slide.is-prev,
  .photo-carousel__slide.is-next { opacity: 0.16; }
  .photo-carousel__arrow--left { left: 8px; }
  .photo-carousel__arrow--right { right: 8px; }
  .footer__inner { flex-direction: column; }
}
@media (max-width: 480px) {
  .cards-grid, .cards-grid--3 { grid-template-columns: 1fr; }
  .search__form { flex-direction: column; }
  .hero__title { font-size: 24px; }
  .banner-card__title { font-size: 22px; }
  .banner-card__content { padding: 24px; }
  .header__inner { padding: 0 20px; }
  .photo-carousel__viewport { height: 220px; }
  .photo-carousel__slide,
  .photo-carousel__slide img { height: 220px; }
  .photo-carousel__slide { width: 88%; }
  .photo-carousel__slide.is-prev,
  .photo-carousel__slide.is-next { opacity: 0; }
  .accordion-body__inner { font-size: 16px; line-height: 1.52; }
  .accordion-body__inner strong { font-size: 17px; }
}
