*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  color: #111111;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-weight: 500;
  color: #111111;
  line-height: 1.25;
}

h1 {
  font-size: 34px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 18px;
}

p {
  color: #555555;
}

.section-label {
  font-size: 12px;
  color: #e24b4a;
  letter-spacing: 1.5px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.text-muted {
  color: #888888;
}

.site-header {
  border-bottom: 1px solid #eeeeee;
}
.site-header__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media (max-width: 768px) {
  .site-header__inner {
    flex-wrap: wrap;
    gap: 12px;
  }
}
.site-header__logo {
  font-size: 18px;
  font-weight: 500;
  color: #111111;
  letter-spacing: 0.5px;
}
.site-header__logo span {
  color: #e24b4a;
}
.site-header__logo img {
  max-height: 40px;
}
.site-header__nav {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #555555;
}
@media (max-width: 1024px) {
  .site-header__nav {
    display: none;
  }
}
.site-header__lang-switcher {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: #888888;
}
.site-header__cta {
  background: #e24b4a;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.site-header__cta:hover {
  opacity: 0.9;
}
.site-header__burger {
  display: none;
  font-size: 22px;
}
@media (max-width: 1024px) {
  .site-header__burger {
    display: block;
  }
}

.site-footer {
  background: #111111;
  color: #ffffff;
}
.site-footer__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 48px;
  padding-bottom: 16px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}
.site-footer__grid {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__col-title {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #ffffff;
}
.site-footer__link {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}
.site-footer__link:hover {
  color: #ffffff;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 480px) {
  .site-footer__bottom {
    flex-direction: column;
    gap: 12px;
  }
}
.site-footer__social {
  display: flex;
  gap: 14px;
}
.site-footer__social a {
  color: rgba(255, 255, 255, 0.5);
}
.site-footer__social a:hover {
  color: #e24b4a;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.section {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (max-width: 768px) {
  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.btn {
  display: inline-block;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn--filled {
  background: #e24b4a;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.btn--filled:hover {
  opacity: 0.9;
}
.btn--outline {
  background: #ffffff;
  color: #e24b4a;
  border: 1.5px solid #e24b4a;
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}
.btn--outline:hover {
  background: #fdf0ef;
}
.btn--dark {
  background: #111111;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
}
.btn--dark:hover {
  opacity: 0.85;
}

.card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 16px;
}
.card--icon i {
  font-size: 20px;
  color: #e24b4a;
  margin-bottom: 8px;
}
.card__title {
  font-size: 13px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 4px;
}
.card__subtitle {
  font-size: 11px;
  color: #888888;
}
.card__image {
  height: 70px;
  background: #fdf0ef;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -16px -16px 12px;
}
.card__image i {
  font-size: 28px;
  color: #e24b4a;
}

.reservation-form-wrap {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(226, 75, 74, 0.08);
}
.reservation-form-wrap .gform_wrapper .gfield {
  margin-bottom: 12px;
}
.reservation-form-wrap .gform_wrapper input[type=text],
.reservation-form-wrap .gform_wrapper input[type=tel],
.reservation-form-wrap .gform_wrapper input[type=email],
.reservation-form-wrap .gform_wrapper input[type=date],
.reservation-form-wrap .gform_wrapper input[type=time],
.reservation-form-wrap .gform_wrapper textarea,
.reservation-form-wrap .gform_wrapper select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  font-size: 12px;
  background: #ffffff;
  transition: border-color 0.2s ease;
}
.reservation-form-wrap .gform_wrapper input[type=text]:focus,
.reservation-form-wrap .gform_wrapper input[type=tel]:focus,
.reservation-form-wrap .gform_wrapper input[type=email]:focus,
.reservation-form-wrap .gform_wrapper input[type=date]:focus,
.reservation-form-wrap .gform_wrapper input[type=time]:focus,
.reservation-form-wrap .gform_wrapper textarea:focus,
.reservation-form-wrap .gform_wrapper select:focus {
  outline: none;
  border-color: #e24b4a;
  box-shadow: 0 0 0 3px rgba(226, 75, 74, 0.1);
}
.reservation-form-wrap .gform_wrapper .gform_footer input[type=submit] {
  background: #ffffff;
  color: #e24b4a;
  border: 1.5px solid #e24b4a;
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}
.reservation-form-wrap .gform_wrapper .gform_footer input[type=submit]:hover {
  background: #fdf0ef;
}
.reservation-form-wrap .gfield--flight-number input {
  border-color: #e24b4a;
}
.reservation-form-wrap .gfield--child-seat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #555555;
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 9px 12px;
}
.reservation-form-wrap .gfield--child-seat i {
  color: #e24b4a;
  font-size: 15px;
}

.fixed-contact {
  position: fixed;
  left: 20px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fixed-contact__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}
.fixed-contact__btn:hover {
  transform: scale(1.08);
}
.fixed-contact__btn i {
  font-size: 22px;
  color: #ffffff;
}
.fixed-contact__btn--whatsapp {
  background: #25d366;
}
.fixed-contact__btn--phone {
  background: #e24b4a;
}

.hero {
  padding: 64px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fdf0ef 100%);
  display: flex;
  align-items: center;
  gap: 48px;
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
}
.hero__content {
  flex: 1;
}
.hero__title {
  margin-bottom: 12px;
}
.hero__subtitle {
  margin-bottom: 24px;
}
.hero__actions {
  display: flex;
  gap: 12px;
}
@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }
}
.hero__image {
  width: 320px;
  height: 220px;
  border-radius: 12px;
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__image i {
  font-size: 48px;
  color: #e24b4a;
}

.trust-bar {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 768px) {
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .trust-bar {
    grid-template-columns: 1fr;
  }
}
.trust-bar {
  padding: 16px;
}
.trust-bar__item {
  text-align: center;
  border-left: 1px solid #eeeeee;
}
.trust-bar__item:first-child {
  border-left: none;
}
.trust-bar__number {
  font-size: 20px;
  font-weight: 500;
  color: #111111;
}
.trust-bar__number--accent {
  color: #e24b4a;
}
.trust-bar__label {
  font-size: 11px;
  color: #888888;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

.airport-transfer {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
}
@media (max-width: 480px) {
  .airport-transfer {
    flex-direction: column;
  }
}
.airport-transfer__image {
  width: 140px;
  height: 90px;
  border-radius: 8px;
  background: #fafafa;
  flex-shrink: 0;
}

.why-choose-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .why-choose-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .why-choose-us__grid {
    grid-template-columns: 1fr;
  }
}
.why-choose-us__item {
  text-align: center;
  padding: 12px;
}
.why-choose-us__item i {
  font-size: 18px;
  color: #e24b4a;
  margin-bottom: 6px;
}

.fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .fleet__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .fleet__grid {
    grid-template-columns: 1fr;
  }
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .how-it-works__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .how-it-works__grid {
    grid-template-columns: 1fr;
  }
}
.how-it-works__step {
  text-align: center;
  padding: 12px;
}
.how-it-works__number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fdf0ef;
  color: #e24b4a;
  font-weight: 500;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.tours__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .tours__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .tours__grid {
    grid-template-columns: 1fr;
  }
}
.tours__price {
  color: #e24b4a;
  font-size: 11px;
  margin-top: 4px;
}

.prices-table {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  overflow: hidden;
}
.prices-table__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  border-top: 1px solid #eeeeee;
  font-size: 13px;
}
.prices-table__row:first-child {
  border-top: none;
  background: #fafafa;
  color: #888888;
  font-size: 12px;
}
.prices-table__amount {
  color: #e24b4a;
  font-weight: 500;
}

.reservation__intro {
  margin-bottom: 16px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}
.testimonials__stars {
  color: #e24b4a;
  font-size: 12px;
  margin-bottom: 6px;
}
.testimonials__quote {
  font-size: 12px;
  color: #555555;
  margin-bottom: 8px;
}
.testimonials__author {
  font-size: 11px;
  color: #888888;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gallery__item {
  aspect-ratio: 1;
  background: #fafafa;
  border-radius: 6px;
}

.faq__item {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 6px;
}
.faq__item i {
  color: #e24b4a;
  transition: transform 0.2s ease;
}
.faq__item.is-open i {
  transform: rotate(180deg);
}
.faq__answer {
  font-size: 12px;
  color: #555555;
  padding: 12px 16px 0;
  display: none;
}
.faq__answer.is-open {
  display: block;
}

.contact-map {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  display: flex;
  overflow: hidden;
}
@media (max-width: 480px) {
  .contact-map {
    flex-direction: column;
  }
}
.contact-map__info {
  flex: 1;
  padding: 16px;
}
.contact-map__info p {
  font-size: 11px;
  color: #888888;
  margin-bottom: 4px;
}
.contact-map__info i {
  color: #e24b4a;
  margin-right: 4px;
  font-size: 13px;
}
.contact-map__map {
  flex: 1;
  background: #fafafa;
  min-height: 140px;
}

.cta-banner {
  background: #111111;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}
.cta-banner__title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 12px;
}
