/* ============================================================
   KIDS KVEST — главные стили
   Mobile-first, breakpoints: 600 / 900 / 1200
   ============================================================ */

:root {
  --color-dark: #3d4655;
  --color-dark-2: #2c3340;
  --color-dark-blue: #1a2454;
  --color-orange: #ff9a23;
  --color-orange-dark: #e8810b;
  --color-green: #5dba47;
  --color-green-dark: #4ca33a;
  --color-green-ribbon: #7dd34a;
  --color-text: #2c2c2c;
  --color-text-light: #7a7a7a;
  --color-yellow-form: #ffe34d;
  --color-yellow-form-dark: #ffd02e;
  --color-paper: #f6e6b2;
  --color-paper-dark: #e8d089;

  --shadow-soft: 0 6px 18px rgba(0,0,0,0.08);
  --shadow-card: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-btn: 0 4px 0 rgba(0,0,0,0.15);
  --shadow-btn-hover: 0 2px 0 rgba(0,0,0,0.15);

  --font-display: 'Neucha', 'Comic Sans MS', cursive;
  --font-body: 'Rubik', 'Open Sans', system-ui, sans-serif;

  --container: min(92vw, 1180px);
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text);
  background: #fff;
  overflow-x: hidden;
}

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

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

.container { width: var(--container); margin: 0 auto; }

/* Honeypot - скрытое поле */
.hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0; }

/* ===== Кнопки ===== */
.btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  border: none;
  text-decoration: none !important;
  transition: transform .15s ease, box-shadow .15s ease;
  color: #fff;
}

.btn--green {
  background: linear-gradient(180deg, #6ed053, var(--color-green-dark));
  box-shadow: var(--shadow-btn), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn--green:hover { transform: translateY(2px); box-shadow: var(--shadow-btn-hover), inset 0 1px 0 rgba(255,255,255,.3); }

.btn--orange {
  background: linear-gradient(180deg, var(--color-orange), var(--color-orange-dark));
  box-shadow: var(--shadow-btn), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn--orange:hover { transform: translateY(2px); }

.btn--green-pill {
  background: linear-gradient(180deg, #6ed053, var(--color-green-dark));
  box-shadow: 0 3px 0 rgba(0,0,0,.15), inset 0 1px 0 rgba(255,255,255,.3);
  padding: 14px 44px;
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
}
.btn--green-pill:hover { transform: translateY(1px); box-shadow: 0 2px 0 rgba(0,0,0,.15), inset 0 1px 0 rgba(255,255,255,.3); }

/* ============================================================
   HERO + NAV
   ============================================================ */
.hero {
  position: relative;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,.25) 100%),
    url('/assets/img/hero-bg.jpg') center top / cover no-repeat,
    linear-gradient(to bottom, #a4ceeb 0%, #8fc6e9 50%, #7fb37a 100%);
  background-color: #a4ceeb;
  min-height: 720px;
  padding-bottom: 80px;
}

@media (min-width: 900px) {
  .hero { min-height: 760px; }
}

.hero__content {
  text-align: center;
  padding: 120px 5vw 0;
  position: relative;
  z-index: 2;
}

/* === Nav === */
.nav {
  position: relative;
  padding: 14px 0;
  z-index: 10;
  background: rgba(255,255,255,0);
}
.nav__inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav__logo { flex-shrink: 0; }
.nav__logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.3));
  display: block;
}
.nav__menu {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0 auto 0 10px;
  padding: 0;
  flex-wrap: nowrap;
}
.nav__menu .btn { padding: 9px 18px; font-size: 14px; white-space: nowrap; }
.nav__order {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__order strong { font-weight: 700; font-size: 1.1em; }

.nav__phone {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none !important;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
  white-space: nowrap;
  flex-shrink: 0;
  padding: 4px 14px;
  border-radius: 999px;
  transition: background .15s;
}
.nav__phone:hover {
  background: rgba(255,255,255,.15);
}
@media (max-width: 1100px) {
  .nav__phone { font-size: 16px; padding: 4px 8px; }
}

/* Бургер для мобилы */
.nav__burger {
  display: none;
  background: rgba(255,255,255,.9);
  border: none;
  padding: 9px 11px;
  border-radius: 8px;
  cursor: pointer;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-dark);
  margin: 4px 0;
  transition: transform .25s, opacity .25s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav__inner { flex-wrap: wrap; }
  .nav__burger { display: block; order: 2; margin-left: auto; }
  .nav__phone { order: 3; font-size: 15px; padding: 4px 8px; white-space: nowrap; }
  .nav__order { order: 4; margin-left: 8px; font-size: 13px; }
  .nav__logo { order: 1; }
  .nav__logo img { height: 50px; }
  .nav__menu {
    order: 5;
    width: 100%;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    gap: 8px;
    margin: 0;
  }
  .nav__menu.is-open {
    max-height: 400px;
    margin-top: 12px;
  }
  .nav__menu .btn { width: 100%; padding: 12px; }
}

@media (max-width: 480px) {
  .nav__order { display: none; }
}

/* === Hero content === */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 78px);
  line-height: 1.05;
  margin: 0;
  color: #7d7d7d;
  text-shadow: 2px 2px 0 rgba(255,255,255,.5);
  font-weight: 400;
  letter-spacing: 0.5px;
}
.hero__subtitle {
  max-width: 720px;
  margin: 28px auto 0;
  font-size: clamp(15px, 2vw, 18px);
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
  line-height: 1.55;
}

/* ============================================================
   CALLBACK FORM
   ============================================================ */
.callback {
  background: var(--color-dark);
  padding: 40px 0 50px;
}
.section-title {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3.5vw, 32px);
  text-align: center;
  margin: 0 0 30px;
  letter-spacing: 0.5px;
  color: var(--color-text);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.section-title--light { color: #fff; }
.section-title::before,
.section-title::after {
  content: '';
  flex: 0 0 60px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}
.section-subtitle {
  text-align: center;
  color: #d4d8de;
  margin: -20px 0 30px;
  font-size: 15px;
}

.callback-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-card);
}
.callback-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 18px;
  align-items: end;
}
@media (max-width: 768px) {
  .callback-form__row { grid-template-columns: 1fr; }
}
.callback-form label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
  color: var(--color-text-light);
}
.callback-form label em { color: #e8483b; font-style: normal; }
.callback-form input[type="text"],
.callback-form input[type="tel"] {
  border: 1px solid #d6d6d6;
  border-radius: 6px;
  padding: 9px 12px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  transition: border-color .15s;
}
.callback-form input:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(93,186,71,.15);
}
.callback-form__legal {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--color-text-light);
  text-align: center;
}
.callback-form__legal a { color: #3286e3; }

/* ============================================================
   КОНСТРУКТОР РАЗВЛЕЧЕНИЙ (свиток + слайдер)
   ============================================================ */
.quest-slider-section {
  background: var(--color-dark);
  padding: 70px 0 90px;
  position: relative;
}

.ribbon {
  position: relative;
  text-align: center;
  margin-bottom: -28px;
  z-index: 3;
}
.ribbon--konstruktor span {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  color: #fff;
  text-shadow: -1px -1px 0 #3d76c0, 1px -1px 0 #3d76c0, -1px 1px 0 #3d76c0, 1px 1px 0 #3d76c0, 2px 3px 4px rgba(0,0,0,.25);
  background: linear-gradient(180deg, #95dc4c 0%, #61c129 100%);
  padding: 16px 60px;
  border-radius: 80px / 100%;
  box-shadow: 0 6px 14px rgba(0,0,0,.3), inset 0 -4px 0 rgba(0,0,0,.15), inset 0 2px 0 rgba(255,255,255,.4);
  position: relative;
}
.ribbon--konstruktor span::before,
.ribbon--konstruktor span::after {
  content: '';
  position: absolute;
  bottom: -14px;
  width: 36px;
  height: 30px;
  background: #4ea526;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 70%, 0 100%);
}
.ribbon--konstruktor span::before { left: -10px; transform: skewY(8deg); }
.ribbon--konstruktor span::after  { right: -10px; transform: skewY(-8deg); }

.scroll-bg {
  background: linear-gradient(180deg, #f7e5ad 0%, #efd587 100%);
  border-radius: 24px;
  border: 5px solid #d6b769;
  box-shadow: 0 15px 40px rgba(0,0,0,.4), inset 0 0 60px rgba(202,156,82,.3);
  padding: 56px 30px 36px;
  position: relative;
}
.scroll-bg::before,
.scroll-bg::after {
  content: '';
  position: absolute;
  left: 8px;
  right: 8px;
  height: 22px;
  background:
    radial-gradient(ellipse at 10% 50%, #c9a560 0 8px, transparent 9px) repeat-x,
    linear-gradient(180deg, #d6b769, #c9a560);
  background-size: 35px 100%;
}
.scroll-bg::before { top: 8px; border-radius: 18px 18px 0 0; }
.scroll-bg::after  { bottom: 8px; border-radius: 0 0 18px 18px; }

/* === Слайдер === */
.quest-slider { position: relative; }
.quest-slider__viewport {
  overflow: hidden;
  border-radius: 8px;
}
.quest-slider__track {
  display: flex;
  transition: transform .4s ease;
}
.quest-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 36px;
  align-items: start;
  padding: 16px 60px;
}
@media (max-width: 700px) {
  .quest-slide { grid-template-columns: 1fr; gap: 18px; padding: 16px 30px; text-align: center; }
  .quest-slide__img { max-width: 240px; margin: 0 auto; }
}
.quest-slide__img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.quest-slide__body h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 0 0 18px;
  color: #2c2c2c;
  font-weight: 400;
}
.quest-slide__body p {
  font-size: 16px;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0 0 12px;
}
.quest-slide__meta strong { color: #2c7d3c; }

.quest-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.7);
  border: 2px solid #c9a560;
  color: #6a4d1c;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: background .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}
.quest-slider__arrow:hover { background: #fff; }
.quest-slider__arrow--prev { left: 8px; }
.quest-slider__arrow--next { right: 8px; }

.quest-slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.quest-slider__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #b89f6a;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .15s;
}
.quest-slider__dot--active { background: #3d4655; }

/* ============================================================
   КОНСТРУКТОР ЗАКАЗА (карточки)
   ============================================================ */
.calc-section {
  background: var(--color-dark);
  padding: 50px 0 70px;
}
.calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-bottom: 36px;
}
.calc-card {
  position: relative;
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 22px 18px;
  cursor: pointer;
  transition: all .2s;
  color: #fff;
  text-align: center;
}
.calc-card:hover {
  border-color: var(--color-green);
  background: rgba(255,255,255,.1);
  transform: translateY(-3px);
}
.calc-card__check {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  cursor: pointer;
  accent-color: var(--color-green);
}
.calc-card:has(.calc-card__check:checked) {
  border-color: var(--color-green);
  background: rgba(93,186,71,.15);
}
.calc-card__icon {
  width: 90px; height: 90px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: flex; align-items: center; justify-content: center;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.calc-card__icon img { max-width: 70px; max-height: 70px; }
.calc-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 10px;
  line-height: 1.2;
  color: #fff;
}
.calc-card h3 small { display: block; font-size: 14px; opacity: 0.85; }
.calc-card__desc {
  font-size: 14px;
  color: #c9cdd3;
  line-height: 1.5;
  margin: 0 0 14px;
  min-height: 42px;
}
.calc-card__price {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-green-ribbon);
}

.calc-total {
  text-align: center;
  font-size: clamp(20px, 3vw, 26px);
  color: #fff;
  padding: 14px;
  border-top: 1px dashed rgba(255,255,255,.2);
}
.calc-total strong {
  color: var(--color-green-ribbon);
  font-size: 1.3em;
  margin-left: 10px;
}

/* ============================================================
   ВАС ОЖИДАЕТ + фон с миньонами
   ============================================================ */
.features {
  background:
    linear-gradient(180deg, rgba(26,36,84,0.92) 0%, rgba(26,36,84,0.95) 60%, rgba(26,36,84,1) 100%),
    url('/assets/img/dark-stone.jpg') center bottom / cover no-repeat;
  padding: 60px 0;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.feature { text-align: center; }
.feature__icon {
  width: 130px; height: 130px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature__icon img { max-width: 100%; max-height: 100%; }
.feature__title {
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
  margin: 0;
}

/* ============================================================
   СПЕЦИАЛЬНОЕ ПРЕДЛОЖЕНИЕ
   ============================================================ */
.special {
  position: relative;
  background: linear-gradient(180deg, #a5c5d8 0%, #d8e1e8 30%, #e8edf0 50%, #ffffff 100%);
  padding: 50px 0 70px;
  overflow: hidden;
}
.special__minion {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 30vw;
  height: auto;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1000px) {
  .special__minion { width: 240px; max-width: 22vw; opacity: 0.7; }
}
@media (max-width: 600px) {
  .special__minion { display: none; }
}
.special__ribbon {
  display: block;
  max-width: 800px;
  width: 100%;
  margin: 0 auto 30px;
  height: auto;
  position: relative;
  z-index: 2;
}
.special__layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .special__layout { grid-template-columns: 1fr; }
}
.special__text { text-align: center; }
.special__text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 42px);
  color: #1a1a1a;
  margin: 0 0 14px;
  line-height: 1.15;
}
.special__price {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  color: var(--color-green-dark);
  font-weight: 700;
  margin: 14px 0;
}
.special__note {
  font-size: 15px;
  font-style: italic;
  color: #444;
  max-width: 480px;
  margin: 0 auto;
}

.booking-form {
  background: var(--color-yellow-form);
  background: linear-gradient(180deg, #fff066 0%, #ffd92e 100%);
  border-radius: 18px;
  padding: 26px 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.booking-form h3 {
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 22px;
  text-align: center;
  margin: 0 0 18px;
}
.booking-form label { display: block; margin-bottom: 12px; }
.booking-form label > span {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: #2a2a2a;
}
.booking-form label em { color: #d63333; font-style: normal; }
.booking-form input[type="text"],
.booking-form input[type="tel"] {
  width: 100%;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 6px;
  padding: 9px 12px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
}
.booking-form__checks {
  border: none;
  padding: 0;
  margin: 14px 0 18px;
}
.booking-form__checks legend {
  font-size: 14px;
  margin-bottom: 8px;
}
.check {
  display: flex !important;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px !important;
  font-size: 15px;
  cursor: pointer;
}
.check input { width: 16px; height: 16px; cursor: pointer; }
.booking-form .btn--green-pill { width: 100%; }
.booking-form__legal {
  font-size: 12px;
  color: #5a5a5a;
  text-align: center;
  margin: 14px 0 0;
}
.booking-form__legal a { color: #3286e3; }

/* ============================================================
   КВЕСТЫ В РЕАЛЬНОСТИ + миньоны
   ============================================================ */
.reality {
  background: var(--color-dark-blue);
  padding: 60px 0 0;
  position: relative;
}
.reality .container { padding-bottom: 30px; position: relative; z-index: 2; }
.reality .section-title { color: #fff; }
.reality__text-lg {
  text-align: center;
  color: #fff;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto 24px;
}
.reality__text-sm {
  text-align: center;
  color: #c4c8d6;
  font-size: 14px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}
.reality__minions {
  height: 280px;
  background: url('/assets/img/minions-row.jpg') center bottom / cover no-repeat;
  margin-top: 30px;
}
@media (max-width: 600px) {
  .reality__minions { height: 160px; }
}

/* ============================================================
   ОТЗЫВЫ
   ============================================================ */
.reviews { background: #fff; padding: 70px 0; }
.review {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
.review--reverse { grid-template-columns: 1fr 200px; }
@media (max-width: 700px) {
  .review, .review--reverse {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }
  .review--reverse .review__photo { order: -1; }
}
.review__photo {
  width: 180px; height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0,0,0,.12);
}
.review__body h3 {
  font-size: 20px;
  margin: 0 0 12px;
  font-weight: 700;
}
.review__body p {
  font-size: 16px;
  line-height: 1.65;
  color: #333;
  font-style: italic;
  margin: 0;
}

/* ============================================================
   КОНТАКТЫ
   ============================================================ */
.contacts { background: #f4f6f8; padding: 60px 0; }
.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 768px) {
  .contacts__grid { grid-template-columns: 1fr; }
}
.contacts__info p { margin: 0 0 10px; font-size: 16px; line-height: 1.6; }
.contacts__info a { color: #3286e3; }
.contacts__phone { margin-top: 4px !important; }
.contacts__phone a {
  color: var(--color-text) !important;
  font-size: 22px !important;
  font-weight: 700;
  text-decoration: none;
}
.contacts__phone a:hover { color: var(--color-green-dark) !important; }
.contacts__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.contacts__map iframe { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-dark-2);
  color: #b0b6c0;
  padding: 22px 0;
  font-size: 14px;
}
.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__row p { margin: 0; }
.footer__phone {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: color .15s;
}
.footer__phone:hover { color: var(--color-green-ribbon); text-decoration: none; }

@media (max-width: 600px) {
  .footer__row { justify-content: center; text-align: center; }
}

/* ============================================================
   Success message (для форм)
   ============================================================ */
.form-success {
  padding: 20px;
  text-align: center;
  background: rgba(93,186,71,.15);
  border: 2px solid var(--color-green);
  border-radius: 8px;
  color: #fff;
  font-size: 17px;
  margin: 10px 0;
}
.booking-form .form-success { color: #2c7d3c; background: rgba(93,186,71,.25); }
.callback .form-success { color: #fff; }
