:root{
  --gex-navy: #22314A;
  --gex-link: rgba(255,255,255,.86);
  --gex-link-hover: rgba(255,255,255,1);
  --gex-border: rgba(255,255,255,.10);
  --gex-font-base: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --gex-font-nav: "Libre Baskerville", Georgia, "Times New Roman", serif;
}

html, body { height: 100%; }

body{
  font-family: var(--gex-font-base);
  background: #ffffff;
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.gex-container{ max-width: 1320px; }

/* NAVBAR */
.gex-navbar{
  background: #182436;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.gex-navbar .container-fluid{ min-height: 86px; }
.gex-brand{
  display: flex;
  align-items: center;
  padding-top: .45rem;
  padding-bottom: .45rem;
  margin-right: 2rem;
}
.gex-logo{ height: 66px; width: auto; display: block; }

.gex-nav .nav-link{
  font-family: var(--gex-font-nav);
  color: var(--gex-link);
  font-weight: 400;
  letter-spacing: .2px;
  padding: .95rem 1.05rem;
  border-radius: 10px;
  line-height: 1;
  white-space: nowrap;
  transition: color .15s ease, background-color .15s ease, transform .15s ease;
}
.gex-nav .nav-link:hover,
.gex-nav .nav-link:focus{
  color: var(--gex-link-hover);
  background: rgba(255,255,255,.08);
  outline: none;
}
.gex-nav .nav-link.active{
  color: rgba(255,255,255,1);
  background: rgba(255,255,255,.10);
}

.gex-navbar .navbar-toggler{
  border-color: rgba(255,255,255,.25);
  box-shadow: none !important;
}
.gex-navbar .navbar-toggler:focus{
  box-shadow: 0 0 0 .2rem rgba(255,255,255,.12) !important;
}
.gex-navbar .navbar-toggler-icon{ filter: invert(1) brightness(1.2); }

section{ padding: 64px 0; }

.gex-footer{
  padding: 56px 0;
  background: #182436;
  color: rgba(255,255,255,.86);
}

/* HERO */
.gex-hero{
  padding: 0;
  position: relative;
  overflow: hidden;
}
.gex-hero-carousel{ position: relative; }
.gex-hero-media{
  position: relative;
  height: clamp(520px, 72vh, 760px);
}
.gex-hero-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 6.5s ease;
  filter: brightness(1.15) contrast(1.05) saturate(1.05);
}
.carousel-item.active .gex-hero-img{ transform: scale(1.18); }
.gex-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,18,32,.60) 0%, rgba(11,18,32,.32) 55%, rgba(11,18,32,.10) 100%),
    linear-gradient(180deg, rgba(11,18,32,.22) 0%, rgba(11,18,32,.42) 100%);
}
.gex-hero-content{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}
.gex-hero-copy{
  max-width: 720px;
  padding-bottom: 70px;
}
.gex-hero-eyebrow{
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,.78);
  margin-bottom: 14px;
}
.gex-hero-title{
  margin: 0 0 12px;
  color: rgba(255,255,255,.98);
  font-weight: 600;
  line-height: 1.05;
  font-size: clamp(34px, 4.2vw, 62px);
}
.gex-hero-subtitle{
  margin: 0;
  color: rgba(255,255,255,.80);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.5;
  max-width: 560px;
}

/* ✅ BOOKING SECTION estable */
.gex-booking-section{
  padding: 0;
  margin-top: -46px;     /* se ve “semi-float” sin romper dropdowns */
  position: relative;
  z-index: 5;
}

.gex-booking{
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(2, 8, 23, .18);
  border: 1px solid rgba(15, 23, 42, .08);
  overflow: hidden;
}

/* grid separators */
.gex-booking-grid > [class^="col"]{
  border-right: 1px solid rgba(15, 23, 42, .08);
}
.gex-booking-grid > [class^="col"]:last-child{
  border-right: none;
}

.gex-field{
  display: flex;
  gap: 12px;
  padding: 16px 16px;
  align-items: center;
  min-height: 78px;
}

.gex-field-icon{
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(34,49,74,.65);
  font-size: 18px;
}

.gex-field-body{ flex: 1; min-width: 0; }

.gex-field-label{
  display: block;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, .55);
  margin-bottom: 6px;
  font-weight: 600;
}

.gex-field-control{
  border: 0;
  border-radius: 0;
  padding: 0;
  height: auto;
  box-shadow: none !important;
  background: transparent;
  color: rgba(15, 23, 42, .88);
}

.gex-field-control:focus{
  outline: none;
  border: 0;
  box-shadow: none !important;
}

.gex-booking-btn{
  height: 100%;
  border-radius: 0;
  padding: 18px 22px;
  background: var(--gex-navy);
  color: rgba(255,255,255,.96);
  border: 0;
  font-weight: 600;
  letter-spacing: .02em;
  min-height: 78px;
}

/* CONTACT + FOOTER (mantengo tu estructura, puedes dejar tu bloque completo si quieres) */
.gex-contact{ padding: 72px 0; background: #ffffff; }

/* Language Dropdown */
.gex-lang-item{ display: flex; align-items: center; }
.gex-lang-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 6px;
  padding: .65rem .85rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  cursor: pointer;
}
.gex-lang-btn img{
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.gex-lang-menu{
  min-width: 180px;
  border-radius: 12px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.10);
  background: #182436;
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
}
.gex-lang-option{
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 10px 10px;
  color: rgba(255,255,255,.90);
  background: transparent;
}
.gex-lang-option:hover,
.gex-lang-option:focus{
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,1);
}

/* Responsive */
@media (max-width: 991.98px){
  .gex-navbar .container-fluid{ min-height: 72px; }
  .gex-logo{ height: 52px; }
  .gex-booking-section{ margin-top: -24px; }

  .gex-booking-grid > [class^="col"]{
    border-right: none;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
  }
  .gex-booking-grid > [class^="col"]:last-child{
    border-bottom: none;
  }

  .gex-booking-btn{ min-height: 64px; }
}




/* =========================================================
   FINAL FIX: Booking bar centered between HERO and ABOUT (desktop)
   - Booking se monta en la frontera (mitad en hero, mitad en about)
   - No daña mobile
========================================================= */

@media (min-width: 992px){

  /* NO crees espacio blanco dentro del hero */
  .gex-hero{
    position: relative !important;
    overflow: visible !important;
    padding-bottom: 0 !important;   /* <-- CLAVE: elimina el “hueco” blanco */
  }

  /* Booking: colócalo cruzando la frontera hero/about */
  .gex-booking-wrap{
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;

    bottom: -52px !important;       /* <-- CLAVE: “mitad” del alto para quedar en el medio */
    transform: none !important;     /* <-- ya no usamos translate */
    margin: 0 !important;
    padding: 0 !important;

    z-index: 200 !important;
    pointer-events: none;
  }

  .gex-booking{
    pointer-events: auto;
    position: relative;
    z-index: 210 !important;
  }

  /* Empuja el About hacia abajo para que el booking no lo tape */
  #about{
    padding-top: 140px !important;  /* <-- ajustable si quieres más/menos aire */
  }
}

/* Mantén tu comportamiento mobile intacto */
@media (max-width: 991.98px){
  .gex-booking-wrap{
    position: relative !important;
    bottom: auto !important;
    transform: none !important;
  }
}

/* =========================================================
   NEW SECTION: Full image + centered text + 3 feature boxes
   (matches screenshot style)
========================================================= */

.gex-feature-hero{
  position: relative;
  padding: 0;
  background: #fff;
}

/* Full width image area */
.gex-feature-media{
  position: relative;
  height: clamp(420px, 60vh, 620px);
  overflow: hidden;
}

.gex-feature-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

/* dark overlay for readability */
.gex-feature-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.35) 60%,
    rgba(0,0,0,.22) 100%
  );
}

.gex-feature-content{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 24px 0;
}

.gex-feature-title{
  margin: 0 0 10px;
  color: rgba(255,255,255,.98);
  font-weight: 500;
  font-size: clamp(28px, 3.1vw, 52px);
  letter-spacing: .2px;
}

.gex-feature-subtitle{
  margin: 0;
  color: rgba(255,255,255,.85);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.5;
  max-width: 920px;
  margin-inline: auto;
}

/* Boxes layer */
.gex-feature-boxes{
  position: relative;
  z-index: 3;
  margin-top: -88px; /* overlap onto image like screenshot */
  padding-bottom: 40px;
}

.gex-feature-boxes-row{
  border-radius: 0;
  overflow: visible;
}

/* Card style */
.gex-feature-card{
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 18px 50px rgba(2, 8, 23, .12);
  padding: 26px 26px 24px;
  height: 100%;
  position: relative;
}

/* Create the vertical separators (desktop) */
@media (min-width: 768px){
  .gex-feature-boxes-row > div:not(:last-child) .gex-feature-card{
    border-right: none;
  }
  .gex-feature-boxes-row > div:not(:last-child) .gex-feature-card::after{
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    right: -1px;
    width: 1px;
    background: rgba(15, 23, 42, .08);
  }
}

/* Icon like screenshot (gold outline feel) */
.gex-feature-icon{
  font-size: 34px;
  line-height: 1;
  color: #E5B95B;
  margin-bottom: 14px;
}

.gex-feature-card-title{
  margin: 0 0 10px;
  font-weight: 600;
  color: rgba(24, 36, 54, .92);
  font-size: 20px;
}

.gex-feature-card-text{
  margin: 0;
  color: rgba(15, 23, 42, .65);
  line-height: 1.6;
  font-size: 14.5px;
  max-width: 360px;
}

/* Mobile: stack boxes + remove overlap a bit */
@media (max-width: 767.98px){
  .gex-feature-boxes{
    margin-top: -40px;
    padding-bottom: 24px;
  }
  .gex-feature-card{
    box-shadow: 0 14px 38px rgba(2, 8, 23, .12);
  }
}

/* Give space to next section so cards don't collide */
#transfers{
  padding-top: 60px;
}


/* =========================================================
   HOTFIX MOVED FROM INDEX: Footer + About + Feature Hero
   (sin tocar el resto de tu theme actual)
========================================================= */

/* =======================
   FOOTER FIX (scope-only)
======================= */
.gex-footer{
  padding: 64px 0 !important;
  background: #182436 !important;
  color: rgba(255,255,255,.86) !important;
}
.gex-footer *{ box-sizing: border-box; }
.gex-footer a{
  color: rgba(255,255,255,.78) !important;
  text-decoration: none !important;
}
.gex-footer a:hover{
  color: rgba(255,255,255,.98) !important;
  text-decoration: none !important;
}
.gex-footer ul,
.gex-footer ol{
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}
.gex-footer .gex-footer-links{
  display: grid !important;
  gap: 10px !important;
}
.gex-footer-hr{
  margin: 28px 0 18px !important;
  border-color: rgba(255,255,255,.10) !important;
  opacity: 1 !important;
}

/* =======================
   ABOUT SECTION (pixel-like)
======================= */
.gex-about{
  background:#fff;
  padding: 84px 0 70px;
}
.gex-about-title{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: clamp(34px, 3.4vw, 54px);
  color:#0b1220;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.gex-about-ghost{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 40px);
  line-height: 1.06;
  color: rgba(15,23,42,.10);
  margin: 0 0 18px;
}
.gex-about-text{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(18px, 1.55vw, 26px);
  line-height: 1.35;
  color: rgba(15, 23, 42, .62);
  max-width: 650px;
  margin: 0 0 26px;
}
.gex-about-btn{
  border-radius: 0;
  padding: 16px 26px;
  background: rgba(34,49,74,.10);
  border: 1px solid rgba(34,49,74,.00);
  color: rgba(11,18,32,.95);
  font-size: 22px;
  font-weight: 500;
  transition: transform .12s ease, background-color .12s ease;
}
.gex-about-btn:hover{
  background: rgba(34,49,74,.14);
  transform: translateY(-1px);
}
.gex-about-media{
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 0;
  object-fit: cover;
  display:block;
  background: #f3f4f6;
}
@media (max-width: 991.98px){
  .gex-about{ padding: 64px 0 54px; }
  .gex-about-media{ min-height: 260px; }
}

/* =========================================================
   NEW SECTION: Full image + centered text + 3 feature boxes
========================================================= */
.gex-feature-hero{
  position: relative;
  padding: 0;
  background: #fff;
}

.gex-feature-media{
  position: relative;
  height: clamp(420px, 60vh, 620px);
  overflow: hidden;
}
.gex-feature-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}
.gex-feature-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.35) 60%,
    rgba(0,0,0,.22) 100%
  );
}
.gex-feature-content{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 24px 0;
}
.gex-feature-title{
  margin: 0 0 10px;
  color: rgba(255,255,255,.98);
  font-weight: 500;
  font-size: clamp(28px, 3.1vw, 52px);
  letter-spacing: .2px;
}
.gex-feature-subtitle{
  margin: 0;
  color: rgba(255,255,255,.85);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.5;
  max-width: 920px;
  margin-inline: auto;
}

.gex-feature-boxes{
  position: relative;
  z-index: 3;
  margin-top: -88px;
  padding-bottom: 40px;
}

.gex-feature-card{
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 18px 50px rgba(2, 8, 23, .12);
  padding: 26px 26px 24px;
  height: 100%;
  position: relative;
}

@media (min-width: 768px){
  .gex-feature-boxes-row > div:not(:last-child) .gex-feature-card::after{
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    right: -1px;
    width: 1px;
    background: rgba(15, 23, 42, .08);
  }
}

.gex-feature-icon{
  font-size: 34px;
  line-height: 1;
  color: #E5B95B;
  margin-bottom: 14px;
}
.gex-feature-card-title{
  margin: 0 0 10px;
  font-weight: 600;
  color: rgba(24, 36, 54, .92);
  font-size: 20px;
}
.gex-feature-card-text{
  margin: 0;
  color: rgba(15, 23, 42, .65);
  line-height: 1.6;
  font-size: 14.5px;
  max-width: 360px;
}

@media (max-width: 767.98px){
  .gex-feature-boxes{
    margin-top: -40px;
    padding-bottom: 24px;
  }
  .gex-feature-card{
    box-shadow: 0 14px 38px rgba(2, 8, 23, .12);
  }
}

/* espacio para que la próxima sección no choque con las cards */
#transfers{
  padding-top: 60px;
}


/* =========================================================
   HOTFIX MOVED FROM INDEX: Footer + About + Feature Hero
   (sin tocar el resto de tu theme actual)
========================================================= */

/* =======================
   FOOTER FIX (scope-only)
======================= */
.gex-footer{
  padding: 64px 0 !important;
  background: #182436 !important;
  color: rgba(255,255,255,.86) !important;
}
.gex-footer *{ box-sizing: border-box; }
.gex-footer a{
  color: rgba(255,255,255,.78) !important;
  text-decoration: none !important;
}
.gex-footer a:hover{
  color: rgba(255,255,255,.98) !important;
  text-decoration: none !important;
}
.gex-footer ul,
.gex-footer ol{
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}
.gex-footer .gex-footer-links{
  display: grid !important;
  gap: 10px !important;
}
.gex-footer-hr{
  margin: 28px 0 18px !important;
  border-color: rgba(255,255,255,.10) !important;
  opacity: 1 !important;
}

/* =======================
   ABOUT SECTION (pixel-like)
======================= */
.gex-about{
  background:#fff;
  padding: 84px 0 70px;
}
.gex-about-title{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: clamp(34px, 3.4vw, 54px);
  color:#0b1220;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.gex-about-ghost{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 40px);
  line-height: 1.06;
  color: rgba(15,23,42,.10);
  margin: 0 0 18px;
}
.gex-about-text{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(18px, 1.55vw, 26px);
  line-height: 1.35;
  color: rgba(15, 23, 42, .62);
  max-width: 650px;
  margin: 0 0 26px;
}
.gex-about-btn{
  border-radius: 0;
  padding: 16px 26px;
  background: rgba(34,49,74,.10);
  border: 1px solid rgba(34,49,74,.00);
  color: rgba(11,18,32,.95);
  font-size: 22px;
  font-weight: 500;
  transition: transform .12s ease, background-color .12s ease;
}
.gex-about-btn:hover{
  background: rgba(34,49,74,.14);
  transform: translateY(-1px);
}
.gex-about-media{
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 0;
  object-fit: cover;
  display:block;
  background: #f3f4f6;
}
@media (max-width: 991.98px){
  .gex-about{ padding: 64px 0 54px; }
  .gex-about-media{ min-height: 260px; }
}

/* =========================================================
   NEW SECTION: Full image + centered text + 3 feature boxes
========================================================= */
.gex-feature-hero{
  position: relative;
  padding: 0;
  background: #fff;
}

.gex-feature-media{
  position: relative;
  height: clamp(420px, 60vh, 620px);
  overflow: hidden;
}
.gex-feature-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}
.gex-feature-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.35) 60%,
    rgba(0,0,0,.22) 100%
  );
}
.gex-feature-content{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 24px 0;
}
.gex-feature-title{
  margin: 0 0 10px;
  color: rgba(255,255,255,.98);
  font-weight: 500;
  font-size: clamp(28px, 3.1vw, 52px);
  letter-spacing: .2px;
}
.gex-feature-subtitle{
  margin: 0;
  color: rgba(255,255,255,.85);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.5;
  max-width: 920px;
  margin-inline: auto;
}

.gex-feature-boxes{
  position: relative;
  z-index: 3;
  margin-top: -88px;
  padding-bottom: 40px;
}

.gex-feature-card{
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 18px 50px rgba(2, 8, 23, .12);
  padding: 26px 26px 24px;
  height: 100%;
  position: relative;
}

@media (min-width: 768px){
  .gex-feature-boxes-row > div:not(:last-child) .gex-feature-card::after{
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    right: -1px;
    width: 1px;
    background: rgba(15, 23, 42, .08);
  }
}

.gex-feature-icon{
  font-size: 34px;
  line-height: 1;
  color: #E5B95B;
  margin-bottom: 14px;
}
.gex-feature-card-title{
  margin: 0 0 10px;
  font-weight: 600;
  color: rgba(24, 36, 54, .92);
  font-size: 20px;
}
.gex-feature-card-text{
  margin: 0;
  color: rgba(15, 23, 42, .65);
  line-height: 1.6;
  font-size: 14.5px;
  max-width: 360px;
}

@media (max-width: 767.98px){
  .gex-feature-boxes{
    margin-top: -40px;
    padding-bottom: 24px;
  }
  .gex-feature-card{
    box-shadow: 0 14px 38px rgba(2, 8, 23, .12);
  }
}

/* espacio para que la próxima sección no choque con las cards */
#transfers{
  padding-top: 60px;
}

/* =========================================================
   DESTINATION SECTION (Senior UI/UX)
========================================================= */
.gex-destination{
  background: #ffffff;
  /* ↓ Menos aire arriba para pegarla más a los boxes */
  padding: 54px 0 70px;
}

/* Header centrado */
.gex-destination-head{
  max-width: 920px;
  margin: 0 auto 34px; /* ↓ menos separación hacia las imágenes */
  text-align: center;
}

.gex-destination-title{
  margin: 0 0 10px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .06em;
  font-size: clamp(40px, 4.2vw, 72px);
  line-height: 1.02;
  color: #0b1220;
}

.gex-destination-text{
  margin: 0 auto;
  max-width: 720px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.45;
  color: rgba(15, 23, 42, .48);
}

/* Tiles más pro */
.gex-destination-tile{
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e5e7eb;
  text-decoration: none;
  border-radius: 0; /* como referencia (cuadrado) */
  isolation: isolate; /* asegura overlays sin glitches */
}

.gex-destination-tile img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.02) contrast(1.02);
  transition: transform .45s ease, filter .45s ease;
}

/* Overlay premium para legibilidad */
.gex-destination-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(120% 90% at 20% 80%, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 55%, rgba(0,0,0,.05) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.38) 100%);
}

/* Label con glow sutil + mejor lectura */
.gex-destination-label{
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 2;

  color: rgba(255,255,255,.98);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(34px, 3.3vw, 58px);
  line-height: 1.05;
  letter-spacing: .2px;

  /* UX: legibilidad real */
  text-shadow:
    0 10px 30px rgba(0,0,0,.55),
    0 2px 0 rgba(0,0,0,.20);
}

/* Hover elegante (sin exagerar) */
.gex-destination-tile:hover img{
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.06);
}

/* Responsive spacing */
@media (max-width: 991.98px){
  .gex-destination{
    padding: 46px 0 58px;
  }
  .gex-destination-head{
    margin-bottom: 26px;
  }
  .gex-destination-label{
    left: 20px;
    bottom: 18px;
  }
}

@media (max-width: 575.98px){
  .gex-destination-tile{
    aspect-ratio: 16 / 11;
  }
}


/* =========================================================
   WHAT WE OFFER (Senior UI / Like reference)
========================================================= */
.gex-offer{
  position: relative;
  padding: 96px 0 84px;
  background: url("../../images/what-we-offer.jpg") center/cover no-repeat;
  overflow: hidden;
}

/* Overlay para contraste (como la imagen) */
.gex-offer::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,18,32,.45) 0%, rgba(11,18,32,.28) 38%, rgba(11,18,32,.18) 100%);
  z-index: 0;
}

.gex-offer .container{
  position: relative;
  z-index: 1;
}

/* Header centrado (igual que Destination) */
.gex-offer-head{
  text-align: center;
  max-width: 980px;
  margin: 0 auto 38px;
}

.gex-offer-kicker{
  font-family: var(--gex-font-base);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 14px;
  color: rgba(255,255,255,.86);
  margin-bottom: 12px;
}

.gex-offer-title{
  font-family: var(--gex-font-base);
  font-weight: 700;
  font-size: clamp(28px, 2.7vw, 42px);
  line-height: 1.18;
  margin: 0 0 14px;
  color: rgba(255,255,255,.95);
}

.gex-offer-text{
  margin: 0 auto;
  max-width: 760px;
  font-family: var(--gex-font-base);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.5;
  color: rgba(255,255,255,.78);
}

/* Grid spacing similar a referencia */
.gex-offer-grid{
  margin-top: 34px;
}

/* Cards (cuadradas, limpias, pro) */
.gex-offer-card{
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 0;
  padding: 26px 26px 24px;
  box-shadow: 0 18px 55px rgba(2,8,23,.18);
  min-height: 190px;
}

.gex-offer-icon{
  font-size: 34px;
  line-height: 1;
  margin-bottom: 16px;
  color: rgba(214, 170, 70, .95); /* dorado sutil como referencia */
}

.gex-offer-card-title{
  margin: 0 0 10px;
  font-family: var(--gex-font-base);
  font-weight: 700;
  font-size: 18px;
  color: rgba(34,49,74,.88);
}

.gex-offer-card-text{
  margin: 0;
  font-family: var(--gex-font-base);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(15,23,42,.55);
}

/* Responsive tuning */
@media (max-width: 991.98px){
  .gex-offer{
    padding: 78px 0 70px;
  }
  .gex-offer-head{
    margin-bottom: 28px;
  }
}
@media (max-width: 575.98px){
  .gex-offer{
    padding: 66px 0 60px;
  }
  .gex-offer-card{
    padding: 22px 20px;
  }
}


/* =========================================================
   TESTIMONIALS (match reference)
========================================================= */
.gex-testimonials{
  background: #ffffff;
  padding: 88px 0 84px;
}

.gex-testimonials-head{
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center; /* ✅ igual que Destination */
}

.gex-testimonials-title{
  margin: 0 0 10px;
  font-family: var(--gex-font-base);
  font-weight: 800;
  letter-spacing: .02em;
  font-size: clamp(42px, 4.4vw, 68px);
  line-height: 1.02;
  color: #0b1220;
}

.gex-testimonials-title{
  margin-bottom: 14px;
}

.gex-testimonials-text{
  margin-top: 10px;
}

.gex-testimonials-subtitle{
  margin: 0 0 14px;
  font-family: var(--gex-font-base);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.12;
  color: rgba(15,23,42,.12); /* gris clarito como imagen */
}

.gex-testimonials-text{
  margin: 0;
  font-family: var(--gex-font-base);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.45;
  color: rgba(15,23,42,.58);
}

.gex-testimonials-grid{
  margin-top: 18px;
}

/* Cards */
.gex-tcard{
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 0;
  padding: 26px 26px 22px;
  height: 100%;
}

.gex-tcard-quote{
  margin: 0 0 18px;
  font-family: var(--gex-font-base);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(15,23,42,.62);
  max-width: 520px;
}

.gex-tcard-person{
  display: flex;
  align-items: center;
  gap: 14px;
}

.gex-tcard-avatar{
  width: 44px;
  height: 44px;
  border-radius: 4px; /* cuadradito suave como referencia */
  object-fit: cover;
  background: rgba(15,23,42,.06);
  border: 1px solid rgba(15,23,42,.08);
}

.gex-tcard-name{
  font-family: var(--gex-font-base);
  font-weight: 700;
  font-size: 14px;
  color: rgba(34,49,74,.92);
  line-height: 1.1;
}

.gex-tcard-role{
  margin-top: 4px;
  font-family: var(--gex-font-base);
  font-weight: 800;
  letter-spacing: .12em;
  font-size: 10px;
  color: rgba(15,23,42,.35);
}

/* Responsive spacing */
@media (max-width: 991.98px){
  .gex-testimonials{
    padding: 70px 0 66px;
  }
  .gex-testimonials-head{
    margin-bottom: 26px;
  }
}

/* =========================================================
   YOUR CARIBBEAN CTA (Full background + centered content)
========================================================= */
.gex-cta{
  position: relative;
  padding: 110px 0;              /* alto tipo banner como la imagen */
  overflow: hidden;
  background: #0b1220;           /* fallback si no carga imagen */
}

.gex-cta-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right; /* deja palmeras a la izq y cielo a la der */
  transform: scale(1.02);
}

.gex-cta-overlay{
  position: absolute;
  inset: 0;
  /* overlay suave para que el texto blanco quede igual de legible */
  background: linear-gradient(
    90deg,
    rgba(11,18,32,.12) 0%,
    rgba(11,18,32,.18) 35%,
    rgba(11,18,32,.10) 100%
  );
}

.gex-cta-content{
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.gex-cta-title{
  margin: 0 0 12px;
  font-family: var(--gex-font-base);
  font-weight: 500;
  letter-spacing: .2px;
  color: rgba(255,255,255,.98);
  font-size: clamp(30px, 3.2vw, 54px);
  line-height: 1.12;
  text-shadow: 0 10px 30px rgba(0,0,0,.22);
}

.gex-cta-lead{
  margin: 0 0 10px;
  color: rgba(255,255,255,.92);
  font-size: clamp(16px, 1.55vw, 22px);
  line-height: 1.45;
  text-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.gex-cta-sub{
  margin: 0 0 26px;
  color: rgba(255,255,255,.92);
  font-size: clamp(16px, 1.55vw, 22px);
  line-height: 1.45;
  text-shadow: 0 10px 30px rgba(0,0,0,.18);
}

/* Botón centrado y estilo como el mock (recto, navy, ancho medio) */
.gex-cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 18px 30px;
  border-radius: 0;
  background: #0b1326; /* navy profundo */
  color: rgba(255,255,255,.98);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 22px;
  font-weight: 500;
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  transition: transform .12s ease, filter .12s ease, background-color .12s ease;
}

.gex-cta-btn:hover{
  filter: brightness(1.06);
  transform: translateY(-1px);
  color: rgba(255,255,255,1);
}

.gex-cta-btn:active{
  transform: translateY(0);
}

/* Responsive tuning */
@media (max-width: 991.98px){
  .gex-cta{
    padding: 78px 0;
  }
  .gex-cta-bg{
    background-position: center;
  }
  .gex-cta-btn{
    min-width: 220px;
    font-size: 20px;
    padding: 16px 24px;
  }
}

/* =========================================================
   CONTACT (GET IN TOUCH) - Compact + aligned (safe scoped)
========================================================= */
.gex-contact.gex-contact--tight{
  padding: 52px 0 !important;          /* antes estaba muy alto */
  scroll-margin-top: 96px;             /* para que el ancla no quede debajo del navbar */
}

.gex-contact.gex-contact--tight .gex-contact-kicker{
  margin: 0 0 10px !important;
  font-size: clamp(38px, 4.2vw, 62px) !important; /* un poco más compacto */
  line-height: 1.02 !important;
}

.gex-contact.gex-contact--tight .gex-contact-softline{
  margin-bottom: 12px !important;
  font-size: clamp(20px, 2.2vw, 32px) !important;
}

.gex-contact.gex-contact--tight .gex-contact-text{
  max-width: 560px;
  font-size: clamp(16px, 1.35vw, 22px) !important;
  line-height: 1.4 !important;
}

.gex-contact.gex-contact--tight .gex-contact-card{
  padding-top: 0 !important;           /* quita aire arriba */
}

.gex-contact.gex-contact--tight .gex-contact-form-title{
  margin: 0 0 12px !important;
  font-size: clamp(22px, 2vw, 34px) !important;
}

.gex-contact.gex-contact--tight .gex-input,
.gex-contact.gex-contact--tight .gex-textarea{
  padding: 12px 14px !important;       /* compacta inputs */
}

.gex-contact.gex-contact--tight .gex-submit{
  padding: 16px 16px !important;       /* compacta botón */
  font-size: clamp(16px, 1.6vw, 26px) !important;
}

/* En móvil, aún más compacto */
@media (max-width: 991.98px){
  .gex-contact.gex-contact--tight{
    padding: 44px 0 !important;
  }
  .gex-contact.gex-contact--tight .gex-contact-form-title{
    text-align: left; /* como ya tenías */
  }
}


/* =========================================================
   FOOTER (layout estilo imagen: top info bar + bottom links)
========================================================= */
.gex-footer{
  padding: 0 !important;
  background: #182436 !important;
  color: rgba(255,255,255,.86) !important;
}

.gex-footer a{
  color: rgba(255,255,255,.80) !important;
  text-decoration: none !important;
}
.gex-footer a:hover{
  color: rgba(255,255,255,.98) !important;
}

.gex-footer-top{
  padding: 28px 0 18px;
}

.gex-footer-top-grid{
  display: grid;
  grid-template-columns: 1.15fr 1.4fr 10px 1fr 10px 1fr 10px auto;
  align-items: center;
  gap: 18px;
}

.gex-footer-brand{
  display: grid;
  gap: 10px;
  align-content: start;
}

.gex-footer-logo{
  height: 44px;
  width: auto;
  display: block;
}

.gex-footer-note{
  font-size: 14px;
  line-height: 1.35;
  opacity: .85;
  max-width: 360px;
}

.gex-footer-item{
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 52px;
}

.gex-footer-ico{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(73, 155, 196, .22); /* toque “aqua” como la imagen */
  border: 1px solid rgba(255,255,255,.10);
}

.gex-footer-ico i{
  font-size: 22px;
  color: rgba(255,255,255,.92);
}

.gex-footer-item-title{
  font-weight: 600;
  font-size: 14px;
  line-height: 1.1;
  color: rgba(255,255,255,.92);
  margin-bottom: 4px;
}

.gex-footer-item-text{
  font-size: 14px;
  line-height: 1.25;
  color: rgba(255,255,255,.78);
}

.gex-footer-sep{
  width: 1px;
  height: 54px;
  background: rgba(255,255,255,.18);
  justify-self: center;
}

.gex-footer-social{
  display: flex;
  align-items: center;
  gap: 14px;
}

.gex-social-btn{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.gex-social-btn i{
  font-size: 20px;
}

/* Bottom bar */
.gex-footer-bottom{
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 0;
}

.gex-footer-bottom-grid{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.gex-footer-copy{
  font-size: 16px;
  color: rgba(255,255,255,.86);
}

.gex-footer-bottom-links{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.gex-footer-bottom-link{
  font-size: 16px;
  color: rgba(255,255,255,.86) !important;
}

.gex-footer-bottom-sep{
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,.22);
}

/* Responsive */
@media (max-width: 1199.98px){
  .gex-footer-top-grid{
    grid-template-columns: 1fr;
  }
  .gex-footer-sep{
    display: none;
  }
  .gex-footer-note{
    max-width: 100%;
  }
  .gex-footer-social{
    justify-content: flex-start;
  }
}

@media (max-width: 575.98px){
  .gex-footer-copy,
  .gex-footer-bottom-link{
    font-size: 14px;
  }
}


/* =========================================================
   CTA "Your Caribbean" - Legibilidad pro sobre imagen
   (solo afecta la sección .gex-cta)
========================================================= */
.gex-cta{
  position: relative;
  overflow: hidden;
  padding: 0; /* lo controla el contenido */
}

/* Fondo */
.gex-cta-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

/* Overlay pro: degradado lateral + leve viñeta */
.gex-cta-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 90% at 25% 40%, rgba(0,0,0,.46) 0%, rgba(0,0,0,.18) 55%, rgba(0,0,0,.10) 100%),
    linear-gradient(90deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.18) 45%, rgba(0,0,0,.08) 100%);
}

/* Alto visual similar al mock y centrado */
.gex-cta .container{
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 56px;
  padding-bottom: 56px;
}

/* Caja sutil para legibilidad (glass) */
.gex-cta-content{
  max-width: 980px;
  padding: 26px 30px;
  border-radius: 18px;
  background: rgba(10, 18, 32, .14);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Título: más presencia y lectura */
.gex-cta-title{
  margin: 0 0 14px;
  font-family: var(--gex-font-base);
  font-weight: 600;
  letter-spacing: .2px;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.06;
  color: rgba(255,255,255,.98);
  text-shadow: 0 14px 40px rgba(0,0,0,.55);
}

/* Texto principal */
.gex-cta-lead{
  margin: 0 0 10px;
  font-size: clamp(18px, 2.0vw, 26px);
  line-height: 1.35;
  color: rgba(255,255,255,.92);
  text-shadow: 0 10px 30px rgba(0,0,0,.50);
}

/* Subtexto */
.gex-cta-sub{
  margin: 0 0 22px;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.35;
  color: rgba(255,255,255,.86);
  text-shadow: 0 10px 26px rgba(0,0,0,.45);
}

/* Botón: contraste enterprise */
.gex-cta-btn{
  border-radius: 0;
  padding: 16px 34px;
  font-size: 20px;
  font-weight: 500;
  background: #0e1a2c; /* navy sólido */
  color: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  transition: transform .12s ease, filter .12s ease, background-color .12s ease;
}

.gex-cta-btn:hover{
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.gex-cta-btn:active{
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 575.98px){
  .gex-cta .container{
    min-height: 440px;
  }
  .gex-cta-content{
    padding: 18px 16px;
    border-radius: 16px;
  }
}

/* =========================================================
   NAVBAR ALWAYS VISIBLE (FIXED) - NO SE OCULTA AL SCROLL
   (Solo este mandato)
========================================================= */
.gex-navbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1200; /* por encima de hero/booking/overlays */
}

/* Compensación para que el contenido NO quede debajo del navbar */
body{
  padding-top: 86px; /* match .gex-navbar .container-fluid min-height desktop */
}

@media (max-width: 991.98px){
  body{
    padding-top: 72px; /* match mobile navbar height */
  }
}


/* =========================================================
   ABOUTUS - WHAT WE OFFER (PRO FIX)
   Solo afecta #offer con clase .gex-offerpro
========================================================= */
.gex-offerpro{
  position: relative;
  padding: clamp(54px, 6vw, 78px) 0 clamp(64px, 6vw, 90px);
  overflow: hidden;
  isolation: isolate; /* evita conflictos de z-index */
}

.gex-offerpro-media{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gex-offerpro-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: gexOfferProZoom 18s ease-in-out infinite alternate;
  filter: saturate(1.05) contrast(1.02);
}

@keyframes gexOfferProZoom{
  from{ transform: scale(1.06); }
  to{ transform: scale(1.16); }
}

/* Overlay profesional para legibilidad (texto + cards) */
.gex-offerpro-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11,18,32,.74) 0%, rgba(11,18,32,.42) 55%, rgba(11,18,32,.18) 100%),
    linear-gradient(180deg, rgba(11,18,32,.18) 0%, rgba(11,18,32,.46) 52%, rgba(11,18,32,.22) 100%);
}

/* Contenido por encima */
.gex-offerpro .container{
  position: relative;
  z-index: 2;
}

/* Head: mejor lectura + panel suave */
.gex-offerpro-head{
  max-width: 900px;
  margin: 0 auto 26px;
  text-align: left;
  padding: 18px 18px;
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(3px);
}

.gex-offerpro-kicker{
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,.92);
}

.gex-offerpro-title{
  margin: 10px 0 10px;
  color: #fff;
  font-weight: 700;
  line-height: 1.12;
  font-size: clamp(26px, 2.8vw, 44px);
  text-shadow: 0 14px 34px rgba(0,0,0,.45);
}

.gex-offerpro-text{
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
  text-shadow: 0 10px 24px rgba(0,0,0,.35);
  max-width: 740px;
}

/* Grid: cards alineadas */
.gex-offerpro-grid{
  margin-top: 18px;
}

/* Card pro */
.gex-offerpro-card{
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(255,255,255,.70);
  box-shadow: 0 18px 55px rgba(2,8,23,.20);
  padding: 22px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .14s ease, box-shadow .14s ease;
}

.gex-offerpro-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 65px rgba(2,8,23,.26);
}

.gex-offerpro-ico{
  font-size: 28px;
  color: #ffb400;
}

.gex-offerpro-ctitle{
  font-weight: 600;
  color: #0b1220;
  margin-top: 2px;
}

.gex-offerpro-cdesc{
  color: rgba(15,23,42,.66);
  line-height: 1.55;
}

/* Responsive: centrar head en mobile para mejor estética */
@media (max-width: 991.98px){
  .gex-offerpro-head{
    text-align: center;
    padding: 16px 14px;
  }
  .gex-offerpro-text{ margin-left:auto; margin-right:auto; }
}


.gex-hotels-wrap { background:#fff; }

    /* ===========================
       LAYOUT: Sidebar + Results
    ============================ */
    .gex-hotels-layout{
      display:grid;
      grid-template-columns: 360px 1fr;
      gap: 22px;
      align-items:start;
    }
    @media (max-width: 991.98px){
      .gex-hotels-layout{
        grid-template-columns: 1fr;
        gap: 16px;
      }
    }

    /* Sticky sidebar (safe with navbar) */
    :root{ --gex-nav-h: 76px; }
    .gex-sticky{
      position: sticky;
      top: calc(var(--gex-nav-h) + 14px);
    }
    @media (max-width: 991.98px){
      .gex-sticky{ position: static; top: auto; }
    }

    /* Sidebar Card */
    .gex-hotel-search-card{
      border-radius:0;
      border-color: rgba(15,23,42,.10) !important;
      box-shadow: 0 14px 40px rgba(2,6,23,.10);
      overflow:hidden;
      background:#fff;
    }
    .gex-hotel-tabs{
      display:flex;
      gap:0;
      border-bottom:1px solid rgba(15,23,42,.10);
      background:#fff;
    }
    .gex-hotel-tab{
      appearance:none;
      border:0;
      background:transparent;
      padding:.75rem 1rem;
      font-weight:800;
      letter-spacing:.02em;
      color: rgba(15,23,42,.70);
      border-right:1px solid rgba(15,23,42,.10);
      cursor:pointer;
      flex:1;
      text-align:left;
    }
    .gex-hotel-tab.active{
      background: rgba(11,96,214,.06);
      color:#0b60d6;
    }

    .gex-hotel-field{
      border-radius:0 !important;
      border-color: rgba(15,23,42,.20) !important;
      height: 48px;
    }
    .gex-hotel-field:focus{
      box-shadow:none;
      border-color: rgba(15,23,42,.40) !important;
    }
    .gex-hotel-label{
      font-size:.8rem;
      letter-spacing:.10em;
      text-transform:uppercase;
      color: rgba(15,23,42,.60);
      font-weight:800;
      margin-bottom:.35rem;
    }
    .gex-hotel-btn{
      border-radius:0 !important;
      height:48px;
      font-weight:800;
      letter-spacing:.06em;
      text-transform:uppercase;
    }

    /* Counter rows */
    .gex-hotel-counter-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      border:1px solid rgba(15,23,42,.12);
      border-radius:0;
      padding:.65rem .75rem;
      background:#fff;
      height:48px;
    }
    .gex-hotel-counter-row .k{
      display:flex; gap:.55rem; align-items:center;
      color: rgba(15,23,42,.75);
      font-weight:800;
    }
    .gex-hotel-counter-row .v{
      display:flex; gap:.35rem; align-items:center;
      font-weight:900;
      color:#0b1220;
    }
    .gex-hotel-counter-row .btn{
      border-radius:0 !important;
      border-color: rgba(15,23,42,.16) !important;
    }

    .gex-badge-soft{
      display:inline-flex;
      align-items:center;
      gap:.5rem;
      padding:.45rem .7rem;
      border: 1px solid rgba(15,23,42,.12);
      background: rgba(15,23,42,.03);
      color: rgba(15,23,42,.75);
      border-radius: 999px;
      font-weight: 800;
      font-size: .85rem;
    }
    .gex-note{
      color: rgba(15,23,42,.60);
      font-size: .95rem;
      line-height: 1.6;
    }

    /* ===========================
       RESULTS: Pro Grid
    ============================ */
    .gex-results-head{
      display:flex;
      flex-direction:column;
      gap:.35rem;
    }
    .gex-results-bar{
      display:flex;
      gap: 10px;
      align-items:end;
      justify-content:space-between;
      flex-wrap:wrap;
      margin-bottom: 12px;
    }

    .gex-hotels-grid{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 18px;
    }
    /* 3 columns desktop, 2 tablet, 1 mobile */
    .gex-hotel-col{
      grid-column: span 4;
    }
    @media (max-width: 1199.98px){
      .gex-hotel-col{ grid-column: span 6; }
    }
    @media (max-width: 767.98px){
      .gex-hotel-col{ grid-column: span 12; }
      .gex-hotels-grid{ gap: 14px; }
    }

    /* Hotel card */
    .gex-hotel-card{
      border-radius:0;
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 18px 55px rgba(2,6,23,.10);
      background:#fff;
      overflow:hidden;
      height:100%;
      display:flex;
      flex-direction:column;
    }
    .gex-hotel-media{
      position:relative;
      overflow:hidden;
      background:#f6f7fb;
    }
    .gex-hotel-img{
      width:100%;
      height: 230px;
      object-fit:cover;
      transform: scale(1.01);
      transition: transform .65s ease;
      display:block;
    }
    .gex-hotel-card:hover .gex-hotel-img{ transform: scale(1.07); }

    .gex-hotel-price{
      position:absolute;
      right:14px;
      bottom:14px;
      background:#0b60d6;
      color:#fff;
      padding:.5rem .9rem;
      font-weight:900;
      letter-spacing:.02em;
      border-radius:0;
      box-shadow: 0 10px 24px rgba(11,96,214,.25);
      font-size: 1.05rem;
      line-height:1;
    }

    .gex-hotel-body{ padding: 1.05rem 1.05rem .9rem; flex: 1; }
    .gex-hotel-title{
      color:#f08a00;
      font-weight:900;
      letter-spacing:.02em;
      text-transform:uppercase;
      margin:0;
      font-size: 1.02rem;
      line-height:1.25;
    }
    .gex-hotel-loc{
      margin-top:.35rem;
      color:#1aa3a3;
      font-weight:800;
      line-height:1.25;
    }

    .gex-hotel-meta{
      margin-top:.75rem;
      display:flex;
      gap:.6rem;
      align-items:center;
      flex-wrap:wrap;
      color: rgba(15,23,42,.70);
      font-weight:800;
    }
    .gex-hotel-meta a{
      color:#0b60d6;
      text-decoration:none;
      font-weight:900;
    }
    .gex-hotel-meta a:hover{ text-decoration:underline; }

    .gex-hotel-table{
      margin-top:.75rem;
      border-top:1px solid rgba(15,23,42,.10);
    }
    .gex-hotel-table .hdr{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      font-weight:900;
      color:#0b1220;
      text-align:center;
      padding:.55rem 0;
      border-bottom:1px solid rgba(15,23,42,.10);
      background: rgba(15,23,42,.02);
    }
    .gex-hotel-table .rowx{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      text-align:center;
      padding:.7rem 0;
      color: rgba(15,23,42,.80);
      font-weight:800;
    }

    .gex-hotel-foot{
      padding: .85rem 1.05rem 1rem;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:.75rem;
      border-top:1px solid rgba(15,23,42,.10);
    }
    .gex-hotel-note{
      color: rgba(15,23,42,.65);
      font-size: .95rem;
      line-height:1.45;
    }
    .gex-hotel-book{
      border-radius:0 !important;
      font-weight:900;
      letter-spacing:.06em;
      text-transform:uppercase;
      padding:.8rem 1.15rem;
      min-width: 150px;
      white-space:nowrap;
    }

    /* Pagination */
    .gex-pager{
      display:flex;
      justify-content:center;
      gap:.5rem;
      flex-wrap:wrap;
      margin-top: 1.25rem;
    }
    .gex-pager .btn{
      border-radius:0 !important;
      border-color: rgba(15,23,42,.14) !important;
      font-weight:900;
      letter-spacing:.03em;
    }

    /* ===========================
       Modals (keep transfer identity)
    ============================ */
    .gex-modal-header{
      border-radius: 0;
      background: #0b1220;
      color: #fff;
      border-bottom: 1px solid rgba(255,255,255,.14);
    }
    .gex-modal-title{
      font-weight: 900;
      letter-spacing: .04em;
      text-transform: uppercase;
      font-size: 1rem;
    }
    .gex-modal-sub{
      color: rgba(255,255,255,.80);
      font-size: .95rem;
      margin-top: .25rem;
    }
    .gex-form-label{
      font-size: .82rem;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(15,23,42,.55);
      margin-bottom: .35rem;
    }
    .gex-form-control{
      border-radius: 0 !important;
      border-color: rgba(15,23,42,.18) !important;
      height: 46px;
    }
    .gex-form-control:focus{ box-shadow:none; border-color: rgba(15,23,42,.40) !important; }
    .gex-loading-title{
      font-weight: 900;
      letter-spacing: .02em;
      color: #0b1220;
    }

    /* FIX: modal below sticky navbar */
    .modal.show .modal-dialog{
      margin-top: calc(var(--gex-nav-h) + 12px);
      margin-bottom: 24px;
    }
    .modal-dialog{ max-height: calc(100vh - (var(--gex-nav-h) + 36px)); }
    .modal-content{ max-height: calc(100vh - (var(--gex-nav-h) + 36px)); }
    .modal-body{ overflow:auto; }