/* ReefJet — Prototype CSS v2
   Brand tokens del Manual de Identidad Visual 2015/2023
   Contenido completo: 11 destinos, 4 servicios, flota, testimonios, etc. */

:root {
  --reef-blue:      #1B4F90;
  --reef-blue-2:    #3B5CAD;
  --reef-blue-3:    #194e91;
  --reef-red:       #E63C2F;
  --reef-red-deep:  #D12A2F;
  --reef-cyan:      #67CFE3;
  --reef-cyan-d:    #4db2ec;
  --reef-gray:      #414042;
  --reef-gray-2:    #6c6c89;
  --reef-gray-3:    #8e8e8e;
  --reef-bg:        #f7f9fc;
  --reef-bg-2:      #eef2f8;
  --reef-white:     #ffffff;
  --wa-green:       #25D366;
  --shadow-sm:      0 1px 2px rgba(27,79,144,.06), 0 2px 8px rgba(27,79,144,.06);
  --shadow-md:      0 8px 28px rgba(27,79,144,.12);
  --shadow-lg:      0 24px 60px rgba(27,79,144,.18);
  --radius:         14px;
  --radius-lg:      20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--reef-gray);
  background: var(--reef-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--reef-blue); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--reef-blue-2); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-weight: 500; font-size: 15px;
  border: 2px solid transparent; cursor: pointer; transition: all .2s ease;
  text-align: center; white-space: nowrap; font-family: inherit;
}
.btn-sm  { padding: 8px 16px;  font-size: 13px; }
.btn-lg  { padding: 16px 30px; font-size: 16px; font-weight: 700; letter-spacing: .2px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--reef-blue); color: #fff; border-color: var(--reef-blue); }
.btn-primary:hover { background: var(--reef-blue-2); border-color: var(--reef-blue-2); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.18); border-color: #fff; color: #fff; }
.btn-ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost-light:hover { background: #fff; color: var(--reef-blue); }
.btn-ghost-blue { background: transparent; color: var(--reef-blue); border-color: rgba(27,79,144,.2); }
.btn-ghost-blue:hover { background: var(--reef-blue); border-color: var(--reef-blue); color: #fff; }
.btn-whatsapp { background: var(--wa-green); color: #fff; border-color: var(--wa-green); }
.btn-whatsapp:hover { background: #1ebe57; border-color: #1ebe57; color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ============ TOP BAR ============ */
.top-bar {
  background: var(--reef-gray); color: rgba(255,255,255,.85);
  font-size: 13px; padding: 8px 0;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: rgba(255,255,255,.85); }
.top-bar a:hover { color: var(--reef-cyan); }
.top-bar-left, .top-bar-right { display: flex; gap: 14px; align-items: center; }
.top-bar .dot { opacity: .5; }
.weather, .quick-phone { white-space: nowrap; }
.quick-phone { font-weight: 700; color: #fff; }
.lang { font-size: 12px; font-weight: 600; letter-spacing: 1px; }
.lang-sep { opacity: .4; margin: 0 4px; }
.lang-alt { color: rgba(255,255,255,.5); }
@media (max-width: 700px) { .top-bar { display: none; } }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px; background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(27,79,144,.08);
}
.logo img { height: 44px; width: auto; }
.nav-main { display: flex; gap: 22px; align-items: center; }
.nav-main > a, .nav-with-arrow { color: var(--reef-gray); font-weight: 500; font-size: 14px; position: relative; padding: 4px 0; }
.nav-main > a:hover, .nav-with-arrow:hover { color: var(--reef-blue); }
.nav-main > a::after, .nav-with-arrow::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--reef-blue); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-main > a:hover::after, .nav-with-arrow:hover::after { transform: scaleX(1); }
.nav-cta { padding: 10px 20px; font-size: 14px; }
.nav-promo { color: var(--reef-red) !important; font-weight: 700 !important; letter-spacing: .5px; }

/* Dropdowns */
.nav-dropdown { position: relative; }
.nav-with-arrow { display: inline-flex; align-items: center; gap: 4px; cursor: pointer; text-decoration: none; }
.arrow { font-size: 10px; transition: transform .2s; opacity: .7; }
.nav-dropdown:hover .arrow { transform: rotate(180deg); }
.dropdown-panel {
  position: absolute; top: calc(100% + 12px); left: -10px;
  background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: 14px 0; min-width: 230px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility 0s linear .2s;
  z-index: 200; border: 1px solid rgba(27,79,144,.06);
}
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity .2s, transform .2s, visibility 0s;
}
.dropdown-panel a {
  display: block; padding: 9px 22px; font-size: 14px; color: var(--reef-gray);
  text-decoration: none; transition: background .15s, color .15s;
}
.dropdown-panel a:hover { background: rgba(27,79,144,.06); color: var(--reef-blue); }
.dropdown-panel a.hot { font-weight: 700; color: var(--reef-blue); }
.hot-mark {
  display: inline-block; margin-left: 8px; padding: 2px 8px; font-size: 9px;
  background: var(--reef-red); color: #fff; border-radius: 999px; letter-spacing: .5px;
  vertical-align: middle;
}

.dropdown-wide { min-width: 480px; padding: 22px; display: flex; gap: 30px; left: auto; right: -10px; }
.dropdown-col { flex: 1; }
.dropdown-col h5 {
  font-size: 11px; font-weight: 700; color: var(--reef-blue); letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 10px; padding: 0 14px;
}
.dropdown-col a { padding: 7px 14px; font-size: 13px; }

@media (max-width: 1100px) {
  .nav-main > a:nth-child(3), .nav-main > a:nth-child(4) { display: none; }
}
@media (max-width: 900px) {
  .nav-main { display: none; }
  .site-header { padding: 10px 18px; }
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 85vh; display: flex; align-items: center;
  overflow: hidden; color: #fff;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(27,79,144,.85) 0%, rgba(27,79,144,.45) 50%, rgba(11,79,144,.3) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; padding: 100px 24px; }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 6px;
  color: var(--reef-cyan); margin-bottom: 18px; text-transform: uppercase;
}
.eyebrow-dark { color: var(--reef-blue); }
.hero h1 {
  font-size: clamp(40px, 6vw, 76px); line-height: 1.05; font-weight: 900;
  letter-spacing: -1.5px; margin-bottom: 22px; max-width: 14ch;
}
.hero .lede { font-size: 19px; font-weight: 300; max-width: 60ch; opacity: .96; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-trust { display: flex; gap: 16px; font-size: 14px; font-weight: 500; opacity: .85; flex-wrap: wrap; }
.hero-trust .dot { opacity: .5; }

/* ============ TRUST STRIP ============ */
.trust-strip { background: var(--reef-bg); padding: 50px 0; border-top: 1px solid rgba(27,79,144,.05); }
.trust-strip .trust-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; text-align: center;
}
.trust-strip .trust-item strong {
  display: block; font-size: 36px; line-height: 1; font-weight: 900;
  color: var(--reef-blue); margin-bottom: 8px; letter-spacing: -1px;
}
.trust-strip .trust-item span { font-size: 12px; color: var(--reef-gray-2); font-weight: 500; line-height: 1.4; display: block; }
@media (max-width: 900px) { .trust-strip .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (max-width: 500px) { .trust-strip .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ Sections base ============ */
section.services, section.destinations, section.contact, section.comparator,
section.fleet, section.testimonials, section.about-mini { padding: 100px 0; }
section.jetsetter { padding: 80px 0; }
.services { background: var(--reef-bg); }
.destinations { background: #fff; }
.comparator { background: var(--reef-bg); }
.fleet { background: #fff; }
.testimonials { background: var(--reef-bg-2); }
.about-mini { background: #fff; }

h2 {
  font-size: clamp(30px, 4vw, 46px); line-height: 1.15; font-weight: 900;
  color: var(--reef-gray); letter-spacing: -1px; margin-bottom: 16px;
}
.section-lede { font-size: 18px; color: var(--reef-gray-2); margin-bottom: 50px; max-width: 60ch; }

.subsection-h {
  font-size: 22px; font-weight: 700; color: var(--reef-gray);
  margin-top: 70px; margin-bottom: 24px; letter-spacing: -.3px;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
}
.card-service {
  background: #fff; padding: 32px 26px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
  position: relative; border: 1px solid rgba(27,79,144,.06);
  display: flex; flex-direction: column;
}
.card-service:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-service.highlight { background: var(--reef-blue); color: #fff; box-shadow: var(--shadow-lg); }
.card-service.highlight h3, .card-service.highlight .card-link { color: #fff; }
.card-service.highlight .card-desc { color: rgba(255,255,255,.92); }
.card-service.highlight .card-features li { color: rgba(255,255,255,.85); }
.card-service.highlight .card-features li::before { background: var(--reef-cyan); }
.card-service .badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--reef-red); color: #fff; padding: 4px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
}
.card-icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(27,79,144,.08); color: var(--reef-blue); font-size: 24px; margin-bottom: 22px;
}
.card-service.highlight .card-icon { background: rgba(255,255,255,.15); color: #fff; }
.card-service h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--reef-gray); }
.card-desc { font-size: 14px; line-height: 1.6; margin-bottom: 16px; color: var(--reef-gray-2); }
.card-features { list-style: none; padding: 0; margin: 0 0 22px; }
.card-features li {
  font-size: 13px; padding-left: 18px; position: relative; color: var(--reef-gray);
  margin-bottom: 6px; line-height: 1.5;
}
.card-features li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--reef-blue);
}
.card-link { font-weight: 600; font-size: 14px; margin-top: auto; }

@media (max-width: 1250px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .services-grid { grid-template-columns: 1fr; } }

/* ============ DESTINATIONS ============ */
.dest-grid-featured {
  display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 22px; margin-bottom: 20px;
}
.card-dest {
  border-radius: var(--radius); overflow: hidden; background: #fff;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column; position: relative;
}
.card-dest:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-dest img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.card-dest-meta { padding: 24px 22px; flex: 1; display: flex; flex-direction: column; }
.dest-tag {
  display: inline-block; padding: 4px 12px; background: rgba(27,79,144,.1);
  color: var(--reef-blue); font-weight: 700; font-size: 11px; letter-spacing: .5px;
  border-radius: 999px; margin-bottom: 10px; width: fit-content;
}
.dest-tag-int { background: rgba(230,60,47,.12); color: var(--reef-red); }
.card-dest h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; color: var(--reef-gray); letter-spacing: -.3px; }
.card-dest p { font-size: 14px; color: var(--reef-gray-2); margin-bottom: 14px; line-height: 1.55; }
.dest-highlights { list-style: none; padding: 0; margin-bottom: 16px; }
.dest-highlights li {
  font-size: 13px; padding-left: 16px; position: relative; color: var(--reef-gray);
  margin-bottom: 4px;
}
.dest-highlights li::before { content: '✓'; position: absolute; left: 0; color: var(--reef-blue); font-weight: 700; }
.dest-cta {
  margin-top: auto; font-weight: 600; font-size: 14px; align-self: flex-start;
  color: var(--reef-blue);
}
.dest-cta-light { color: #fff; }
.dest-cta-light:hover { color: var(--reef-cyan); }

/* Hero card: spans 2 rows */
.hero-card { grid-row: 1 / 3; grid-column: 1; }
.hero-card img { aspect-ratio: 4/5; height: 100%; }

/* Gradient cards (no photo) */
.card-gradient { color: #fff; min-height: 280px; }
.card-gradient .card-dest-meta { padding: 30px 24px; justify-content: flex-end; height: 100%; }
.card-gradient h3, .card-gradient p { color: #fff; }
.card-gradient .dest-tag { background: rgba(255,255,255,.18); color: #fff; }
.card-gradient .dest-tag-int { background: rgba(230,60,47,.9); color: #fff; }
.grad-city  { background: linear-gradient(135deg, #1B4F90 0%, #3B5CAD 60%, #67CFE3 120%); }
.grad-beach { background: linear-gradient(135deg, #67CFE3 0%, #3B5CAD 60%, #1B4F90 120%); }
.grad-bvi   { background: linear-gradient(135deg, #E63C2F 0%, #1B4F90 100%); }
.grad-turks { background: linear-gradient(135deg, #3B5CAD 0%, #67CFE3 50%, #ffffff44 100%); }

@media (max-width: 900px) {
  .dest-grid-featured { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .hero-card { grid-row: auto; grid-column: 1 / 3; }
  .hero-card img { aspect-ratio: 16/9; }
}
@media (max-width: 600px) {
  .dest-grid-featured { grid-template-columns: 1fr; }
  .hero-card { grid-column: 1; }
}

/* Mini cards (more destinations RD) */
.dest-grid-mini {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.card-dest-mini {
  background: #fff; padding: 22px 18px; border-radius: var(--radius);
  border: 1px solid rgba(27,79,144,.08); text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.card-dest-mini:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--reef-blue); }
.mini-icon { font-size: 28px; margin-bottom: 8px; }
.card-dest-mini h4 { font-size: 15px; font-weight: 700; color: var(--reef-gray); margin-bottom: 4px; }
.card-dest-mini p  { font-size: 12px; color: var(--reef-gray-2); line-height: 1.45; }
@media (max-width: 900px) { .dest-grid-mini { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .dest-grid-mini { grid-template-columns: repeat(2, 1fr); } }

/* International */
.dest-grid-int {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 900px) { .dest-grid-int { grid-template-columns: 1fr; } }

/* ============ COMPARATOR ============ */
.comparator h2 { margin-bottom: 16px; }
.comp-wrap { overflow-x: auto; margin-top: 32px; }
.comp-table {
  width: 100%; min-width: 720px; border-collapse: separate; border-spacing: 0;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden;
}
.comp-table th, .comp-table td {
  padding: 18px 20px; text-align: left; border-bottom: 1px solid rgba(27,79,144,.08);
}
.comp-table thead th {
  background: var(--reef-gray); color: #fff; font-weight: 700; font-size: 14px;
  letter-spacing: .3px; border-bottom: none;
}
.comp-table tbody th { font-weight: 700; color: var(--reef-blue); font-size: 14px; background: var(--reef-bg); width: 160px; }
.comp-table tbody td { font-size: 14px; color: var(--reef-gray); }
.comp-table th.comp-highlight, .comp-table td.comp-highlight {
  background: rgba(27,79,144,.06); font-weight: 700; color: var(--reef-blue); position: relative;
}
.comp-table thead th.comp-highlight { background: var(--reef-blue); color: #fff; }
.comp-table tbody tr:last-child td { border-bottom: none; padding-top: 22px; padding-bottom: 22px; }
.comp-table tbody tr:last-child th { background: var(--reef-bg); }

/* ============ FLEET ============ */
.fleet-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.fleet-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.fleet-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.fleet-cap {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(27,79,144,.92); color: #fff; padding: 8px 16px;
  font-size: 13px; font-weight: 700; letter-spacing: .3px; border-radius: 999px;
}
.fleet-text h2 { margin-bottom: 18px; }
.fleet-text p { font-size: 16px; color: var(--reef-gray-2); margin-bottom: 30px; line-height: 1.7; }
.fleet-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
.fleet-spec strong { display: block; font-size: 34px; font-weight: 900; color: var(--reef-blue); line-height: 1; margin-bottom: 6px; letter-spacing: -1px; }
.fleet-spec span { font-size: 12px; color: var(--reef-gray-2); line-height: 1.4; display: block; }
@media (max-width: 900px) { .fleet-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============ TESTIMONIALS ============ */
.testimonials h2 { margin-bottom: 50px; max-width: 24ch; }
.testi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.testi-card {
  background: #fff; padding: 28px 24px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1px solid rgba(27,79,144,.06);
  display: flex; flex-direction: column;
}
.stars { color: #ffb400; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p { font-size: 14px; line-height: 1.65; color: var(--reef-gray); margin-bottom: 18px; flex: 1; font-style: italic; }
.testi-card footer { font-size: 12px; color: var(--reef-gray-2); }
.testi-card footer strong { color: var(--reef-gray); }
@media (max-width: 1000px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .testi-grid { grid-template-columns: 1fr; } }

/* ============ JETSETTER ============ */
.jetsetter {
  background: linear-gradient(120deg, var(--reef-blue) 0%, var(--reef-blue-2) 100%);
  color: #fff;
}
.jet-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.jetsetter h2 { color: #fff; margin-bottom: 16px; }
.jetsetter .eyebrow { color: var(--reef-cyan); }
.jet-text p { font-size: 17px; opacity: .92; margin-bottom: 24px; }
.jet-form { display: flex; gap: 10px; max-width: 480px; }
.jet-form input {
  flex: 1; padding: 14px 18px; border-radius: 999px; border: 2px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1); color: #fff; font-family: inherit; font-size: 15px;
  backdrop-filter: blur(8px);
}
.jet-form input::placeholder { color: rgba(255,255,255,.65); }
.jet-form input:focus { outline: none; border-color: #fff; background: rgba(255,255,255,.15); }
.jet-form .btn-primary { background: #fff; color: var(--reef-blue); border-color: #fff; }
.jet-form .btn-primary:hover { background: var(--reef-cyan); border-color: var(--reef-cyan); color: var(--reef-blue); }
.jet-note { font-size: 13px; opacity: .7; margin-top: 14px; }
.jet-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
@media (max-width: 900px) { .jet-grid { grid-template-columns: 1fr; gap: 40px; } .jet-img { order: -1; } }

/* ============ FINAL CTA ============ */
.cta-final {
  background: var(--reef-gray); color: #fff; padding: 90px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27,79,144,.6) 0%, transparent 70%);
}
.cta-final::after {
  content: ''; position: absolute; bottom: -40%; left: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(230,60,47,.4) 0%, transparent 70%);
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final h2 { color: #fff; margin-bottom: 14px; }
.cta-final p { font-size: 18px; opacity: .92; margin-bottom: 36px; max-width: 56ch; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ ABOUT MINI ============ */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: start; }
.about-lede { font-size: 17px; color: var(--reef-gray-2); margin-bottom: 30px; line-height: 1.7; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-stat strong { display: block; font-size: 44px; font-weight: 900; color: var(--reef-blue); line-height: 1; margin-bottom: 6px; letter-spacing: -1.5px; }
.about-stat span { font-size: 12px; color: var(--reef-gray-2); line-height: 1.4; }
.about-partners { background: var(--reef-bg); padding: 30px; border-radius: var(--radius); border: 1px solid rgba(27,79,144,.08); }
.about-partners h3 { font-size: 14px; font-weight: 700; color: var(--reef-blue); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.about-partners ul { list-style: none; padding: 0; }
.about-partners li { font-size: 14px; padding: 10px 0; border-bottom: 1px solid rgba(27,79,144,.06); color: var(--reef-gray); }
.about-partners li:last-child { border-bottom: none; }
.about-partners li strong { color: var(--reef-gray); }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============ CONTACT ============ */
.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { margin-bottom: 30px; }
.contact-block { margin-bottom: 22px; }
.contact-block h3 { font-size: 12px; font-weight: 700; letter-spacing: 2px;
  color: var(--reef-blue); text-transform: uppercase; margin-bottom: 6px; }
.contact-block p { font-size: 16px; line-height: 1.5; }
.contact-block a { font-weight: 500; }
.social-row { display: flex; gap: 16px; flex-wrap: wrap; }
.social-row a { font-size: 14px; padding: 6px 14px; background: var(--reef-bg); border-radius: 999px; }
.social-row a:hover { background: var(--reef-blue); color: #fff; }
.contact-form {
  background: var(--reef-bg); padding: 36px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1px solid rgba(27,79,144,.06);
}
.contact-form h3 { font-size: 22px; font-weight: 700; color: var(--reef-gray); margin-bottom: 22px; }
.contact-form label { display: block; margin-bottom: 16px; }
.contact-form label span {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px;
  color: var(--reef-blue); text-transform: uppercase; margin-bottom: 6px;
}
.contact-form input {
  width: 100%; padding: 12px 14px; border: 1.5px solid rgba(27,79,144,.15);
  border-radius: 10px; font-family: inherit; font-size: 15px; color: var(--reef-gray);
  background: #fff; transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus { outline: none; border-color: var(--reef-blue); box-shadow: 0 0 0 4px rgba(27,79,144,.1); }
.form-note { font-size: 13px; color: var(--reef-gray-2); margin-top: 14px; text-align: center; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============ FOOTER ============ */
.site-footer { background: var(--reef-gray); color: rgba(255,255,255,.75); padding: 70px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; padding-bottom: 50px; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-logo {
  height: 56px;
  width: auto;
  max-width: 220px;
  filter: brightness(0) invert(1);
  display: block;
  object-fit: contain;
  align-self: flex-start;
  flex-shrink: 0;
}
.footer-tagline { font-size: 11px; opacity: .55; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; line-height: 1.4; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--reef-cyan); text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,.75); font-size: 13px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-addr { font-size: 13px; line-height: 1.6; margin-bottom: 10px; }
.footer-phone { font-weight: 700; color: #fff !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.footer-bottom p { font-size: 12px; opacity: .55; text-align: center; letter-spacing: .5px; }
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ============ WhatsApp sticky ============ */
.wa-sticky {
  position: fixed; bottom: 22px; right: 22px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa-green); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  animation: pulseWa 2.5s infinite;
}
.wa-sticky:hover { transform: scale(1.08); color: #fff; box-shadow: 0 12px 32px rgba(37,211,102,.55); animation: none; }
@keyframes pulseWa {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.5); }
  50%      { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 14px rgba(37,211,102,0); }
}

/* ============ INFO DE VIAJE ============ */
.info-viaje { background: var(--reef-bg); padding: 90px 0; }
.info-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.info-card {
  background: #fff; padding: 22px 18px; border-radius: var(--radius);
  border: 1px solid rgba(27,79,144,.08); text-align: left;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: block; text-decoration: none; color: inherit;
}
.info-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
  border-color: var(--reef-blue); color: inherit;
}
.info-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(27,79,144,.1); color: var(--reef-blue);
  display: grid; place-items: center; font-size: 20px; margin-bottom: 14px;
}
.info-card h4 { font-size: 14px; font-weight: 700; color: var(--reef-gray); margin-bottom: 6px; }
.info-card p  { font-size: 12px; color: var(--reef-gray-2); line-height: 1.5; margin: 0; }
@media (max-width: 1100px) { .info-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .info-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ FOOTER policies + bottom social ============ */
.footer-inner { grid-template-columns: 1.4fr repeat(4, 1fr) !important; }
.footer-policies {
  border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0;
  text-align: center; font-size: 12px;
}
.footer-policies a { color: rgba(255,255,255,.7); margin: 0 4px; }
.footer-policies a:hover { color: #fff; }
.footer-policies .sep { color: rgba(255,255,255,.3); margin: 0 4px; }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: rgba(255,255,255,.7); font-size: 12px; font-weight: 600; letter-spacing: .5px; }
.footer-social a:hover { color: var(--reef-cyan); }
.footer-brand .footer-addr,
.footer-brand .footer-phone {
  margin-top: 10px;
  display: block;
}
.footer-brand .footer-addr { font-size: 12px; line-height: 1.5; opacity: .7; }

/* ============ GALLERY BADGE on destination cards ============ */
.card-dest { cursor: pointer; }
.gallery-badge {
  position: absolute; top: 14px; right: 14px; z-index: 5;
  background: rgba(255,255,255,.95); color: var(--reef-blue);
  font-size: 11px; font-weight: 700; letter-spacing: .3px;
  padding: 6px 12px; border-radius: 999px;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(27,79,144,.18);
}
.gallery-badge-light {
  background: rgba(0,0,0,.35); color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}

/* ============ GALLERY MODAL ============ */
.gal-modal {
  position: fixed; inset: 0; z-index: 999;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.gal-modal.is-open { display: flex; animation: galFadeIn .25s ease; }
@keyframes galFadeIn { from { opacity: 0; } to { opacity: 1; } }

.gal-backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 23, 42, .82);
  backdrop-filter: blur(8px);
}
.gal-panel {
  position: relative; z-index: 1;
  max-width: 980px; width: 100%; max-height: 92vh;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  overflow-y: auto; padding: 36px;
  animation: galSlideUp .3s cubic-bezier(.16,1,.3,1);
}
@keyframes galSlideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.gal-close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--reef-gray); color: #fff;
  border: none; font-size: 16px; cursor: pointer;
  display: grid; place-items: center;
  transition: background .15s, transform .15s;
  z-index: 5;
}
.gal-close:hover { background: var(--reef-blue); transform: rotate(90deg); }

.gal-header { margin-bottom: 24px; padding-right: 50px; }
.gal-tag {
  display: inline-block; padding: 4px 12px;
  background: rgba(27,79,144,.1); color: var(--reef-blue);
  font-weight: 700; font-size: 11px; letter-spacing: .5px;
  border-radius: 999px; margin-bottom: 10px;
}
.gal-header h3 {
  font-size: 28px; font-weight: 900; color: var(--reef-gray);
  letter-spacing: -.5px; margin-bottom: 10px; line-height: 1.2;
}
.gal-header p {
  font-size: 15px; color: var(--reef-gray-2); line-height: 1.6; margin: 0;
}

.gal-media { margin-bottom: 22px; }
.gal-main {
  width: 100%; aspect-ratio: 16/10; overflow: hidden;
  border-radius: var(--radius); margin-bottom: 12px;
  background: var(--reef-bg);
}
.gal-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .2s;
}
.gal-thumbs {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 8px;
}
.gal-thumb {
  border: 2px solid transparent; border-radius: 8px; overflow: hidden;
  background: var(--reef-bg); padding: 0; cursor: pointer;
  aspect-ratio: 4/3;
  transition: border-color .15s, transform .15s;
}
.gal-thumb:hover { transform: translateY(-2px); border-color: var(--reef-blue-2); }
.gal-thumb.is-active { border-color: var(--reef-blue); }
.gal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gal-placeholder-note {
  grid-column: 1 / -1;
  font-size: 12px; color: var(--reef-gray-2); font-style: italic;
  padding: 8px 4px; margin: 0;
}

.gal-video {
  width: 100%; aspect-ratio: 16/9;
  border-radius: var(--radius); overflow: hidden;
  background: #000; margin-bottom: 22px;
}
.gal-video iframe { width: 100%; height: 100%; display: block; border: 0; }

.gal-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.gal-actions .btn { flex: 1; min-width: 200px; }

/* Hover preview hint on destination cards */
.card-dest:hover .gallery-badge {
  background: var(--reef-blue); color: #fff;
}
.card-dest:hover .gallery-badge-light {
  background: var(--reef-blue); color: #fff; border-color: var(--reef-blue);
}

@media (max-width: 700px) {
  .gal-panel { padding: 22px; max-height: 96vh; border-radius: var(--radius); }
  .gal-header { padding-right: 40px; }
  .gal-header h3 { font-size: 22px; }
  .gal-thumbs { grid-template-columns: repeat(4, 1fr); }
  .gal-actions { flex-direction: column; }
  .gal-actions .btn { width: 100%; }
}

/* ============ Mobile tweaks ============ */
@media (max-width: 500px) {
  .hero-inner { padding: 80px 22px; }
  .hero .lede { font-size: 17px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .cta-actions .btn { width: 100%; }
  section.services, section.destinations, section.contact,
  section.comparator, section.fleet, section.testimonials,
  section.about-mini { padding: 64px 0; }
  .jet-form { flex-direction: column; }
  .jet-form .btn-primary { width: 100%; }
  .fleet-specs, .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .fleet-spec strong, .about-stat strong { font-size: 28px; }
}
