* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
  font-family: "Google Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
"GRAD" 0;


}




body {
  background: #0f1115;
  color: #fff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 90px 0;
}

h2 {
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
}

.menu {
  display: flex;
  gap: 45px;
}

.menu a {
  color: #fff;
  text-decoration: none;
}

/* ===== POPUP ===== */

.popup {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
  padding: 20px;
}

.popup.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* затемнение */
.popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(0px);
  opacity: 0;
  transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
}

.popup.active .popup-overlay {
  backdrop-filter: blur(8px);
  opacity: 1;
}

/* окно */
.popup-content {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: linear-gradient(145deg, #151822, #0f1115);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  border: 1px solid #1f2430;
  z-index: 2;
  animation: popupFade 0.25s ease;
}

/* заголовок */
.popup-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* форма */
.popup .form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* инпуты как в booking-form */
.popup input,
.popup textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #252a35;
  background: #151822;
  color: #fff;
  font-size: 14px;
  transition: 0.2s ease;
}

.popup textarea {
  resize: vertical;
  min-height: 90px;
}

.popup input:focus,
.popup textarea:focus {
  outline: none;
  border-color: #4f8cff;
}

/* кнопка */
.popup .btn-primary {
  width: 100%;
  margin-top: 5px;
}

/* политика */
.popup .booking-policy {
  font-size: 11px;
  color: #7d8593;
  margin-top: 8px;
}

.popup .booking-policy a {
  color: #4f8cff;
  text-decoration: underline;
}

/* крестик */
.popup-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: #1b1f27;
  border: 1px solid #252a35;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s ease;
}

.popup-close:hover {
  background: #4f8cff;
  color: #0f1115;
}

/* анимация */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ===== POPUP SMOOTH ===== */

.popup {
  position: fixed;
  inset: 0;
  z-index: 2000;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup.active {
  opacity: 1;
  visibility: visible;
}

/* затемнение */
.popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(8px);
}

/* окно */
.popup-content {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: linear-gradient(145deg, #151822, #0f1115);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  border: 1px solid #1f2430;
  z-index: 2;

  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.popup.active .popup-content {
  transform: scale(1);
}


/* ===== HEADER ===== */
header {
  position: fixed;
  width: 100%;
  background: rgba(15, 17, 21, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #1f232b;
  z-index: 200;
}



.nav {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  border-radius: 6px;
    font-size: 24px;
}


.btn-primary {
  padding: 12px 22px;
  background: #4f8cff;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  position: relative;
  min-height: 55px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.hero-actions .btn-primary {
  min-width: 300px;
}

.header .btn-primary {
  display: flex;
    align-items: center;
    height: 100%;
    border-radius: 0;
    min-width: 200px;
    justify-content: center;
    gap: 10px;
    transition: ease 0.2s;
    position: relative;
}

.btn-primary::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #ffd100;
  width: 0%;
  height: 100%;
  z-index: 0;
  transition: ease 0.2s;
  border-radius: 8px;
}

.header .btn-primary::before {
  border-radius: 0px;
}


.btn-primary__text {
  font-size: 20px;
  font-weight: 600;
  z-index: 2;
}

.btn-primary__text-hero {
  z-index: 2;
  position: relative;
  font-size: 20px;
  transition: 0.3s ease;
}

.btn-primary:hover {
  color: #0f1115;
}

.btn-primary:hover::before {
  width: 100%;
}

.header .btn-primary svg {
  z-index: 1;
}

.header .btn-primary svg path {
  
  transition: ease 0.2s;
  fill: #ffffff;
}

.header .btn-primary:hover svg path {
  fill: #0f1115;
}

.btn-primary span {
  z-index: 2;
  position: relative;
  transition: 0.3s ease;
}

.btn-outline {
  display: flex;
  transition: 0.3s ease;
  border-radius: 8px;

}

.btn-outline:hover {
  scale: 1.1;
  box-shadow: 00px 0px 10px -3px #4f8cff;
}

.btn-outline svg {
  width: 50px;
}

/* ===== HERO NEW ===== */

.hero {
  padding-top: 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 70% 40%, #1c2333 0%, transparent 40%),
    linear-gradient(145deg, #151822, #0f1115);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */

.hero-text {
  max-width: 560px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero-text p {
  font-size: 18px;
  color: #a5acb8;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

/* STATS */

.stats {
  display: flex;
  justify-content: space-between;
}

.stats strong {
  font-size: 28px;
  line-height: 25px;
}

.stats span {
  font-size: 18px;
  color: #7d8593;
}

.stats-item {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}

.stats-item__left {
  display: flex;
  width: 50px;
}

.stats-item__left img {
  max-width: 50px;
}

.stats-item__right {
  display: flex;
  flex-direction: column;
}

/* RIGHT */

.hero-visual {
  position: relative;
}

.hero-card {
  border-radius: 24px;
  background: linear-gradient(145deg, #1b1f27, #161a22);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* floating feature card */

.hero-badge {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: #1f2430;
  padding: 22px 26px;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.6);
  font-size: 14px;
  color: #cfd6e3;
  line-height: 1.5;
}



/* ===== BLOCK CARDS ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  height: 160px;
  background: #1b1f27;
  border-radius: 18px;
}

/* ===== SERVICES ===== */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service {
  height: 130px;
  background: #1b1f27;
  border-radius: 14px;
}

/* ===== VIDEO ===== */
.video {
  height: 420px;
  background: #1b1f27;
  border-radius: 20px;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review {
  height: 180px;
  background: #1b1f27;
  border-radius: 14px;
}

/* ===== FORM ===== */
.form-wrapper {
  background: #1b1f27;
  border-radius: 24px;
  padding: 40px;
  height: 320px;
}

/* ===== MAP ===== */
.map {
  height: 350px;
  border-radius: 20px;
  background: #1b1f27;
}

/* ===== FOOTER ===== */
footer {
  background: #0c0e12;
  border-top: 1px solid #1f232b;
}



/* ===== HERO CALCULATOR ===== */

.calculator {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calc-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.calc-form select,
.calc-form input {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #252a35;
  background: #0f1115;
  color: #fff;
  font-size: 14px;
  transition: 0.3s border ease;
  cursor: pointer;
}

.calc-form select:focus,
.calc-form input:focus {
  outline: none;
  border-color: #4f8cff;
}

.calc-btn {
  margin-top: 6px;
  width: 100%;
  font-size: 16px;
}

/* лёгкий hover эффект */

.calculator {
  transition: 0.3s;
}

.calculator:hover {
  box-shadow: 0 25px 60px rgba(0,0,0,0.7);
}

/* ===== CALCULATOR PRICE & POLICY ===== */

.calc-price {
  margin-top: 10px;
  font-size: 14px;
  color: #4f8cff;
  font-weight: 600;
  display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    font-size: 35px;
}

.calc-policy {
  margin-top: 8px;
  font-size: 11px;
  color: #7d8593;
  line-height: 1.4;
}

.calc-policy a {
  color: #4f8cff;
  text-decoration: underline;
}


/* ===== TRUST / WHY YOUNGFIX ===== */

.trust {
  padding: 120px 0;
  background: linear-gradient(145deg, #141821, #0f1115);
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.trust-card {
  background: #1b1f27;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  cursor: default;
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.trust-icon {
  font-size: 40px;
  margin-bottom: 20px;
  max-width: 100px;
  margin: 0 auto;
}

.trust-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.trust-card p {
  font-size: 16px;
  color: #a5acb8;
  line-height: 1.5;
}

/* ===== SERVICES / УСЛУГИ ===== */

.services {
  padding: 120px 0;
  background: linear-gradient(145deg, #141821, #0f1115);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: #1b1f27;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.7);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.service-icon img {
  width: 100%;
  border-radius: 20px;
}

.service-under-icon {
  padding: 20px;
  padding-bottom: 30px;
  padding-top: 0;
}


.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-price {
  display: block;
  color: #4f8cff;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: #a5acb8;
  line-height: 1.5;
}

/* ===== PROCESS TIMELINE ===== */

.process {
  padding: 120px 0;
  background: linear-gradient(145deg, #141821, #0f1115);
  position: relative;
}

.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 60px;
  align-items: center;
  justify-content: center;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  position: relative;
  gap: 20px;
  padding-left: 80px;
  padding-bottom: 30px;
  cursor: default;
}



.timeline-step::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #4f8cff, #1b1f27);
  border-radius: 2px;
  z-index: 0;
}

.timeline-step:nth-last-child(1)::before {
  display: none;
  content: "";
}

.process-container {
  max-width: 500px;
}

.timeline-icon {
  position: absolute;
  left: 0;
  top: 0;
  background: #1b1f27;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 2px solid #4f8cff;
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 1;
}

.timeline-step:hover .timeline-icon {
  transform: scale(1.2);
  box-shadow: 0 10px 25px rgba(79,140,255,0.5);
}

.timeline-content h3 {
  font-size: 24px;
  font-weight: 700;
}

.timeline-content p {
  font-size: 18px;
  color: #a5acb8;
  line-height: 1.5;
}

.timeline-cta {
  max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    min-width: 500px;
    margin: 0 auto;
}


/* ===== REVIEWS PREMIUM ===== */

.reviews {
  padding: 120px 0;
  background:
    radial-gradient(circle at 30% 20%, #1c2333 0%, transparent 40%),
    linear-gradient(145deg, #0f1115, #141821);
}

/* layout */
.reviews-layout {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 25px;
}

/* cards */
.review-card {
  background: #1b1f27;
  border-radius: 20px;
  padding: 25px;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

/* главный */
.review-main {
  grid-row: span 2;
  padding: 40px;
}

.review-main .review-text {
  font-size: 18px;
}

/* текст */
.review-stars {
  color: #4f8cff;
  margin-bottom: 12px;
  letter-spacing: 3px;
}

.review-text {
  color: #d7dbe4;
  margin-bottom: 18px;
  line-height: 1.6;
}

.review-author {
  font-size: 13px;
  color: #8a92a3;
}

/* CTA */
.reviews-cta {
  text-align: center;
  margin-top: 40px;
}

.reviews-cta a {
  color: #fff;
    background: #4f8cff;
    padding: 20px;
    font-size: 20px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

/* ===== BOOKING CTA BLOCK ===== */

.booking {
  padding: 140px 0;
  background:
    radial-gradient(circle at 70% 30%, #1c2333 0%, transparent 45%),
    linear-gradient(145deg, #151822, #0f1115);
}

/* main container */
.booking-box {
  background: #1b1f27;
  border-radius: 28px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}

/* LEFT */

.booking-info h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 50px;
}

.booking-sub {
  color: #a5acb8;
  margin-bottom: 28px;
  font-size: 16px;
}

.booking-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #d7dbe4;
}

/* RIGHT FORM */

.booking-form {
  background: #0f1115;
  border-radius: 20px;
  padding: 35px;
}

.booking-form h3 {
  margin-bottom: 18px;
  font-size: 20px;
}

/* inputs */

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #252a35;
  background: #151822;
  color: white;
  margin-bottom: 12px;
  transition: 0.2s ease;
}

.booking-form textarea {
  max-width: 366px;
  min-width: 366px;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #4f8cff;
}

.booking-btn {
  width: 100%;
}

/* policy */

.booking-policy {
  margin-top: 10px;
  font-size: 11px;
  color: #7d8593;
}

.booking-policy a {
  color: #4f8cff;
  text-decoration: underline;
}


.contacts-maps {
  display: flex;
}


.section.maps {
  padding: 0;
  padding-top: 140px;
}

/* ===== FOOTER ===== */

.footer {
  background:
    radial-gradient(circle at 50% 0%, #1c2333 0%, transparent 50%),
    linear-gradient(145deg, #0f1115, #151822);
  color: #d7dbe4;
}

/* === CTA сверху === */

.footer-cta {
  text-align: center;
  padding: 80px 20px 60px;
  border-bottom: 1px solid #1f2430;
}

.footer-cta h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-cta p {
  color: #9aa3b2;
  margin-bottom: 22px;
}

/* === grid === */

.footer-grid {
  padding: 70px 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}

/* колонки */

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 14px;
  color: #4f8cff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  color: #a5acb8;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.footer-col a:hover {
  color: white;
}

/* бренд */

.footer-brand .logo {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.logo a {
  font-size: inherit;
  color: inherit;
  text-decoration: none;
}

.footer-brand p {
  color: #8a92a3;
  font-size: 14px;
  max-width: 240px;
}

.footer-time {
  font-size: 13px;
  color: #8a92a3;
}

/* низ */

.footer-bottom {
  border-top: 1px solid #1f2430;
  padding: 18px 20px;
  display: flex;
  justify-content: center;
  font-size: 12px;
  gap: 15px;
  color: #7d8593;
}

.footer-bottom a {
  color: #7d8593;
}

.calc-field {
  position: relative;
}

.calc-suggestions div {
  padding: 10px;
  cursor: pointer;
    border-bottom: 1px solid #ffffff0f;
transition: 0.2s ease;
text-align: left;
}

.calc-suggestions div:last-child {
   border-bottom: none;
}

.calc-suggestions div:hover {
  background: #4f8cff;
border-radius: 8px;
border-bottom: 1px solid transparent;
}

.calc-suggestions div:last-child:hover {
border-bottom: none;
}

.calc-field {
    position: relative;
}

.calc-suggestions {
    position: absolute;
    background: radial-gradient(circle at 30% 20%, #1c2333 0%, transparent 40%),
    linear-gradient(145deg, #0f1115, #141821);
    padding: 20px;
    width: 100%;
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding-top: 30px;
    top: 38px;
display: none;
z-index: 100;
}

input#modelInput {
    z-index: 108;
    position: relative;
width: 100%;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll-x {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease;
}

.animate-on-scroll-x.left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease;
}

.animate-on-scroll-x.show, .animate-on-scroll-x.left.show {
  opacity: 1;
  transform: translateX(0);
}





/* ===== MOBILE ===== */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
}
}

@media (max-width: 900px) {
    .reviews-layout {
    display: flex;
flex-direction: column;
  }

.timeline-content {
  backdrop-filter: blur(10px);
  padding-bottom: 10px;
}

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .booking-box {
    grid-template-columns: 1fr;
    padding: 35px;
  }

  .booking-info {
    text-align: center;
  }

  .review-main {
    grid-row: span 1;
  }

  .timeline-step {
    flex-direction: column;
    padding-left: 0;
    gap: 12px;
  }

  .timeline-step::before {
    left: 27px;
  }

  .timeline-icon {
    position: relative;
    left: 0;
    cursor: default;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 30px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .stats {
    justify-content: center;
  }

  .hero-badge {
    position: static;
    margin-top: 20px;
  }
}


@media (max-width: 700px) {
  .menu {
    display: none;
  }
}

@media (max-width: 600px) {
  .header .btn-primary {
    min-width: 0px;
    gap: 5px;
  }

.hero {
overflow: hidden;
}

.process .animate-on-scroll {
opacity: 1;
}

  .logo a {
    font-size: 20px;
  }

  .header .btn-primary .btn-primary__text {
    font-size: 15px;
  }

  .header .btn-primary > div:first-child {
    width: 20px!important;
  }

  .nav {
    height: 50px;
    overflow: hidden;
    padding-right: 0;
  }

  .timeline-cta {
    min-width: 0;
  }

  .booking-box {
    display: flex;
    flex-direction: column;
  }

  .booking-form textarea {
    max-width: 100%;
    min-width: 100%;
}

.booking-box {
  padding: 10px;
  padding-top: 35px;
  gap: 30px;
}

.booking-form {
  padding: 20px;
}

.booking-sub {
  font-size: 15px;
}

.booking, .reviews {
  padding: 40px 0;
}

.process, .services, .trust {
  padding: 60px 0;
}

.section.maps {
  padding-top: 40px;
}

.booking-features {
  font-size: 15px;
  gap: 5px;
}

.booking-info h2 {
  font-size: 30px;
  line-height: 35px;
}

.popup-open {
  overflow: hidden;
}

.hero-actions .btn-primary {
  min-width: 0;
}

.footer-grid {
  padding-left: 20px;
  padding-right: 20px;
}

}
