:root {
  --bg-dark: #0a4ea3;
  --bg-blue: #0f74e6;
  --bg-sky: #3bb3ff;
  --bg-soft: #eaf6ff;
  --bg-soft-2: #f5fbff;
  --white: #ffffff;
  --text: #0f2f57;
  --muted: #587491;
  --yellow: #ffd84d;
  --yellow-strong: #ffc928;
  --shadow: 0 18px 40px rgba(8, 69, 132, 0.12);
  --shadow-strong: 0 26px 70px rgba(8, 69, 132, 0.18);
  --radius: 26px;
  --container: 1180px;
  --transition: 0.25s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(59, 179, 255, 0.14), transparent 26%),
    radial-gradient(circle at top right, rgba(255, 216, 77, 0.10), transparent 24%),
    linear-gradient(180deg, #edf7ff 0%, #f5fbff 38%, #fbfdff 100%);
  overflow-x: hidden;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 252, 255, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(44, 136, 231, 0.10);
}

.header-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  position: relative;
  z-index: 102;
}

.site-logo {
  width: 100%;
  max-width: 174px;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #617b97;
  transition: color var(--transition), transform var(--transition);
}

.nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-ticket,
.nav-btn {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem !important;
  font-weight: 800 !important;
}

.nav-ticket {
  background: linear-gradient(135deg, #0a5fd2, #2ba6ff);
  color: #ffffff !important;
  box-shadow: 0 8px 18px rgba(15, 116, 230, 0.20);
}

.nav-btn {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-strong));
  color: #16324f !important;
  box-shadow: 0 8px 18px rgba(255, 201, 40, 0.20);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 102;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #17375f;
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition), top var(--transition);
}

.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 29px; }

.menu-toggle.active span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) { opacity: 0; }

.menu-toggle.active span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

/* HERO */
.hero {
  position: relative;
  padding: 38px 0 28px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy-card,
.hero-visual,
.module-shell {
  position: relative;
}

.hero-copy-card::before,
.hero-visual::before,
.module-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.34), rgba(255,255,255,0.08) 40%, rgba(10,95,210,0.06) 75%, rgba(255,216,77,0.06));
  pointer-events: none;
}

.hero-copy-card {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 22px 52px rgba(8, 69, 132, 0.14);
}

.hero-photo-card {
  position: relative;
  min-height: 560px;
  background:
    linear-gradient(180deg, rgba(6, 33, 69, 0.14), rgba(6, 33, 69, 0.54)),
    url("assets/images/1.png") center center / cover no-repeat;
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248, 252, 255, 0.03) 0%, rgba(248, 252, 255, 0.05) 24%, rgba(248, 252, 255, 0.14) 54%, rgba(248, 252, 255, 0.30) 100%);
}

.hero-copy-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 30px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #0a6fe0;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-copy-inner h1 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  max-width: 9ch;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(8, 29, 56, 0.35);
}

.hero-text {
  margin: 0;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.97);
  font-size: 1.02rem;
  line-height: 1.78;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(8, 29, 56, 0.28);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition), opacity var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.04);
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-strong));
  color: #16324f;
  box-shadow: 0 14px 28px rgba(255, 201, 40, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.mini-stat {
  min-width: 132px;
  padding: 15px 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.mini-stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.mini-stat span {
  font-size: 0.84rem;
  line-height: 1.45;
}

.accent-blue {
  background: linear-gradient(135deg, rgba(10,95,210,0.72), rgba(59,179,255,0.56));
  color: #ffffff;
}

.accent-blue span { color: rgba(255, 255, 255, 0.88); }

.accent-gold {
  background: linear-gradient(135deg, rgba(255,216,77,0.78), rgba(255,201,40,0.62));
  color: #16324f;
}

.accent-gold span { color: rgba(22, 50, 79, 0.82); }

.glass-tint {
  box-shadow: 0 14px 28px rgba(8, 69, 132, 0.10), inset 0 1px 0 rgba(255,255,255,0.18);
}

.hero-visual {
  padding: 16px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.30);
  box-shadow: 0 22px 52px rgba(8, 69, 132, 0.12);
  backdrop-filter: blur(10px);
}

.hero-surface {
  min-height: 560px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(7, 30, 60, 0.08), rgba(7, 30, 60, 0.18)),
    url("assets/images/2.png") center center / cover no-repeat;
}

.hero-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255,216,77,0.08), transparent 22%);
  pointer-events: none;
}

.hero-banner-top {
  position: absolute;
  top: 10px;
  left: 18px;
  right: 18px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero-top-chip {
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(11, 92, 203, 0.72), rgba(49, 151, 255, 0.54));
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 24px rgba(7, 29, 56, 0.16), inset 0 1px 0 rgba(255,255,255,0.14);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffd84d;
  box-shadow: 0 0 0 4px rgba(255, 216, 77, 0.16);
  flex: 0 0 8px;
}

.chip-clock {
  font-size: 0.9rem;
  line-height: 1;
}

.hero-banner-content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.hero-route-chip {
  width: auto;
  min-width: 0;
  max-width: 72%;
  padding: 16px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(11, 92, 203, 0.76), rgba(49, 151, 255, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(7, 29, 56, 0.16), inset 0 1px 0 rgba(255,255,255,0.14);
  flex: 0 1 auto;
}

.hero-route-chip strong {
  display: block;
  font-size: 1rem;
  line-height: 1.18;
}

.hero-route-chip span {
  display: block;
  margin-top: 4px;
  font-size: 0.84rem;
  line-height: 1.35;
}

.hero-banner-bottom {
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-side-logo {
  width: 170px;
  max-width: 170px;
  height: auto;
  object-fit: contain;
  opacity: 0.92;
  filter: drop-shadow(0 10px 22px rgba(7, 29, 56, 0.16));
}

/* COMMON */
.trust-strip { padding: 10px 0 22px; }

.trust-strip-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  box-shadow: 0 18px 36px rgba(8, 69, 132, 0.10), inset 0 1px 0 rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
}

.glass-blue {
  background: linear-gradient(135deg, rgba(10,95,210,0.68), rgba(59,179,255,0.50));
  color: #ffffff;
}

.glass-blue strong,
.glass-blue h3 {
  color: #ffffff !important;
}

.glass-blue span,
.glass-blue p,
.glass-blue label {
  color: rgba(255,255,255,0.90) !important;
}

.glass-gold {
  background: linear-gradient(135deg, rgba(255,216,77,0.74), rgba(255,201,40,0.54));
  color: #16324f;
}

.glass-gold strong,
.glass-gold h3 {
  color: #16324f !important;
}

.glass-gold span,
.glass-gold p {
  color: rgba(22, 50, 79, 0.82) !important;
}

.trust-item {
  padding: 22px;
  border-radius: 22px;
}

.trust-item strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1rem;
}

.trust-item span {
  line-height: 1.58;
  font-size: 0.92rem;
}

.section {
  padding: 26px 0;
}

.module-shell {
  position: relative;
  border-radius: 32px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 20px 48px rgba(8, 69, 132, 0.10);
  backdrop-filter: blur(12px);
}

.module-cool {
  background:
    radial-gradient(circle at top left, rgba(59,179,255,0.10), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.46), rgba(255,255,255,0.30));
}

.module-warm {
  background:
    radial-gradient(circle at top right, rgba(255,216,77,0.12), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.46), rgba(255,255,255,0.30));
}

.section-head {
  margin-bottom: 22px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #0c71df;
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.05em;
  color: #12345d;
}

.section-head p {
  margin: 0;
  max-width: 66ch;
  color: #64809c;
  line-height: 1.75;
}

.cards-grid {
  display: grid;
  gap: 18px;
}

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.schedule-card,
.feature-panel,
.pet-box,
.contact-box,
.review-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.premium-card {
  box-shadow: 0 18px 40px rgba(8, 69, 132, 0.10), inset 0 1px 0 rgba(255,255,255,0.10);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(8, 69, 132, 0.14), inset 0 1px 0 rgba(255,255,255,0.14);
  filter: saturate(1.03);
}

.card {
  border-radius: var(--radius);
  padding: 24px;
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.icon-gold {
  background: linear-gradient(135deg, rgba(255,216,77,0.95), rgba(255,201,40,0.88));
  color: #16324f;
  box-shadow: 0 12px 24px rgba(255, 201, 40, 0.20);
}

.icon-blue {
  background: linear-gradient(135deg, rgba(10,95,210,0.95), rgba(59,179,255,0.86));
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 116, 230, 0.20);
}

.card h3,
.schedule-card h3,
.feature-panel h3,
.contact-box h3,
.pet-text h3,
.review-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.card p,
.feature-panel p,
.contact-box p,
.pet-text p {
  margin: 0;
  line-height: 1.7;
}

/* SCHEDULE */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.schedule-card {
  overflow: hidden;
  border-radius: 28px;
  padding: 0;
}

.schedule-cover {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.schedule-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.schedule-cover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(180deg, rgba(10, 30, 58, 0.08), rgba(10, 30, 58, 0.72));
}

.schedule-cover-overlay h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin: 10px 0 0;
}

.schedule-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(21, 144, 255, 0.10);
  color: #0b71df;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.light-badge {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.schedule-list {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.schedule-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.schedule-item-gold {
  background: linear-gradient(135deg, rgba(255,216,77,0.76), rgba(255,201,40,0.58));
  color: #16324f;
}

.schedule-item-gold .schedule-time,
.schedule-item-gold .schedule-info strong {
  color: #16324f;
}

.schedule-item-gold .schedule-info span {
  color: rgba(22, 50, 79, 0.82);
}

.schedule-item-blue {
  background: linear-gradient(135deg, rgba(10,95,210,0.70), rgba(59,179,255,0.52));
  color: #ffffff;
}

.schedule-item-blue .schedule-time,
.schedule-item-blue .schedule-info strong {
  color: #ffffff;
}

.schedule-item-blue .schedule-info span {
  color: rgba(255, 255, 255, 0.88);
}

.schedule-time {
  font-size: 1.18rem;
  font-weight: 900;
}

.schedule-info strong {
  display: block;
  margin-bottom: 4px;
}

.schedule-info span {
  line-height: 1.55;
  font-size: 0.92rem;
}

/* PANELS */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-panel {
  border-radius: 26px;
  padding: 26px;
}

.feature-panel-blue {
  background: linear-gradient(135deg, rgba(10,95,210,0.86), rgba(57,175,255,0.68));
  color: #fff;
}

.feature-panel-blue h3,
.feature-panel-blue p {
  color: #fff;
}

.feature-panel-yellow {
  background: linear-gradient(135deg, rgba(255,216,77,0.84), rgba(255,201,40,0.64));
}

.feature-panel-yellow h3,
.feature-panel-yellow p {
  color: #16324f;
}

.custom-contact {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(22, 50, 79, 0.14);
}

.custom-contact-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(22, 50, 79, 0.72);
}

.custom-phone {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #16324f;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(22, 50, 79, 0.12);
  word-break: break-word;
}

.pet-box {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  align-items: center;
  border-radius: 26px;
  padding: 24px;
}

.pet-icon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  font-size: 2rem;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.contact-box {
  border-radius: 26px;
  padding: 24px;
}

.contact-box p {
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.contact-phone-link {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  color: inherit;
  transition: transform var(--transition), opacity var(--transition);
}

.contact-phone-link:hover {
  transform: translateY(-1px);
  opacity: 0.82;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 16px 18px;
  border-radius: 20px;
  color: #ffffff;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.social-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.25rem;
  font-weight: 900;
}

.social-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.social-text strong {
  font-size: 1rem;
  line-height: 1.1;
}

.social-text small {
  font-size: 0.84rem;
  line-height: 1.35;
  opacity: 0.95;
  word-break: break-word;
}

.social-viber { background: linear-gradient(135deg, #7360f2, #8b5cf6); }
.social-instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.social-tiktok { background: linear-gradient(135deg, #111827, #0f172a, #1f2937); }
.social-facebook { background: linear-gradient(135deg, #1877f2, #0a58ca); }

/* REVIEWS */
.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.reviews-container {
  max-width: 1120px;
}

.reviews-shell {
  padding: 22px 24px;
}

.reviews-head p {
  max-width: 760px;
}

.reviews-brandline {
  display: block;
}

.reviews-brand-main {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  min-width: 0;
}

.reviews-title {
  margin: 0;
  display: block;
}

.reviews-title-logo {
  width: 190px;
  max-width: 190px;
  height: auto;
  object-fit: contain;
}

.reviews-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  flex: 1 1 420px;
  max-width: 780px;
}

.reviews-summary-score {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 900;
  flex: 0 0 78px;
}

.reviews-summary-text strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.reviews-summary-text span {
  display: block;
  line-height: 1.55;
  font-size: 0.92rem;
}

.reviews-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.reviews-source-btn {
  white-space: nowrap;
  background: linear-gradient(135deg, #0a5fd2, #2ba6ff);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 116, 230, 0.22);
  border: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 10px;
}

.review-card {
  border-radius: 24px;
  padding: 22px;
}

.review-card.hidden-review {
  display: none !important;
}

.review-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.review-author {
  font-size: 1rem;
  font-weight: 800;
}

.review-route {
  margin-top: 4px;
  font-size: 0.82rem;
  opacity: 0.85;
  overflow-wrap: anywhere;
}

.review-stars {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.review-card p {
  margin: 0;
  line-height: 1.7;
  font-size: 0.94rem;
}

.review-message-wrap,
.review-reply-message-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-message,
.review-reply-message {
  margin: 0;
  line-height: 1.7;
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

.review-message.is-collapsed,
.review-reply-message.is-collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-expand-btn {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  align-self: flex-start;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.92;
}

.review-expand-btn:hover {
  opacity: 1;
}

.review-date {
  margin-top: 14px;
  font-size: 0.78rem;
  opacity: 0.76;
}

.review-company-reply {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
}

.review-reply-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.review-reply-label {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
}

.review-reply-author {
  font-size: 0.96rem;
  font-weight: 800;
}

.review-reply-date {
  margin-top: 10px;
  font-size: 0.78rem;
  opacity: 0.76;
}

.review-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 20px;
  border-radius: 22px;
}

.reviews-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.reviews-more-btn {
  background: linear-gradient(135deg, #0a5fd2, #2ba6ff);
  color: #ffffff;
  border: none;
  box-shadow: 0 12px 24px rgba(15, 116, 230, 0.20);
}

/* MODAL */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 22, 44, 0.50);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 300;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-dialog {
  width: min(760px, 100%);
  border-radius: 30px;
  padding: 24px;
  position: relative;
  box-shadow: 0 30px 80px rgba(6, 33, 69, 0.28);
}

.modal-head {
  margin-bottom: 18px;
  padding-right: 56px;
}

.modal-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.05em;
  color: #ffffff;
}

.modal-head p {
  margin: 0;
  color: rgba(255,255,255,0.90);
  line-height: 1.7;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.16);
  cursor: pointer;
}

.modal-close span {
  position: absolute;
  left: 11px;
  right: 11px;
  top: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.modal-close span:first-child { transform: rotate(45deg); }
.modal-close span:last-child { transform: rotate(-45deg); }

.review-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: inherit;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(255, 255, 255, 0.52);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.form-field select {
  cursor: pointer;
}

.form-field option,
.form-field optgroup {
  color: #16324f;
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.form-hint,
.form-counter {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.80);
}

.form-counter {
  font-weight: 700;
}

.form-counter.is-invalid {
  color: #ffd84d;
}

.review-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.review-form-note {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
  flex: 1 1 320px;
}

.review-form-status {
  margin-top: 14px;
  min-height: 24px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffd84d;
}

.review-form-status.success { color: #b7ffb7; }
.review-form-status.error { color: #ffd1d1; }

/* FOOTER + SCROLL */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, #0a5fd2, #2ba6ff);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(15, 116, 230, 0.28);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition), box-shadow var(--transition);
  z-index: 120;
}

.scroll-top span {
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-footer {
  padding: 28px 0 40px;
}

.footer-shell {
  border-top: 1px solid rgba(44, 136, 231, 0.14);
  padding-top: 18px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 14px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand strong {
  font-size: 1rem;
  color: #16365f;
}

.footer-brand span {
  color: #68829e;
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #617b97;
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-bottom {
  padding-top: 14px;
  border-top: 1px solid rgba(44, 136, 231, 0.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy,
.footer-powered {
  color: #68829e;
  font-size: 0.90rem;
  line-height: 1.5;
}

.footer-powered span {
  color: #0a5fd2;
  font-weight: 900;
  letter-spacing: 0.04em;
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .hero-grid,
  .trust-strip-row,
  .cards-4,
  .schedule-grid,
  .feature-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .site-logo { max-width: 160px; }

  .menu-toggle { display: inline-block; }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(44, 136, 231, 0.12);
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    z-index: 101;
  }

  .nav.open { display: flex; }

  .nav a,
  .nav-ticket,
  .nav-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-grid { gap: 18px; }

  .hero-photo-card,
  .hero-surface {
    min-height: 500px;
  }

  .hero-route-chip {
    max-width: calc(100% - 150px);
  }

  .hero-side-logo {
    width: 116px;
    max-width: 116px;
  }

  .reviews-shell { padding: 20px; }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .site-logo { max-width: 138px; }

  .hero-copy-inner {
    padding: 22px 18px;
  }

  .hero-copy-inner h1 {
    font-size: 2.45rem;
    max-width: 10ch;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .reviews-actions .btn,
  .reviews-more-btn {
    width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mini-stat {
    width: 100%;
    min-width: 0;
  }

  .hero-photo-card,
  .hero-surface {
    min-height: 430px;
  }

  .hero-banner-content {
    left: 10px;
    right: 10px;
    bottom: 10px;
    gap: 10px;
  }

  .hero-route-chip {
    max-width: calc(100% - 118px);
    padding: 12px 14px;
  }

  .hero-route-chip strong { font-size: 0.84rem; }
  .hero-route-chip span { font-size: 0.70rem; }

  .hero-side-logo {
    width: 92px;
    max-width: 92px;
  }

  .section { padding: 18px 0; }

  .module-shell {
    padding: 18px;
    border-radius: 24px;
  }

  .card,
  .feature-panel,
  .contact-box,
  .pet-box,
  .review-card {
    padding: 18px;
    border-radius: 20px;
  }

  .schedule-cover { height: 220px; }

  .schedule-list {
    padding: 16px;
    gap: 10px;
  }

  .schedule-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
  }

  .feature-grid,
  .contacts-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pet-box {
    grid-template-columns: 1fr;
  }

  .pet-icon {
    width: 74px;
    height: 74px;
    border-radius: 18px;
    font-size: 1.6rem;
  }

  .social-btn {
    min-height: 70px;
    padding: 14px;
  }

  .reviews-brand-main {
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
  }

  .reviews-title {
    width: 100%;
    margin-bottom: 4px;
  }

  .reviews-title-logo {
    width: 220px;
    max-width: 220px;
  }

  .reviews-head p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .reviews-topbar {
    align-items: stretch;
  }

  .reviews-summary {
    flex-direction: row;
    align-items: center;
    max-width: 100%;
    padding: 16px;
  }

  .reviews-summary-score {
    width: 62px;
    height: 62px;
    font-size: 1.35rem;
    flex-basis: 62px;
  }

  .reviews-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .review-company-reply {
    padding: 14px;
  }

  .modal-backdrop {
    padding: 12px;
    align-items: flex-end;
  }

  .modal-dialog {
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    padding: 18px;
    border-radius: 22px 22px 0 0;
  }

  .modal-head {
    padding-right: 44px;
  }

  .modal-head h2 {
    font-size: 2rem;
  }

  .review-form-grid {
    grid-template-columns: 1fr;
  }

  .form-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .review-form-actions .btn {
    width: 100%;
  }

  .scroll-top {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }

  .footer-main,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .site-logo { max-width: 126px; }

  .hero-copy-inner h1 { font-size: 2.15rem; }

  .hero-route-chip {
    max-width: calc(100% - 96px);
    padding: 10px 12px;
  }

  .hero-route-chip strong { font-size: 0.78rem; }
  .hero-route-chip span { font-size: 0.64rem; }

  .hero-side-logo {
    width: 76px;
    max-width: 76px;
  }

  .reviews-title-logo {
    width: 190px;
    max-width: 190px;
  }

  .nav {
    padding: 12px;
  }

  .nav a,
  .nav-ticket,
  .nav-btn {
    min-height: 46px;
    font-size: 0.9rem !important;
  }
}