/* ============================================
   M&D TRAVELS — Design System v4.0
   Warm Travel Agency
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');

/* ------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------ */
:root {
  --navy-deep:     #0f1d32;
  --navy:          #1a365d;
  --indigo:        #5b4fcf;
  --indigo-light:  #8b7fd4;
  --amber:         #d4940a;
  --amber-deep:    #a67308;
  --amber-light:   #e8b84a;
  --teal:          #2a7a6e;
  --teal-light:    #3a9d8f;

  --surface:       #fefdfb;
  --surface-alt:   #f8f6f1;
  --surface-mid:   #e8e4dc;
  --surface-soft:  #f2efe8;
  --text-primary:  #1c1917;
  --text-secondary:#57534e;
  --text-muted:    #a8a29e;
  --text-inverse:  #fefdfb;

  --success:       #16a34a;
  --error:         #dc2626;
  --warning:       #d4940a;

  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  --shadow-xs:  0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:  0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
  --shadow-xl:  0 20px 50px rgba(0,0,0,0.1);

  --font-primary: 'Outfit', sans-serif;
  --font-display: 'DM Serif Display', serif;
  --header-height: 72px;
  --max-width: 1120px;
  --content-padding: var(--space-md);
}

[data-theme="dark"] {
  --surface:       #111827;
  --surface-alt:   #1a2332;
  --surface-mid:   #2d3748;
  --surface-soft:  #151e2d;
  --text-primary:  #f5f0e8;
  --text-secondary:#a8a29e;
  --text-muted:    #6b7280;
  --text-inverse:  #111827;
  --shadow-xs:  0 1px 2px rgba(0,0,0,0.3);
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 6px rgba(0,0,0,0.4);
  --shadow-lg:  0 10px 25px rgba(0,0,0,0.5);
  --shadow-xl:  0 20px 50px rgba(0,0,0,0.6);
}

/* Loader colors */
:root {
  --loader-water: #3344c1;
  --loader-land: #7CC133;
}

[data-theme="dark"] {
  --loader-water: #3344c1;
  --loader-land: #7CC133;
}

/* ------------------------------------------
   1.5 PAGE LOADER
   ------------------------------------------ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

.earth {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* From Uiverse.io by Novaxlo */
.earth-loader {
  --watercolor: #3344c1;
  --landcolor: #7cc133;
  width: 7.5em;
  height: 7.5em;
  background-color: var(--watercolor);
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  box-shadow:
    inset 0em 0.5em rgb(255, 255, 255, 0.25),
    inset 0em -0.5em rgb(0, 0, 0, 0.25);
  border: solid 0.15em white;
  animation: startround 1s;
  animation-iteration-count: 1;
}

.earth-loader svg path {
  fill: #7CC133;
}

.earth-loader svg:nth-child(1) {
  position: absolute;
  bottom: -2em;
  width: 7em;
  height: auto;
  animation: round1 5s infinite linear 0.75s;
}

.earth-loader svg:nth-child(2) {
  position: absolute;
  top: -3em;
  width: 7em;
  height: auto;
  animation: round1 5s infinite linear;
}

.earth-loader svg:nth-child(3) {
  position: absolute;
  top: -2.5em;
  width: 7em;
  height: auto;
  animation: round2 5s infinite linear;
}

.earth-loader svg:nth-child(4) {
  position: absolute;
  bottom: -2.2em;
  width: 7em;
  height: auto;
  animation: round2 5s infinite linear 0.75s;
}

.loader-text {
  color: #1a365d;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

@keyframes startround {
  0% {
    box-shadow: none;
  }
  100% {
    box-shadow:
      inset 0em 0.5em rgb(255, 255, 255, 0.25),
      inset 0em -0.5em rgb(0, 0, 0, 0.25);
  }
}

@keyframes round1 {
  0% {
    left: -2em;
    opacity: 100%;
    transform: skewX(0deg) rotate(0deg);
  }
  30% {
    left: -6em;
    opacity: 100%;
    transform: skewX(-25deg) rotate(25deg);
  }
  31% {
    left: -6em;
    opacity: 0%;
    transform: skewX(-25deg) rotate(25deg);
  }
  35% {
    left: 7em;
    opacity: 0%;
    transform: skewX(25deg) rotate(-25deg);
  }
  45% {
    left: 7em;
    opacity: 100%;
    transform: skewX(25deg) rotate(-25deg);
  }
  100% {
    left: -2em;
    opacity: 100%;
    transform: skewX(0deg) rotate(0deg);
  }
}

@keyframes round2 {
  0% {
    left: 5em;
    opacity: 100%;
    transform: skewX(0deg) rotate(0deg);
  }
  75% {
    left: -7em;
    opacity: 100%;
    transform: skewX(-25deg) rotate(25deg);
  }
  76% {
    left: -7em;
    opacity: 0%;
    transform: skewX(-25deg) rotate(25deg);
  }
  77% {
    left: 8em;
    opacity: 0%;
    transform: skewX(25deg) rotate(-25deg);
  }
  80% {
    left: 8em;
    opacity: 100%;
    transform: skewX(25deg) rotate(-25deg);
  }
  100% {
    left: 5em;
    opacity: 100%;
    transform: skewX(0deg) rotate(0deg);
  }
}

/* ------------------------------------------
   2. RESET & BASE
   ------------------------------------------ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--text-primary);
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

ul { list-style: none; }

/* ------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.2;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--indigo);
  background: rgba(79,70,229,0.06);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.section-label-light {
  background: rgba(255,255,255,0.1);
  color: var(--amber);
}

.page-hero {
  background: var(--navy);
  color: var(--text-inverse);
  padding: 6rem 0 3rem;
  text-align: center;
  position: relative;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
  color: var(--text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-logo-icon {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.page-hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.85;
}

.page-hero-dark {
  background: var(--navy-deep);
}

.page-hero-min {
  min-height: 40vh;
}

.page-hero-inner {
  padding: var(--space-3xl) 0;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.6;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-3xl);
}

/* ------------------------------------------
   4. LAYOUT
   ------------------------------------------ */
.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-soft {
  background: var(--surface-soft);
}

/* ------------------------------------------
   5. BUTTONS
   ------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 13px 28px;
  border-radius: 6px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--navy);
  color: var(--text-inverse);
  box-shadow: 0 2px 8px rgba(26,54,93,0.25);
}
.btn-primary:hover {
  background: var(--navy-deep);
  box-shadow: 0 4px 16px rgba(26,54,93,0.35);
}

/* Boton Cotizar — Uiverse.io btn-53 */
.btn-53,
.btn-53 *,
.btn-53 :after,
.btn-53 :before,
.btn-53:after,
.btn-53:before {
  border: 0 solid;
  box-sizing: border-box;
}
.btn-53 {
  -webkit-tap-highlight-color: transparent;
  background-color: var(--navy);
  color: #fff;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 100%;
  line-height: 1.5;
  padding: 0;
  border: 1px solid var(--navy);
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  overflow: hidden;
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-53 .original {
  background: #fff;
  color: var(--navy);
  display: grid;
  inset: 0;
  place-content: center;
  position: absolute;
  transition: transform 0.3s cubic-bezier(0.87, 0, 0.13, 1);
  padding: 1.2rem 3rem;
  font-weight: 900;
  font-size: 0.88rem;
}
.btn-53:hover .original {
  transform: translateY(100%);
}
.btn-53 .letters {
  display: inline-flex;
  padding: 1.2rem 3rem;
}
.btn-53 span {
  opacity: 0;
  transform: translateY(-15px);
  transition: transform 0.3s cubic-bezier(0.87, 0, 0.13, 1), opacity 0.3s;
}
.btn-53 span:nth-child(2n) {
  transform: translateY(15px);
}
.btn-53:hover span {
  opacity: 1;
  transform: translateY(0);
}
.btn-53:hover span:nth-child(2) { transition-delay: 0.05s; }
.btn-53:hover span:nth-child(3) { transition-delay: 0.1s; }
.btn-53:hover span:nth-child(4) { transition-delay: 0.15s; }
.btn-53:hover span:nth-child(5) { transition-delay: 0.2s; }
.btn-53:hover span:nth-child(6) { transition-delay: 0.25s; }
.btn-53:hover span:nth-child(7) { transition-delay: 0.3s; }
.btn-53:hover span:nth-child(8) { transition-delay: 0.35s; }
.btn-53:hover span:nth-child(9) { transition-delay: 0.4s; }
.btn-53:hover span:nth-child(10) { transition-delay: 0.45s; }
.btn-53:hover span:nth-child(11) { transition-delay: 0.5s; }
.btn-53:hover span:nth-child(12) { transition-delay: 0.55s; }
.btn-53:hover span:nth-child(13) { transition-delay: 0.6s; }

/* Boton Header Cotizar — Uiverse.io Creatlydev */
.button {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--clr);
  color: #fff;
  border-radius: 10rem;
  font-weight: 600;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  padding: 0.55rem 1.2rem;
  padding-left: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}
.button__icon-wrapper {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  color: var(--clr);
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.button:hover {
  background-color: #000;
}
.button:hover .button__icon-wrapper {
  color: #000;
}
.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}
.button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}
.button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--surface-mid);
  color: var(--text-primary);
}
.btn-secondary:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 8px 16px;
}
.btn-ghost:hover {
  background: var(--surface-alt);
  color: var(--text-primary);
}

.btn-hero-ghost {
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: white;
}

.btn-amber {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 2px 8px rgba(212,148,10,0.25);
}
.btn-amber:hover {
  background: var(--amber-deep);
  box-shadow: 0 4px 16px rgba(212,148,10,0.35);
}

.btn-wpp {
  background: #25D366;
  color: white;
}
.btn-wpp:hover {
  background: #1da851;
}

.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 6px 14px; font-size: 0.78rem; }
.btn-block { width: 100%; }

/* ------------------------------------------
   6. CARDS
   ------------------------------------------ */
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--surface-mid);
  overflow: hidden;
  transition: all 0.25s ease;
}
.card:hover {
  box-shadow: var(--shadow-md);
}

/* ------------------------------------------
   7. FORMS
   ------------------------------------------ */
.form-group {
  position: relative;
  margin-bottom: var(--space-lg);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  padding-top: 22px;
  border: 1.5px solid var(--surface-mid);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  background: var(--surface);
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.08);
}

.form-group label {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.2s ease;
  background: var(--surface);
  padding: 0 4px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 12px;
  font-size: 0.75rem;
  color: var(--indigo);
  font-weight: 600;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: transparent;
}

.form-group.is-valid input { border-color: var(--success); }
.form-group.is-error input { border-color: var(--error); }

.error-message {
  font-size: 0.8rem;
  color: var(--error);
  margin-top: 4px;
  min-height: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

/* ------------------------------------------
   8. HEADER & NAVIGATION
   ------------------------------------------ */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(254,253,251,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}

[data-theme="dark"] header {
  background: rgba(17,24,39,0.88);
  border-bottom-color: rgba(255,255,255,0.05);
}

header.scrolled {
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
  text-decoration: none;
}

.logo-image { height: 38px; width: auto; transition: opacity 0.2s; }
.logo:hover .logo-image { opacity: 0.85; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-left: var(--space-sm);
  line-height: 1;
}
.logo-text span {
  color: var(--indigo);
}

[data-theme="dark"] .logo-text {
  color: var(--text-inverse);
}
[data-theme="dark"] .logo-text span {
  color: var(--indigo);
}

[data-theme="dark"] .logo-image {
  filter: brightness(1.15);
}

.header-logo-wrap {
  display: flex;
  align-items: center;
}
[data-theme="dark"] .header-logo-wrap {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 50px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--text-inverse);
  background: var(--indigo);
  letter-spacing: 2px;
  box-shadow: 0 4px 16px rgba(79,70,229,0.25);
}

.nav-link.active {
  color: var(--text-inverse);
  background: var(--indigo);
  letter-spacing: 1.5px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Theme Toggle */
.theme-toggle {
  background: var(--surface-alt);
  border: 1px solid var(--surface-mid);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.theme-toggle:hover {
  color: var(--indigo);
  border-color: var(--indigo);
}
.theme-toggle .fa-sun { display: none; }
.theme-toggle .fa-moon { display: block; }
[data-theme="dark"] .theme-toggle .fa-sun { display: block; }
[data-theme="dark"] .theme-toggle .fa-moon { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  height: 100dvh;
  background: var(--surface);
  z-index: 1050;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.active { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--surface-mid);
}
.mobile-menu-header .logo { font-size: 1rem; }
.mobile-menu-header .logo img { height: 36px; width: auto; }
[data-theme="dark"] .mobile-menu-header .logo img { filter: invert(1); }

.mobile-menu-close {
  background: var(--surface-alt);
  border: 1px solid var(--surface-mid);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.mobile-nav { flex: 1; padding: var(--space-sm) 0; }

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 14px var(--space-lg);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  margin: 2px var(--space-md);
  transition: all 0.3s ease;
}
.mobile-nav-link i {
  width: 20px;
  text-align: center;
  color: var(--navy);
  font-size: 1rem;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--indigo);
  color: var(--text-inverse);
  letter-spacing: 1.5px;
}
.mobile-nav-link:hover i,
.mobile-nav-link.active i {
  color: var(--text-inverse);
}

.mobile-menu-footer {
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--surface-mid);
  margin-top: auto;
}
.mmf-line {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 0;
}
.mmf-line i {
  width: 14px;
  text-align: center;
  font-size: 0.65rem;
  color: var(--indigo);
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--surface-mid);
  padding: 8px 12px;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
  z-index: 999;
  gap: 6px;
}
.mobile-bottom-bar .btn {
  padding: 8px 10px;
  font-size: 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 8px;
}

/* ------------------------------------------
   9. HERO
   ------------------------------------------ */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--text-inverse);
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-bg-img.active { opacity: 0.35; }

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,24,37,0.92) 0%, rgba(26,54,93,0.8) 50%, rgba(79,70,229,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--space-3xl) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-text {
  animation: heroFadeUp 0.8s ease 0.1s both;
}

.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  background: rgba(245,158,11,0.12);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
  color: var(--text-inverse);
}

.hero-title span {
  color: var(--amber);
}

.hero-sub {
  font-size: 1.05rem;
  opacity: 0.8;
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  animation: heroFadeUp 0.8s ease 0.3s both;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  animation: heroFadeUp 0.8s ease 0.5s both;
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  animation: heroFadeUp 0.8s ease 0.7s both;
}

.hero-stat { text-align: center; }

.hero-stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--amber);
  display: block;
}

.hero-stat-label {
  font-size: 0.78rem;
  opacity: 0.65;
  margin-top: 2px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroFadeUp 0.8s ease 0.3s both;
}

.hero-logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------------
   10. DESTINATIONS
   ------------------------------------------ */
.destinations-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.destinations-tabs {
  display: flex;
  background: var(--surface-soft);
  padding: 4px;
  border-radius: var(--radius-full);
  gap: 4px;
}

.dest-tab {
  padding: 10px 28px;
  border: none;
  background: transparent;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.dest-tab:hover {
  color: var(--text-primary);
}
.dest-tab.active {
  background: var(--indigo);
  color: white;
  box-shadow: 0 2px 8px rgba(79,70,229,0.3);
}
.dest-tab:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 2px;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
  opacity: 0.65;
  font-size: 0.82rem;
}
.trust-bar i { margin-right: 6px; }

.destination-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--surface-mid);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  cursor: pointer;
}
.destination-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  transform: translateY(-6px);
}

.badge-legend {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}
.badge-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  background: var(--surface-alt);
  padding: 6px 14px;
  border-radius: 999px;
}
.badge-legend i {
  color: var(--indigo);
  font-size: 0.85rem;
}

.dest-card-image {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: var(--surface-alt);
}
.dest-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.destination-card:hover .dest-card-image img {
  transform: scale(1.04);
}

.dest-card-badges {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  display: flex;
  gap: 4px;
}
.dest-card-badge {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--navy);
}

.dest-card-tag {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--indigo);
  color: white;
}

.dest-card-body { padding: var(--space-lg); }
.dest-card-body h3 { font-size: 1.1rem; margin-bottom: 4px; }
.dest-card-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.dest-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dest-card-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--amber-deep);
}

.dest-card-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--indigo);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.dest-card-cta:hover { gap: 8px; }

/* Filter chips */
.filter-chips {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.filter-chip {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--surface-mid);
  background: var(--surface);
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.01em;
}
.filter-chip:hover {
  border-color: var(--indigo-light);
  color: var(--indigo);
  background: rgba(79,70,229,0.04);
}
.filter-chip.active {
  border-color: var(--indigo);
  background: var(--indigo);
  color: white;
  box-shadow: 0 2px 8px rgba(79,70,229,0.25);
}
.filter-chip:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 2px;
}

/* ------------------------------------------
   11. EXPERIENCES / REGIONAL
   ------------------------------------------ */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.exp-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--surface-mid);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.exp-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.exp-image {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.exp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.exp-card:hover .exp-image img { transform: scale(1.04); }

.exp-icon {
  position: absolute;
  bottom: -22px;
  left: var(--space-lg);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--indigo);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}

.exp-body {
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.exp-body h3 { margin-bottom: var(--space-sm); font-size: 1.05rem; }

.exp-list { flex: 1; margin-bottom: var(--space-lg); }
.exp-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: var(--space-xs);
}
.exp-list li i { color: var(--indigo); font-size: 0.7rem; }

.exp-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  margin: 0 calc(-1 * var(--space-lg)) calc(-1 * var(--space-lg));
  background: var(--indigo);
  color: white;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s;
}
.exp-cta:hover { background: #4338ca; }

/* ------------------------------------------
   12. PROMOTIONS
   ------------------------------------------ */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.promos-placeholder {
  border: 2px dashed var(--surface-mid);
  border-radius: var(--radius-lg);
  padding: var(--space-4xl) var(--space-xl);
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  background: var(--surface-alt);
}
.promos-placeholder i {
  font-size: 3rem;
  color: var(--text-muted);
  opacity: 0.5;
}
.promos-placeholder h3 {
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-weight: 600;
}
.promos-placeholder p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 360px;
}

.promo-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--surface-mid);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.promo-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  transform: translateY(-6px);
}

.promo-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background: var(--surface-alt);
}
.promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.promo-card:hover .promo-image img { transform: scale(1.04); }
.promo-image--vertical {
  aspect-ratio: 3/4;
  background: #fff;
}
.promo-image--vertical img {
  object-fit: contain;
}
.promos-grid--single {
  max-width: 400px;
  margin: 0 auto;
}

.promo-badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: white;
}
.promo-badge-new { background: var(--success); }
.promo-badge-hot { background: var(--amber); }
.promo-badge-special { background: var(--error); }

.promo-body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.promo-body h3 { font-size: 1.1rem; margin-bottom: 4px; }

.promo-tagline {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.promo-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.promo-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  background: var(--surface-alt);
  border-radius: var(--radius-sm);
}
.promo-option-label { font-size: 0.82rem; color: var(--text-secondary); }
.promo-option-price { font-size: 1rem; font-weight: 700; color: var(--navy); }
.promo-option-dates { font-size: 0.72rem; color: var(--text-muted); }

.promo-includes {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.promo-includes span {
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: var(--surface-alt);
  border-radius: var(--radius-full);
}
.promo-includes i { color: var(--indigo); font-size: 0.7rem; }

.promo-cta { margin-top: auto; }

/* Countdown */
.countdown-container { text-align: center; margin-bottom: var(--space-xl); }
.countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.time-box {
  background: var(--surface-alt);
  border: 1px solid var(--surface-mid);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  min-width: 56px;
  text-align: center;
}
.time-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.time-unit {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ------------------------------------------
   12.5 CUSTOM OFFERS
   ------------------------------------------ */
.custom-offers {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--space-3xl);
  align-items: center;
}

.custom-offers-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(79,70,229,0.08);
  color: var(--indigo);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.custom-offers-content .section-title {
  text-align: left;
}

.custom-offers-content .section-subtitle {
  text-align: left;
  margin-bottom: var(--space-xl);
}

.custom-offers-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.custom-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.custom-feature i {
  color: var(--success);
  font-size: 0.8rem;
}

.custom-offers-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-offers-logo {
  width: 100%;
  max-width: 240px;
  height: auto;
  opacity: 0.9;
}

/* ------------------------------------------
   13. BUDGET RECOMMENDER
   ------------------------------------------ */
.budget-section {
  background: var(--navy-deep);
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
}

.budget-content {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}

.budget-content h2 { color: var(--text-inverse); }
.budget-content .section-subtitle {
  color: rgba(255,255,255,0.7);
  margin: 0 auto var(--space-xl);
}

.budget-form {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.budget-form input {
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.15);
  width: 60%;
  max-width: 340px;
  font-size: 0.95rem;
  font-family: var(--font-primary);
  background: rgba(255,255,255,0.08);
  color: var(--text-inverse);
  transition: border-color 0.2s;
}
.budget-form input::placeholder { color: rgba(255,255,255,0.4); }
.budget-form input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.3);
}

.budget-result { margin-top: var(--space-xl); }

.budget-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.budget-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: left;
  transition: all 0.2s ease;
}
.budget-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.budget-card h4 { color: white; font-size: 1.05rem; margin-bottom: 4px; }
.budget-card .budget-type {
  font-size: 0.72rem;
  color: var(--amber);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.budget-card .budget-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin: var(--space-sm) 0;
}
.budget-card .budget-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--amber-light);
}
.budget-card .budget-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-sm);
  padding: 8px 14px;
  background: #25D366;
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s;
}
.budget-card .budget-cta:hover { background: #1da851; }

/* Skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--surface-mid) 25%, #e8ecf1 50%, var(--surface-mid) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}
[data-theme="dark"] .skeleton {
  background: linear-gradient(90deg, #1e293b 25%, #334155 50%, #1e293b 75%);
  background-size: 200% 100%;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-card { height: 180px; }

/* ------------------------------------------
   14. ABOUT / STORY
   ------------------------------------------ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.about-image-caption {
  padding: var(--space-sm) var(--space-md);
  background: var(--surface);
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid var(--surface-mid);
}
.about-image-caption i { color: var(--indigo); }

.about-text p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.about-highlight {
  background: rgba(79,70,229,0.04);
  border-left: 3px solid var(--indigo);
  padding: var(--space-lg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-weight: 500;
  color: var(--indigo);
  margin: var(--space-lg) 0;
}

.about-founders {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.founder-card {
  text-align: center;
  padding: var(--space-lg) var(--space-xl);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-mid);
  flex: 1 1 160px;
  transition: all 0.2s;
}
.founder-card:hover {
  box-shadow: var(--shadow-sm);
}

.founder-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(79,70,229,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  color: var(--indigo);
  font-size: 1.1rem;
}
.founder-card h4 { font-size: 0.9rem; margin-bottom: 2px; }
.founder-card p { font-size: 0.78rem; color: var(--text-muted); margin: 0; }

/* Mission & Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.mv-card {
  background: var(--surface);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-mid);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.mv-card.mission::before { background: var(--amber); }
.mv-card.vision::before { background: var(--indigo); }

.mv-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 1.3rem;
}
.mv-card.mission .mv-icon { background: rgba(245,158,11,0.08); color: var(--amber); }
.mv-card.vision .mv-icon { background: rgba(79,70,229,0.08); color: var(--indigo); }
.mv-card h3 { margin-bottom: var(--space-md); }
.mv-card p { color: var(--text-secondary); font-style: italic; line-height: 1.6; }

/* ------------------------------------------
   15. STATS COUNTERS
   ------------------------------------------ */
.stats-section {
  background: var(--navy-deep);
  color: var(--text-inverse);
  padding: var(--space-3xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.stat-icon {
  font-size: 1.8rem;
  color: var(--amber);
  margin-bottom: var(--space-md);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: var(--space-xs);
}
.stat-number .suffix { font-size: 1.3rem; color: var(--amber); }
.stat-label { font-size: 0.88rem; opacity: 0.7; }

/* ------------------------------------------
   16. BENEFITS
   ------------------------------------------ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}

.benefit-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-mid);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.benefit-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(79,70,229,0.06);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto var(--space-md);
}

.benefit-card h3 { font-size: 1rem; margin-bottom: var(--space-sm); }
.benefit-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }

/* ------------------------------------------
   17. FAQ
   ------------------------------------------ */
.faq-container { max-width: 680px; margin: 0 auto; }

.faq-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  border: 1px solid var(--surface-mid);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--space-lg);
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question:hover { color: var(--indigo); }
.faq-question i {
  transition: transform 0.3s ease;
  color: var(--indigo);
  font-size: 0.8rem;
}
.faq-question.active i { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 var(--space-lg);
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: var(--space-lg);
}
.faq-answer p { color: var(--text-secondary); line-height: 1.6; }

/* ------------------------------------------
   18. BLOG / NEWS
   ------------------------------------------ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.news-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--surface-mid);
  transition: all 0.2s;
}
.news-card:hover { box-shadow: var(--shadow-sm); }

.news-image { height: 180px; overflow: hidden; }
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.news-card:hover .news-image img { transform: scale(1.04); }

.news-body { padding: var(--space-lg); }
.news-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--space-sm);
}
.news-body h3 { font-size: 1.05rem; margin-bottom: var(--space-sm); line-height: 1.4; }
.news-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-link {
  font-weight: 600;
  color: var(--indigo);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.news-link:hover { gap: 10px; }

/* ------------------------------------------
   19. CONTACT / FORM
   ------------------------------------------ */
.contact-section {
  background: var(--surface);
  color: var(--text);
}
.contact-section .section-title { color: var(--text); }

.contact-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-info {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-item i { font-size: 1.1rem; color: var(--amber); width: 22px; text-align: center; }
.contact-info-item strong { display: block; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 2px; }
.contact-info-item p { font-size: 0.92rem; }

.contact-form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
}
.contact-form-card .form-group label { background: var(--surface); }
.contact-form-card .form-group input,
.contact-form-card .form-group select,
.contact-form-card .form-group textarea { background: var(--surface); }

.submit-btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  background: var(--indigo);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-primary);
  transition: background 0.2s;
}
.submit-btn:hover { background: #4338ca; }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.submit-btn-success { background: var(--success) !important; }

.success-message {
  display: none;
  text-align: center;
  padding: var(--space-2xl);
}
.success-message.show {
  display: block;
  animation: t-toast-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.success-message i { font-size: 3rem; color: var(--success); margin-bottom: var(--space-md); }
.success-message h3 { color: var(--text-primary); margin-bottom: var(--space-sm); }
.success-message p { color: var(--text-secondary); }

/* ------------------------------------------
   20. FOOTER
   ------------------------------------------ */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.8);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .logo { color: white; margin-bottom: var(--space-md); }
.footer-brand .logo-text span { color: var(--amber); }
.footer-brand p { font-size: 0.88rem; opacity: 0.6; line-height: 1.6; margin-bottom: var(--space-lg); }

.footer-social { margin-top: var(--space-md); }

.social-icons {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 12px;
}

.social-icons .icon-content {
  position: relative;
}

.social-icons .icon-content .tooltip {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  background: rgba(0,0,0,0.8);
}

.social-icons .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -45px;
}

.social-icons .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  transition: all 0.3s ease-in-out;
}

.social-icons .icon-content a:hover {
  color: white;
  box-shadow: 3px 2px 20px rgba(0,0,0,0.2);
}

.social-icons .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
}

.social-icons .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}

.social-icons .icon-content a:hover .filled {
  height: 100%;
}

.social-icons .icon-content a[data-social="whatsapp"] .filled,
.social-icons .icon-content a[data-social="whatsapp"]:hover {
  background-color: #25D366;
}

.social-icons .icon-content a[data-social="facebook"] .filled,
.social-icons .icon-content a[data-social="facebook"]:hover {
  background-color: #1877F2;
}

.social-icons .icon-content a[data-social="instagram"] .filled,
.social-icons .icon-content a[data-social="instagram"]:hover {
  background: linear-gradient(45deg, #405de6, #5b51db, #b33ab4, #c135b4, #e1306c, #fd1f1f);
}

.footer-col h4 {
  color: white;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-lg);
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  opacity: 0.6;
  margin-bottom: var(--space-sm);
}
.footer-col a:hover { opacity: 1; color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.82rem;
  opacity: 0.5;
}
.footer-bottom a { color: rgba(255,255,255,0.8); text-decoration: underline; }

/* ------------------------------------------
   21. WHATSAPP FAB
   ------------------------------------------ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #00d757;
  color: white;
  border: none;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.199);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 998;
  transition: all 0.3s ease;
  overflow: hidden;
  text-decoration: none;
}

.whatsapp-sign {
  width: 100%;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-sign svg {
  width: 26px;
}

.whatsapp-sign svg path {
  fill: white;
}

.whatsapp-text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-primary);
  transition-duration: 0.3s;
  white-space: nowrap;
}

.whatsapp-fab:hover {
  width: 140px;
  border-radius: 40px;
  transition-duration: 0.3s;
  box-shadow: 0 6px 20px rgba(0,215,87,0.35);
}

.whatsapp-fab:hover .whatsapp-sign {
  width: 30%;
  transition-duration: 0.3s;
  padding-left: 10px;
}

.whatsapp-fab:hover .whatsapp-text {
  opacity: 1;
  width: 70%;
  transition-duration: 0.3s;
  padding-right: 10px;
}

.whatsapp-fab:active {
  transform: translate(2px, 2px);
}

/* Converter FAB - Uiverse.io style */
.converter-fab {
  cursor: pointer;
  border: none;
  background: var(--indigo);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: visible;
  position: fixed;
  bottom: 88px;
  right: 24px;
  left: auto;
  display: grid;
  place-content: center;
  transition: background 300ms, transform 200ms;
  font-weight: 600;
  z-index: 998;
  box-shadow: 0 4px 12px rgba(79,70,229,0.3);
}

.converter-fab-text {
  position: absolute;
  inset: 0;
  animation: converter-text-rotation 8s linear infinite;
  margin: 0;
  padding: 0;
}

.converter-fab-text > span {
  position: absolute;
  transform: rotate(calc(19deg * var(--index)));
  inset: 2px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.converter-fab-circle {
  position: relative;
  width: 34px;
  height: 34px;
  overflow: hidden;
  background: #fff;
  color: var(--indigo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.converter-fab-icon--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.converter-fab:hover {
  background: var(--navy-deep);
  transform: scale(1.05);
}

.converter-fab:hover .converter-fab-icon {
  color: var(--navy-deep);
}

.converter-fab:hover .converter-fab-icon:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.converter-fab:hover .converter-fab-icon--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

@keyframes converter-text-rotation {
  to {
    rotate: 360deg;
  }
}

/* ------------------------------------------
   22. MODALS
   ------------------------------------------ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-overlay.active { display: flex; }

.modal-content {
  background: var(--surface);
  border-radius: var(--radius-xl);
  max-width: 880px;
  width: 95%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  z-index: 10;
}
.modal-close:hover { background: var(--error); }

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 90vh;
}

.modal-image {
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: zoom-in;
}

.modal-info { padding: var(--space-2xl); overflow-y: auto; }

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-detail .modal-image img { object-fit: cover; height: 100%; }

.detail-title { font-size: 1.5rem; font-weight: 700; margin-bottom: var(--space-sm); }
.detail-sub { color: var(--text-secondary); font-size: 0.92rem; margin-bottom: var(--space-lg); }
.detail-price { font-size: 1.3rem; font-weight: 700; color: var(--indigo); margin-bottom: var(--space-lg); display: block; }
.detail-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: var(--space-sm); }
.detail-desc { color: var(--text-secondary); line-height: 1.6; margin-bottom: var(--space-xl); }
.detail-cta { width: 100%; padding: 14px; font-size: 1rem; }

.detail-list { list-style: none; margin-bottom: var(--space-lg); }
.detail-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 0;
  border-bottom: 1px solid var(--surface-mid);
  color: var(--text-secondary);
}
.detail-list li:last-child { border-bottom: none; }
.detail-list li i { color: var(--success); width: 18px; text-align: center; }

/* Detail Modal */
.detail-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}
.detail-modal.active { display: flex; }
.detail-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}
.detail-modal .modal-body {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-xl);
  max-width: 880px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 1;
  animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.detail-modal .modal-body > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  min-height: 400px;
}
.detail-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--surface);
  color: var(--text-primary);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: var(--shadow-md);
  transition: background 0.2s;
}
.detail-close:hover { background: var(--error); color: #fff; }
.detail-info { padding: var(--space-2xl); overflow-y: auto; }

/* Promo Modal */
.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}
.promo-modal.active { display: flex; }
.promo-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}
.promo-modal-body {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-xl);
  max-width: 880px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.promo-modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  border: none;
  color: white;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
}
.promo-modal-close:hover { background: var(--error); }
.promo-modal-image-wrap {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: #fff;
  display: flex;
  justify-content: center;
}
.promo-modal-image-wrap img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
}
.promo-modal-content { padding: var(--space-2xl); }

/* Converter Modal */
.converter-content { max-width: 420px; border-radius: var(--radius-xl); overflow: hidden; }
.converter-header {
  background: var(--indigo);
  color: white;
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.converter-header-icon { font-size: 1.3rem; opacity: 0.8; }
.converter-header div { flex: 1; }
.converter-header h3 { color: white; font-size: 1rem; margin: 0; }
.converter-header p { font-size: 0.72rem; opacity: 0.6; margin: 2px 0 0; }
.converter-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}
.converter-close:hover { background: rgba(255,255,255,0.12); }

.converter-body { padding: var(--space-xl); }
.converter-row { display: flex; flex-direction: column; gap: var(--space-md); margin-bottom: var(--space-lg); }
.converter-field { width: 100%; }
.converter-field label { display: block; font-size: 0.78rem; color: var(--text-secondary); margin-bottom: 6px; font-weight: 600; }
.converter-field .input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--surface-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
  background: var(--surface);
}
.converter-field .input-wrap:focus-within { border-color: var(--indigo); }
.converter-field .input-wrap .currency-code {
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-left: 1px solid var(--surface-mid);
  order: 1;
}
.converter-field input,
.converter-field select {
  flex: 1;
  padding: 10px 14px;
  border: none;
  font-family: var(--font-primary);
  font-size: 0.92rem;
  background: transparent;
  color: var(--text-primary);
  outline: none;
}
.converter-arrow { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin: -4px 0; }
.converter-result-box {
  background: var(--surface-alt);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  min-height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-md);
}
.converter-result-box .result-amount { font-size: 1.5rem; font-weight: 800; color: var(--indigo); }
.converter-result-box .result-label { font-size: 0.82rem; color: var(--text-muted); }
.converter-result-box .result-placeholder { font-size: 0.82rem; color: var(--text-muted); }

/* Full Image Modal */
.full-img-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
}
.full-img-modal.active { display: flex; }
.full-img-modal img {
  max-width: 95%;
  max-height: 95vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  cursor: zoom-out;
}
.full-img-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.full-img-close:hover { background: var(--error); }

/* ------------------------------------------
   23. CTA CENTER
   ------------------------------------------ */
.cta-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

/* ------------------------------------------
   24. MICRO-TRANSITIONS (Transitions.dev)
   ------------------------------------------ */

/* 24.1 Error Shake */
@keyframes t-shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
  20%, 40%, 60%, 80% { transform: translateX(4px); }
}
.t-shake { animation: t-shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97); }

/* 24.2 Spinner → Check Morph */
@keyframes t-spinner {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes t-check-draw {
  0% { stroke-dashoffset: 24; }
  100% { stroke-dashoffset: 0; }
}
.t-spinner { animation: t-spinner 0.8s linear infinite; }
.t-check-morph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.t-check-morph svg {
  width: 20px;
  height: 20px;
}
.t-check-morph svg path {
  stroke-dasharray: 24;
  stroke-dashoffset: 0;
  animation: t-check-draw 0.4s ease-out forwards;
}

/* 24.3 Card Hover Lift */
.t-card-lift {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.t-card-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

/* 24.4 Number Pop-in */
@keyframes t-pop-in {
  0% { opacity: 0; transform: scale(0.6) translateY(8px); filter: blur(4px); }
  60% { opacity: 1; transform: scale(1.05) translateY(-2px); filter: blur(0); }
  100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}
.t-pop-in { animation: t-pop-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }

/* 24.5 Text Reveal Stagger */
@keyframes t-reveal {
  0% { opacity: 0; transform: translateY(20px); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.t-reveal { opacity: 0; }
.t-reveal.visible {
  animation: t-reveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.t-reveal-delay-1 { animation-delay: 0.1s; }
.t-reveal-delay-2 { animation-delay: 0.2s; }
.t-reveal-delay-3 { animation-delay: 0.3s; }

/* 24.6 Skeleton → Reveal */
@keyframes t-skeleton-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}
.t-skeleton {
  background: linear-gradient(90deg, var(--surface-mid) 25%, var(--surface-alt) 50%, var(--surface-mid) 75%);
  background-size: 200% 100%;
  animation: t-skeleton-pulse 1.5s ease-in-out infinite;
  border-radius: var(--radius-md);
}
.t-skeleton-text { height: 14px; margin-bottom: 8px; }
.t-skeleton-title { height: 22px; width: 60%; margin-bottom: 12px; }
.t-skeleton-img { height: 180px; }

/* 24.7 Modal Scale Transition */
@keyframes t-modal-in {
  0% { opacity: 0; transform: scale(0.92); filter: blur(4px); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}
@keyframes t-modal-out {
  0% { opacity: 1; transform: scale(1); filter: blur(0); }
  100% { opacity: 0; transform: scale(0.92); filter: blur(4px); }
}
.t-modal-in { animation: t-modal-in 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.t-modal-out { animation: t-modal-out 0.2s ease-in forwards; }

/* 24.8 Toast Slide-in */
@keyframes t-toast-in {
  0% { opacity: 0; transform: translateY(20px) scale(0.95); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes t-toast-out {
  0% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-10px) scale(0.95); }
}
.t-toast {
  animation: t-toast-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.t-toast-out {
  animation: t-toast-out 0.3s ease-in forwards;
}

/* 24.9 Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .t-shake,
  .t-spinner,
  .t-check-morph svg path,
  .t-card-lift,
  .t-pop-in,
  .t-reveal.visible,
  .t-skeleton,
  .t-modal-in,
  .t-modal-out,
  .t-toast,
  .t-toast-out {
    animation: none !important;
    transition: none !important;
  }
  .t-reveal { opacity: 1; }
}

/* ------------------------------------------
   25. UTILITIES
   ------------------------------------------ */
.text-center { text-align: center; }
.text-inverse { color: var(--text-inverse); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--success); }
.text-amber { color: var(--amber); }
.text-indigo { color: var(--indigo); }
.text-teal { color: var(--teal); }
.text-inverse-light { color: rgba(255,255,255,0.7); }
.grecaptcha-badge { visibility: hidden; }

.disclaimer-text {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-style: italic;
  margin-top: var(--space-xl);
}

.news-loading {
  grid-column: 1/-1;
  text-align: center;
  padding: var(--space-2xl);
  color: var(--text-muted);
}
.news-loading i {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  display: block;
}

.news-skeleton {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--surface-mid);
}

/* Trabaja con nosotros */
.job-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.job-image {
  margin: var(--space-lg) auto;
  max-width: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.job-image img { width: 100%; display: block; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.benefit-card-left {
  text-align: left;
  border-top: 4px solid var(--indigo);
}

.benefit-card-left .benefit-icon {
  margin: 0 0 var(--space-md);
}

.benefit-card-amber {
  text-align: left;
  border-top: 4px solid var(--amber);
}
.benefit-card-amber .benefit-icon {
  margin: 0 0 var(--space-md);
  background: rgba(245,158,11,0.1);
  color: var(--amber);
}

.benefit-card-teal {
  text-align: left;
  border-top: 4px solid var(--teal);
}
.benefit-card-teal .benefit-icon {
  margin: 0 0 var(--space-md);
  background: rgba(13,148,136,0.1);
  color: var(--teal);
}

.benefit-list {
  list-style: none;
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}
.benefit-list li i {
  color: var(--success);
}

.cta-contact {
  background: var(--surface-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  margin-top: var(--space-2xl);
}

.cta-contact h2 {
  color: var(--indigo);
  margin-bottom: var(--space-md);
}

.cta-contact-methods {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.cta-contact-method i {
  font-size: 1.8rem;
  color: var(--indigo);
  margin-bottom: var(--space-sm);
  display: block;
}

.cta-contact-method a {
  color: var(--text-primary);
}

.mt-lg { margin-top: var(--space-lg); }
.mt-sm { margin-top: var(--space-sm); }
.mb-lg { margin-bottom: var(--space-lg); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.section-compact { padding: var(--space-2xl) 0; }

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-preview-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.about-text {
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.about-highlight-text {
  margin: 0;
}

/* ------------------------------------------
   26. RESPONSIVE — Tablet
   ------------------------------------------ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-search { max-width: 100%; margin: 0 auto; }
  .hero-stats { max-width: 400px; margin-left: auto; margin-right: auto; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-info { position: relative; top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-body { grid-template-columns: 1fr; }
  .modal-image { height: 280px; }
  .detail-modal .modal-body { grid-template-columns: 1fr; }
  .detail-modal .modal-body > img { min-height: 280px; border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
}

/* ------------------------------------------
   26. RESPONSIVE — Tablet
   ------------------------------------------ */
@media (max-width: 768px) {
  :root { --header-height: 64px; }

  .earth-loader { width: 6em; height: 6em; }
  .earth-loader svg { width: 5.5em; }
  .loader-text { font-size: 0.9rem; }

  .hamburger { display: flex; }
  .nav-links { display: none; }
  .header-cta .btn { display: none; }
  .theme-toggle { margin-left: auto; margin-right: var(--space-sm); }
  .mobile-bottom-bar { display: flex; }
  .logo-text { font-size: 0.95rem; }

  section { padding: var(--space-3xl) 0; }
  .hero { min-height: 88vh; }
  .hero-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .hero-logo-icon { height: 36px; }
  .hero-sub { font-size: 0.92rem; }
  .hero-content { padding: var(--space-2xl) 0; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: var(--space-2xl); }
  .hero-text { order: 2; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .hero-stats { max-width: 400px; margin: var(--space-2xl) auto 0; }
  .hero-search { flex-direction: column; border-radius: var(--radius-md); }
  .hero-search-field:not(:last-child)::after { display: none; }
  .hero-search-field input { padding: 14px 16px; border-bottom: 1px solid var(--surface-mid); }
  .hero-search .btn { border-radius: 0; padding: 14px; width: 100%; justify-content: center; }
  .hero-stat-value { font-size: 1.3rem; }
  .section-title { font-size: 1.5rem; }

  .destinations-header { flex-direction: column; align-items: stretch; }
  .destinations-tabs { width: 100%; justify-content: center; }
  .destinations-grid { grid-template-columns: 1fr; }
  .promos-grid { grid-template-columns: 1fr; }
  .custom-offers { grid-template-columns: 1fr; text-align: center; }
  .custom-offers-content .section-title,
  .custom-offers-content .section-subtitle { text-align: center; }
  .custom-offers-features { align-items: center; }
  .custom-offers-visual { display: none; }
  .budget-form { flex-direction: column; }
  .budget-form input { width: 100%; max-width: 100%; }
  .budget-cards { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .about-founders { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .stat-number { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-card { padding: var(--space-lg); }
  .form-row { grid-template-columns: 1fr; }
  .about-preview-grid { grid-template-columns: 1fr !important; }
  .grid-2col { grid-template-columns: 1fr; gap: var(--space-xl); }

  .whatsapp-fab { width: 46px; height: 46px; bottom: 76px; left: 16px; z-index: 1000; }
.whatsapp-fab .whatsapp-sign svg { width: 22px; }
  #converterFAB { bottom: 140px; left: 16px; right: auto; width: 50px; height: 50px; }
  #converterFAB .converter-fab-circle { width: 28px; height: 28px; }
  #converterFAB .converter-fab-icon { width: 14px; }
  #converterFAB .converter-fab-text > span { font-size: 0.5rem; }

  .modal-content { max-height: 95vh; border-radius: var(--radius-lg); }
  .modal-body { display: block; }
  .modal-image { height: 220px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .modal-info { padding: var(--space-lg); }
  .detail-modal .modal-body { display: block; max-height: 95vh; border-radius: var(--radius-lg); }
  .detail-modal .modal-body > img { min-height: 200px; max-height: 220px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .detail-info { padding: var(--space-lg); }
}

/* ------------------------------------------
   27. RESPONSIVE — Small Mobile
   ------------------------------------------ */
@media (max-width: 480px) {
  .hero-title { font-size: 1.5rem; }
  .hero-logo-icon { height: 32px; }
  .logo-text { font-size: 0.85rem; }
  .hero-actions { flex-direction: column; gap: var(--space-sm); }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); }
  .hero-stat-value { font-size: 1.1rem; }
  .hero-stat-label { font-size: 0.7rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .trust-bar { flex-wrap: wrap; justify-content: center; gap: var(--space-sm) var(--space-lg); }
  .trust-bar span { font-size: 0.72rem; }

  .btn-lg { padding: 12px 24px; font-size: 0.9rem; }
  .btn-53 .original, .btn-53 .letters { padding: 1rem 2rem; font-size: 0.8rem; }

  .page-hero { padding: 5rem 0 2rem; }
  .page-hero h1 { font-size: 1.6rem; }
  .page-hero .hero-logo-icon { height: 36px; }

  .section-title { font-size: 1.35rem; }
  .section-subtitle { font-size: 0.95rem; }
}

/* ------------------------------------------
   27. DOCS SUB-PAGES
   ------------------------------------------ */
.docs-section { padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl); }
.docs-section .container { max-width: 900px; }
.docs-card {
  background: var(--surface);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  margin-bottom: var(--space-xl);
}
.docs-warning {
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.2);
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
}
.docs-warning i { font-size: 2rem; margin-bottom: var(--space-md); display: block; color: var(--amber); }
.docs-warning p { font-weight: 500; font-size: 0.95rem; line-height: 1.7; }
[data-theme="dark"] .docs-warning {
  background: rgba(245,158,11,0.08);
  border-color: rgba(245,158,11,0.25);
  color: var(--text-primary);
}

/* ------------------------------------------
   27.5 MOBILE FIXES
   ------------------------------------------ */
@media (max-width: 768px) {
  /* Push WhatsApp FAB up to avoid mobile bottom bar */
  .whatsapp-fab { bottom: 80px; left: 16px; }

  /* Add padding to footer for mobile bottom bar */
  footer { padding-bottom: 80px !important; }

  /* Fix contact page "Llamar" button area */
  .contact-info .btn-wpp { margin-bottom: var(--space-md); }
  .contact-info-item:last-of-type { margin-bottom: var(--space-md); }

  /* Ensure page content doesn't hide behind bottom bar */
  main { padding-bottom: var(--space-xl); }
}

/* ------------------------------------------
   28. PRINT
   ------------------------------------------ */
@media print {
  header, .mobile-bottom-bar, .whatsapp-fab, .grecaptcha-badge { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
}

/* ------------------------------------------
   29. ACCESSIBILITY
   ------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--indigo);
  color: white;
  padding: 8px 16px;
  z-index: 10000;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ------------------------------------------
   30. INSTAGRAM FEED
   ------------------------------------------ */
#instagram .ft {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-lg);
}
#instagram .ft img { border-radius: var(--radius-md); }
#instagram .ft a { text-decoration: none; }
[data-theme="dark"] #instagram { background: var(--surface-alt); }
.ft .ft-popup,
.ft .fixed.z-50,
.ft [class*="z-50"],
.ft [class*="z-10"] { z-index: 10001 !important; }
