/* ===== VARIABLES ===== */
:root {
  --primary: #f97316;
  --primary-dark: #ea580c;
  --primary-light: #fff7ed;
  --secondary: #0ea5e9;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --text: #334155;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --bg: #ffffff;
  --bg-gray: #f8fafc;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --header-h: 76px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

/* ===== UTILITIES ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.mt-8 { margin-top: 3rem; }
.section { padding: 5rem 0; }
.section--gray { background: var(--bg-gray); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: 50px; font-weight: 600;
  font-size: .95rem; cursor: pointer; transition: var(--transition);
  border: 2px solid transparent; white-space: nowrap;
}
.btn--primary {
  background: var(--primary); color: white; border-color: var(--primary);
}
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,.35); }
.btn--outline { background: transparent; color: white; border-color: rgba(255,255,255,.7); }
.btn--outline:hover { background: white; color: var(--primary); border-color: white; }
.btn--ghost { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--ghost:hover { background: var(--primary); color: white; }
.btn--whatsapp { background: #25D366; color: white; border-color: #25D366; }
.btn--whatsapp:hover { background: #1ebe57; border-color: #1ebe57; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }
.modal .btn--outline { background: transparent; color: var(--text); border-color: var(--border); }
.modal .btn--outline:hover { background: var(--bg-gray); color: var(--text); border-color: var(--border); }
.btn--sm { padding: .5rem 1.25rem; font-size: .875rem; }
.btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn--full { width: 100%; }

/* ===== SECTION HEADER ===== */
.section__label {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 50px; margin-bottom: 1rem;
}
.section__title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,4vw,2.75rem); color: var(--dark); margin-bottom: 1rem; line-height: 1.2; }
.section__desc { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; }
.section__header { text-align: center; margin-bottom: 3.5rem; }
.section__header .section__desc { margin: 0 auto; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h); transition: var(--transition);
  background: transparent;
}
.header.scrolled {
  background: white; box-shadow: 0 2px 24px rgba(0,0,0,0.1);
}
.header__inner {
  height: 100%; display: flex; align-items: center; gap: 2rem; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: .75rem; }
.logo__img {
  height: 48px; width: auto;
  animation: logoEntrance 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  transition: transform .35s ease, filter .35s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.15));
}
.logo:hover .logo__img {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 4px 14px rgba(249,115,22,.35));
}
@keyframes logoEntrance {
  0%   { opacity: 0; transform: translateY(-12px) scale(.85) rotate(-6deg); }
  60%  { opacity: 1; transform: translateY(2px) scale(1.04) rotate(1deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
}
.logo__fallback {
  display: none; align-items: center; gap: .5rem;
  font-size: 1.15rem; font-weight: 700; color: white;
}
.header.scrolled .logo__fallback { color: var(--dark); }
.logo__icon { font-size: 1.5rem; }
.logo__text strong { color: var(--primary); }

.nav { display: flex; align-items: center; gap: .25rem; }
.nav__link {
  padding: .5rem .9rem; border-radius: 8px; font-size: .9rem; font-weight: 500;
  color: rgba(255,255,255,.9); transition: var(--transition);
}
.nav__link:hover { background: rgba(255,255,255,.15); color: white; }
.header.scrolled .nav__link { color: var(--text); }
.header.scrolled .nav__link:hover { background: var(--primary-light); color: var(--primary); }

.header__actions { display: flex; align-items: center; gap: .75rem; }
.header__cta { font-size: .875rem; padding: .6rem 1.25rem; }

/* Language Switcher */
.lang-switch { position: relative; }
.lang-switch__btn {
  display: flex; align-items: center; gap: .35rem; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3); color: white; padding: .5rem .8rem;
  border-radius: 50px; cursor: pointer; font-weight: 600; font-size: .85rem; transition: var(--transition);
}
.lang-switch__btn:hover { background: rgba(255,255,255,.22); }
.header.scrolled .lang-switch__btn { background: var(--bg-gray); border-color: var(--border); color: var(--text); }
.lang-switch__menu {
  position: absolute; top: calc(100% + .5rem); right: 0; background: white; border-radius: 10px;
  box-shadow: var(--shadow-lg); padding: .4rem; min-width: 150px; opacity: 0; pointer-events: none;
  transform: translateY(-8px); transition: var(--transition); z-index: 10;
}
.lang-switch__menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.lang-switch__item {
  display: block; width: 100%; text-align: left; background: none; border: none; padding: .55rem .75rem;
  border-radius: 8px; cursor: pointer; font-size: .9rem; color: var(--text); transition: var(--transition);
}
.lang-switch__item:hover { background: var(--primary-light); color: var(--primary); }
.lang-switch__item.active { font-weight: 700; color: var(--primary); }

.burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: .5rem;
}
.burger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }
.header.scrolled .burger span { background: var(--dark); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.5s ease;
}
.hero__slide.active { opacity: 1; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.75) 0%, rgba(15,23,42,.4) 60%, transparent 100%);
}
.hero__content {
  position: relative; z-index: 2; padding-top: var(--header-h);
  padding-bottom: 4rem;
}
.hero__badge {
  display: inline-block; background: rgba(249,115,22,.2); border: 1px solid rgba(249,115,22,.5);
  color: #fed7aa; font-size: .8rem; font-weight: 600; letter-spacing: .05em;
  padding: .4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem; backdrop-filter: blur(4px);
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: white; line-height: 1.1; margin-bottom: 1.25rem;
}
.hero__title span { color: var(--primary); }
.hero__subtitle { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 580px; margin-bottom: 2.5rem; }

/* Search Form */
.hero__search { margin-bottom: 3rem; }
.search-form {
  background: white; border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-lg); max-width: 860px;
}
.search-form__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1rem;
}
.search-form__field label { display: block; font-size: .75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .4rem; }
.search-form__field select,
.search-form__field input {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: 10px;
  color: var(--dark); background: var(--bg-gray); transition: var(--transition); outline: none;
}
.search-form__field select:focus,
.search-form__field input:focus { border-color: var(--primary); background: white; }
.search-form__btn { width: 100%; }

/* Hero Stats */
.hero__stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
}
.hero__stat { color: white; }
.hero__stat strong { display: block; font-size: 1.75rem; font-weight: 800; line-height: 1; }
.hero__stat span { font-size: .85rem; color: rgba(255,255,255,.7); }

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
}
.hero__scroll-icon {
  width: 24px; height: 40px; border: 2px solid rgba(255,255,255,.5); border-radius: 12px;
  position: relative;
}
.hero__scroll-icon::after {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: white; border-radius: 2px;
  animation: scrollDown 1.5s infinite;
}
@keyframes scrollDown { 0%,100%{transform:translateX(-50%) translateY(0);opacity:1} 50%{transform:translateX(-50%) translateY(8px);opacity:.3} }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--dark); padding: 1.5rem 0; }
.trust-bar__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500; }
.trust-item svg { color: var(--primary); flex-shrink: 0; }

/* ===== DESTINATIONS ===== */
.destinations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.dest-card--large { grid-column: span 2; grid-row: span 2; }
.dest-card {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  box-shadow: var(--shadow); transition: var(--transition); background: white;
  display: flex; flex-direction: column; cursor: pointer;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-card__img {
  background-size: cover; background-position: center;
  flex: 1; min-height: 160px; transition: transform .6s ease;
}
.dest-card--large .dest-card__img { min-height: 260px; }
.dest-card:hover .dest-card__img { transform: scale(1.05); }
.dest-card__body { padding: 1.25rem; }
.dest-card__badge {
  display: inline-block; background: var(--primary); color: white;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: .25rem .75rem; border-radius: 50px; margin-bottom: .75rem;
}
.dest-card__badge--hot { background: #ef4444; }
.dest-card__title { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.dest-card--large .dest-card__title { font-size: 1.4rem; }
.dest-card__desc { font-size: .875rem; color: var(--text-muted); margin-bottom: 1rem; }
.dest-card__footer { display: flex; align-items: center; justify-content: space-between; }
.dest-card__price { font-size: .875rem; color: var(--text-muted); }
.dest-card__price strong { font-size: 1.25rem; color: var(--primary); }

/* ===== OFFERS ===== */
.offers__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.offer-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition); position: relative; cursor: pointer;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.offer-card__badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--primary); color: white; font-size: .8rem; font-weight: 800;
  padding: .35rem .9rem; border-radius: 50px;
}
.offer-card__badge--blue { background: var(--secondary); }
.offer-card__img { height: 200px; background-size: cover; background-position: center; transition: transform .6s ease; }
.offer-card:hover .offer-card__img { transform: scale(1.05); }
.offer-card__body { padding: 1.5rem; }
.offer-card__tags { display: flex; gap: .5rem; margin-bottom: .75rem; flex-wrap: wrap; }
.tag { background: var(--primary-light); color: var(--primary); font-size: .75rem; font-weight: 600; padding: .2rem .7rem; border-radius: 50px; }
.offer-card__body h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.offer-card__body p { font-size: .875rem; color: var(--text-muted); margin-bottom: 1rem; }
.offer-card__price { display: flex; align-items: baseline; gap: .5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.old-price { text-decoration: line-through; color: var(--text-muted); font-size: .9rem; }
.new-price { font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.per-person { font-size: .8rem; color: var(--text-muted); }
.offer-card__countdown { font-size: .8rem; color: #ef4444; font-weight: 600; margin-bottom: .75rem; min-height: 1.2em; }

/* ===== SERVICES ===== */
.services__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.service-card {
  background: white; border-radius: var(--radius-lg); padding: 2rem 1.5rem;
  text-align: center; box-shadow: var(--shadow); transition: var(--transition);
  border: 2px solid transparent;
}
.service-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.service-card p { font-size: .875rem; color: var(--text-muted); }

/* ===== WHY US ===== */
.why-us { padding: 5rem 0; background: var(--dark); overflow: hidden; }
.why-us__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-us__content .section__title { color: white; }
.why-us__content > p { color: rgba(255,255,255,.75); margin-bottom: 2rem; }
.why-us__list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.why-us__list li { display: flex; gap: 1rem; align-items: flex-start; }
.why-us__check {
  width: 28px; height: 28px; background: var(--primary); color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 800;
  flex-shrink: 0; margin-top: .15rem;
}
.why-us__list strong { display: block; color: white; font-weight: 700; margin-bottom: .2rem; }
.why-us__list p { color: rgba(255,255,255,.65); font-size: .9rem; }
.why-us__visual { position: relative; }
.why-us__img-wrap { position: relative; }
.why-us__img-wrap img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; }
.why-us__badge-float {
  position: absolute; bottom: -1rem; left: -2rem; background: white;
  border-radius: var(--radius); padding: 1rem 1.5rem; box-shadow: var(--shadow-lg);
  text-align: center;
}
.why-us__badge-num { font-size: 2rem; font-weight: 800; color: var(--dark); line-height: 1; }
.why-us__badge-stars { color: #f59e0b; font-size: 1rem; margin: .25rem 0; }
.why-us__badge-text { font-size: .75rem; color: var(--text-muted); font-weight: 600; }

/* ===== REVIEWS ===== */
.reviews__stars-summary {
  display: flex; gap: 3rem; align-items: center; background: white;
  border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow);
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.reviews__overall { text-align: center; flex-shrink: 0; }
.reviews__score { font-size: 4rem; font-weight: 800; color: var(--dark); line-height: 1; }
.reviews__stars { font-size: 1.5rem; color: #f59e0b; margin: .25rem 0; }
.reviews__count { font-size: .8rem; color: var(--text-muted); }
.reviews__bars { flex: 1; display: flex; flex-direction: column; gap: .5rem; min-width: 200px; }
.reviews__bar { display: flex; align-items: center; gap: .75rem; font-size: .8rem; color: var(--text-muted); }
.bar { flex: 1; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.bar__fill { height: 100%; background: #f59e0b; border-radius: 4px; }
.reviews__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.review-card {
  background: white; border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow); transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-card__header { display: flex; gap: 1rem; align-items: center; margin-bottom: 1rem; }
.review-card__avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--primary);
  color: white; font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.review-card__header > div:nth-child(2) { flex: 1; }
.review-card__header strong { font-weight: 700; color: var(--dark); font-size: .95rem; }
.review-card__header p { font-size: .75rem; color: var(--text-muted); }
.review-card__stars { color: #f59e0b; font-size: .9rem; flex-shrink: 0; }
.review-card__text { font-size: .875rem; color: var(--text); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.review-card__trip { font-size: .75rem; font-weight: 600; color: var(--primary); background: var(--primary-light); padding: .25rem .75rem; border-radius: 50px; }

/* ===== BOOKING SECTION ===== */
.booking-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
  position: relative; overflow: hidden;
}
.booking-section::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.15) 0%, transparent 70%);
}
.booking-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.booking-contacts { display: flex; flex-direction: column; gap: 1rem; }
.booking-contact-item {
  display: flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.85);
  font-size: .95rem; transition: var(--transition);
}
.booking-contact-item:hover { color: var(--primary); }
.booking-contact-item svg { color: var(--primary); flex-shrink: 0; }
.booking-form {
  background: white; border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { margin-bottom: 1rem; }
.form-field label { display: block; font-size: .8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .4rem; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: 10px;
  color: var(--dark); background: var(--bg-gray); transition: var(--transition); outline: none; resize: vertical;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--primary); background: white; box-shadow: 0 0 0 3px rgba(249,115,22,.1); }
.checkbox-label { display: flex; align-items: flex-start; gap: .75rem; font-size: .85rem; color: var(--text-muted); cursor: pointer; margin-bottom: 1.25rem; }
.checkbox-label input { margin-top: .15rem; flex-shrink: 0; accent-color: var(--primary); }
.form-success { display: none; background: #dcfce7; color: #166534; border-radius: 10px; padding: 1rem; text-align: center; font-weight: 600; margin-top: 1rem; }
.form-success.show { display: block; }

/* ===== CONTACT ===== */
.contact__grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: 2rem; }
.contact__item { display: flex; gap: 1.25rem; align-items: flex-start; }
.contact__icon { font-size: 1.5rem; flex-shrink: 0; }
.contact__item strong { display: block; font-weight: 700; color: var(--dark); margin-bottom: .35rem; }
.contact__item p, .contact__item a { color: var(--text-muted); font-size: .95rem; }
.contact__item a:hover { color: var(--primary); }
.contact__link { color: var(--primary) !important; font-weight: 600; font-size: .875rem; }

/* ===== FOOTER ===== */
.footer { background: var(--dark-2); padding: 4rem 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand p { color: rgba(255,255,255,.6); font-size: .9rem; margin-top: 1rem; margin-bottom: 1.5rem; }
.footer__social { display: flex; gap: .75rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1);
  color: white; display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; transition: var(--transition);
}
.social-btn:hover { background: var(--primary); }
.social-btn--whatsapp:hover { background: #25D366; }
.social-btn--instagram:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.logo__img--footer { height: 44px; }
.footer__col h4 { color: white; font-weight: 700; margin-bottom: 1.25rem; font-size: .95rem; }
.footer__col li, .footer__col a { color: rgba(255,255,255,.6); font-size: .875rem; margin-bottom: .6rem; display: block; transition: var(--transition); }
.footer__col a:hover { color: var(--primary); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer__bottom p { color: rgba(255,255,255,.5); font-size: .85rem; }
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { color: rgba(255,255,255,.5); font-size: .85rem; transition: var(--transition); }
.footer__links a:hover { color: var(--primary); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
  padding: 1rem;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: white; border-radius: var(--radius-lg); padding: 2.5rem;
  max-width: 440px; width: 100%; position: relative;
  transform: translateY(20px); transition: transform .3s ease;
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal__close {
  position: absolute; top: 1rem; right: 1rem; background: var(--bg-gray);
  border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  font-size: 1rem; color: var(--text-muted); transition: var(--transition); display: flex; align-items: center; justify-content: center;
}
.modal__close:hover { background: var(--primary); color: white; }
.modal h3 { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: .75rem; }
.modal p { color: var(--text-muted); }

/* ===== FLOATING CTA GROUP ===== */
.floating-group {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  display: flex; flex-direction: column; align-items: center; gap: .9rem;
}
.floating-cta {
  position: static; width: 56px; height: 56px; border-radius: 50%;
  color: white; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); opacity: 1; transform: translateY(0); pointer-events: all;
}
.floating-cta--whatsapp { background: #25D366; box-shadow: 0 8px 32px rgba(37,211,102,.5); animation: pulseGreen 2s infinite; }
.floating-cta--whatsapp:hover { transform: scale(1.1); background: #1ebe57; }
.floating-cta--phone { width: 48px; height: 48px; background: var(--primary); box-shadow: 0 8px 24px rgba(249,115,22,.45); transition-delay: .08s; }
.floating-cta--phone:hover { transform: scale(1.1); background: var(--primary-dark); }
@keyframes pulseGreen { 0%,100%{box-shadow:0 8px 32px rgba(37,211,102,.5)} 50%{box-shadow:0 8px 48px rgba(37,211,102,.85)} }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%; background: var(--dark);
  color: white; border: none; cursor: pointer; font-size: 1.1rem;
  transition: var(--transition); opacity: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--primary); transform: translateY(-3px); }

/* ===== ANIMATIONS ===== */
.animate-fadeup { animation: fadeUp .8s ease forwards; }
.animate-fadeup:nth-child(2) { animation-delay: .15s; }
.animate-fadeup:nth-child(3) { animation-delay: .3s; }
.animate-fadeup:nth-child(4) { animation-delay: .45s; }
.animate-fadeup:nth-child(5) { animation-delay: .6s; }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== LOGO WHITE ===== */
.logo--white .logo__text { color: rgba(255,255,255,.85); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .destinations__grid { grid-template-columns: repeat(3,1fr); }
  .dest-card--large { grid-column: span 2; grid-row: span 1; }
  .dest-card--large .dest-card__img { min-height: 180px; }
  .services__grid { grid-template-columns: repeat(3,1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; position: fixed; inset: 0; top: var(--header-h);
    background: white; padding: 2rem; gap: .5rem; z-index: 999; align-items: flex-start;
  }
  .nav.open .nav__link { color: var(--text); width: 100%; padding: .9rem 1rem; font-size: 1.05rem; border-radius: 10px; }
  .burger { display: flex; padding: .5rem .25rem; }
  .header__cta { display: none; }
  .header__inner { gap: .5rem; }
  .header__actions { margin-left: auto; gap: .4rem; }
  .lang-switch__btn { padding: .4rem .55rem; font-size: .8rem; gap: .25rem; }
  .search-form__grid { grid-template-columns: 1fr 1fr; }
  .why-us__inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-us__badge-float { left: 0; }
  .booking-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact__grid { grid-template-columns: 1fr; }
  .offers__grid { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --header-h: 68px; }
  .logo__img { height: 56px; }
  .logo__fallback { font-size: 1rem; }
  .section { padding: 3.5rem 0; }
  .destinations__grid { grid-template-columns: 1fr 1fr; }
  .dest-card--large { grid-column: span 2; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .search-form__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.5rem; }
  .offers__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__stars-summary { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar__inner { justify-content: center; gap: 1rem; }
  .trust-item { font-size: .8rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}
