/*NAVBAR OVERRIDE PARA QUE SE VEA CON EL FONDO BLANCO */
.navbar {
    background: rgba(0, 0, 0, 0.252);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/*============================
  HERO
=============================*/

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__overlay {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.98) 0%,
    rgba(255,255,255,0.96) 35%,
    rgba(255,255,255,0.88) 55%,
    rgba(255,255,255,0.55) 72%,
    rgba(255,255,255,0.15) 88%,
    rgba(255,255,255,0) 100%
  );
}

.hero__content {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  position: relative;
  z-index: 1;
  width: 90%;
  margin: 0 auto;
  text-align: left;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--dark-blue);
  margin-bottom: 30px;
  width: 50%;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  color: inherit;
}

.hero__badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 18px;
  margin-top: 30px;
  margin-bottom: 30px;
  background: none;
}

.hero__badge i {
  color: var(--light-blue);
}

/* =============================================
   WHY PRIVATE TRANSFER
   ============================================= */

.why-private-transfer {
    padding: 100px 20px;
    background: #f8fafc;
}

.why-private-transfer__container {
    max-width: 1000px;
    margin: 0 auto;
}

.why-private-transfer__content {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.why-private-transfer__pretitle {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--yellow);
}

.why-private-transfer__title {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    color: var(--dark-blue);
    margin-bottom: 28px;
    max-width: 800px;
}

.why-private-transfer__description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-private-transfer__description p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/*============================
  DESTINATIONS SECTION
=============================*/

/* CARDS */

.destinations-header {
  text-align: center;
  margin-top: 50px;
}

.destinations-header span {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--light-blue);
}

.destinations-header h2 {
  margin-top: 20px;
  font-size: 40px;
}

.destinations-grid {
  display: flex;
  gap: 20px;

  width: 90%;
  margin: 30px auto 0;

  overflow-x: auto;
  overflow-y: hidden;

  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  padding-bottom: 14px;
}

/* Scrollbar */
.destinations-grid::-webkit-scrollbar {
  height: 10px;
}

.destinations-grid::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
}

.destinations-grid::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 999px;
}

.destinations-grid::-webkit-scrollbar-thumb:hover {
  background: #f7cf3b;
}

/* Firefox */
.destinations-grid {
  scrollbar-color: var(--yellow) rgba(255,255,255,0.08);
  scrollbar-width: thin;
}

.destination-card {
  flex: 0 0 280px;
  width: 280px;

  scroll-snap-align: start;

  background: white;
  border-radius: 12px;
  overflow: hidden;

  box-shadow: 0 6px 18px rgba(0,0,0,0.08);

  transition: transform 0.2s ease;
}

.destination-card:hover {
  transform: translateY(-4px);
}

.destination-card__img-wrapper {
  position: relative;
  width: 100%;
}

.destination-card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;

  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.destination-card__body {
  padding: 16px;
}

.destination-card__title {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.destination-card__description {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 18px;
  height: 100px;
  overflow-y: auto;
}

.destination-card__time-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
}

.destination-card__time {
  display: flex;
  align-items: center;
  gap: 6px;

  font-size: 14px;
  color: #444;
}

.destination-card__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;

  font-size: 14px;
}

.destination-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  color: var(--light-blue);
  font-weight: 700;
  text-decoration: none;

  transition: all 0.2s ease;
}

.destination-card__link:hover {
  transform: translateX(3px);
  text-decoration: underline;
}

/*LIST */

.destinations-list {
  margin: auto;
  margin-top: 40px;
  background-color: #d3d3d314;
  padding: 30px 5%;
}

.destinations-list__actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.destinations-list__show-more {
  border: none;

  padding: 14px 28px;

  border-radius: 999px;

  background: var(--light-blue);
  color: white;

  font-size: 15px;
  font-weight: 700;

  cursor: pointer;

  transition:
    opacity .25s ease,
    transform .25s ease;
}

.destinations-list__show-more:hover {
  opacity: .92;
  transform: translateY(-2px);
}

.destinations-list__searchbar {
  width: 100%;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  background-color: white;
}

.destinations-list__searchbar input {
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.277) inset;
  width: 50%;
}

.destinations-rows {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.destination-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;

  background: white;
  border-radius: 18px;

  padding: 24px;

  box-shadow:
    0 2px 8px rgba(0,0,0,.04);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.destination-row:hover {
  transform: translateY(-3px);

  box-shadow:
    0 10px 30px rgba(0,0,0,.08);
}

.destination-row__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  gap: 30px;
}

.destination-row__location {
  display: flex;
  align-items: center;
  gap: 18px;
}

.destination-row__location i {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 100%;

  background: #3b6cb71a;
  color: var(--light-blue);

  font-size: 18px;
}

.destination-row__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-blue);
}

.destination-row__subtitle {
  color: #777;
  font-size: 14px;
}

.destination-row__meta {
  display: flex;
  align-items: center;
  gap: 40px;
}

.destination-row__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;

  color: #555;
}

.destination-row__price-label {
  color: #777;
  font-size: 14px;
}

.destination-row__price {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-blue);
}

.destination-row__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 22px;

  border-radius: 999px;

  background: var(--light-blue);
  color: white;

  text-decoration: none;
  font-weight: 700;

  transition:
    opacity .25s ease,
    transform .25s ease;
}

.destination-row__link:hover {
  opacity: .92;
  transform: translateY(-1px);
}

/*============================
  WHY CHOOSE US
=============================*/

.choose-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 5%;
  background-color: #87b6ff40;
}

.choose-text {
  width: 40%;
  text-align: left;
}

.choose-text__pretitle {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--light-blue);
  font-size: 14px;
}

.choose-text__title {
  margin-top: 20px;
  font-size: 40px;
  color: var(--dark-blue);
}

.choose-text__description {
  margin-top: 20px;
  font-size: 16px;
  color: var(--dark-blue);
}

.choose-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.choose-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 18px;
  background: none;
}

.choose-badge i {
  height: 30px;
  width: 30px;
  font-size: 30px;
  color: var(--light-blue);
  background-color: #3b6cb729;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

/*============================
  OUR FLEET SECTION
=============================*/

.fleet-section {
  padding: 50px 5%;
}

.fleet-header {
  text-align: center;
}

.fleet-header__pretitle {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--light-blue);
  font-size: 14px;
}

.fleet-header__title {
  margin-top: 20px;
  font-size: 40px;
  color: var(--dark-blue);
}

.fleet-grid__handler {
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin-top: 60px;
}

.fleet-grid__handler-item {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  padding: 5px;
  padding-bottom: 25px;
  border-bottom: 5px solid #3b6cb769;
}

.fleet-grid__handler-item:hover {
  cursor: pointer;
  border-bottom: 5px solid #3b6cb7;
}

.fleet-grid__handler-item.is-active {
  border-bottom: 5px solid #3b6cb7;
}

.fleet-grid__details-item {
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}

.fleet-grid__details-item.is-active {
  display: flex;
}

.fleet-grid__details-img-wrapper {
  width: 40%;
  flex-shrink: 0;
}

.fleet-grid__details-img-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.fleet-grid__details-description {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  text-align: left;
  height: 200px;
}

.fleet-grid__details-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-blue);
}

.fleet-grid__details-text {
  font-size: 16px;
  color: var(--dark-blue);
  width: 50%;
}

.fleet-grid__details-cta {
  margin-top: 20px;
  padding: 20px;
  color: var(--light-blue);
  border: 3px solid var(--light-blue);
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  width: 300px;
}

/*============================
  FAQ SECTION
=============================*/

.faq-section {
  padding: 80px 5%;
  background: #fff;
}

.faq-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.faq-header__pretitle {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--light-blue);
  font-size: 14px;
}

.faq-header__title {
  margin-top: 20px;
  font-size: 40px;
  color: var(--dark-blue);
}

.faq-header__description {
  margin-top: 20px;
  color: #555;
  line-height: 1.7;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-question {
  width: 100%;
  border: none;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-blue);
  cursor: pointer;
}

.faq-question__icon {
  transition: transform .25s ease;
  color: var(--light-blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height .3s ease,
    padding .3s ease;
}

.faq-answer__content {
  padding-bottom: 24px;
}

.faq-answer p {
  color: #555;
  line-height: 1.8;
  width: 90%;
}

.faq-item.is-active .faq-answer {
  max-height: 300px;
}

.faq-item.is-active .faq-question__icon {
  transform: rotate(45deg);
}

.faq-footer {
  margin-top: 50px;
  text-align: center;
}

.faq-footer__text {
  color: #666;
  margin-bottom: 16px;
  font-size: 16px;
}

.faq-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--light-blue);
  font-weight: 700;
  text-decoration: none;
  font-size: 17px;
  transition:
    transform .25s ease,
    gap .25s ease;
}

.faq-footer__link:hover {
  gap: 14px;
  transform: translateY(-1px);
}

.faq-footer__link i {
  font-size: 14px;
}

/*============================
  BOTTOM CTA
=============================*/

.bottom-cta {
  padding: 90px 5%;
  background: url('../../img/success-bg.webp');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  position: relative;
}

.bottom-cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.4);
}

.bottom-cta__content {
  max-width: 850px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

.bottom-cta__pretitle {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 14px;
  opacity: .85;
}

.bottom-cta__title {
  margin-top: 20px;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
}

.bottom-cta__description {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.8;
  opacity: .92;
}

.bottom-cta__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.bottom-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 18px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform .25s ease,
    opacity .25s ease,
    background .25s ease;
}

.bottom-cta__btn:hover {
  transform: translateY(-3px);
}

.bottom-cta__btn--book {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
  backdrop-filter: blur(6px);
}

.bottom-cta__btn--book:hover {
  background: rgba(216, 216, 15, 0.15);
}

.bottom-cta__btn--phone {
  background: transparent;
  color: red;
  border: 2px solid red;
  backdrop-filter: blur(6px);
}

.bottom-cta__btn--phone:hover {
  background: rgba(255, 0, 0, 0.15);
}


.bottom-cta__btn--whatsapp {
  border: 2px solid rgb(16, 209, 16);
  color: rgb(16, 209, 16);
  background: transparent;
  backdrop-filter: blur(6px);
}

.bottom-cta__btn--whatsapp:hover {
  background: rgba(16, 209, 16, .15);
}

/*==================================================
  RESPONSIVE
==================================================*/

/*============================
  LARGE TABLETS
=============================*/

@media (max-width: 1200px) {

  .hero__content {
    gap: 40px;
    align-items: center;
  }

  .hero__title,
  .hero__subtitle {
    width: 100%;
    max-width: 600px;
  }

  .destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .destination-card {
    width: 100%;
  }

  .fleet-grid__details-text {
    width: 100%;
  }

}

/*============================
  TABLETS
=============================*/

@media (max-width: 992px) {

  .hero {
    padding: 120px 0;
  }

  .hero__content {
    flex-direction: column;
    align-items: stretch;
    width: 92%;
  }

  .hero__left,
  .hero__right {
    width: 100%;
    margin: auto;
  }

  .hero__title {
    font-size: 3rem;
    max-width: 100%;
  }

  .hero__subtitle {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .hero__badges {
    gap: 10px;
  }

  .hero__badge {
    margin: 0;
    padding: 12px;
  }

  .destinations-grid {
    grid-template-columns: 1fr 1fr;
  }

  .destinations-list__searchbar input {
    width: 100%;
  }

  .choose-section {
    flex-direction: column;
    gap: 40px;
  }

  .choose-text {
    width: 100%;
    text-align: center;
  }

  .choose-badges {
    width: 100%;
  }

  .fleet-grid__details-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .fleet-grid__details-img-wrapper {
    width: 100%;
  }

  .fleet-grid__details-description {
    width: 100%;
    height: auto;
    gap: 20px;
  }

  .fleet-grid__details-cta {
    width: 100%;
    text-align: center;
  }

  .faq-header__title,
  .fleet-header__title,
  .choose-text__title,
  .destinations-header h2 {
    font-size: 34px;
  }

}

/*============================
  MOBILE
=============================*/

@media (max-width: 768px) {

  .hero {
    min-height: auto;
    background-position: center;
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.96) 0%,
      rgba(255,255,255,0.9) 40%,
      rgba(255,255,255,0.75) 100%
    );
  }

  .hero__content {
    width: 94%;
  }

  .hero__title {
    font-size: 2.4rem;
    line-height: 1.15;
  }

  .hero__subtitle {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero__badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero__badge {
    padding: 14px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
  }

  .why-private-transfer {
      padding: 70px 20px;
  }

  .why-private-transfer__content {
      padding: 32px 24px;
      border-radius: 18px;
  }

  .why-private-transfer__title {
      font-size: 28px;
  }

  .why-private-transfer__description p {
      font-size: 15px;
      line-height: 1.7;
  }

  .destinations-header h2,
  .fleet-header__title,
  .choose-text__title,
  .faq-header__title {
    font-size: 30px;
    line-height: 1.2;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .destination-card {
    width: 100%;
  }

  .destination-card__description {
    line-height: 1.7;
  }

  .destinations-list {
    padding: 40px 20px;
    overflow-x: auto;
  }
  
  .destination-row {
    flex-direction: column;
    align-items: stretch;
  }

  .destination-row__main {
    flex-direction: column;
    align-items: flex-start;
  }

  .destination-row__meta {
    width: 100%;
    justify-content: space-between;
  }

  .destination-row__actions {
    width: 100%;
  }

  .destination-row__link {
    width: 100%;
  }
  .choose-badges {
    grid-template-columns: 1fr;
  }

  .choose-badge {
    padding: 12px 0;
  }

  .fleet-grid__handler {
    flex-direction: column;
    gap: 12px;
  }

  .fleet-grid__handler-item {
    border: 2px solid #d8d8d8;
    border-radius: 12px;
    padding: 16px;
  }

  .fleet-grid__handler-item.is-active {
    border-color: var(--light-blue);
  }

  .fleet-grid__details-item {
    margin-top: 30px;
  }

  .fleet-grid__details-title {
    font-size: 28px;
  }

  .fleet-grid__details-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .fleet-grid__details-cta {
    padding: 18px;
  }

  .faq-question {
    font-size: 16px;
    gap: 20px;
  }

  .faq-answer p {
    width: 100%;
  }

  .bottom-cta {
    padding: 70px 24px;
  }

  .bottom-cta__title {
    font-size: 36px;
  }

  .bottom-cta__description {
    font-size: 16px;
  }

  .bottom-cta__actions {
    flex-direction: column;
  }

  .bottom-cta__btn {
    width: 100%;
  }

}

/*============================
  SMALL MOBILE
=============================*/

@media (max-width: 480px) {

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: .95rem;
  }

  .hero__badges {
    grid-template-columns: 1fr;
  }

  .destinations-header h2,
  .fleet-header__title,
  .choose-text__title,
  .faq-header__title {
    font-size: 26px;
  }

  .faq-question {
    font-size: 15px;
    padding: 22px 0;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 1.7;
  }

  .bottom-cta__title {
    font-size: 30px;
  }

}