/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Poppins:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --title-color: hsl(0, 0%, 95%);
  --text-color: hsl(0, 0%, 70%);
  --text-color-light: hsl(0, 0%, 60%);
  --body-color: hsl(0, 0%, 0%);
  --container-color: hsl(0, 0%, 8%);
  --primary-color: #00a8ff;
  --primary-color-dark: #0097e6;
  --accent-color: #5cc9ff;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --second-font: "Montserrat", sans-serif;
  --biggest-font-size: 2.75rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1152px) {
  :root {
    --biggest-font-size: 5.5rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body,
button,
input {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--text-color);
}

body {
  background-color: var(--body-color);
}

button,
input {
  outline: none;
  border: none;
}

h1, h2, h3, h4 {
  color: var(--title-color);
  font-family: var(--second-font);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--title-color);
}

a:visited {
  color: var(--title-color);
}

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

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .container {
  margin-inline: 1.5rem;
  }
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 1rem;
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: .5rem;
  font-weight: var(--font-semi-bold);
}

.section__title {
  font-size: var(--h1-font-size);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.main {
  overflow: hidden;
}

/*=============== BUTTONS ===============*/
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.5rem;
  border-radius: .75rem;
  font-weight: var(--font-semi-bold);
  transition: all .3s ease;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 168, 255, .3);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 168, 255, .4);
}

.btn--outline {
  border: 2px solid var(--title-color);
  color: var(--title-color);
}

.btn--outline:hover {
  background: var(--title-color);
  color: var(--body-color);
}

.btn--outline-white {
  border: 2px solid #fff;
  color: #fff;
}

.btn--outline-white:hover {
  background: #fff;
  color: var(--body-color);
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 102;
  transition: all .4s ease;
}

.header--blur {
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
}

.header--menu-open {
  background: rgba(0, 0, 0, .95);
  backdrop-filter: blur(16px);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--second-font);
  font-weight: var(--font-bold);
  font-size: var(--h3-font-size);
  color: #fff;
  transition: color .3s ease;
}

.nav__logo:hover {
  color: var(--accent-color);
}

.nav__logo i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.nav__toggle,
.nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #fff;
  cursor: pointer;
  transition: color .3s ease;
  z-index: var(--z-fixed);
  width: 40px;
  height: 40px;
}

.nav__toggle:hover,
.nav__close:hover {
  color: var(--accent-color);
}

/* Backdrop */
.nav__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .85);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

.nav__backdrop.show-backdrop {
  opacity: 1;
  pointer-events: all;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1023px) {
  .nav__toggle {
    display: flex;
    position: relative;
    z-index: 110;
  }

  .nav__menu {
    position: fixed;
    inset: 0; /* top:0; right:0; bottom:0; left:0 */
    background: #000;
    width: 100%;
    max-width: none;
    height: 100vh;
    padding: calc(env(safe-area-inset-top, 0px) + 4rem) 2rem 2rem;
    transition: transform .4s ease;
    box-shadow: none;
    z-index: 108; /* above header/backdrop */
    overflow-y: auto;
    transform: translateX(100%);
  }

  .nav__menu.show-menu {
    transform: translateX(0);
  }

  .nav__list {
    display: flex;
    flex-direction: column;
    row-gap: 1.75rem;
    align-items: flex-start;
  }

  .nav__link {
    color: rgba(255, 255, 255, .85);
    font-weight: var(--font-medium);
    font-size: var(--h3-font-size);
    transition: color .3s ease;
    display: inline-block;
  }

  .nav__link:hover,
  .nav__link.active-link {
    color: var(--accent-color);
  }

  .nav__close {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + .75rem);
    right: 1rem;
    font-size: 2rem;
    z-index: 111;
  }
}

/* Show menu */
.show-menu {
  right: 0;
}

/* Hide toggle when menu is open */
.nav__toggle.hide-toggle {
  opacity: 0;
  pointer-events: none;
}

/* For desktop */
@media screen and (min-width: 1024px) {
  .nav__toggle,
  .nav__close,
  .nav__backdrop {
    display: none;
  }

  .nav__menu {
    margin-left: auto;
  }

  .nav__list {
    display: flex;
    flex-direction: row;
    column-gap: 3rem;
  }

  .nav__link {
    color: rgba(255, 255, 255, .85);
    font-weight: var(--font-medium);
    transition: color .3s ease;
    position: relative;
    padding-bottom: .25rem;
  }

  .nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width .3s ease;
  }

  .nav__link:hover,
  .nav__link.active-link {
    color: var(--accent-color);
  }

  .nav__link:hover::after,
  .nav__link.active-link::after {
    width: 100%;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  margin: .5rem 1rem;
  padding: .5rem .75rem;
  background: #fff;
  color: #000;
  border-radius: .25rem;
}

/*=============== HOME ===============*/
.home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block: 8rem 4rem;
}

.home__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.home__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.home__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(0,0,0,.7) 0%, 
    rgba(0,0,0,.4) 50%, 
    rgba(0,0,0,.8) 100%);
  z-index: -1;
}

.home__container {
  position: relative;
  z-index: 1;
}

.home__data {
  max-width: 700px;
}

.home__subtitle {
  display: block;
  font-size: var(--small-font-size);
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  font-weight: var(--font-semi-bold);
}

.home__title {
  font-size: var(--biggest-font-size);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
}

.home__title-accent {
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home__description {
  font-size: var(--normal-font-size);
  color: rgba(255, 255, 255, .85);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.home__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/*=============== ABOUT ===============*/
.about {
  background: var(--container-color);
}

.about__content {
  display: grid;
  gap: 2.5rem;
}

.about__img {
  border-radius: 1rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .4);
}

.about__description {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about__list {
  display: grid;
  gap: 1rem;
}

.about__item {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.about__item i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

/*=============== POPULAR ===============*/
.popular__header {
  text-align: center;
  margin-bottom: 3rem;
}

.popular__container {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.popular__card {
  background: rgba(255, 255, 255, .03);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
  backdrop-filter: blur(8px);
  transition: transform .35s ease, box-shadow .35s ease;
}

.popular__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
}

.popular__figure {
  position: relative;
  height: 220px;
  margin: 0;
  overflow: hidden;
}

.popular__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.popular__card:hover .popular__img {
  transform: scale(1.08);
}

.popular__details {
  background: var(--container-color);
  margin: -2.5rem 1.5rem 1.5rem;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 1.25rem;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .35);
  display: grid;
  gap: .75rem;
}

.popular__rating {
  position: absolute;
  top: -1.25rem;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .75rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--primary-color), var(--primary-color-dark));
  color: #fff;
  font-weight: var(--font-semi-bold);
  font-size: var(--small-font-size);
  box-shadow: 0 10px 25px rgba(0, 168, 255, .4);
}

.popular__rating i {
  font-size: 1rem;
}

.popular__country {
  text-transform: uppercase;
  font-size: var(--smaller-font-size);
  letter-spacing: 1.5px;
  color: var(--accent-color);
  font-weight: var(--font-semi-bold);
}

.popular__name {
  font-size: var(--h3-font-size);
  color: var(--title-color);
}

.popular__description {
  font-size: var(--small-font-size);
  color: var(--text-color);
  line-height: 1.6;
}

.popular__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: .75rem;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.popular__price {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--accent-color);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.popular__price small {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  font-weight: var(--font-medium);
}

.popular__location {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.popular__location i {
  color: var(--accent-color);
}

.popular__cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/*=============== PACKAGES PAGE ===============*/
.packages-hero {
  position: relative;
  background: radial-gradient(circle at top left, rgba(92, 201, 255, .2), transparent 45%),
              radial-gradient(circle at bottom right, rgba(0, 168, 255, .15), transparent 35%),
              linear-gradient(120deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .75));
  padding-block: 8.5rem 6rem;
}

.packages-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80') center/cover;
  opacity: .15;
  mix-blend-mode: screen;
}

.packages-hero__container {
  position: relative;
  z-index: 1;
  max-width: 820px;
  display: grid;
  gap: 1.75rem;
}

.packages-hero__title {
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  line-height: 1.15;
  color: #fff;
}

.packages-hero__description {
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}

.packages-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.packages-section {
  padding-block: 5rem;
}

.packages-section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
  display: grid;
  gap: 1rem;
}

.packages-section__header p {
  color: var(--text-color);
}

.packages-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.package-card {
  background: rgba(255,255,255,.05);
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 22px 50px rgba(0,0,0,.45);
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 70px rgba(0,0,0,.6);
}

.package-card__badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1rem;
  border-radius: 999px;
  background: rgba(0, 168, 255, .2);
  color: var(--accent-color);
  font-size: var(--smaller-font-size);
  backdrop-filter: blur(6px);
  font-weight: var(--font-medium);
  z-index: 2;
}

.package-card__badge i {
  font-size: 1rem;
}

.package-card__media {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.package-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.55) 100%);
}

.package-card__body {
  padding: 2rem 1.75rem 1.75rem;
  display: grid;
  gap: 1.25rem;
}

.package-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text-color-light);
  font-size: var(--smaller-font-size);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.package-card__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
}

.package-card__text {
  font-size: var(--small-font-size);
  color: var(--text-color);
  line-height: 1.65;
}

.package-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.package-card__price {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  color: var(--accent-color);
  font-weight: var(--font-semi-bold);
  font-size: var(--h2-font-size);
}

.package-card__price span {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
}

.btn.btn--soft {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  padding: .75rem 1.2rem;
  border-radius: .9rem;
  transition: all .3s ease;
}

.btn.btn--soft:hover {
  background: rgba(92,201,255,.2);
  border-color: rgba(92,201,255,.35);
}

.packages-masonry {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.package-tile {
  background: rgba(255,255,255,.04);
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 55px rgba(0,0,0,.45);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}

.package-tile:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 70px rgba(0,0,0,.6);
}

.package-tile__media {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.package-tile__body {
  padding: 2rem 1.75rem;
  display: grid;
  gap: 1rem;
}

.package-tile__chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--smaller-font-size);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--accent-color);
}

.package-tile__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
}

.package-tile__text {
  font-size: var(--small-font-size);
  color: var(--text-color);
  line-height: 1.6;
}

.package-tile__meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
}

.package-tile__meta i {
  color: var(--accent-color);
}

.package-tile__price {
  font-size: var(--h2-font-size);
  color: var(--accent-color);
  font-weight: var(--font-semi-bold);
}

.package-tile__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--accent-color);
  font-weight: var(--font-medium);
}

.package-tile__link i {
  font-size: 1.1rem;
}

@media screen and (max-width: 576px) {
  .packages-hero {
    padding-block: 7rem 4.5rem;
  }

  .packages-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .packages-slider {
    gap: 1.75rem;
  }

  .package-card__body {
    padding: 1.75rem;
  }
}

/*=============== EXPLORE ===============*/
.explore {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.explore__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.explore__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(0,0,0,.85) 0%, 
    rgba(0,0,0,.5) 100%);
  z-index: -1;
}

.explore__content {
  max-width: 600px;
}

.explore__user {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.explore__perfil {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--accent-color);
  object-fit: cover;
}

.explore__user-info {
  display: flex;
  flex-direction: column;
}

.explore__user-name {
  font-weight: var(--font-semi-bold);
  color: #fff;
}

.explore__user-role {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.explore__title {
  color: #fff;
  font-size: var(--h1-font-size);
}

.explore__description {
  color: rgba(255, 255, 255, .85);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/*=============== JOIN ===============*/
.join {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.join__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.join__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(0, 168, 255, .85) 0%, 
    rgba(0, 151, 230, .75) 100%);
  z-index: -1;
}

.join__content {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
}

.join__title {
  color: #fff;
  font-size: var(--h1-font-size);
}

.join__description {
  color: rgba(255, 255, 255, .95);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.join__form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.join__input-wrapper {
  position: relative;
  flex: 1;
  min-width: 280px;
}

.join__input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--text-color-light);
}

.join__input {
  width: 100%;
  padding: .875rem 1.5rem .875rem 3rem;
  border-radius: .75rem;
  background: rgba(255, 255, 255, .95);
  color: var(--body-color);
  font-weight: var(--font-medium);
}

.join__input::placeholder {
  color: var(--text-color-light);
}

/*=============== FOOTER ===============*/
.footer {
  background: linear-gradient(180deg, var(--body-color) 0%, var(--container-color) 100%);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer__container {
  row-gap: 3rem;
}

.footer__content {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

.footer__brand {
  display: grid;
  gap: 1.5rem;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  transition: color .3s ease;
}

.footer__logo i {
  font-size: 1.75rem;
  color: var(--primary-color);
}

.footer__logo:hover {
  color: var(--primary-color);
}

.footer__description {
  color: var(--text-color);
  line-height: 1.7;
  max-width: 400px;
}

.footer__social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: .75rem;
  color: var(--text-color);
  font-size: 1.35rem;
  transition: all .3s ease;
}

.footer__social-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: translateY(-5px);
}

.footer__links-group {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer__links {
  display: grid;
  gap: 1.25rem;
}

.footer__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: .5rem;
}

.footer__list {
  display: grid;
  gap: .75rem;
}

.footer__link {
  color: var(--text-color);
  font-size: var(--normal-font-size);
  transition: all .3s ease;
  display: inline-block;
}

.footer__link:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer__info {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.footer__info i {
  font-size: 1.25rem;
  color: var(--primary-color);
}

.footer__text {
  color: var(--text-color);
  font-size: var(--normal-font-size);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 3rem;
}

.footer__copy {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__legal-link {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  transition: color .3s ease;
}

.footer__legal-link:hover {
  color: var(--primary-color);
}

.footer__separator {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

/* Footer Responsive */
@media screen and (min-width: 576px) {
  .footer__links-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .footer {
    padding-top: 5rem;
    padding-bottom: 2.5rem;
  }

  .footer__content {
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
  }

  .footer__brand {
    max-width: 450px;
  }

  .footer__links-group {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .footer__social {
    max-width: 300px;
  }
}

@media screen and (min-width: 1024px) {
  .footer__content {
    grid-template-columns: 1.2fr 2fr;
    gap: 5rem;
  }

  .footer__description {
    max-width: 500px;
  }

  .footer__links-group {
    gap: 4rem;
  }
}

@media screen and (max-width: 576px) {
  .footer {
    padding-top: 3rem;
  }

  .footer__content {
    gap: 2.5rem;
  }

  .footer__brand {
    gap: 1.25rem;
  }

  .footer__logo {
    font-size: var(--h3-font-size);
  }

  .footer__logo i {
    font-size: 1.5rem;
  }

  .footer__description {
    font-size: var(--small-font-size);
  }

  .footer__social-link {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .footer__links-group {
    gap: 2rem;
  }

  .footer__title {
    font-size: var(--normal-font-size);
  }

  .footer__link,
  .footer__text {
    font-size: var(--small-font-size);
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 1.5rem;
    margin-top: 2rem;
  }

  .footer__copy {
    font-size: var(--smaller-font-size);
  }

  .footer__legal {
    width: 100%;
    gap: .75rem;
  }

  .footer__legal-link {
    font-size: var(--smaller-font-size);
  }

  .footer__separator {
    display: none;
  }

  .footer__legal {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 380px) {
  .footer__social {
    gap: .75rem;
  }

  .footer__social-link {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .footer__info {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }
}

/*=============== ABOUT PAGE ===============*/
/* About Hero */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .7) 100%);
}

.about-hero__container {
  position: relative;
  z-index: 1;
}

.about-hero__content {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.about-hero__title {
  font-size: var(--biggest-font-size);
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-hero__description {
  font-size: var(--h3-font-size);
  color: rgba(255, 255, 255, .9);
  line-height: 1.6;
}

/* About Story */
.about-story__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-story__image-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
}

.about-story__image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 1.5rem;
}

.about-story__badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary-color);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 168, 255, .3);
}

.about-story__badge-number {
  display: block;
  font-size: 2.5rem;
  font-weight: var(--font-semi-bold);
  color: #fff;
  line-height: 1;
  margin-bottom: .5rem;
}

.about-story__badge-text {
  display: block;
  font-size: var(--small-font-size);
  color: rgba(255, 255, 255, .9);
}

.about-story__content {
  display: grid;
  gap: 1.5rem;
}

.about-story__text {
  color: var(--text-color);
  line-height: 1.8;
  font-size: var(--normal-font-size);
}

.about-story__features {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}

.about-story__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(0, 168, 255, .05);
  border: 1px solid rgba(0, 168, 255, .1);
  border-radius: 1rem;
  transition: all .3s ease;
}

.about-story__feature:hover {
  background: rgba(0, 168, 255, .08);
  border-color: rgba(0, 168, 255, .2);
  transform: translateX(5px);
}

.about-story__feature i {
  font-size: 2rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.about-story__feature h4 {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: .5rem;
}

.about-story__feature p {
  font-size: var(--small-font-size);
  color: var(--text-color);
  line-height: 1.6;
}

/* About Values */
.about-values {
  background: linear-gradient(180deg, var(--body-color) 0%, var(--container-color) 100%);
}

.about-values__header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-values__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.value-card {
  background: var(--container-color);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .08);
  transition: all .3s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 32px rgba(0, 168, 255, .2);
}

.value-card__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: #fff;
}

.value-card__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: 1rem;
}

.value-card__text {
  color: var(--text-color);
  line-height: 1.7;
  font-size: var(--normal-font-size);
}

/* About Stats */
.about-stats {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.about-stats__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?q=80&w=2021');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-stats__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 168, 255, .9) 0%, rgba(0, 100, 150, .9) 100%);
}

.about-stats__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 1.25rem;
  transition: all .3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, .15);
  transform: scale(1.05);
}

.stat-item i {
  font-size: 3rem;
  color: #fff;
  flex-shrink: 0;
}

.stat-item__number {
  font-size: 2.5rem;
  font-weight: var(--font-semi-bold);
  color: #fff;
  line-height: 1;
  margin-bottom: .5rem;
}

.stat-item__label {
  font-size: var(--normal-font-size);
  color: rgba(255, 255, 255, .9);
}

/* About Team */
.about-team__header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-team__description {
  max-width: 600px;
  margin: 1rem auto 0;
  color: var(--text-color);
  line-height: 1.7;
}

.about-team__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

.team-card {
  background: var(--container-color);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  transition: all .3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 32px rgba(0, 168, 255, .2);
}

.team-card__image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.team-card:hover .team-card__image img {
  transform: scale(1.1);
}

.team-card__content {
  padding: 2rem;
}

.team-card__name {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: .5rem;
}

.team-card__role {
  font-size: var(--normal-font-size);
  color: var(--primary-color);
  font-weight: var(--font-semi-bold);
  margin-bottom: 1rem;
  display: block;
}

.team-card__bio {
  color: var(--text-color);
  line-height: 1.7;
  font-size: var(--small-font-size);
}

/* About CTA */
.about-cta__card {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
  padding: 4rem 2rem;
  border-radius: 2rem;
  text-align: center;
}

.about-cta__title {
  font-size: var(--h1-font-size);
  color: #fff;
  margin-bottom: 1rem;
}

.about-cta__text {
  font-size: var(--h3-font-size);
  color: rgba(255, 255, 255, .9);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.about-cta__buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* About Page Responsive */
@media screen and (min-width: 576px) {
  .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .about-hero {
    height: 70vh;
  }

  .about-story__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .about-values__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .stat-item {
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .about-hero__title {
    font-size: 4rem;
  }

  .about-cta__card {
    padding: 5rem 3rem;
  }

  .team-card__image {
    height: 350px;
  }
}

@media screen and (max-width: 576px) {
  .about-hero {
    height: 50vh;
    min-height: 400px;
  }

  .about-hero__title {
    font-size: 2rem;
  }

  .about-hero__description {
    font-size: var(--normal-font-size);
  }

  .about-story__badge {
    bottom: 1rem;
    right: 1rem;
    padding: 1rem 1.5rem;
  }

  .about-story__badge-number {
    font-size: 2rem;
  }

  .about-cta__buttons {
    flex-direction: column;
    width: 100%;
  }

  .about-cta__buttons .btn {
    width: 100%;
  }
}

/*=============== CONTACT PAGE ===============*/
/* Contact Hero */
.contact-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-hero__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-hero__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 168, 255, .85) 0%, rgba(0, 100, 150, .85) 100%);
}

.contact-hero__container {
  position: relative;
  z-index: 1;
}

.contact-hero__content {
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}

.contact-hero__title {
  font-size: var(--biggest-font-size);
  color: #fff;
  margin-bottom: 1rem;
}

.contact-hero__description {
  font-size: var(--h3-font-size);
  color: rgba(255, 255, 255, .95);
  line-height: 1.6;
}

/* Contact Info */
.contact-info__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.contact-card {
  background: var(--container-color);
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
  transition: all .3s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 32px rgba(0, 168, 255, .2);
}

.contact-card__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #fff;
}

.contact-card__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: .75rem;
}

.contact-card__text {
  color: var(--text-color);
  margin-bottom: 1rem;
  font-size: var(--normal-font-size);
}

.contact-card__link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: var(--font-semi-bold);
  font-size: var(--h3-font-size);
  margin-bottom: .5rem;
  transition: color .3s ease;
}

.contact-card__link:hover {
  color: var(--primary-color-dark);
}

.contact-card__note {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

/* Contact Form Section */
.contact-form-section {
  background: linear-gradient(180deg, var(--body-color) 0%, var(--container-color) 100%);
}

.contact-form-wrapper {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.contact-form-description {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-features {
  display: grid;
  gap: 1.5rem;
}

.contact-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-feature i {
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: .25rem;
}

.contact-feature h4 {
  font-size: var(--normal-font-size);
  color: var(--title-color);
  margin-bottom: .25rem;
}

.contact-feature p {
  font-size: var(--small-font-size);
  color: var(--text-color);
}

/* Contact Form */
.contact-form {
  background: var(--container-color);
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .08);
}

.contact-form__group {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.contact-form__label {
  font-size: var(--small-font-size);
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

.contact-form__input,
.contact-form__textarea {
  background: var(--body-color);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: .75rem;
  padding: 1rem 1.25rem;
  color: var(--text-color);
  font-size: var(--normal-font-size);
  font-family: var(--body-font);
  transition: all .3s ease;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(0, 168, 255, .05);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-form__note {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.contact-form__message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: .75rem;
  text-align: center;
  font-size: var(--small-font-size);
  display: none;
}

.contact-form__message.success {
  display: block;
  background: rgba(34, 197, 94, .1);
  border: 1px solid rgba(34, 197, 94, .3);
  color: #22c55e;
}

.contact-form__message.error {
  display: block;
  background: rgba(239, 68, 68, .1);
  border: 1px solid rgba(239, 68, 68, .3);
  color: #ef4444;
}

/* Contact Map */
.contact-map {
  position: relative;
  height: 500px;
}

.contact-map__wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
}

.contact-map__iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-map__info {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.contact-map__content {
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1.5rem;
  max-width: 400px;
  pointer-events: all;
}

.contact-map__title {
  font-size: var(--h3-font-size);
  color: #fff;
  margin-bottom: .75rem;
}

.contact-map__text {
  color: rgba(255, 255, 255, .9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Contact FAQ */
.contact-faq__header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-faq__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.faq-card {
  background: var(--container-color);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .08);
  transition: all .3s ease;
}

.faq-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 168, 255, .15);
}

.faq-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
}

.faq-card__question {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: 1rem;
}

.faq-card__answer {
  color: var(--text-color);
  line-height: 1.7;
}

/* Contact Page Responsive */
@media screen and (min-width: 576px) {
  .contact-info__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-faq__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form__group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .contact-form-wrapper {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }

  .contact-map {
    height: 600px;
  }
}

@media screen and (min-width: 1024px) {
  .contact-info__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-hero {
    height: 60vh;
  }
}

@media screen and (max-width: 576px) {
  .contact-hero__title {
    font-size: 2.5rem;
  }

  .contact-hero__description {
    font-size: var(--normal-font-size);
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-map__info {
    bottom: 1rem;
  }

  .contact-map__content {
    padding: 1.5rem;
  }

  .contact-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-form__actions .btn {
    width: 100%;
  }
}

/*=============== LEGAL PAGES ===============*/
/* Legal Hero */
.legal-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
  padding: 5rem 0 3rem;
  text-align: center;
}

.legal-hero__title {
  font-size: var(--biggest-font-size);
  color: #fff;
  margin-bottom: .75rem;
}

.legal-hero__date {
  color: rgba(255, 255, 255, .8);
  font-size: var(--normal-font-size);
}

/* Legal Content */
.legal-content {
  background: var(--body-color);
}

.legal-wrapper {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

/* Legal Navigation */
.legal-nav {
  position: sticky;
  top: 6rem;
  height: fit-content;
  background: var(--container-color);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .08);
}

.legal-nav__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-color);
}

.legal-nav__menu {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.legal-nav__link {
  display: block;
  color: var(--text-color);
  font-size: var(--small-font-size);
  padding: .75rem 1rem;
  border-radius: .5rem;
  transition: all .3s ease;
}

.legal-nav__link:hover {
  background: rgba(0, 168, 255, .1);
  color: var(--primary-color);
  padding-left: 1.5rem;
}

/* Legal Article */
.legal-article {
  background: var(--container-color);
  padding: 3rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .08);
}

.legal-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.legal-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.legal-section__title::before {
  content: '';
  width: 4px;
  height: 2rem;
  background: var(--primary-color);
  border-radius: 2px;
}

.legal-section__subtitle {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin: 2rem 0 1rem;
}

.legal-section__text {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: var(--normal-font-size);
}

.legal-section__list {
  list-style: none;
  margin: 1.5rem 0;
}

.legal-section__list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  line-height: 1.7;
}

.legal-section__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6rem;
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
}

/* Legal Highlight */
.legal-highlight {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(0, 168, 255, .08);
  border-left: 4px solid var(--primary-color);
  border-radius: .75rem;
  margin: 2rem 0;
}

.legal-highlight i {
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: .25rem;
}

.legal-highlight h4 {
  font-size: var(--normal-font-size);
  color: var(--title-color);
  margin-bottom: .5rem;
}

.legal-highlight p {
  color: var(--text-color);
  line-height: 1.7;
  margin: 0;
}

.legal-highlight--warning {
  background: rgba(251, 191, 36, .08);
  border-left-color: #fbbf24;
}

.legal-highlight--warning i {
  color: #fbbf24;
}

.legal-highlight--info {
  background: rgba(59, 130, 246, .08);
  border-left-color: #3b82f6;
}

.legal-highlight--info i {
  color: #3b82f6;
}

/* Legal Contact */
.legal-contact {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.legal-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(0, 168, 255, .05);
  border-radius: .75rem;
  border: 1px solid rgba(0, 168, 255, .1);
}

.legal-contact__item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: .25rem;
}

.legal-contact__item div {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.legal-contact__item strong {
  color: var(--title-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
}

.legal-contact__item a {
  color: var(--primary-color);
  font-size: var(--normal-font-size);
  transition: color .3s ease;
}

.legal-contact__item a:hover {
  color: var(--primary-color-dark);
  text-decoration: underline;
}

.legal-contact__item span {
  color: var(--text-color);
  font-size: var(--normal-font-size);
}

/* Legal Footer */
.legal-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(0, 168, 255, .2);
  text-align: center;
}

.legal-footer p {
  color: var(--text-color-light);
  font-style: italic;
  line-height: 1.7;
}

/* Legal Pages Responsive */
@media screen and (min-width: 1024px) {
  .legal-wrapper {
    grid-template-columns: 280px 1fr;
    gap: 4rem;
  }

  .legal-article {
    padding: 4rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .legal-nav {
    position: relative;
    top: 0;
  }
}

@media screen and (max-width: 768px) {
  .legal-hero {
    padding: 3rem 0 2rem;
  }

  .legal-hero__title {
    font-size: 2rem;
  }

  .legal-nav {
    position: relative;
    top: 0;
    padding: 1.5rem;
  }

  .legal-nav__menu {
    display: none;
  }

  .legal-article {
    padding: 2rem 1.5rem;
  }

  .legal-section__title {
    font-size: var(--h3-font-size);
  }

  .legal-section__title::before {
    height: 1.5rem;
  }

  .legal-highlight {
    flex-direction: column;
  }
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  background: var(--primary-color);
  color: #fff;
  padding: .75rem;
  border-radius: .5rem;
  font-size: 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 168, 255, .3);
  z-index: var(--z-tooltip);
  transition: all .3s ease;
  display: none;
}

.scrollup:hover {
  background: var(--primary-color-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 168, 255, .4);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }
  
  .home__title {
    font-size: 2rem;
  }
  
  .home__buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .home__buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .join__form {
    flex-direction: column;
  }
  
  .nav__logo {
    font-size: .9rem;
  }
  
  .nav__logo i {
    font-size: 1.1rem;
  }
}

/* For mobile devices */
@media screen and (max-width: 576px) {
  .nav__logo {
    font-size: 1rem;
  }
  
  .nav__logo i {
    font-size: 1.25rem;
  }
  
  .home {
    padding-block: 6rem 3rem;
  }
  
  .home__subtitle {
    font-size: .7rem;
    letter-spacing: 2px;
  }
  
  .home__title {
    font-size: 2.25rem;
  }
  
  .home__description {
    font-size: var(--small-font-size);
    margin-bottom: 1.5rem;
  }
  
  .home__buttons {
    gap: .75rem;
  }
  
  .btn {
    padding: .75rem 1.25rem;
    font-size: var(--small-font-size);
  }
  
  .section {
    padding-block: 3.5rem 1.5rem;
  }
  
  .section__title {
    font-size: var(--h2-font-size);
  }
  
  .section__subtitle {
    font-size: var(--smaller-font-size);
  }
  
  .about__description {
    font-size: var(--small-font-size);
  }
  
  .about__item {
    font-size: var(--small-font-size);
  }
  
  .about__item i {
    font-size: 1.25rem;
  }
  
  .popular__container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .popular__card {
    max-width: 400px;
    margin-inline: auto;
  }
  
  .explore {
    min-height: 500px;
  }
  
  .explore__perfil {
    width: 56px;
    height: 56px;
  }
  
  .explore__title,
  .join__title {
    font-size: var(--h2-font-size);
  }
  
  .explore__description,
  .join__description {
    font-size: var(--small-font-size);
  }
  
  .join {
    min-height: 450px;
  }
  
  .join__form {
    flex-direction: column;
    gap: .75rem;
  }
  
  .join__input-wrapper {
    min-width: 100%;
  }
  
  .footer__container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer__social {
    justify-content: center;
  }
  
  .scrollup {
    right: 1rem;
    bottom: 1rem;
    padding: .6rem;
    font-size: 1.1rem;
  }
}

/* For medium devices */
@media screen and (min-width: 577px) and (max-width: 767px) {
  .home__title {
    font-size: 3rem;
  }
  
  .popular__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .about__content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }
  
  .popular__container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .home__data {
    max-width: 600px;
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-inline: auto;
  }
  
  .section {
    padding-block: 7rem 3rem;
  }
  
  .nav {
    padding: 1.5rem 0;
  }
  
  .popular__container {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .home__data {
    max-width: 800px;
  }
  
  .home {
    padding-block: 8rem 4rem;
  }
}

@media screen and (min-width: 1152px) {
  .home {
    padding-block: 10rem 5rem;
  }
  
  .home__title {
    font-size: var(--biggest-font-size);
  }
}

/*=============== HOTELS PAGE ===============*/
.hotels-hero {
  position: relative;
  padding-block: 9rem 6rem;
  background: linear-gradient(135deg, rgba(17, 17, 17, .95), rgba(0, 0, 0, .7)), url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1600&q=80') center/cover;
  overflow: hidden;
}

.hotels-hero::before {
  content: '';
  position: absolute;
  inset: -20% 0 0 0;
  background: radial-gradient(circle at 20% 20%, rgba(92, 201, 255, .35), transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(0, 168, 255, .25), transparent 60%);
  opacity: .6;
}

.hotels-hero__container {
  position: relative;
  z-index: 1;
  max-width: 780px;
  display: grid;
  gap: 1.75rem;
}

.hotels-hero__title {
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  line-height: 1.15;
  color: #fff;
}

.hotels-hero__description {
  color: rgba(255,255,255,.82);
  line-height: 1.7;
}

.hotels-section {
  padding-block: 5rem;
}

.hotels-section__header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
  display: grid;
  gap: 1rem;
}

.hotels-section__header p {
  color: var(--text-color);
}

.hotels-gallery {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.hotel-card {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 28px 65px rgba(0,0,0,.5);
  transition: transform .35s ease, box-shadow .35s ease;
}

.hotel-card--feature {
  grid-column: span 2;
  min-height: 420px;
}

.hotel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(92,201,255,.25), transparent 60%),
              linear-gradient(180deg, rgba(0,0,0,.0) 40%, rgba(0,0,0,.8) 100%);
  opacity: .85;
  transition: opacity .35s ease;
}

.hotel-card__overlay {
  display: none;
}

.hotel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 38px 80px rgba(0,0,0,.6);
}

.hotel-card:hover::after {
  opacity: 1;
}

.hotel-card__content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  display: grid;
  gap: 1rem;
}

.hotel-card__tag {
  font-size: var(--smaller-font-size);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

.hotel-card__name {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
}

.hotel-card__desc {
  font-size: var(--small-font-size);
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}

.hotel-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.hotel-card__price {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--accent-color);
}

.hotel-card__badge {
  font-size: var(--smaller-font-size);
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.1);
  padding: .4rem .9rem;
  border-radius: 999px;
}

.hotel-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--accent-color);
  font-weight: var(--font-medium);
}

.hotels-cta {
  padding-block: 5rem 6rem;
  background: linear-gradient(135deg, rgba(0,168,255,.25), rgba(0,0,0,.88));
}

.hotels-cta__container {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: flex-start;
  max-width: 800px;
}

.hotels-cta__container h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #fff;
}

.hotels-cta__container p {
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}

.hotels-cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media screen and (max-width: 576px) {
  .hotel-card--feature {
    grid-column: auto;
  }

  .hotel-card__content {
    padding: 1.75rem;
  }

  .hotels-cta__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*=============== DESTINOS PAGE ===============*/
.dest-hub {
  position: relative;
  padding-block: 9rem 6rem;
  background: radial-gradient(circle at 70% 20%, rgba(92, 201, 255, .2), transparent 55%),
              radial-gradient(circle at 30% 80%, rgba(0, 168, 255, .18), transparent 55%),
              linear-gradient(120deg, rgba(0,0,0,.9), rgba(0,0,0,.7));
  overflow: hidden;
}

.dest-hub__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1600&q=80') center/cover;
  opacity: .18;
  mix-blend-mode: screen;
}

.dest-hub__container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.dest-hub__title {
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.15;
}

.dest-hub__description {
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  max-width: 720px;
}

.dest-hub__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.dest-grid-section {
  padding-block: 5rem;
}

.dest-grid-section__header {
  max-width: 740px;
  margin: 0 auto 3rem;
  text-align: center;
  display: grid;
  gap: 1rem;
}

.dest-grid-section__header p {
  color: var(--text-color);
}

.dest-grid {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.dest-card-v2 {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 25px 60px rgba(0,0,0,.45);
  transition: transform .35s ease, box-shadow .35s ease;
}

.dest-card-v2__overlay {
  display: none;
}

.dest-card-v2::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 30%, rgba(0,0,0,.75) 100%);
  transition: opacity .35s ease;
}

.dest-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 70px rgba(0,0,0,.55);
}

.dest-card-v2:hover::after {
  opacity: .95;
}

.dest-card-v2__content {
  position: relative;
  z-index: 1;
  padding: 1.9rem;
  display: grid;
  gap: 1rem;
}

.dest-card-v2__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  font-size: var(--smaller-font-size);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

.dest-card-v2__title {
  font-size: var(--h3-font-size);
  color: #fff;
}

.dest-card-v2__text {
  font-size: var(--small-font-size);
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}

.dest-card-v2__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.dest-card-v2__price {
  font-size: var(--h2-font-size);
  color: var(--accent-color);
  font-weight: var(--font-semi-bold);
}

.dest-card-v2__badge {
  font-size: var(--smaller-font-size);
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.12);
  padding: .35rem .9rem;
  border-radius: 999px;
}

.dest-grid-section--intl {
  background: radial-gradient(circle at top left, rgba(92,201,255,.08), transparent 60%),
              radial-gradient(circle at bottom right, rgba(0,168,255,.08), transparent 60%);
}

.dest-gallery {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.dest-panel {
  position: relative;
  border-radius: 1.9rem;
  overflow: hidden;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 65px rgba(0,0,0,.5);
  display: flex;
  align-items: flex-end;
  transition: transform .35s ease, box-shadow .35s ease;
}

.dest-panel--tall {
  grid-row: span 2;
  min-height: 420px;
}

.dest-panel--wide {
  grid-column: span 2;
}

.dest-panel__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(92,201,255,.22), transparent 50%),
              linear-gradient(180deg, rgba(0,0,0,.05) 35%, rgba(0,0,0,.85) 100%);
  transition: opacity .35s ease;
}

.dest-panel__content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  display: grid;
  gap: 1rem;
}

.dest-panel__content--compact {
  padding: 1.75rem;
  gap: .75rem;
}

.dest-panel__tag {
  font-size: var(--smaller-font-size);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: rgba(255,255,255,.75);
}

.dest-panel__title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: #fff;
}

.dest-panel__desc {
  font-size: var(--small-font-size);
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}

.dest-panel__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
}

.dest-panel__chip {
  font-size: var(--smaller-font-size);
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.1);
  padding: .35rem .85rem;
  border-radius: 999px;
}

.dest-panel__price {
  font-size: var(--h2-font-size);
  color: var(--accent-color);
  font-weight: var(--font-semi-bold);
}

.dest-panel:hover {
  transform: translateY(-10px);
  box-shadow: 0 38px 80px rgba(0,0,0,.58);
}

.dest-panel:hover .dest-panel__gradient {
  opacity: .95;
}

.dest-cta {
  padding-block: 5rem 6rem;
  background: linear-gradient(135deg, rgba(0,168,255,.2), rgba(0,0,0,.85));
}

.dest-cta__container {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: flex-start;
  max-width: 780px;
}

.dest-cta__container h2 {
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  color: #fff;
}

.dest-cta__container p {
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}

.dest-cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media screen and (max-width: 576px) {
  .dest-hub__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .dest-panel--wide,
  .dest-panel--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .dest-panel__content {
    padding: 1.75rem;
  }

  .dest-cta__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*=============== DESTINATIONS MODAL ===============*/
.dest-card-clickable,
.hotel-card-clickable,
.package-card-clickable,
.package-tile-clickable {
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}

.dest-card-clickable:hover,
.hotel-card-clickable:hover,
.package-card-clickable:hover,
.package-tile-clickable:hover {
  transform: translateY(-5px);
}

.dest-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.dest-modal.show-modal {
  display: flex;
}

.dest-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.dest-modal__content {
  position: relative;
  z-index: 1001;
  background: var(--container-color);
  border-radius: 2rem;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .7);
  animation: modalFadeIn .4s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.dest-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 1002;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, transform .2s ease;
}

.dest-modal__close:hover {
  background: rgba(0, 0, 0, .9);
  transform: rotate(90deg);
}

.dest-modal__image {
  height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.dest-modal__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 40%, rgba(8,8,8,1) 100%);
}

.dest-modal__info {
  padding: 2.5rem;
  display: grid;
  gap: 1.5rem;
  overflow-y: auto;
}

.dest-modal__tag {
  display: inline-block;
  background: linear-gradient(120deg, var(--primary-color), var(--primary-color-dark));
  color: #fff;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: .45rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0,168,255,.35);
  width: fit-content;
}

.dest-modal__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--title-color);
  margin-bottom: -.5rem;
}

.dest-modal__location {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.dest-modal__location::before {
  content: '\eb2f';
  font-family: 'remixicon';
  font-size: 1.1rem;
  color: var(--accent-color);
}

.dest-modal__desc {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  line-height: 1.75;
}

.dest-modal__details {
  display: grid;
  gap: 1.25rem;
  background: rgba(255,255,255,.04);
  padding: 1.75rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,.08);
}

.dest-modal__detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--normal-font-size);
  color: var(--text-color);
}

.dest-modal__detail i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.dest-modal__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.dest-modal__pricing {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.dest-modal__price-label {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.dest-modal__price {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--accent-color);
  font-weight: var(--font-bold);
}

.dest-modal__cta {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  white-space: nowrap;
}

.dest-modal__cta i {
  font-size: 1.25rem;
}

@media screen and (min-width: 768px) {
  .dest-modal__content {
    grid-template-columns: 1fr 1fr;
  }

  .dest-modal__image {
    height: auto;
  }

  .dest-modal__info {
    max-height: 90vh;
  }
}

@media screen and (max-width: 576px) {
  .dest-modal__info {
    padding: 1.75rem;
  }

  .dest-modal__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .dest-modal__cta {
    width: 100%;
    justify-content: center;
  }
}
