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

:root {
  --bg: #0a0a0a;
  --bg2: #111;
  --bg3: #151515;
  --card-bg: #181818;
  --gold: #C89B3C;
  --gold-light: #F2C94C;
  --gold2: #E8B84B;
  --teal: #17B5AF;
  --white: #FFFFFF;
  --off-white: #f0ebe3;
  --muted: #7a7a7a;
  --border: rgba(200, 155, 60, 0.15);
  --border2: rgba(255, 255, 255, 0.07);
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

/* Deshabilitar botones de WhatsApp por petición del usuario */
a[href*="wa.me"] {
  pointer-events: none !important;
  opacity: 0.8;
  cursor: default !important;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  height: 72px;
  background: rgba(13, 13, 13, 0.7);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, border-color 0.3s ease;
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.99);
  border-bottom-color: rgba(200, 155, 60, 0.25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none
}

.nav-logo-img {
  height: 44px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-main {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-logo-sub {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a.active {
  color: var(--gold);
}

.nav-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: #17B5AF;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s;
}

.nav-btn:hover {
  background: #12a09a;
  transform: translateY(-1px);
}

.theme-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 100px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s ease;
  flex-shrink: 0;
  color: #fff;
  padding: 0;
  line-height: 0
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .4);
  transform: translateY(-1px)
}

body.light-mode {
  --bg: #F5F7FA;
  --bg2: #EAECF0;
  --bg3: #151515;
  --card-bg: #fff;
  --white: #1A1E2C;
  --off-white: #2A2F3E;
  --muted: #6B7280;
  --border2: rgba(0, 0, 0, .08);
  background: var(--bg);
  color: var(--white)
}

body.light-mode nav {
  background: rgba(245, 247, 250, 0.7) !important;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .nav-links a.active {
  color: var(--gold)
}

body.light-mode .nav-links a {
  color: rgba(26, 30, 44, .7)
}

body.light-mode .nav-logo-sub {
  color: #00C9B1
}

body.light-mode .mobile-menu {
  background: rgba(245, 247, 250, 0.75)
}

body.light-mode .mobile-menu a {
  color: rgba(26, 30, 44, .7)
}

body.light-mode .mobile-menu a.active {
  color: var(--gold)
}

body.light-mode .deal-card {
  background: var(--card-bg);
  border-color: rgba(0, 0, 0, .1)
}

body.light-mode .deal-card-title {
  color: #1A1E2C
}

body.light-mode .deal-card-desc {
  color: rgba(26, 30, 44, .6)
}

body.light-mode .testi-card {
  background: #fff;
  border-color: rgba(0, 0, 0, .1)
}

body.light-mode .testi-quote {
  color: #2A2F3E
}

body.light-mode .hero-h1,
body.light-mode .featured-card-title {
  color: #fff !important;
}

body.light-mode footer {
  background: #DDE1E8
}

body.light-mode .theme-toggle {
  background: transparent;
  border-color: rgba(0, 0, 0, .15);
  color: #1A1E2C
}

body.light-mode .nav-hamburger span {
  background: var(--white);
}

body.light-mode .resort-features li {
  color: #1A1E2C;
}


.custom-deal-cta {
  display: flex;
  justify-content: center;
  padding: 40px 72px 0
}

.btn-custom-deal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--gold);
  padding: 22px 64px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 8px 32px rgba(200, 155, 60, .35)
}

.btn-custom-deal:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200, 155, 60, .5)
}

@media(max-width:768px) {
  .custom-deal-cta {
    padding: 32px 20px 0
  }

  .btn-custom-deal {
    width: 100%;
    justify-content: center;
    padding: 20px 32px;
    font-size: .95rem
  }

  .featured-card {
    height: auto !important;
    min-height: 400px;
    align-items: stretch !important;
  }

  .featured-card-content {
    padding: 40px 24px 30px !important;
    flex-direction: column;
    text-align: center;
    justify-content: flex-end;
    background: rgba(0, 0, 0, 0.6);
  }

  .featured-card-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .featured-card-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .featured-card-cta-box {
    align-items: center !important;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .hero-sub {
    display: none !important;
  }
}

/* ── Nav Controls ── */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

#menuToggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
#menuToggle.active span:nth-child(2) {
  opacity: 0;
}
#menuToggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 24px 24px 32px;
  z-index: 199;
  border-bottom: 1px solid rgba(200, 155, 60, 0.12);
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold);
}

/* ── HERO – full parallax editorial ── */
.hero {
  position: relative;
  height: 90vh;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1538964173425-93884d739596?w=1800&q=88&fit=crop&h=1000') center 30%/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 10, 10, 0.10) 0%,
      rgba(10, 10, 10, 0.35) 50%,
      rgba(10, 10, 10, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 72px 72px;
  display: flex;
  flex-direction: column;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200, 155, 60, 0.4);
  background: rgba(200, 155, 60, 0.1);
  padding: 7px 18px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 900px;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 15px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200, 155, 60, 0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: 60px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero-scroll span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  writing-mode: vertical-rl;
}

.scroll-dot {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

/* ── RESORT PACKAGES ── */
.resorts-section {
  padding: 80px 72px;
  background: var(--bg);
}

.resorts-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-eyebrow {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 30px;
  color: var(--white);
}

.section-h2 em {
  font-style: italic;
  color: var(--gold);
}

.section-sub-text {
  text-align: center;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.resorts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.resort-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.resort-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(200, 155, 60, 0.4);
}

.resort-card-img {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.resort-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.resort-card:hover .resort-card-img img {
  transform: scale(1.08);
}

.resort-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--bg);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.resort-card-body {
  padding: 40px;
}

.resort-card-tag {
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.resort-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--white);
}

.resort-price-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 25px;
}

.resort-price-tag small {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
  margin-left: 5px;
}

.resort-features {
  list-style: none;
  margin-bottom: 35px;
}

.resort-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.resort-features li span {
  color: var(--gold);
  font-weight: bold;
}

.btn-resort {
  display: block;
  width: 100%;
  padding: 18px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-align: center;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.3s;
}

.btn-resort:hover {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 10px 20px rgba(200, 155, 60, 0.2);
}

/* ── CONTACT FORM ── */
.contact-form-section {
  padding: 100px 72px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-form-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.contact-info p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.perk-item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.perk-icon {
  width: 50px;
  height: 50px;
  background: rgba(200, 155, 60, 0.1);
  border: 1px solid rgba(200, 155, 60, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.perk-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.perk-item p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.form-container {
  background: var(--bg3);
  padding: 50px;
  border-radius: 24px;
  border: 1px solid var(--border2);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.luxury-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  border-radius: 10px;
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

.btn-submit {
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 20px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}

.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(200, 155, 60, 0.3);
}

/* ── TESTIMONIALS ── */
.testi-section {
  padding: 100px 72px;
  background: var(--bg);
}

.testi-inner {
  max-width: 1400px;
  margin: 0 auto;
}

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

.testi-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s;
}

.testi-card:hover {
  border-color: rgba(200, 155, 60, 0.2);
  transform: translateY(-5px);
}

.testi-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testi-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--white);
  font-style: italic;
  margin-bottom: 30px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testi-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.testi-origin {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── FOOTER ── */
footer {
  background: #060606;
  padding: 80px 72px 40px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  max-width: 1400px;
  margin: 0 auto 56px;
}

.footer-logo-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-logo-sub {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  background: var(--card-bg);
  border: 1px solid rgba(200, 155, 60, 0.12);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(200, 155, 60, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
}



/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .resorts-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .resort-card-img {
    height: 300px;
  }

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

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

@media(max-width:768px) {
  .resorts-section,
  .contact-form-section,
  .testi-section {
    padding: 60px 24px;
  }

  .section-h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .section-sub-text {
    margin-top: 10px;
    margin-bottom: 40px;
    font-size: 1rem;
  }

  .resort-card-title {
    font-size: 1.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 30px 24px;
  }

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

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

@media(max-width:1024px) {
  nav {
    padding: 0 20px;
    height: 64px;
  }


  .nav-links,
  .nav-btn {
    display: none !important;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-sub {
    display: none !important;
  }
}

