/* ====== CSS VARIABLES ====== */
:root {
  --color-primary: #1b4332;
  --color-primary-light: #2d6a4f;
  --color-primary-dark: #0d2e1f;
  --color-accent: #d4a843;
  --color-accent-light: #e9c46a;
  --color-accent-dark: #b8922e;
  --color-water: #2a9d8f;
  --color-water-light: #52b9ae;
  --color-bg: #fafaf8;
  --color-bg-alt: #f0efeb;
  --color-text: #1a1a2e;
  --color-text-light: #5a5a7a;
  --color-white: #ffffff;
  --color-dark: #0d1321;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ====== CONTAINER ====== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ====== SECTION ====== */
.section {
  padding: 100px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary-light);
  background: rgba(45, 106, 79, 0.08);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__desc {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 640px;
  margin: 0 auto;
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(27, 67, 50, 0.3);
}

.btn--primary:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 67, 50, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-primary-dark);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

/* ====== HEADER ====== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

.header.scrolled .logo__text,
.header.scrolled .nav__link,
.header.scrolled .lang-btn {
  color: var(--color-text);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  transition: var(--transition);
}

.header.scrolled .logo { color: var(--color-primary); }

.logo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  border-radius: 50%;
  color: var(--color-primary-dark);
  font-size: 1.1rem;
}

/* Nav */
.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: var(--transition);
}

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

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

.nav__link:hover { color: var(--color-white); }

.header.scrolled .nav__link { color: var(--color-text-light); }
.header.scrolled .nav__link:hover { color: var(--color-primary); }

/* Lang switch */
.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ====== WAVING FLAGS ====== */
.flags {
  display: flex;
  align-items: center;
  gap: 5px;
}

.flag {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
  display: block;
  flex-shrink: 0;
  transform-origin: left center;
  will-change: transform;
}

.flag--co {
  animation: waveColombia 4s cubic-bezier(0.45, 0.05, 0.35, 0.95) infinite;
}

.flag--ca {
  animation: waveCanada 4.4s cubic-bezier(0.45, 0.05, 0.35, 0.95) infinite;
}

@keyframes waveColombia {
  0%   { transform: perspective(40px) rotateY(-2deg) rotateZ(0.3deg) skewX(0.2deg); }
  12%  { transform: perspective(40px) rotateY(4deg)  rotateZ(-0.6deg) skewX(-0.4deg) scaleX(1.02); }
  25%  { transform: perspective(40px) rotateY(-3deg) rotateZ(0.8deg)  skewX(0.3deg); }
  37%  { transform: perspective(40px) rotateY(5deg)  rotateZ(-0.4deg) skewX(-0.5deg) scaleX(1.03); }
  50%  { transform: perspective(40px) rotateY(-1deg) rotateZ(0.5deg)  skewX(0.1deg); }
  62%  { transform: perspective(40px) rotateY(3deg)  rotateZ(-0.7deg) skewX(-0.3deg) scaleX(1.01); }
  75%  { transform: perspective(40px) rotateY(-4deg) rotateZ(0.6deg)  skewX(0.4deg); }
  87%  { transform: perspective(40px) rotateY(2deg)  rotateZ(-0.3deg) skewX(-0.2deg); }
  100% { transform: perspective(40px) rotateY(-2deg) rotateZ(0.3deg)  skewX(0.2deg); }
}

@keyframes waveCanada {
  0%   { transform: perspective(40px) rotateY(3deg)   rotateZ(-0.4deg) skewX(-0.3deg); }
  14%  { transform: perspective(40px) rotateY(-4deg)  rotateZ(0.7deg)  skewX(0.4deg)  scaleX(1.02); }
  28%  { transform: perspective(40px) rotateY(2deg)   rotateZ(-0.5deg) skewX(-0.2deg); }
  42%  { transform: perspective(40px) rotateY(-5deg)  rotateZ(0.6deg)  skewX(0.5deg)  scaleX(1.03); }
  57%  { transform: perspective(40px) rotateY(1deg)   rotateZ(-0.3deg) skewX(-0.1deg); }
  71%  { transform: perspective(40px) rotateY(-3deg)  rotateZ(0.8deg)  skewX(0.3deg)  scaleX(1.01); }
  85%  { transform: perspective(40px) rotateY(4deg)   rotateZ(-0.6deg) skewX(-0.4deg); }
  100% { transform: perspective(40px) rotateY(3deg)   rotateZ(-0.4deg) skewX(-0.3deg); }
}

.header.scrolled .flag { box-shadow: 0 1px 4px rgba(0,0,0,0.2); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 4px 6px;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.header.scrolled .lang-btn { color: var(--color-text-light); }

.lang-btn.active {
  color: var(--color-accent);
}

.lang-btn:hover { color: var(--color-white); }
.header.scrolled .lang-btn:hover { color: var(--color-primary); }
.header.scrolled .lang-btn.active { color: var(--color-accent); }

.lang-divider {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

.header.scrolled .lang-divider { color: rgba(0,0,0,0.2); }

/* Menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

.header.scrolled .menu-toggle span { background: var(--color-text); }

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ====== HERO ====== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 33, 16, 0.75) 0%, rgba(27, 67, 50, 0.55) 50%, rgba(13, 33, 16, 0.70) 100%);
  z-index: 1;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  animation: heroZoom 20s ease infinite;
}

.hero__slide.active { opacity: 1; }
.hero__slide:nth-child(2) { animation-delay: 7s; }
.hero__slide:nth-child(3) { animation-delay: 14s; }

@keyframes heroZoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero__subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero__desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.9s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero indicators */
.hero__indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}

.hero__indicators span {
  width: 40px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}

.hero__indicators span.active { background: var(--color-accent); width: 60px; }
.hero__indicators span:hover { background: rgba(255,255,255,0.6); }

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

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about__image:hover img { transform: scale(1.05); }

.about__content p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about__content strong { color: var(--color-primary); }

.about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid var(--color-bg-alt);
}

.stat {
  text-align: center;
}

.stat__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

.stat__label {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* ====== DESTINATIONS ====== */
.destinations {
  background: var(--color-bg);
}

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

.dest__card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.dest__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.dest__img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.dest__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.dest__card:hover .dest__img img { transform: scale(1.1); }

.dest__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.dest__body {
  padding: 28px;
}

.dest__body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 12px;
}

.dest__body p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.dest__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dest__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.dest__features li i {
  color: var(--color-water);
  width: 16px;
  font-size: 0.8rem;
}

/* ====== SERVICES ====== */
.services {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.services .section__tag { background: rgba(212, 168, 67, 0.15); color: var(--color-accent); }
.services .section__title { color: var(--color-white); }
.services .section__desc { color: rgba(255,255,255,0.7); }

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

.srv__card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: center;
}

.srv__card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.3);
}

.srv__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(212, 168, 67, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: var(--transition);
}

.srv__card:hover .srv__icon {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

.srv__card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.srv__card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ====== TESTIMONIALS ====== */
.testimonials {
  background: var(--color-bg);
}

.test__carousel {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
  overflow: hidden;
}

.test__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.test__card {
  min-width: 100%;
  padding: 40px;
  text-align: center;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.test__stars {
  color: var(--color-accent);
  font-size: 1.2rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.test__card p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 28px;
}

.test__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.test__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.test__author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-primary-dark);
}

.test__author span {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.test__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--color-primary);
  transition: var(--transition);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.test__btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.test__btn--prev { left: -22px; }
.test__btn--next { right: -22px; }

/* ====== FAQ ====== */
.faq { background: var(--color-bg-alt); }

.faq__grid {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq__item:hover { box-shadow: var(--shadow-md); }

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  text-align: left;
  transition: var(--transition);
}

.faq__question i {
  font-size: 0.85rem;
  color: var(--color-primary);
  transition: transform 0.35s;
  flex-shrink: 0;
}

.faq__question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

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

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s ease;
  padding: 0 24px;
}

.faq__answer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-light);
  padding-bottom: 20px;
}

/* ====== CONTACT ====== */
.contact {
  background: var(--color-white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 420px;
  justify-self: center;
}

.form__group--full {
  width: 100%;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.form__group {
  position: relative;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid var(--color-bg-alt);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: var(--transition);
  outline: none;
}

.form__group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235a5a7a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--color-primary);
  background: var(--color-white);
}

.form__group label {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  font-size: 0.95rem;
  color: var(--color-text-light);
  pointer-events: none;
  transition: var(--transition);
  background: transparent;
  padding: 0 4px;
}

.form__group textarea ~ label {
  top: 18px;
  transform: none;
}

.form__group input:not(:placeholder-shown) ~ label,
.form__group input:focus ~ label,
.form__group textarea:not(:placeholder-shown) ~ label,
.form__group textarea:focus ~ label {
  top: -10px;
  left: 12px;
  font-size: 0.75rem;
  color: var(--color-primary);
  background: var(--color-white);
}

.form__btn {
  grid-column: 1 / -1;
  justify-content: center;
}

/* Contact info */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 1px solid var(--color-bg-alt);
  box-shadow: var(--shadow-sm);
  max-width: 380px;
}

.contact__card:hover {
  border-color: var(--color-primary-light);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.contact__card i {
  font-size: 1.2rem;
  color: var(--color-primary);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 67, 50, 0.08);
  border-radius: 8px;
  flex-shrink: 0;
}

.contact__card > div {
  min-width: 0;
  flex: 1;
}

.contact__card h4 {
  font-size: 0.95rem;
  color: var(--color-primary-dark);
  margin-bottom: 2px;
  word-break: break-word;
}

.contact__link {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.contact__link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.contact__card p {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin: 0;
}

/* ====== MAP ====== */
.map iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
}

/* ====== FOOTER ====== */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer .logo { color: var(--color-white); margin-bottom: 20px; }

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer__links a:hover { color: var(--color-accent); padding-left: 4px; }

.footer__contact p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__contact i {
  width: 16px;
  color: var(--color-accent);
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer__bottom strong {
  color: rgba(255,255,255,0.7);
}

/* ====== BACK TO TOP ====== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary-light);
  transform: translateY(-3px);
}

/* ====== WHATSAPP FLOATING BUTTON ====== */
.whatsapp-btn {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 100;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background: #1ebe5a;
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-btn i {
  transition: transform 0.3s;
}

.whatsapp-btn:hover i {
  transform: scale(1.1);
}

/* Pulse animation */
.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: pulseWhatsapp 2s ease-out infinite;
}

@keyframes pulseWhatsapp {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

@media (max-width: 768px) {
  .whatsapp-btn {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    bottom: 80px;
    right: 20px;
  }
}

/* ====== REVEAL ON SCROLL ====== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ====== LOADER ====== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-primary-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader__leaf {
  width: 64px;
  height: 64px;
  animation: loaderPulse 1.2s ease-in-out infinite;
}
.loader__leaf svg { width: 100%; height: 100%; }
.loader__text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  margin-top: 16px;
  letter-spacing: 2px;
  opacity: 0;
  animation: loaderFade 1.2s ease 0.3s infinite alternate;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
@keyframes loaderFade {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}

/* ====== WAVE DIVIDERS ====== */
.wave {
  display: block;
  width: 100%;
  height: 60px;
  line-height: 0;
  overflow: hidden;
}
.wave svg { width: 100%; height: 100%; }
.wave--white svg path { fill: #ffffff; }
.wave--alt svg path { fill: var(--color-bg-alt); }
.wave--bg svg path { fill: var(--color-bg); }
.wave--dark svg path { fill: var(--color-dark); }

@media (max-width: 768px) {
  .wave { height: 36px; }
}

/* ====== LEAF DIVIDER ====== */
.leaf-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: -16px;
  margin-bottom: 32px;
}
.leaf-divider::before,
.leaf-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--color-bg-alt);
}
.leaf-divider svg {
  width: 28px;
  height: 28px;
  opacity: 0.4;
  flex-shrink: 0;
}

/* ====== TESTIMONIAL QUOTE MARKS ====== */
.test__card { position: relative; }
.test__card::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  left: 32px;
  font-size: 6rem;
  font-family: var(--font-heading);
  color: var(--color-primary);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}

/* ====== GLASSMORPHISM ON DEST CARDS ====== */
.dest__card:hover .dest__body {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ====== CUSTOM SCROLLBAR ====== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--color-bg-alt); }
::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-primary-light); }
* { scrollbar-width: thin; scrollbar-color: var(--color-primary) var(--color-bg-alt); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .hero__title { font-size: 3rem; }
  .section__title { font-size: 2rem; }
  .about__grid { gap: 40px; }
  .about__stats { grid-template-columns: repeat(2, 1fr); }
  .dest__grid { grid-template-columns: repeat(2, 1fr); }
  .srv__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-white);
    box-shadow: var(--shadow-xl);
    padding: 100px 32px 32px;
    transition: var(--transition);
    z-index: 999;
  }

  .nav.open { right: 0; }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .nav__link { color: var(--color-text); font-size: 1.1rem; }
  .nav__link:hover { color: var(--color-primary); }

  .menu-toggle { display: flex; }

  .hero__title { font-size: 2.3rem; }
  .hero__desc { font-size: 1rem; }

  .section__title { font-size: 1.8rem; }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about__image img { height: 300px; }
  .about__stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat__num { font-size: 1.6rem; }

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

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

  .contact__grid { grid-template-columns: 1fr; gap: 40px; }

  .faq__grid { max-width: 100%; }
  .faq__question {
    font-size: 0.9rem;
    padding: 14px 18px;
  }
  .faq__answer { padding: 0 18px; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .test__btn--prev { left: 4px; }
  .test__btn--next { right: 4px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.8rem; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; justify-content: center; }
}
