/* ===== REVIEWS + PAYMENTS SECTION ===== */
.reviews-section {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    padding: 80px 0 90px;
    color: #fff;
}

.reviews-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0.78), rgba(15,23,42,0.55));
}

.reviews-inner {
    position: relative;
    z-index: 2;
}

/* Titulos */
.reviews-title {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.reviews-title span {
    display: block;
    margin-top: .6rem;
    font-size: 1rem;
    font-weight: 400;
    color: #E5E7EB;
}

.reviews-subtitle {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: .5rem;
}

.reviews-subtitle span {
    display: block;
    font-size: .98rem;
    font-weight: 400;
    color: #D1D5DB;
}

/* TripAdvisor "glass" card */
.tripadvisor-card {
    /* background: rgba(222, 225, 231, 0.7); */
    border-radius: 24px;
    padding: 1rem 1.2rem;
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
    backdrop-filter: blur(10px);
}

/* Payment cards */
.payment-card {
    background: rgba(15,23,42,0.75);
    border-radius: 24px;
    padding: 1.6rem 1.4rem 1.4rem;
    box-shadow: 0 18px 38px rgba(0,0,0,0.45);
    backdrop-filter: blur(14px);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    height: 100%;
}

.payment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.55);
    background: rgba(8,47,73,0.9);
}

.payment-icon {
    margin-bottom: 1rem;
}

.payment-icon img {
    max-width: 220px;
    width: 100%;
    border-radius: 16px;
    display: block;
    margin: 0 auto;
}

.payment-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: .4rem;
}

.payment-card p {
    font-size: .92rem;
    color: #E5E7EB;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .reviews-title,
    .reviews-subtitle {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .reviews-title {
        font-size: 1.8rem;
    }
    .reviews-subtitle {
        font-size: 1.6rem;
    }
}

/* seccion para despues del banner y antes de review y pagos*/
/* ===== BRAND INTRO (LOGO + TEXTO) ===== */
.brand-intro {
    padding: 60px 0 70px;
    /* si tu tema ya trae fondo, esto sólo mantiene la separación */
}

.brand-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 30px 35px;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
    position: relative;
    overflow: hidden;
}

/* sutil brillo de color detrás, usando los colores del logo */
.brand-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top left, rgba(255,122,0,0.12), transparent 55%),
                radial-gradient(circle at bottom right, rgba(11,93,76,0.16), transparent 55%);
    z-index: 0;
}

.brand-card > * {
    position: relative;
    z-index: 1;
}

/* Logo */
.brand-logo {
    max-width: 260px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 18px rgba(15,23,42,0.18));
}

/* Textos */
.brand-title {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: .3rem;
    color: #0B5D4C; /* verde del concepto eco */
}

.brand-subtitle {
    font-size: .98rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #FF7A00; /* naranja del logo */
    font-weight: 600;
    margin-bottom: 1rem;
}

.brand-text {
    font-size: .97rem;
    color: #4B5563;
    margin-bottom: .7rem;
}

/* Tags / chips */
.brand-tags {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.brand-tag {
    font-size: .8rem;
    background: #F5FBF8;
    color: #0B5D4C;
    border-radius: 999px;
    padding: .35rem .9rem;
    border: 1px solid rgba(11,93,76,0.15);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
    .brand-card {
        text-align: center;
    }
    .brand-tags {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .brand-title {
        font-size: 1.7rem;
    }
}
 /*seccion de los tours*/
 /* ===== TOURS GRID (OUR TOURS IN NICARAGUA) ===== */
.tours-grid-section {
    padding-top: 60px;
    padding-bottom: 70px;

}

.tours-grid-subtitle {
    max-width: 540px;
    margin: 10px auto 0;
    color: #64748B;
    font-size: 0.98rem;
}

/* Card base */
.tour-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.18);
}

/* Imagen */
.tour-card-image {
    position: relative;
    display: block;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform .35s ease;
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.06);
}

/* Tag superior */
.tour-tag {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    background: rgba(11, 93, 76, 0.95);
    color: #fff;
    font-size: 0.78rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    letter-spacing: .02em;
}

/* Body */
.tour-card-body {
    padding: 1.3rem 1.5rem 0.9rem;
}

.tour-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0B5D4C;
    margin-bottom: .4rem;
    text-transform: uppercase;
}

.tour-card-text {
    font-size: 0.95rem;
    color: #4B5563;
}

/* Footer */
.tour-card-footer {
    padding: 0 1.5rem 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .75rem;
    border-top: 1px solid #E5E7EB;
    margin-top: .6rem;
    padding-top: .9rem;
}

.tour-brand {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9CA3AF;
    font-weight: 600;
}

/* Botón */
.btn-tour {
    display: inline-block;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #FF7A00, #FFC857);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
    transition: transform .2s ease, box-shadow .2s ease;
}

.btn-tour:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
    .tour-card-image img {
        height: 210px;
    }
}

 /* seccion de transporte*/
 /* ===== AIRPORT TRANSFER SECTION ===== */
.airport-transfer-section {
    padding: 70px 0;
    /*background: radial-gradient(circle at top left, #FDF6EC 0, #FFFFFF 40%, #F1FAF6 100%);*/
}

.airport-transfer-heading h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1F2933;
}

.airport-transfer-brand {
    margin-top: .3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: .78rem;
    color: #FF7A00;
}

.airport-transfer-text {
    font-size: .98rem;
    color: #4B5563;
    margin-bottom: .6rem;
}

.airport-transfer-bullets {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 1.3rem;
}

.airport-transfer-bullets li {
    position: relative;
    padding-left: 1.4rem;
    font-size: .95rem;
    color: #374151;
    margin-bottom: .35rem;
}

.airport-transfer-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .45rem;
    width: .55rem;
    height: .55rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #0B5D4C, #14B8A6);
}

/* CTA button */
.btn-transfer-cta {
    display: inline-block;
    margin-top: .5rem;
    padding: .75rem 1.7rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #FF7A00, #FFC857);
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .2);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn-transfer-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
    filter: brightness(1.05);
}

/* Gallery card */
.transfer-gallery-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 18px 18px 14px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
}

.transfer-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.transfer-gallery-grid a {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.transfer-gallery-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform .25s ease, filter .25s ease;
}

.transfer-gallery-grid a:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.transfer-gallery-caption {
    margin-top: 10px;
    font-size: .82rem;
    color: #6B7280;
    text-align: right;
}

/* Responsive */
@media (max-width: 991px) {
    .airport-transfer-section {
        padding: 50px 0;
    }

    .transfer-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .airport-transfer-heading h2 {
        font-size: 1.7rem;
    }

    .transfer-gallery-grid img {
        height: 110px;
    }

    .transfer-gallery-caption {
        text-align: center;
    }
}
 /*bootn fllotante*/
 /* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    width: 64px;
    height: 64px;
    bottom: 20px;
    left: 20px;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: whatsapp-fade-in 0.8s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 16px 32px rgba(0,0,0,0.35);
}

.whatsapp-icon {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 3px 4px rgba(0,0,0,0.25));
}

/* Animación de aparición */
@keyframes whatsapp-fade-in {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/*footer unuevo*/
/* ===== FOOTER MODERNO CACIQUE TOURS ===== */

.site-footer {
    background: #0b1120; /* un poco más profundo que #121921 */
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-main {
    padding-top: 50px;
    padding-bottom: 25px;
}

/* Marca */
.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 260px;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.35));
}

.footer-text {
    color: rgba(249, 250, 251, 0.9);
    line-height: 1.6;
}

/* Títulos columnas */
.footer-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 10px 0 18px;
    color: #fff;
}

/* Redes sociales */
.footer-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.footer-social-label {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 5px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(15,23,42,0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.footer-social a img {
    width: 18px;
    height: 18px;
}

.footer-social a:hover {
    transform: translateY(-2px);
    background: #111827;
    box-shadow: 0 10px 22px rgba(0,0,0,0.55);
}

/* Links y contactos usan tus estilos existentes pero afinamos un poco */
footer ul.links li a,
footer ul.contacts li a {
    opacity: 0.8;
}

footer ul.links li a:hover,
footer ul.contacts li a:hover {
    opacity: 1;
}

/* Divisor */
.footer-divider {
    border-color: rgba(148, 163, 184, 0.18);
    opacity: 1;
    margin-top: 25px;
    margin-bottom: 15px;
}

/* Selectores + tarjetas */
.footer-cards img {
    max-height: 26px;
}

ul#footer-selector {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* Ajustes responsivos */
@media (max-width: 991px) {
    .footer-main {
        padding-top: 40px;
    }

    .footer-social {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .footer-main {
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }
}


/* ===== WHY CHOOSE CACIQUE TOURS ===== */
.why-choose {
    position: relative;
    background: url('wy.jpeg') center center / cover fixed no-repeat;
    border-radius: 32px;
    overflow: hidden;
    padding: 60px 30px;
}

.why-choose::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0.85), rgba(15,23,42,0.65));
}

.why-inner {
    position: relative;
    z-index: 1;
    color: #fff;
}

.why-header h2 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 15px;
}

.why-text {
    max-width: 900px;
    margin: 0 auto 8px auto;
    color: #E5E7EB;
    font-size: 0.98rem;
}

.why-quote {
    margin-top: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FBBF24;
    font-style: italic;
}

/* Cards */
.why-features {
    margin-top: 35px;
}

.why-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 1.6rem 1.4rem 1.5rem;
    text-align: center;
    color: #111827;
    box-shadow: 0 18px 40px rgba(15,23,42,0.35);
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(15,23,42,0.45);
    background: #F9FAFB;
}

.why-icon {
    margin-bottom: 0.9rem;
}

.why-icon img {
    width: 56px;
    height: 56px;
}

.why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    text-transform: capitalize;
    color: #0B5D4C;
}

.why-card p {
    font-size: 0.9rem;
    color: #4B5563;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 767px) {
    .why-choose {
        padding: 40px 18px;
        border-radius: 24px;
    }
    .why-header h2 {
        font-size: 1.7rem;
    }
    .why-text {
        font-size: 0.95rem;
    }
}













/* ===== TOURS GALLERY SECTION ===== */

.tours-gallery-section {
  padding: 70px 0;
  background: radial-gradient(circle at top left, #fdf6ec 0, #ffffff 35%, #e0f2f1 100%);
}

.tours-gallery-heading h2 {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
}

.tours-gallery-brand {
  margin-top: 0.35rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #ff7a00;
}

.tours-gallery-text {
  font-size: 0.98rem;
  color: #4b5563;
  margin-bottom: 0.6rem;
}

.tours-gallery-bullets {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 1.2rem;
}

.tours-gallery-bullets li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.94rem;
  color: #374151;
  margin-bottom: 0.3rem;
}

.tours-gallery-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0b5d4c, #14b8a6);
}

/* Botón CTA */
.btn-tours-gallery-cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a00, #ffc857);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-tours-gallery-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  filter: brightness(1.05);
}

/* Mosaico de fotos */
.tours-gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 120px;
  gap: 8px;
}

.tour-tile {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}

/* Tiles grandes */
.tour-tile-lg {
  grid-column: span 2;
}

.tour-tile-lg-vertical {
  grid-row: span 2;
}

/* Overlay y caption */
.tour-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.7), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.tour-caption {
  position: absolute;
  left: 12px;
  bottom: 10px;
  color: #f9fafb;
  font-size: 0.8rem;
  font-weight: 600;
  text-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Hover */
.tour-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.45);
}

.tour-tile:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.tour-tile:hover::before {
  opacity: 1;
}

.tour-tile:hover .tour-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Texto debajo del mosaico */
.tours-gallery-caption {
  margin-top: 10px;
  font-size: 0.82rem;
  color: #6b7280;
  text-align: right;
}

/* Responsive */
@media (max-width: 991px) {
  .tours-gallery-section {
    padding: 50px 0 45px;
  }

  .tours-gallery-mosaic {
    grid-auto-rows: 110px;
  }
}

@media (max-width: 767px) {
  .tours-gallery-heading h2 {
    font-size: 1.7rem;
  }

  .tours-gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 120px;
  }

  .tour-tile-lg,
  .tour-tile-lg-vertical {
    grid-column: span 2;
    grid-row: span 1;
  }

  .tours-gallery-caption {
    text-align: center;
  }
}

.booking-toggle {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  background: linear-gradient(180deg, #ff7a00, #ffc857);
  color: #fff;
  border: none;
  padding: 14px 6px;
  border-radius: 0 14px 14px 0;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 18px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.booking-toggle span {
  transform: rotate(180deg); /* para leer el texto bien */
  display: inline-block;
}

.booking-toggle:hover {
  filter: brightness(1.05);
}



/* Fondo general de la página de reservas */
.booking-page {
  background: linear-gradient(180deg, #f3fbff 0%, #ffffff 40%);
  padding-top: 140px; /* deja espacio al header fijo */
}
/* === Booking page hero === */
.booking-hero {
  padding: 80px 0 40px;
  background: linear-gradient(
      135deg,
      rgba(17, 24, 39, 0.75),
      rgba(17, 24, 39, 0.35)
    ),
    url("volcan-masaya/m1.jpg") center/cover no-repeat fixed;
  color: #fff;
}

.booking-hero h1 {
  font-weight: 800;
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: #fff;
}

.booking-hero-text {
  font-size: 0.98rem;
  max-width: 620px;
}

.booking-hero-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.booking-hero-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.booking-hero-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffc857;
  font-weight: 700;
}

.booking-hero-card {
  background: rgba(255, 255, 255, 0.95);
  color: #111827;
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.booking-hero-card p {
  margin: 0;
  font-size: 0.9rem;
}

.badge-bestseller {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #ff7a00;
  color: #fff;
}

/* === Booking form section === */
.booking-section {
  padding: 40px 0 80px;
  background: #f3f4f6;
}

.booking-card {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 26px 26px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
}

.booking-card h2 {
  font-weight: 700;
  margin-bottom: 5px;
}

.booking-subtitle {
  font-size: 0.92rem;
  color: #4b5563;
  margin-bottom: 20px;
}

/* GRID */
.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.booking-form-grid .form-group-full {
  grid-column: 1 / -1;
}

.booking-form-grid .form-group {
  display: flex;
  flex-direction: column;
}

.booking-form-grid label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 4px;
}

.booking-form-grid input,
.booking-form-grid select,
.booking-form-grid textarea {
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 8px 10px;
  font-size: 0.9rem;
  color: #111827;
  background-color: #f9fafb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.booking-form-grid textarea {
  resize: vertical;
}

.booking-form-grid input:focus,
.booking-form-grid select:focus,
.booking-form-grid textarea:focus {
  outline: none;
  border-color: #ff7a00;
  box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.25);
  background-color: #ffffff;
}

.recaptcha-wrapper {
  margin-top: 4px;
}

/* Botón */
.booking-submit-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 11px 18px;
  background: linear-gradient(135deg, #ff7a00, #ffc857);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  font-size: 0.9rem;
}

.booking-submit-btn:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4);
}

.booking-note {
  margin-top: 6px;
  font-size: 0.78rem;
  color: #6b7280;
  text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
  .booking-hero {
    padding: 70px 0 40px;
    background-attachment: scroll;
  }
}

@media (max-width: 767px) {
  .booking-hero h1 {
    font-size: 1.9rem;
  }

  .booking-card {
    padding: 24px 18px 22px;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
  }
}


/* CARD PRINCIPAL DEL FORMULARIO */
.booking-wrapper {
  padding: 10px 0 70px 0;
}

.booking-card {
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 26px 28px 26px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #ff7700;
}

/* Header interno del card */
.booking-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.booking-card-header h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.booking-card-header p {
  margin: 0;
  color: #7a8593;
  font-size: 0.95rem;
}

/* Badge de seguridad */
.booking-badge-secure {
  display: inline-flex;
  align-items: center;
  background: #e7f7f1;
  color: #158f55;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  margin-top: 8px;
}

.booking-badge-secure .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #27ae60;
  margin-right: 6px;
}

/* Inputs & labels */
.booking-card label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a8593;
}

.booking-card .required {
  color: #ff7700;
}

.booking-input {
  border-radius: 14px;
  border: 1px solid #dde3ec;
  background: #f9fafc;
  padding: 10px 14px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.booking-input:focus {
  background: #ffffff;
  border-color: #ff7700;
  box-shadow: 0 0 0 0.12rem rgba(255, 119, 0, 0.15);
}

/* Placeholders */
.booking-input::placeholder {
  color: #b6bfca;
  font-size: 0.9rem;
}

/* Textarea */
textarea.booking-input {
  resize: vertical;
}

/* Footer del formulario */
.booking-form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  gap: 14px;
}

.booking-form-footer .small-note {
  margin: 0;
  font-size: 0.8rem;
  color: #9aa3b3;
}

/* Botón principal */
.booking-btn-primary {
  background: #ff7700;
  border-radius: 999px;
  border: none;
  padding: 10px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(255, 119, 0, 0.35);
}

.booking-btn-primary:hover,
.booking-btn-primary:focus {
  background: #ff8f2e;
  box-shadow: 0 16px 40px rgba(255, 143, 46, 0.4);
}

/* Responsive */
@media (max-width: 767.98px) {
  .booking-card {
    padding: 24px 18px 24px 18px;
  }

  .booking-hero-inner h1 {
    font-size: 1.9rem;
  }

  .booking-card-header {
    flex-direction: column;
    gap: 8px;
  }

  .booking-form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Animación de flotación */
@keyframes floatButton {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

/* Animación de brillo */
@keyframes shineButton {
  0% {
    background-position: -200px center;
  }
  100% {
    background-position: 200px center;
  }
}

/* Aplicar animaciones al botón */
.reserve-btn {
  animation: floatButton 3.2s ease-in-out infinite;
  background: linear-gradient(90deg, #ff7700, #ff8800, #ff7700);
  background-size: 200px 100%;
  animation-delay: 0.5s;
}

.reserve-btn:hover {
  animation: shineButton 1.4s linear infinite, floatButton 3.2s ease-in-out infinite;
  background-size: 250px 100%;
}
