/* =========================================================
   URBAN RUSH – Hoja de estilos principal
   Singular Hub © 2026
   ========================================================= */

/* ── Imágenes Unsplash (free license) ───────────────────────
   Hero:      https://unsplash.com/photos/45LNRNIzs30
   SUV:       https://unsplash.com/photos/JW1dN4pHUCQ
   Van:       https://unsplash.com/photos/Fkwj-xk6yck
   Sedán:     https://unsplash.com/photos/JpW-TcMZw_Q
   Blog 1:    https://unsplash.com/photos/jzcm1kC9FMc
   Blog 2:    https://unsplash.com/photos/MihUZkpY874
   Blog 3:    https://unsplash.com/photos/VPLgaYWPPa0
─────────────────────────────────────────────────────────── */

/* ── Variables ── */
:root {
  --navy:   #001F5B;
  --blue:   #0044CC;
  --blue2:  #0057E0;
  --sky:    #3A8DFF;
  --gold:   #C9973A;
  --white:  #FFFFFF;
  --off:    #F4F8FF;
  --light:  #E8F0FF;
  --dark:   #0A1628;
  --gray:   #6B7B9A;
  --border: #D5E0F0;
  --r:      12px;
  --shadow: 0 8px 32px rgba(0, 68, 204, .12);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Poppins', sans-serif; color: var(--dark); background: #fff; overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }


/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(0, 31, 91, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  transition: background .3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex; align-items: center; gap: 28px; list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, .8);
  font-size: 13.5px; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 13.5px;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--blue2) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  width: 22px; height: 2px;
  background: #fff; border-radius: 2px; transition: .3s;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 20px 24px; gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255, 255, 255, .08); width: 100%; }
  .nav-links a   { display: block; padding: 14px 0; font-size: 15px; }
  .nav-hamburger { display: flex; }

  /* CTA button en mobile: compacto y centrado */
  .nav-links li:has(.nav-cta) {
    border-bottom: none;
    padding: 16px 0 4px;
    display: flex;
    justify-content: center;
  }
  .nav-links .nav-cta {
    display: inline-block !important;
    width: auto !important;
    padding: 12px 32px !important;
    text-align: center;
    border-radius: 980px !important;
  }
}

/* ── Language Switcher ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  padding: 3px;
  margin-left: 16px;
  flex-shrink: 0;
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.55);
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 100px;
  transition: all .25s;
  line-height: 1;
}
.lang-btn:hover:not(.active) { color: rgba(255,255,255,.9); }
.lang-btn.active {
  background: #fff;
  color: var(--navy);
}


/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #00103D 0%, #001F7A 45%, #0038C0 100%);
  position: relative; display: flex; align-items: center;
  overflow: hidden; padding-top: 68px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg::before {
  content: '';
  position: absolute; top: -40%; right: -20%;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(58,141,255,.2) 0%, transparent 70%);
}
.hero-bg::after {
  content: '';
  position: absolute; bottom: -20%; left: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,68,204,.3) 0%, transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
  position: relative; z-index: 1; width: 100%;
}

/* badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 20px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: #7AB3FF; border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.8); }
}
.hero-badge span { color: rgba(255,255,255,.9); font-size: 12px; font-weight: 500; letter-spacing: .5px; }

.hero-title {
  font-size: clamp(36px, 5vw, 60px); font-weight: 900;
  color: #fff; line-height: 1.05; margin-bottom: 18px; letter-spacing: -.5px;
}
.hero-title em { font-style: normal; color: #7AB3FF; }

.hero-sub {
  color: rgba(255,255,255,.75); font-size: 16px; font-weight: 400;
  line-height: 1.7; margin-bottom: 32px; max-width: 480px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: #fff; color: var(--navy);
  padding: 14px 28px; border-radius: 10px;
  font-weight: 700; font-size: 14.5px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s; box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.3); }

.btn-outline {
  border: 2px solid rgba(255,255,255,.4); color: #fff;
  padding: 13px 26px; border-radius: 10px;
  font-weight: 600; font-size: 14.5px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

.hero-stats {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat strong { display: block; font-size: 28px; font-weight: 800; color: #fff; }
.hero-stat span   { font-size: 12px; color: rgba(255,255,255,.6); font-weight: 400; }

/* mini booking card */
.hero-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px; padding: 28px; color: #fff;
}
.hero-card-title {
  font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-bottom: 20px;
}
.booking-form { display: flex; flex-direction: column; gap: 14px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.6); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: .5px;
}
.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px; padding: 11px 14px;
  color: #fff; font-family: 'Poppins', sans-serif;
  font-size: 14px; transition: border .2s;
}
.form-group input::placeholder { color: rgba(255,255,255,.4); }
.form-group select option       { background: var(--navy); color: #fff; }
.form-group input:focus,
.form-group select:focus        { outline: none; border-color: rgba(122,179,255,.7); background: rgba(255,255,255,.15); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.btn-book {
  width: 100%; background: var(--blue); color: #fff;
  border: none; padding: 14px; border-radius: 10px;
  font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-book:hover { background: var(--blue2); transform: translateY(-1px); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card  { max-width: 500px; }
}


/* ═══════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════ */
.section     { padding: 88px 24px; }
.section-alt { background: var(--off); }
.container   { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 10px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  color: var(--navy); line-height: 1.2;
  margin-bottom: 14px; letter-spacing: -.3px;
}
.section-sub  { color: var(--gray); font-size: 15px; line-height: 1.7; max-width: 580px; }
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }


/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.service-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px 22px;
  transition: all .3s; cursor: default;
}
.service-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-4px); }

.service-icon {
  width: 52px; height: 52px;
  background: var(--light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; transition: background .3s;
}
.service-card:hover .service-icon { background: var(--blue); }
.service-icon svg { width: 26px; height: 26px; fill: var(--blue); transition: fill .3s; }
.service-card:hover .service-icon svg { fill: #fff; }

.service-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.service-card p  { font-size: 13px; color: var(--gray); line-height: 1.6; }

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


/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; position: relative;
}
.steps::before {
  content: '';
  position: absolute; top: 36px; left: 16%; right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  z-index: 0;
}
.step { text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px; background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px; font-weight: 800; color: #fff;
  border: 4px solid #fff; box-shadow: 0 0 0 4px var(--light);
}
.step h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step p  { font-size: 13.5px; color: var(--gray); line-height: 1.6; }

@media (max-width: 700px) {
  .steps          { grid-template-columns: 1fr; }
  .steps::before  { display: none; }
  .step           { padding: 20px 0; border-bottom: 1px solid var(--border); }
}


/* ═══════════════════════════════════════════
   WHY US
═══════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-items { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-item  { display: flex; gap: 14px; align-items: flex-start; }

.why-check {
  width: 36px; height: 36px; min-width: 36px;
  background: var(--light); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.why-check svg { width: 18px; height: 18px; fill: var(--blue); }
.why-item h4   { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.why-item p    { font-size: 12.5px; color: var(--gray); line-height: 1.5; }

.why-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 20px; padding: 48px; color: #fff;
  position: relative; overflow: hidden;
}
.why-visual::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.why-visual::after {
  content: ''; position: absolute; bottom: -40px; left: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.why-visual h3 { font-size: 28px; font-weight: 800; margin-bottom: 16px; position: relative; z-index: 1; }
.why-visual p  { font-size: 14.5px; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 24px; position: relative; z-index: 1; }
.why-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  padding: 8px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; position: relative; z-index: 1;
}

@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } .why-items { order: 2; } }
@media (max-width: 600px) { .why-items { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════
   FLEET
═══════════════════════════════════════════ */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fleet-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); background: #fff;
  transition: all .3s;
}
.fleet-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.fleet-img {
  height: 220px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #001240, #002A70); /* fallback */
}
.fleet-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .4s ease;
}
.fleet-card:hover .fleet-img img { transform: scale(1.05); }
.fleet-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,20,60,.55) 100%);
  pointer-events: none;
}

.fleet-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold); color: #fff;
  padding: 4px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 700;
}
.fleet-body    { padding: 22px; }
.fleet-body h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.fleet-body p  { font-size: 13px; color: var(--gray); margin-bottom: 14px; line-height: 1.6; }
.fleet-specs   { display: flex; gap: 16px; flex-wrap: wrap; }
.fleet-spec    { font-size: 12px; color: var(--gray); display: flex; align-items: center; gap: 5px; }
.fleet-spec svg { width: 14px; height: 14px; fill: var(--blue); }

@media (max-width: 900px) { .fleet-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .fleet-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
.pricing-tabs { display: flex; gap: 8px; margin-bottom: 36px; flex-wrap: wrap; }
.ptab {
  padding: 9px 20px; border-radius: 100px;
  border: 2px solid var(--border);
  font-size: 13.5px; font-weight: 600; color: var(--gray);
  cursor: pointer; transition: all .2s;
}
.ptab.active { background: var(--blue); border-color: var(--blue); color: #fff; }

.pricing-table {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
}
.pt-head {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  background: var(--navy); color: #fff;
  padding: 14px 24px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
}
.pt-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 14px 24px; border-bottom: 1px solid var(--border);
  align-items: center; transition: background .2s;
}
.pt-row:last-child  { border-bottom: none; }
.pt-row:hover       { background: var(--off); }
.pt-row .route      { font-size: 14px; font-weight: 600; color: var(--navy); }
.pt-row .price      { font-size: 15px; font-weight: 700; color: var(--blue); }
.pt-row .note       { font-size: 12px; color: var(--gray); }

.pt-panel        { display: none; }
.pt-panel.active { display: block; }

@media (max-width: 700px) {
  .pt-head, .pt-row { grid-template-columns: 1fr 1fr; padding: 12px 16px; }
  .pt-head span:nth-child(n+3),
  .pt-row  span:nth-child(n+3) { display: none; }
}


/* ═══════════════════════════════════════════
   DESTINATIONS
═══════════════════════════════════════════ */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dest-card {
  border-radius: 12px; overflow: hidden;
  position: relative; height: 200px;
  cursor: pointer; transition: transform .3s;
}
.dest-card:hover { transform: scale(1.03); }

.dest-bg { position: absolute; inset: 0; display: flex; align-items: flex-end; }
.dest-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .4s ease;
}
.dest-card:hover .dest-bg img { transform: scale(1.08); }
.dest-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,20,80,.45) 0%, rgba(0,60,180,.65) 100%);
  z-index: 1;
}
.dest-bg.c1 { background: linear-gradient(160deg, #002A70, #0066CC); }
.dest-bg.c2 { background: linear-gradient(160deg, #001850, #003A9E); }
.dest-bg.c3 { background: linear-gradient(160deg, #003A9E, #0055D4); }
.dest-bg.c4 { background: linear-gradient(160deg, #0044CC, #3A8DFF); }
.dest-bg.c5 { background: linear-gradient(160deg, #001240, #002A70); }
.dest-bg.c6 { background: linear-gradient(160deg, #0033A0, #0057E0); }
.dest-bg.c7 { background: linear-gradient(160deg, #001A50, #003080); }
.dest-bg.c8 { background: linear-gradient(160deg, #001F5B, #0044CC); }
.dest-pattern    { display: none; }
.dest-content    { padding: 18px; position: relative; z-index: 2; background: linear-gradient(transparent, rgba(0,0,0,.55)); width: 100%; }
.dest-content h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.dest-content span { color: rgba(255,255,255,.7); font-size: 12px; }

@media (max-width: 900px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }


/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px; transition: box-shadow .3s;
}
.testi-card:hover { box-shadow: var(--shadow); }

.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star        { width: 16px; height: 16px; fill: #F59E0B; }

.testi-text   { font-size: 14px; color: var(--dark); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.av1 { background: linear-gradient(135deg, #0044CC, #3A8DFF); }
.av2 { background: linear-gradient(135deg, #C9973A, #F0C060); }
.av3 { background: linear-gradient(135deg, #0044CC, #001F5B); }

.testi-name    { font-size: 14px; font-weight: 700; color: var(--navy); }
.testi-country { font-size: 12px; color: var(--gray); }

@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .testi-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════
   BLOG
═══════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--border); background: #fff;
  transition: all .3s;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.blog-img { height: 190px; position: relative; overflow: hidden; background: #001850; }
.blog-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .4s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,20,80,.25) 0%, rgba(0,20,80,.5) 100%);
  pointer-events: none;
}
.blog-cat      { position: absolute; top: 14px; left: 14px; background: #fff; color: var(--navy); padding: 4px 12px; border-radius: 100px; font-size: 11px; font-weight: 700; }

.blog-body     { padding: 20px; }
.blog-date     { font-size: 11.5px; color: var(--gray); margin-bottom: 8px; }
.blog-body h3  { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.blog-body p   { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.blog-link     { font-size: 13px; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 5px; }
.blog-link:hover { text-decoration: underline; }

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════
   BOOKING SECTION
═══════════════════════════════════════════ */
.booking-section { background: linear-gradient(135deg, var(--navy), var(--blue)); }
.booking-section .section-label { color: #7AB3FF; }
.booking-section .section-title { color: #fff; }
.booking-section .section-sub   { color: rgba(255,255,255,.7); }

.booking-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.booking-info { color: #fff; }

.booking-info-points { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.bip         { display: flex; gap: 14px; align-items: flex-start; }
.bip-icon    { width: 38px; height: 38px; min-width: 38px; background: rgba(255,255,255,.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.bip-icon svg { width: 18px; height: 18px; fill: #fff; }
.bip h4      { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.bip p       { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.5; }

.real-form   { background: #fff; border-radius: 20px; padding: 36px; }
.real-form h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 24px; }

.rf-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rf-group    { display: flex; flex-direction: column; gap: 5px; }
.rf-group.full { grid-column: 1 / -1; }

.rf-group label {
  font-size: 12px; font-weight: 700; color: var(--gray);
  text-transform: uppercase; letter-spacing: .5px;
}
.rf-group input,
.rf-group select,
.rf-group textarea {
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 11px 14px; font-family: 'Poppins', sans-serif;
  font-size: 14px; color: var(--dark); transition: border .2s; background: #fff;
}
.rf-group input:focus,
.rf-group select:focus,
.rf-group textarea:focus { outline: none; border-color: var(--blue); }
.rf-group textarea { resize: vertical; min-height: 80px; }

.btn-submit {
  background: var(--blue); color: #fff; border: none;
  padding: 15px; border-radius: 10px;
  font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; width: 100%; transition: all .2s; margin-top: 8px;
}
.btn-submit:hover { background: var(--blue2); transform: translateY(-1px); }

@media (max-width: 900px) { .booking-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer       { background: var(--dark); color: #fff; padding: 64px 24px 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo img  { height: 32px; width: auto; margin-bottom: 14px; }
.footer-brand p   { color: rgba(255,255,255,.6); font-size: 13.5px; line-height: 1.7; margin-bottom: 20px; max-width: 280px; }

.footer-socials   { display: flex; gap: 10px; }
.footer-social    { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.footer-social:hover { background: var(--blue); }
.footer-social svg   { width: 16px; height: 16px; fill: #fff; }

.footer-col h4    { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.footer-col ul    { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a     { color: rgba(255,255,255,.7); font-size: 13.5px; transition: color .2s; }
.footer-col a:hover { color: #fff; }

.footer-contact   { display: flex; flex-direction: column; gap: 12px; }
.fc-item          { display: flex; gap: 10px; align-items: flex-start; }
.fc-item svg      { width: 16px; height: 16px; fill: var(--sky); margin-top: 2px; flex-shrink: 0; }
.fc-item span,
.fc-item a        { color: rgba(255,255,255,.7); font-size: 13px; }
.fc-item a        { transition: color .2s; }
.fc-item a:hover  { color: #fff; }

.footer-bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p   { color: rgba(255,255,255,.4); font-size: 12.5px; }
.footer-bottom a   { color: rgba(255,255,255,.6); text-decoration: underline; transition: color .2s; }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════ */
.wa-float  { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; align-items: center; gap: 10px; }
.wa-label  { background: #fff; padding: 8px 14px; border-radius: 100px; font-size: 13px; font-weight: 600; color: #1A1A1A; box-shadow: 0 4px 16px rgba(0,0,0,.15); white-space: nowrap; opacity: 0; transform: translateX(10px); transition: all .3s; }
.wa-float:hover .wa-label { opacity: 1; transform: translateX(0); }
.wa-btn    { width: 56px; height: 56px; background: #0044CC; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,68,204,.4); transition: transform .2s; }
.wa-btn:hover { transform: scale(1.1); }
.wa-btn svg { width: 28px; height: 28px; fill: #fff; }


/* ═══════════════════════════════════════════
   APPLE FLOW — Reveal & Spring Animations
═══════════════════════════════════════════ */

/* Spring easing: rápido al inicio, suave al final */
.reveal {
  opacity: 0;
  transform: translateY(52px);
  transition:
    opacity .9s cubic-bezier(.16,1,.3,1),
    transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Variante scale (para cards de destino y hero card) */
.reveal-scale {
  opacity: 0;
  transform: scale(.96) translateY(24px);
  transition:
    opacity .8s cubic-bezier(.16,1,.3,1),
    transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1) translateY(0); }

/* ── Tipografía Apple: grande, apretada, impactante ── */
.hero-title {
  font-size: clamp(48px, 6.5vw, 76px) !important;
  letter-spacing: -2px !important;
  line-height: 1.0 !important;
}
.section-title {
  font-size: clamp(36px, 5vw, 60px) !important;
  letter-spacing: -1.2px !important;
  line-height: 1.05 !important;
}
.section-label {
  font-size: 11px !important;
  letter-spacing: 3px !important;
  font-weight: 700 !important;
}

/* ── Nav: frosted glass al hacer scroll ── */
nav { transition: background .4s ease, box-shadow .4s ease !important; }
nav.scrolled {
  background: rgba(0,10,40,.97) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,.07), 0 12px 40px rgba(0,0,0,.3) !important;
}

/* ── Botones: pill shape estilo Apple ── */
.btn-primary {
  border-radius: 980px !important;
  padding: 15px 32px !important;
  font-size: 15px !important;
  transition: all .45s cubic-bezier(.16,1,.3,1) !important;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,.28) !important;
}
.btn-outline {
  border-radius: 980px !important;
  padding: 13px 30px !important;
  font-size: 15px !important;
  transition: all .45s cubic-bezier(.16,1,.3,1) !important;
}
.btn-outline:hover {
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.8) !important;
  transform: translateY(-2px) !important;
}
.nav-cta { border-radius: 980px !important; }

/* ── Service cards: Apple hover lift ── */
.service-card {
  transition: all .5s cubic-bezier(.16,1,.3,1) !important;
  will-change: transform;
}
.service-card:hover {
  border-color: rgba(0,68,204,.3) !important;
  box-shadow: 0 28px 70px rgba(0,68,204,.12), 0 8px 24px rgba(0,0,0,.06) !important;
  transform: translateY(-12px) scale(1.01) !important;
}

/* ── Fleet cards ── */
.fleet-card {
  transition: all .5s cubic-bezier(.16,1,.3,1) !important;
  will-change: transform;
}
.fleet-card:hover {
  box-shadow: 0 32px 80px rgba(0,0,0,.14), 0 8px 24px rgba(0,0,0,.08) !important;
  transform: translateY(-12px) !important;
}
.fleet-img img { transition: transform .7s cubic-bezier(.16,1,.3,1) !important; }
.fleet-card:hover .fleet-img img { transform: scale(1.07) !important; }

/* ── Blog cards ── */
.blog-card {
  transition: all .5s cubic-bezier(.16,1,.3,1) !important;
  will-change: transform;
}
.blog-card:hover {
  box-shadow: 0 28px 70px rgba(0,0,0,.11), 0 8px 24px rgba(0,0,0,.07) !important;
  transform: translateY(-10px) !important;
}
.blog-img img { transition: transform .7s cubic-bezier(.16,1,.3,1) !important; }
.blog-card:hover .blog-img img { transform: scale(1.07) !important; }

/* ── Destination cards ── */
.dest-card {
  transition: transform .5s cubic-bezier(.16,1,.3,1) !important;
  will-change: transform;
}
.dest-card:hover { transform: scale(1.05) !important; }
.dest-bg img { transition: transform .7s cubic-bezier(.16,1,.3,1) !important; }
.dest-card:hover .dest-bg img { transform: scale(1.1) !important; }

/* ── Testimonial cards ── */
.testi-card {
  transition: all .5s cubic-bezier(.16,1,.3,1) !important;
  will-change: transform;
}
.testi-card:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,.09) !important;
  transform: translateY(-8px) !important;
}

/* ── Secciones más amplias ── */
.section { padding-top: 110px !important; padding-bottom: 110px !important; }

/* ── WhatsApp btn ── */
.wa-btn { transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease !important; }
.wa-btn:hover {
  transform: scale(1.15) !important;
  box-shadow: 0 12px 36px rgba(0,68,204,.5) !important;
}


/* ═══════════════════════════════════════════
   MOBILE FIXES — < 480px
   Correcciones específicas para pantallas pequeñas
═══════════════════════════════════════════ */
@media (max-width: 480px) {

  /* ── Nav mobile: logo | lang-switcher | hamburger ── */
  .nav-inner { padding: 0 16px; justify-content: flex-start !important; }
  .nav-logo  { margin-right: auto !important; }
  .lang-switcher {
    order: 2 !important;
    margin-left: 0 !important;
    margin-right: 10px !important;
  }
  .nav-hamburger { order: 3 !important; }
  .lang-btn { font-size: 10px !important; padding: 4px 10px !important; }

  /* ── Hero: texto más compacto ── */
  .hero-inner { padding: 60px 16px 48px; gap: 32px; }

  /* ── Botones hero: apilar verticalmente ── */
  .hero-btns {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .btn-primary,
  .btn-outline {
    width: 100% !important;
    justify-content: center !important;
  }

  /* ── Stats hero: 2x2 en lugar de 1 fila ── */
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px 16px !important;
  }

  /* ── Formulario rápido (hero card): fecha y pasajeros en columna ── */
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* ── Secciones: menos padding lateral ── */
  .section { padding-left: 16px !important; padding-right: 16px !important; }
  .container { padding: 0; }

  /* ── Destinos: 1 columna en móvil pequeño para mayor legibilidad ── */
  .dest-grid { grid-template-columns: 1fr 1fr !important; }
  .dest-card { height: 160px; }

  /* ── Formulario de reserva completo: 1 columna ── */
  .rf-grid { grid-template-columns: 1fr !important; }
  .real-form { padding: 24px 16px; }

  /* ── Pricing table: ajuste de padding ── */
  .pt-head, .pt-row { padding: 10px 12px; }

  /* ── Fleet: 1 columna en muy pequeño ── */
  .fleet-grid { grid-template-columns: 1fr !important; }

  /* ── Por qué nosotros: items en 1 columna ── */
  .why-items { grid-template-columns: 1fr !important; }

  /* ── Testimonios: 1 columna ── */
  .testi-grid { grid-template-columns: 1fr !important; }

  /* ── WhatsApp flotante: más pequeño para no tapar contenido ── */
  .wa-float { bottom: 16px; right: 16px; }
  .wa-btn { width: 50px !important; height: 50px !important; }
  .wa-btn svg { width: 24px !important; height: 24px !important; }
}


/* ═══════════════════════════════════════════
   TABLET FIXES — 481px – 768px
═══════════════════════════════════════════ */
@media (min-width: 481px) and (max-width: 768px) {

  /* ── Hero: apilar en tablet ── */
  .hero-inner { padding: 72px 24px 56px; gap: 40px; }

  /* ── Stats: 2x2 ── */
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }

  /* ── Servicios: 2 columnas ── */
  .services-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* ── Fleet: 1 columna en tablet pequeña ── */
  .fleet-grid { grid-template-columns: 1fr !important; }

  /* ── By: 1 columna ── */
  .why-items { grid-template-columns: 1fr 1fr; }

  /* ── Formulario de reserva: 1 columna on narrow tablet ── */
  .rf-grid { grid-template-columns: 1fr !important; }
  .real-form { padding: 28px 20px; }

  /* ── Footer: 2 columnas ── */
  .footer-top { grid-template-columns: 1fr 1fr !important; gap: 28px !important; }

  /* ── Booking grid: 1 columna ── */
  .booking-grid { grid-template-columns: 1fr !important; }
}


/* ═══════════════════════════════════════════
   FLEET + BLOG: centrar elemento solitario
   cuando hay 3 ítems en grid de 2 columnas
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .fleet-card:last-child:nth-child(odd),
  .blog-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}
