:root {
      --bg-main: #050508;
      --bg-alt: #0f1014;
      --bg-soft: #171821;
      --gold: #d4af37;
      --gold-soft: #c89b3c;
      --text-main: #f5f5f5;
      --text-muted: #a8a8b3;
      --border-soft: #262733;
      --radius-lg: 18px;
      --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
    }

    * {
      box-sizing: border-box;
    }

    body {
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #171821 0, #050508 52%);
      color: var(--text-main);
      scroll-behavior: smooth;
    }

    a {
      color: var(--gold);
      text-decoration: none;
    }

    a:hover {
      color: #f7d879;
    }

    /* NAVBAR */
    .navbar {
      padding: 0.9rem 1.5rem;
      transition: background-color 0.25s ease, box-shadow 0.25s ease;
      background: transparent;
    }

    .navbar.scrolled {
      background: rgba(5, 5, 8, 0.96);
      box-shadow: 0 10px 35px rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(14px);
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-size: 0.92rem;
    }

    .navbar-brand span.logo-text-main {
      font-size: 1.1rem;
      letter-spacing: 0.18em;
    }

    .navbar-brand .logo-badge {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(212, 175, 55, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at 30% 20%, #f8e7a4 0, #d4af37 38%, #8a6d1e 100%);
      font-weight: 700;
      font-size: 0.95rem;
      color: #181818;
      box-shadow: 0 0 25px rgba(212, 175, 55, 0.75);
    }

    .nav-link {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      padding: 0.3rem 0.6rem !important;
      position: relative;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--gold);
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.25rem;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #f7d879, #d4af37, #f8e7a4);
      transition: width 0.22s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    .btn-gold {
      background: linear-gradient(135deg, #f7d879 0%, #d4af37 40%, #c89b3c 100%);
      border: none;
      color: #181818;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-size: 0.8rem;
      border-radius: 999px;
      padding: 0.6rem 1.4rem;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75);
    }

    .btn-gold:hover {
      filter: brightness(1.08);
      transform: translateY(-1px);
    }

    .btn-outline-gold {
      border-radius: 999px;
      border: 1px solid rgba(212, 175, 55, 0.75);
      color: var(--gold);
      font-size: 0.8rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.55rem 1.2rem;
      background: transparent;
    }

    .btn-outline-gold:hover {
      background: rgba(212, 175, 55, 0.1);
    }

    /* HERO */


    .hero-section{

      position:relative;

      height:90vh;

      min-height:700px;

      display:flex;

      align-items:center;

      overflow:hidden;

  }

  .hero-section .container{

    position:relative;

    z-index:5;

}

.hero-section .row{

    min-height:85vh;

    align-items:center;

}

.hero-title{

    font-size:78px;

    line-height:.95;

    font-weight:800;

    letter-spacing:-3px;

    color:#FFF;

    margin-bottom:30px;

    text-transform:uppercase;

    max-width:700px;

}

.hero-subtitle{

    font-size:24px;

    line-height:1.6;

    color:#d4d4d4;

    max-width:650px;

    margin-bottom:45px;

}

.btn-gold,
.btn-outline-gold{

    height:64px;

    padding:20px 40px;

    font-size:17px;

    font-weight:700;

}



.hero-tag{

display:flex;

align-items:center;

gap:18px;

background:none;

border:none;

padding:0;

font-size:18px;

letter-spacing:4px;

text-transform:uppercase;

color:#E8C76A;

margin-bottom:40px;

}

.hero-tag:before{

content:"";

width:40px;

height:4px;

background:#D4AF37;

display:block;

}

.hero-phone{

margin-top:55px;

}

.hero-phone a{

font-size:32px;

font-weight:700;

color:#FFF;

}


.hero-overlay{

position:absolute;

inset:0;

background:

linear-gradient(

90deg,

rgba(0,0,0,.85) 0%,

rgba(0,0,0,.55) 45%,

rgba(0,0,0,.25) 100%

);

z-index:0;

}


.hero-video{

object-fit:cover;

filter:

brightness(.75)

contrast(1.15)

saturate(1.1);

}


.navbar{

height:95px;

background:rgba(0,0,0,.52);

backdrop-filter:blur(15px);

}


    /* Video de fondo */
    .hero-video-wrap {
      position: absolute;
      inset: 0;
      overflow: hidden;
      z-index: -2;
    }

    .hero-video {
      width: 100%;
      height: 90%;
      margin-top: 50px;
      object-fit: cover;
      filter: saturate(1.1) contrast(1.1) brightness(0.65);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.3), transparent 55%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0, rgba(0, 0, 0, 0.92) 45%, #000 100%);
      z-index: -1;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.2rem 0.8rem;
      border-radius: 999px;
      border: 1px solid rgba(212, 175, 55, 0.28);
      background: rgba(0, 0, 0, 0.6);
      font-size: 0.7rem;
      color: var(--text-muted);
      margin-bottom: 0.8rem;
    }

    .hero-tag i {
      color: var(--gold);
    }

    .hero-title {
      font-size: clamp(2.3rem, 4.2vw, 3.2rem);
      font-weight: 600;
      line-height: 1.1;
      margin-bottom: 0.6rem;
    }

    .hero-title span.highlight {
      background: linear-gradient(90deg, #f7e6a1, #d4af37, #f8e7a4);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      font-size: 0.98rem;
      color: var(--text-muted);
      max-width: 460px;
      margin-bottom: 1.4rem;
    }

    .hero-phone {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-top: 1.5rem;
      font-size: 0.88rem;
    }

    .hero-phone .circle {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid rgba(212, 175, 55, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(10, 10, 14, 0.85);
      color: var(--gold);
      box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }

    /* HERO FORM CARD */
    .booking-card {
      background: rgba(10, 11, 18, 0.96);
      border-radius: var(--radius-lg);
      padding: 1.4rem 1.3rem;
      border: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .booking-card::before {
      content: "";
      position: absolute;
      inset: -120px auto auto -120px;
      background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.25), transparent 60%);
      opacity: 0.35;
      pointer-events: none;
    }

    .booking-title {
      font-size: 1.05rem;
      font-weight: 500;
      margin-bottom: 0.2rem;
    }

    .booking-sub {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-bottom: 0.8rem;
    }

    .form-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-muted);
      margin-bottom: 0.15rem;
    }

    .form-control,
    .form-select {
      background-color: rgba(10, 11, 18, 0.85);
      border: 1px solid var(--border-soft);
      border-radius: 10px;
      padding: 0.45rem 0.75rem;
      font-size: 0.85rem;
      color: var(--text-main);
    }

    .form-control:focus,
    .form-select:focus {
      box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.5);
      border-color: var(--gold-soft);
      background-color: rgba(10, 11, 18, 0.98);
    }

    .form-control::placeholder {
      color: #6e6f7c;
    }

    /* GENERIC SECTIONS - más espacio */
    section {
      padding: 40px 0;
    }

    .section-title {
      font-size: 1.8rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .section-kicker {
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-size: 0.76rem;
      color: var(--text-muted);
      margin-bottom: 0.3rem;
    }

    .title-underline {
      width: 70px;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, #f7e6a1, #d4af37, #f8e7a4);
      margin-bottom: 1.8rem;
    }

    .section-muted {
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    /* ABOUT / FEATURES */
    .feature-card {
      background: linear-gradient(145deg, #14151f 0, #0b0c12 50%, #07070b 100%);
      border-radius: var(--radius-lg);
      padding: 1rem 1.1rem;
      border: 1px solid rgba(255, 255, 255, 0.03);
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.7);
      height: 100%;
    }

    .feature-icon {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at 20% 0, #f7e6a1 0, #d4af37 36%, #8a6d1e 100%);
      color: #181818;
      margin-bottom: 0.7rem;
      font-size: 1.1rem;
    }

    .feature-title {
      font-weight: 500;
      font-size: 1rem;
      margin-bottom: 0.25rem;
    }

    .feature-text {
      color: var(--text-muted);
      font-size: 0.88rem;
    }

    /* FLEET SLIDER */
    #fleet {
      background: radial-gradient(circle at top, #14151f 0, #050508 65%);
    }

    .fleet-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1.3rem;
      flex-wrap: wrap;
    }

    .fleet-pill {
      border-radius: 999px;
      border: 1px solid rgba(212, 175, 55, 0.4);
      padding: 0.25rem 0.7rem;
      font-size: 0.76rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
    }

    .fleet-pill i {
      color: var(--gold-soft);
    }

    .fleet-carousel {
      margin-top: 0.5rem;
    }

    .fleet-card {
      background: linear-gradient(145deg, #10111a 0, #080910 52%, #030306 100%);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.04);
      box-shadow: var(--shadow-soft);
    }

    .fleet-img-wrap {
      position: relative;
      background: #050508;
      padding: 1rem;
    }

    .fleet-img-wrap::after {
      content: "";
      position: absolute;
      inset: auto -40px -80px -40px;
      background: radial-gradient(circle at bottom, rgba(0, 0, 0, 0.85), transparent 70%);
      opacity: 0.9;
      pointer-events: none;
    }

    .fleet-img {
      width: 100%;
      max-height: 320px;
      object-fit: contain;
      position: relative;
      z-index: 2;
      filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.9));
    }

    .fleet-body {
      padding: 1rem 1.1rem 1.2rem;
    }

    .fleet-title {
      font-size: 1.05rem;
      font-weight: 500;
      margin-bottom: 0.2rem;
    }

    .fleet-sub {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-bottom: 0.5rem;
    }

    .fleet-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      font-size: 0.8rem;
    }

    .fleet-meta span {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      color: var(--text-muted);
    }

    .fleet-meta i {
      color: var(--gold-soft);
    }

    .carousel-indicators [data-bs-target] {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background-color: rgba(255, 255, 255, 0.3);
    }

    .carousel-indicators .active {
      background-color: var(--gold-soft);
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.9));
    }

    /* SERVICES LIST */
    .service-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border-radius: 999px;
      border: 1px solid rgba(212, 175, 55, 0.3);
      padding: 0.25rem 0.85rem;
      font-size: 0.78rem;
      color: var(--text-muted);
      margin: 0.18rem;
      background: rgba(6, 7, 12, 0.9);
    }

    .service-badge i {
      color: var(--gold-soft);
    }

    /* CTA BAND */
    .cta-band {
      background: linear-gradient(135deg, #f7e6a1 0%, #d4af37 45%, #a87e21 100%);
      border-radius: 20px;
      padding: 1.6rem 1.5rem;
      color: #181818;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
      margin-top: 2.5rem;
    }

    .cta-band p {
      margin: 0;
      font-size: 0.9rem;
    }

    /* CONTACT */
    #contact {
      background: linear-gradient(180deg, #050508 0, #000 100%);
    }

    .contact-card {
      background: linear-gradient(150deg, #151622 0, #090a10 45%, #050508 100%);
      border-radius: var(--radius-lg);
      padding: 1.4rem 1.4rem;
      border: 1px solid rgba(255, 255, 255, 0.04);
      box-shadow: var(--shadow-soft);
      height: 100%;
    }

    .contact-list {
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 0.9rem;
    }

    .contact-list li {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      margin-bottom: 0.5rem;
      color: var(--text-muted);
    }

    .contact-list i {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid rgba(212, 175, 55, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-soft);
      font-size: 0.85rem;
    }

    .contact-socials {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 0.6rem;
    }

    .contact-socials a {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid rgba(212, 175, 55, 0.45);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-soft);
      font-size: 0.85rem;
    }

    .contact-socials a:hover {
      background: rgba(212, 175, 55, 0.1);
    }

    /* FOOTER */
    footer {
      border-top: 1px solid #111118;
      padding: 20px 0 24px;
      font-size: 0.8rem;
      color: var(--text-muted);
      background: #000000;
    }

    /* WHATSAPP FLOAT */
    .whatsapp-float {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 999;
    }

    .whatsapp-float a {
      width: 56px;
      height: 56px;
      border-radius: 999px;
      background: #25d366;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
    }

    .whatsapp-float a:hover {
      filter: brightness(1.08);
    }

    /* RESPONSIVE */
    @media (max-width: 991.98px) {
      .hero-section {
        padding-top: 96px;
        padding-bottom: 70px;
      }
    }

    @media (max-width: 767.98px) {
      section {
        padding: 70px 0;
      }

      .booking-card {
        margin-top: 2rem;
      }

      .cta-band {
        text-align: center;
      }
    }
    
        /* WHY HORUS – sección de una sola unidad */
    .why-section {
      background: radial-gradient(circle at top, #14151f 0, #050508 65%);
    }

    .why-layout {
      margin-top: 1rem;
    }

    .why-card {
      background: linear-gradient(145deg, #171821 0, #0b0c12 50%, #06070c 100%);
      border-radius: 16px;
      padding: 1rem 1.1rem;
      border: 1px solid rgba(255, 255, 255, 0.04);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.75);
      position: relative;
      overflow: hidden;
    }

    .why-card::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      border-style: solid;
      border-width: 0 0 18px 18px;
      border-color: transparent transparent rgba(0, 0, 0, 0.9) rgba(212, 175, 55, 0.9);
      opacity: 0.95;
    }

    .why-card-title {
      font-size: 0.98rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .why-card-text {
      font-size: 0.86rem;
      color: var(--text-muted);
      margin-bottom: 0;
    }

    .why-image-wrap {
      position: relative;
      display: inline-block;
      padding: 1rem 1.5rem 0.5rem;
      border-radius: 999px;
    }

    .why-image {
      max-width: 100%;
      height: auto;
      border-radius: 26px;
      box-shadow: 0 26px 60px rgba(0, 0, 0, 0.95);
      position: relative;
      z-index: 2;
    }

    .why-image-shadow {
      position: absolute;
      inset: auto 14% -5% 14%;
      height: 40px;
      background: radial-gradient(circle at center, rgba(0, 0, 0, 0.85) 0, transparent 70%);
      z-index: 1;
    }

    @media (max-width: 991.98px) {
      .why-layout {
        text-align: center;
      }

      .why-card {
        text-align: left;
      }
    }

    @media (max-width: 767.98px) {
      .why-card {
        padding: 0.9rem 1rem;
      }
    }

    .nav-link.active{
        color:#fff!important;
    }
    
        .contact-toggle {
      display: inline-flex;
      background: #10111a;
      border-radius: 999px;
      padding: 3px;
      border: 1px solid var(--border-soft);
    }

    .contact-toggle-btn {
      border: none;
      background: transparent;
      color: var(--text-muted);
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.11em;
      padding: 0.32rem 0.9rem;
      border-radius: 999px;
      cursor: pointer;
    }

    .contact-toggle-btn.active {
      background: linear-gradient(135deg, #f7e6a1, #d4af37, #a87e21);
      color: #181818;
      font-weight: 600;
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.75);
    }

    .contact-form-pane {
      transition: opacity 0.18s ease;
    }

/* ================================
   SECCIÓN DE 3 PILARES (COMFORT / PRIVACY / LUXURY)
   ================================ */
.about-pillars {
  padding: 130px 0 100px;
}

.about-pillar {
  font-size: 60px;
  font-weight: 600;
  letter-spacing: -1px;
  color: #fff;
  text-transform: none;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

/* Glow premium muy tenue */
.about-pillar.pillar-show {
  opacity: 1;
  transform: translateY(0);
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.25);
}

/* Línea dorada animada */
.pillar-underline {
  width: 0%;
  height: 4px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, #d4af37, #f5d878);
  border-radius: 3px;
  transition: width 1s ease;
}

.pillar-show + .pillar-underline {
  width: 60%;
}

/* Responsive */
@media(max-width:768px){
  .about-pillar{
    font-size: 40px;
  }
}

/* TOURS: video solo en el 50% derecho */
.tours-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: #050505; /* fondo sólido lado izquierdo */
}

/* Contenedor del video: pegado a la derecha, 50% del ancho */
.tours-video-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  z-index: -2;
}

.tours-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

/* Capa de oscurecimiento y degradado hacia la izquierda
   (se desvanece donde está el texto) */
.tours-video-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

/* Asegura que el contenido quede encima del video */
.tours-section .container {
  position: relative;
  z-index: 1;
}

/* --- Versión móvil: video de fondo completo detrás del texto --- */
@media (max-width: 991.98px) {
  .tours-video-wrap {
    width: 100%;
    left: 0;
    right: 0;
    opacity: 0.6; /* un poco más oscuro para legibilidad */
  }

  .tours-video-overlay {
    background: rgba(0, 0, 0, 0.55);
  }

  .tours-section {
    padding: 3rem 0;
  }
}

/* SECCIÓN TOURS — Fondo con video en el lado derecho */
.tours-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: #050505; /* lado izquierdo oscuro, uniforme */
}

/* Contenedor del video: siempre en el lado derecho (50%) */
.tours-video-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}

/* Video ajustado al contenedor */
.tours-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

/* Overlay SOLO sobre la mitad derecha con degradado
   — Oscuro en el borde izquierdo del video
   — Transparente en el borde derecho del video */
.tours-video-fade {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    to right,
    rgba(5, 5, 5, 0.95) 0%,     /* completamente oscuro al inicio del video */
    rgba(5, 5, 5, 0.6) 35%,     /* transición suave */
    rgba(5, 5, 5, 0.0) 100%     /* completamente transparente a la derecha */
  );
}

/* Contenido siempre encima del video */
.tours-section .container {
  position: relative;
  z-index: 1;
}

/* MOBILE — el video ocupa todo el fondo */
@media (max-width: 991.98px) {

  .tours-video-wrap {
    width: 100%;
    left: 0;
    opacity: 0.65; /* un poco más oscuro para legibilidad */
  }

  .tours-video-fade {
    width: 100%;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.7) 0%,
      rgba(0,0,0,0.4) 50%,
      rgba(0,0,0,0.2) 100%
    );
  }
}

.ratio-4x4 { --bs-aspect-ratio: 100%; }
    .flotante {
      position: fixed;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      background-color: rgba(0,0,0,.3);
      color:#fff;
      padding: 5px;
      border-radius: 10px 0 0 10px;
      text-align:center;
      z-index:9999;
    }

    /* NUEVO: badge de años de experiencia */
    .about-experience-badge {
      display: inline-block;
      margin-top: 0.4rem;
      margin-bottom: 0.8rem;
      padding: 0.35rem 0.8rem;
      border-radius: 999px;
      font-size: 0.8rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      background: rgba(187, 151, 87, 0.12);
      color: #b58b42;
      font-weight: 500;
    }

    /* NUEVO: servicios como tarjetas */
    .service-grid {
      margin-top: 1rem;
    }
    .service-card {
      background: #111111;
      border-radius: 18px;
      padding: 1.8rem 1.6rem;
      height: 100%;
      box-shadow: 0 14px 35px rgba(0,0,0,0.4);
      border: 1px solid rgba(255,255,255,0.04);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 40px rgba(0,0,0,0.55);
      border-color: rgba(187,151,87,0.6);
    }
    .service-icon {
      margin-bottom: 0.9rem;
      color: #cba15a;
    }
    .service-title {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
    }
    .service-text {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin: 0;
    }

    /* NUEVO: sección Cómo reservar */
    .how-reserve-title {
      font-size: 1.6rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }
    .how-step {
      height: 100%;
    }
    .how-step-number {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: #b58b42;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 1.1rem;
      margin-bottom: 1rem;
    }
    .how-step-title {
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
    }
    .how-step-text {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    /* NUEVO: sección Tours CDMX */
    .tours-section {
      padding: 4rem 0;
      background: radial-gradient(circle at top left, rgba(187,151,87,0.18), transparent 55%);
    }
    .tours-pill {
      display: inline-block;
      padding: 0.3rem 0.9rem;
      border-radius: 999px;
      background: rgba(0,0,0,0.85);
      color: #f7f7f7;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      margin-bottom: 0.8rem;
    }
    .tours-list li {
      margin-bottom: 0.35rem;
    }

    /* NUEVO: sección Mundial */
    .worldcup-section {
      padding: 4rem 0;
      background: #050505;
      border-top: 1px solid rgba(255,255,255,0.04);
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .worldcup-tag {
      display: inline-block;
      padding: 0.3rem 0.9rem;
      border-radius: 999px;
      border: 1px solid rgba(187,151,87,0.7);
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #cba15a;
      margin-bottom: 0.8rem;
    }
    .worldcup-image-wrap {
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 14px 35px rgba(0,0,0,0.6);
    }
    .worldcup-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* NUEVO: FAQ */
    .faq-section {
      padding: 4rem 0;
      background: #050505;
    }
    .faq-accordion .accordion-item {
      background-color: #080808;
      border-radius: 12px;
      margin-bottom: 0.7rem;
      border: 1px solid rgba(255,255,255,0.06);
      overflow: hidden;
    }
    .faq-accordion .accordion-button {
      background-color: transparent;
      color: #ffffff;
      font-weight: 500;
      padding-top: 0.9rem;
      padding-bottom: 0.9rem;
    }
    .faq-accordion .accordion-button:not(.collapsed) {
      background-color: rgba(187,151,87,0.08);
      color: #ffffff;
      box-shadow: none;
    }
    .faq-accordion .accordion-body {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    @media (max-width: 767.98px) {
      .worldcup-section {
        padding: 3rem 0;
      }
      .tours-section {
        padding: 3rem 0;
      }
    }



.pin-label { pointer-events:none; }
.pin-label-box{
  transform: translate(-50%, -42px);
  background: rgba(255,255,255,.95);
  color:#111827;
  border:1px solid rgba(0,0,0,.12);
  border-radius:10px;
  padding:6px 10px;
  font-size:12px;
  font-weight:600;
  white-space:nowrap;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}





/* ===============================
   MARKERS ORIGEN / DESTINO
================================ */
.map-marker {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 6px 15px rgba(0,0,0,.35);
  border: 2px solid #fff;
}

.map-marker.origen {
  background: #7CFF00; /* verde limón */
}

.map-marker.destino {
  background: #FF3B30; /* rojo */
  color: #fff;
}

/* Quitar el fondo/borde blanco que Leaflet mete por default en divIcon */
.horus-pin.leaflet-div-icon,
.pin-label.leaflet-div-icon{
  background: transparent !important;
  border: none !important;
}





/*==========================================
ABOUT PREMIUM
==========================================*/


#about{

    background:#050505;
    padding:120px 0;

}

.about-image{

    overflow:hidden;
    border-radius:26px;

    box-shadow:0 35px 70px rgba(0,0,0,.55);

}

.about-image img{

    width:100%;
    height:720px;

    object-fit:cover;

    display:block;

}

.about-content{

    padding-left:60px;

}

@media(max-width:991px){

.about-content{

    padding-left:0;
    margin-top:50px;

}

.about-image img{

    height:auto;

}

}





#about .container{

position:relative;

z-index:5;

}

.about-left{

max-width:720px;

}


.about-title{

font-size:60px;

line-height:.95;

font-weight:800;

letter-spacing:-3px;

text-transform:uppercase;

margin-bottom:35px;

max-width:700px;

}

.about-title span{

color:#D4AF37;

}



.about-badge{

display:inline-flex;

align-items:center;

padding:14px 28px;

border-radius:999px;

background:rgba(212,175,55,.08);

border:1px solid rgba(212,175,55,.25);

color:#D4AF37;

letter-spacing:3px;

font-size:15px;

margin-bottom:25px;

}

.about-text{

font-size:18px;

line-height:1.9;

color:#BDBDBD;

max-width:720px;

margin-bottom:50px;

}


.feature-card{

    background:rgba(13,13,16,.78);

    backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,.05);

    border-radius:20px;

    padding:24px;

    transition:.35s;

    height:100%;

}

.feature-card:hover{

    transform:translateY(-5px);

    border-color:#D4AF37;

    box-shadow:0 18px 45px rgba(0,0,0,.45);

}

.feature-icon{

    width:56px;

    height:56px;

    border-radius:16px;

    font-size:22px;

    margin-bottom:18px;

}

.feature-title{

    font-size:20px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:10px;

}

.feature-text{

    font-size:15px;

    line-height:1.7;

    color:#AFAFAF;

}



.feature-horizontal{

    display:flex;

    align-items:flex-start;

    gap:22px;

    padding:15px 5px;

}

.feature-icon-wrap{

    flex-shrink:0;

}

.feature-circle{

    width:70px;

    height:70px;

    border-radius:50%;

    border:1px solid rgba(212,175,55,.25);

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;

}

.feature-circle i{

    font-size:34px;

    color:#D4AF37;

}

.feature-content{

    flex:1;

}

.feature-heading{

    font-size:22px;

    margin-bottom:8px;

}

.feature-content p{

    margin:0;

    color:#AFAFAF;

    line-height:1.6;

}


/*======================================
        NUESTRA ESENCIA
======================================*/

.about-divider{

    width:100%;

    height:1px;

    background:linear-gradient(90deg,
        transparent,
        rgba(212,175,55,.45),
        transparent);

    margin:100px 0 80px;

}

/* Tarjeta */

.about-value{

    position:relative;

    padding:45px 35px;

    height:100%;

    border:1px solid rgba(255,255,255,.06);

    border-radius:18px;

    background:rgba(255,255,255,.02);

    overflow:hidden;

    transition:.35s;

}

/* Número */

.about-value-number{

    position:absolute;

    top:18px;

    right:22px;

    font-size:72px;

    font-weight:800;

    color:rgba(212,175,55,.08);

    line-height:1;

    user-select:none;

}

/* Título */

.about-value h3{

    position:relative;

    margin:0;

    margin-bottom:18px;

    font-size:34px;

    font-weight:700;

    color:#fff;

}

/* Línea */

.about-value h3::after{

    content:"";

    display:block;

    width:55px;

    height:3px;

    background:#D4AF37;

    border-radius:10px;

    margin-top:14px;

}

/* Texto */

.about-value p{

    margin:0;

    color:#bdbdbd;

    line-height:1.9;

    font-size:16px;

}

/* Hover */

.about-value:hover{

    transform:translateY(-8px);

    border-color:rgba(212,175,55,.25);

    background:rgba(255,255,255,.035);

    box-shadow:0 25px 50px rgba(0,0,0,.25);

}

.about-value:hover .about-value-number{

    color:rgba(212,175,55,.18);

}

/*======================================
        RESPONSIVE
======================================*/

@media(max-width:991px){

    .about-divider{

        margin:70px 0 60px;

    }

    .about-value{

        padding:35px 28px;

    }

    .about-value h3{

        font-size:28px;

    }

    .about-value-number{

        font-size:56px;

    }

}

@media(max-width:767px){

    .about-divider{

        margin:60px 0 50px;

    }

    .about-value{

        padding:28px 24px;

    }

    .about-value h3{

        font-size:24px;

    }

    .about-value p{

        font-size:15px;

        line-height:1.7;

    }

    .about-value-number{

        font-size:48px;

    }

}



.service-card{
    text-align:center;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:35px 25px;
}

.service-card .service-icon{
    margin-bottom:18px;
}

.service-card .service-title{
    text-align:center;
    margin-bottom:10px;
}

.service-card .service-text{
    text-align:center;
    margin-bottom:0;
    max-width:260px;
}





/*==================================================
        WHY HF EXECUTIVE TRANSPORT
==================================================*/

.why-hf-section{
    padding:70px 0;
    position:relative;
    overflow:hidden;
}

.why-hf-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    top:-220px;
    right:-180px;
    pointer-events:none;
}

.why-hf-image{
    position:relative;
    border-radius:35px;
    overflow:hidden;
    background:#111;
    box-shadow:
        0 30px 70px rgba(0,0,0,.65),
        0 0 0 1px rgba(255,255,255,.05);
}

.why-hf-image img{
    width:100%;
    object-fit:cover;
    display:block;
}

.why-hf-image:hover img{
    transform:scale(1.05);
}

.why-item{

    display:flex;
    align-items:flex-start;
    gap:22px;

    padding:22px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.why-item:last-child{
    border-bottom:none;
}

.why-item:hover{

    transform:translateX(12px);

}

.why-icon{

    width:62px;
    height:62px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
        linear-gradient(135deg,#f5d878,#d4af37,#9b7420);

    color:#111;

    font-size:24px;

    flex-shrink:0;

    box-shadow:
        0 10px 25px rgba(212,175,55,.25);

    transition:.35s;

}

.why-item:hover .why-icon{

    transform:rotate(-8deg) scale(1.08);

    box-shadow:
        0 18px 40px rgba(212,175,55,.45);

}

.why-item h4{

    color:#FFF;

    font-size:23px;

    font-weight:600;

    margin-bottom:8px;

}

.why-item p{

    color:#b8b8b8;

    line-height:1.75;

    margin:0;

    font-size:15px;

}

/* Responsive */

@media(max-width:991px){

    .why-hf-section{

        padding:80px 0;

    }

    .why-hf-image{

        margin-bottom:45px;

    }

    .why-item{

        padding:18px 0;

    }

}

@media(max-width:768px){

    .why-item{

        gap:16px;

    }

    .why-icon{

        width:52px;
        height:52px;
        font-size:20px;

    }

    .why-item h4{

        font-size:19px;

    }

    .why-item p{

        font-size:14px;

    }

}