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

html { 
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #f8fafc;
  color: #0f172a;
  line-height: 1.6;
}

/* ========================= */
/* UTILIDADES */
/* ========================= */
.container {
  width: min(92%, 1200px);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.center {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: #06b6d4;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-weight: 800;
  color: #0f172a;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.25;
}

p {
  color: #475569;
  font-size: 1rem;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
}

.section-heading p {
  font-size: 1.02rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo {
  height:38px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-text {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
  color: #0f172a;
  line-height: 1;
  white-space: nowrap;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.main-nav a {
  text-decoration: none;
  color: #0f172a;
  font-weight: 600;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #06b6d4;
  transition: 0.3s;
}

.main-nav a:hover::after {
  width: 100%;
}

/* ========================= */
/* Movil */
/* ========================= */
@media (max-width: 900px) {
  .logo-ribbon {
    min-width: 110px;
    height: 50px;
    padding: 0 14px 0 12px;
  }

  .site-logo {
    height: 34px;
  }

  .logo-text {
    font-size: 0.95rem;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .logo {
    gap: 10px;
  }

  .logo-ribbon {
    min-width: 92px;
    height: 46px;
    border-radius: 14px;
  }

  .site-logo {
    height: 28px;
  }

  .logo-text {
    font-size: 0.88rem;
    max-width: 140px;
    line-height: 1.05;
  }
}
/* ========================= */
/* BOTONES */
/* ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(14, 165, 233, 0.32);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0891b2, #0284c7);
  box-shadow: 0 18px 40px rgba(2, 132, 199, 0.38);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.btn-secondary:hover {
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

/* ========================= */
/* HEADER */
/* ========================= */
/* ========================= */
/* HEADER */
/* ========================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}

.logo-ribbon {
  position: relative;
  height: 58px;
  min-width: 140px;
  padding: 0 18px 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #eaf7fb 0%, #dff3f8 45%, #eef8fb 100%);
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.logo-ribbon::before,
.logo-ribbon::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.logo-ribbon::before {
  background:
    radial-gradient(circle at left center, rgba(6, 182, 212, 0.10) 0, rgba(6, 182, 212, 0.10) 22%, transparent 23%),
    linear-gradient(130deg, transparent 0 58%, rgba(6, 182, 212, 0.10) 59% 66%, transparent 67%),
    linear-gradient(130deg, transparent 0 66%, rgba(14, 165, 233, 0.08) 67% 73%, transparent 74%);
}

.logo-ribbon::after {
  background: linear-gradient(90deg, rgba(255,255,255,0.24), transparent 40%);
}

.site-logo {
  position: relative;
  z-index: 2;
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-size: 1.08rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  color: #334155;
  font-weight: 600;
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #06b6d4;
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: #06b6d4;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  font-size: 1.6rem;
  line-height: 1;
  background: transparent;
  border: none;
  color: #0f172a;
  cursor: pointer;
}

/* ========================= */
/* HERO */
/* ========================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 110px;
  display: flex;
  align-items: center;
  color: white;
  background:
    linear-gradient(120deg, rgba(2, 6, 23, 0.48), rgba(15, 23, 42, 0.18)),
    url("assets/imagines/hero/home.hero.jpg") center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -120px;
  top: 80px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 65%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.3) 0%,
    rgba(15, 23, 42, 0.12) 42%,
    rgba(15, 23, 42, 0.06) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 44px;
}

.hero-text {
  max-width: 680px;
}

.hero-text .eyebrow {
  color: #67e8f9;
}

.hero-text h1 {
  margin: 14px 0 18px;
  color: #ffffff;
  max-width: 900px;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.55);
}

.hero-text p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  max-width: 640px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.hero-buttons {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-features {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-features span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.hero-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 24px;
  padding: 28px;
  color: #0f172a;
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.search-card h2 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.search-card p {
  font-size: 0.98rem;
}

.quick-options {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.quick-options a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  padding: 14px 16px;
  border-radius: 14px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 600;
  border: 1px solid #e2e8f0;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.quick-options a::after {
  content: "→";
  color: #06b6d4;
  font-weight: 800;
}

.quick-options a:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: #bae6fd;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

/* ========================= */
/* QUICK SERVICES */
/* ========================= */
.quick-services {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.services-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.service-box {
  background: rgba(255, 255, 255, 0.94);
  padding: 26px 22px;
  border-radius: 20px;
  text-align: center;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.11);
  border-color: #bae6fd;
}

.service-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #ecfeff, #e0f2fe);
}

/* ========================= */
/* TOURS */
/* ========================= */
.featured-excursions {
  background: #f8fafc;
}

.cards-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
}

.tour-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 54px rgba(15, 23, 42, 0.16);
  border-color: #bae6fd;
}

.tour-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.tour-content {
  padding: 22px;
}

.tour-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.tour-badge {
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
  color: white;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tour-rating {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
}

.tour-card h3 {
  margin-bottom: 10px;
}

.tour-card p {
  margin-bottom: 14px;
}

.tour-card ul {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.tour-card ul li {
  position: relative;
  padding-left: 20px;
  color: #334155;
  font-size: 0.96rem;
}

.tour-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #06b6d4;
  font-weight: 800;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: #0891b2;
  text-decoration: none;
  font-weight: 700;
  transition: gap 0.2s ease, color 0.2s ease;
}

.card-link:hover {
  gap: 12px;
  color: #0ea5e9;
}

/* ========================= */
/* TRANSPORT */
/* ========================= */
.transport-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.transport-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.transport-text p {
  margin-bottom: 18px;
}

.transport-list {
  display: grid;
  gap: 16px;
  margin: 24px 0 28px;
}

.transport-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.transport-item h3 {
  margin-bottom: 6px;
}

.transport-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.transport-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.transport-info {
  padding: 24px;
}

.transport-info h3 {
  margin-bottom: 10px;
}

.transport-info p {
  margin-bottom: 16px;
}

.transport-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.transport-tags span {
  background: #eef2ff;
  color: #334155;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
}

/* ========================= */
/* WHY US */
/* ========================= */
.why-us {
  background: #f8fafc;
}

.benefits-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.benefit-card {
  background: #ffffff;
  padding: 24px 22px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.benefit-card h3 {
  margin-bottom: 10px;
}

/* ========================= */
/* CTA */
/* ========================= */
.cta {
  background: #f8fafc;
}

.cta-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #0b2545 60%, #0f3b57);
  color: white;
  padding: 64px 28px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
}

.cta-box::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: -120px;
  right: -60px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.22), transparent 65%);
}

.cta-box .eyebrow,
.cta-box h2,
.cta-box p {
  position: relative;
  z-index: 1;
}

.cta-box .eyebrow {
  color: #67e8f9;
}

.cta-box h2 {
  color: #ffffff;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 700px;
  margin: 0 auto;
}

.cta-buttons {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ========================= */
/* FOOTER */
/* ========================= */
.site-footer {
  background: #020617;
  color: white;
  padding: 70px 0 24px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 34px;
}

.footer-brand h3,
.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-brand p,
.footer-contact p {
  color: #94a3b8;
}

.footer-links a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin: 8px 0;
  transition: color 0.22s ease;
}

.footer-links a:hover {
  color: #67e8f9;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  text-align: center;
  font-size: 0.84rem;
  color: #64748b;
}

/* ========================= */
/* WHATSAPP FLOAT */
/* ========================= */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.28);
  z-index: 1100;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 38px rgba(37, 211, 102, 0.34);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 1024px) {
  .hero-content,
  .transport-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 80px;
  }

  .hero-card {
    max-width: 560px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 84px 0;
  }

  .header-container {
    min-height: 72px;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255, 255, 255, 0.98);
    position: absolute;
    top: 72px;
    right: 16px;
    width: min(260px, calc(100% - 32px));
    padding: 22px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
  }

  .main-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(94%, 1200px);
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-content {
    gap: 28px;
  }

  .hero-card,
  .cta-box {
    padding: 22px;
  }

  .services-grid,
  .cards-grid,
  .benefits-grid {
    gap: 18px;
  }

  .tour-img {
    height: 210px;
  }

  .transport-img {
    height: 220px;
  }

  .hero-features {
    gap: 10px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }
}
Verifica el ccs

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(340px, 420px);
  gap: 32px;
  align-items: start;
}

.booking-main {
  min-width: 0;
}

.booking-sidebar {
  position: sticky;
  top: 110px;
  align-self: start;
}

.booking-hero-img {
  width: 100%;
  border-radius: 18px;
  display: block;
  margin: 20px 0 24px;
  object-fit: cover;
  max-height: 460px;
}

.booking-tabs {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid #dbe4f0;
  margin-bottom: 24px;
  padding-bottom: 12px;
  flex-wrap: wrap;
}

.booking-tabs span {
  font-weight: 700;
  color: #64748b;
  cursor: default;
}

.booking-tabs span.active {
  color: #0f172a;
  position: relative;
}

.booking-tabs span.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: #0ea5e9;
}

.booking-copy p,
.booking-copy li {
  color: #475569;
  font-size: 1rem;
  line-height: 1.75;
}

.booking-copy h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.booking-card {
   width: 100%;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #dbe4f0;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  padding: 24px;
}

.booking-price-top {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.booking-price-top .booking-price-label {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 4px;
}

.booking-price-top strong {
  font-size: 2.25rem;
  line-height: 1.05;
  color: #0f172a;
}

.booking-price-top small {
  color: #475569;
  font-weight: 600;
  margin-top: 2px;
}

.booking-field,
.booking-field-grid {
  margin-bottom: 16px;
}

.booking-field label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.booking-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.booking-input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 14px 16px;
  padding-right: 16px;
  font: inherit;
  color: #0f172a;
  background: #fff;
  min-height: 52px;
}

.booking-input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 1;
  cursor: pointer;
  margin-left: 0;
}
.booking-people {
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 18px 0;
  margin: 20px 0;
}

.booking-people h4 {
  margin-bottom: 16px;
  font-size: 1.15rem;
}

.booking-person-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.booking-person-row:last-child {
  margin-bottom: 0;
}

.booking-person-row strong {
  display: block;
  color: #0f172a;
  font-size: 1rem;
  margin-bottom: 4px;
}

.booking-person-row span {
  color: #475569;
  font-size: 0.98rem;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qty-control span {
  min-width: 18px;
  text-align: center;
  font-weight: 700;
  color: #0f172a;
}

.qty-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #94a3b8;
  background: #fff;
  color: #0f172a;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  border-color: #0ea5e9;
  color: #0ea5e9;
  transform: translateY(-1px);
}

.booking-total-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 18px 0 22px;
  font-weight: 700;
  color: #0f172a;
  font-size: 1.05rem;
}

.booking-total-box strong {
  font-size: 1.9rem;
  color: #0f172a;
}

.booking-actions {
  display: flex;
}

.booking-btn-full {
  width: 100%;
  justify-content: center;
}

.booking-card .btn {
  min-height: 56px;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 16px;
}

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

  .booking-sidebar {
    position: static;
  }
}

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

  .booking-card {
    padding: 18px;
  }

  .booking-person-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .qty-control {
    align-self: flex-end;
  }

  .booking-price-top strong {
    font-size: 2rem;
  }
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(340px, 420px);
  gap: 32px;
  align-items: start;
}

.booking-main {
  min-width: 0;
}

.booking-sidebar {
  min-width: 0;
  width: 100%;
  position: sticky;
  top: 110px;
  align-self: start;
}

.booking-summary-card {
  background: #f8fbff;
  border: 1px solid #dbe4f0;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 18px;
}

.booking-summary-card h4 {
  margin-bottom: 14px;
  font-size: 1.1rem;
  color: #0f172a;
}

.booking-summary-list {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.booking-summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #475569;
  font-size: 0.96rem;
}

.booking-summary-list strong {
  color: #0f172a;
}

.booking-summary-total {
  border-top: 1px solid #dbe4f0;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0f172a;
  font-weight: 700;
}

.booking-summary-total strong {
  font-size: 1.4rem;
}

.booking-payment-box {
  margin-top: 18px;
}

.booking-payment-box h4 {
  margin-bottom: 14px;
  color: #0f172a;
}

.booking-payment-options {
  display: grid;
  gap: 12px;
}

.booking-cash-btn,
.booking-back-btn {
  background: #fff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

.booking-cash-btn:hover,
.booking-back-btn:hover {
  border-color: #0ea5e9;
  color: #0ea5e9;
}

.booking-actions-split {
  margin-top: 16px;
}

.booking-step-two .btn {
  min-height: 54px;
}

.booking-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.booking-price-top {
  margin-bottom: 20px;
}

.booking-price-label {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 4px;
}

.booking-price-top strong {
  display: block;
  font-size: 30px;
  color: #0f172a;
  line-height: 1.1;
}

.booking-price-top small {
  color: #64748b;
  font-size: 13px;
}

.booking-field {
  margin-bottom: 16px;
}

.booking-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.booking-input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #dbe2ea;
  background: #fff;
  font-size: 15px;
  color: #0f172a;
}

.booking-input:focus {
  outline: none;
  border-color: #0ea5c6;
  box-shadow: 0 0 0 3px rgba(14, 165, 198, 0.12);
}

.booking-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 4px;
}

.booking-people {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #eef2f7;
}

.booking-people h4 {
  margin-bottom: 14px;
  color: #0f172a;
  font-size: 16px;
}

.booking-person-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.booking-person-row strong {
  display: block;
  color: #0f172a;
}

.booking-person-row span {
  font-size: 13px;
  color: #64748b;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #0f172a;
  font-size: 20px;
  cursor: pointer;
}

.qty-btn:hover {
  border-color: #0ea5c6;
}

.booking-total-box {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f8fbff, #eef8ff);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.booking-total-box span {
  color: #475569;
  font-weight: 600;
}

.booking-total-box strong {
  color: #0f172a;
  font-size: 24px;
}

.booking-actions {
  margin-top: 20px;
}

.booking-btn-full {
  width: 100%;
  min-height: 50px;
  border-radius: 16px;
  font-weight: 700;
}

.booking-step-two .booking-summary-card {
  margin-bottom: 20px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #f8fafc;
}

.booking-summary-card h4 {
  margin-bottom: 12px;
  color: #0f172a;
}

.booking-summary-list {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: #334155;
  font-size: 14px;
}

.booking-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
}

.booking-summary-total strong {
  font-size: 22px;
  color: #0f172a;
}

.booking-payment-box {
  margin-top: 18px;
}

.booking-payment-box h4 {
  margin-bottom: 8px;
  color: #0f172a;
}

.booking-payment-note {
  margin-bottom: 12px;
  color: #64748b;
}

.paypal-container {
  margin-bottom: 14px;
}

.booking-cash-btn {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

.booking-cash-btn:hover {
  background: #f8fafc;
}

.booking-actions-split {
  margin-top: 16px;
}

.booking-back-btn {
  background: transparent;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

.booking-back-btn:hover {
  background: #f8fafc;
}

@media (max-width: 768px) {
  .booking-card {
    padding: 18px;
    border-radius: 18px;
  }

  .booking-field-grid {
    grid-template-columns: 1fr;
  }

  .booking-person-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-total-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.gyg-hero {
  position: relative;
  overflow: hidden;
  padding: 138px 0 72px;
  background:
    radial-gradient(circle at 15% 20%, rgba(14,165,198,0.18), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(15,59,120,0.22), transparent 32%),
    linear-gradient(135deg, #f8fbff 0%, #eef7ff 45%, #ffffff 100%);
}

.gyg-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 520px);
  gap: 42px;
  align-items: center;
}

.gyg-hero-content {
  max-width: 650px;
}

.gyg-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(14, 165, 198, 0.12);
  color: #0f3b78;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.gyg-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #0f172a;
  margin-bottom: 18px;
  max-width: 12ch;
}

.gyg-hero-content p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 28px;
  max-width: 58ch;
}

.gyg-hero-search {
  display: grid;
  grid-template-columns: 1fr 220px 180px;
  gap: 14px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255,255,255,0.94);
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  margin-bottom: 18px;
}

.gyg-search-field {
  display: flex;
  flex-direction: column;
}

.gyg-search-field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
}

.gyg-search-field input {
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid #dbe4f0;
  background: #fff;
  padding: 0 14px;
  font: inherit;
  color: #0f172a;
}

.gyg-search-field input:focus {
  outline: none;
  border-color: #0ea5c6;
  box-shadow: 0 0 0 4px rgba(14,165,198,0.12);
}

.gyg-search-btn {
  align-self: end;
  min-height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
}

.gyg-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 600;
}

.gyg-hero-visual {
  position: relative;
  min-height: 560px;
}

.gyg-hero-main-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
  background: #fff;
}

.gyg-hero-main-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.gyg-hero-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(2, 6, 23, 0.78) 100%);
  color: #fff;
}

.gyg-hero-card-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.gyg-hero-card-overlay p {
  color: rgba(255,255,255,0.86);
  line-height: 1.55;
  margin: 0;
}

.gyg-mini-badge,
.gyg-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 800;
}

.gyg-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.gyg-card-badge-hot {
  background: #f97316;
  color: #fff;
}

.gyg-hero-mini-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.96);
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.12);
}

.gyg-hero-mini-card img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.gyg-hero-mini-card strong {
  display: block;
  color: #0f172a;
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.gyg-hero-mini-card span {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 600;
}

.gyg-mini-card-one {
  bottom: 26px;
  left: -18px;
}

.gyg-mini-card-two {
  top: 26px;
  right: -18px;
}

.gyg-featured {
  background: #ffffff;
}

.gyg-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 28px;
}

.gyg-section-kicker {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 800;
  color: #0ea5c6;
  margin-bottom: 8px;
}

.gyg-section-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.05;
  color: #0f172a;
}

.gyg-link-more {
  text-decoration: none;
  font-weight: 700;
  color: #0f3b78;
}

.gyg-link-more:hover {
  color: #0ea5c6;
}

.gyg-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.gyg-tour-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #e5edf5;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gyg-tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.12);
}

.gyg-tour-card-media {
  position: relative;
  display: block;
  text-decoration: none;
}

.gyg-tour-card-media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gyg-tour-card-body {
  padding: 18px;
}

.gyg-tour-card-rating {
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.gyg-tour-card-rating span {
  color: #64748b;
  font-weight: 600;
}

.gyg-tour-card-body h3 {
  font-size: 1.18rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.gyg-tour-card-body h3 a {
  color: #0f172a;
  text-decoration: none;
}

.gyg-tour-card-body h3 a:hover {
  color: #0f3b78;
}

.gyg-tour-card-body p {
  color: #475569;
  line-height: 1.65;
  font-size: 0.96rem;
  margin-bottom: 16px;
}

.gyg-tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.gyg-tour-meta span {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-size: 0.85rem;
  font-weight: 700;
}

.gyg-tour-card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.gyg-price-wrap small {
  display: block;
  color: #64748b;
  font-size: 0.82rem;
  margin-bottom: 2px;
}

.gyg-price-wrap strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  color: #0f172a;
}

.gyg-tour-card-footer .btn {
  min-height: 46px;
  border-radius: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .gyg-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gyg-hero-grid {
    grid-template-columns: 1fr;
  }

  .gyg-hero-visual {
    min-height: auto;
  }

  .gyg-hero-main-card img {
    height: 520px;
  }

  .gyg-mini-card-one,
  .gyg-mini-card-two {
    position: static;
    margin-top: 14px;
  }

  .gyg-hero-visual {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .gyg-hero {
    padding: 120px 0 56px;
  }

  .gyg-hero-search {
    grid-template-columns: 1fr;
  }

  .gyg-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .gyg-cards-grid {
    grid-template-columns: 1fr;
  }

  .gyg-tour-card-media img {
    height: 220px;
  }

  .gyg-tour-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .gyg-tour-card-footer .btn {
    width: 100%;
  }
}
.gyg-hero {
  position: relative;
  overflow: hidden;
  padding: 138px 0 72px;
  background:
    radial-gradient(circle at 15% 20%, rgba(14,165,198,0.18), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(15,59,120,0.22), transparent 32%),
    linear-gradient(135deg, #f8fbff 0%, #eef7ff 45%, #ffffff 100%);
}

.gyg-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 520px);
  gap: 42px;
  align-items: center;
}

.gyg-hero-content {
  max-width: 650px;
}

.gyg-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(14, 165, 198, 0.12);
  color: #0f3b78;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.gyg-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #0f172a;
  margin-bottom: 18px;
  max-width: 12ch;
}

.gyg-hero-content p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 28px;
  max-width: 58ch;
}

.gyg-hero-search {
  display: grid;
  grid-template-columns: 1fr 220px 180px;
  gap: 14px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255,255,255,0.94);
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  margin-bottom: 18px;
}

.gyg-search-field {
  display: flex;
  flex-direction: column;
}

.gyg-search-field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
}

.gyg-search-field input {
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid #dbe4f0;
  background: #fff;
  padding: 0 14px;
  font: inherit;
  color: #0f172a;
}

.gyg-search-field input:focus {
  outline: none;
  border-color: #0ea5c6;
  box-shadow: 0 0 0 4px rgba(14,165,198,0.12);
}

.gyg-search-btn {
  align-self: end;
  min-height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
}

.gyg-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 600;
}

.gyg-hero-visual {
  position: relative;
  min-height: 560px;
}

.gyg-hero-main-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
  background: #fff;
}

.gyg-hero-main-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.gyg-hero-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(2, 6, 23, 0.78) 100%);
  color: #fff;
}

.gyg-hero-card-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.gyg-hero-card-overlay p {
  color: rgba(255,255,255,0.86);
  line-height: 1.55;
  margin: 0;
}

.gyg-mini-badge,
.gyg-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 800;
}

.gyg-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.gyg-card-badge-hot {
  background: #f97316;
  color: #fff;
}

.gyg-hero-mini-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.96);
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.12);
}

.gyg-hero-mini-card img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.gyg-hero-mini-card strong {
  display: block;
  color: #0f172a;
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.gyg-hero-mini-card span {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 600;
}

.gyg-mini-card-one {
  bottom: 26px;
  left: -18px;
}

.gyg-mini-card-two {
  top: 26px;
  right: -18px;
}

.gyg-featured {
  background: #ffffff;
}

.gyg-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 28px;
}

.gyg-section-kicker {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 800;
  color: #0ea5c6;
  margin-bottom: 8px;
}

.gyg-section-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.05;
  color: #0f172a;
}

.gyg-link-more {
  text-decoration: none;
  font-weight: 700;
  color: #0f3b78;
}

.gyg-link-more:hover {
  color: #0ea5c6;
}

.gyg-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.gyg-tour-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #e5edf5;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gyg-tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.12);
}

.gyg-tour-card-media {
  position: relative;
  display: block;
  text-decoration: none;
}

.gyg-tour-card-media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gyg-tour-card-body {
  padding: 18px;
}

.gyg-tour-card-rating {
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.gyg-tour-card-rating span {
  color: #64748b;
  font-weight: 600;
}

.gyg-tour-card-body h3 {
  font-size: 1.18rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.gyg-tour-card-body h3 a {
  color: #0f172a;
  text-decoration: none;
}

.gyg-tour-card-body h3 a:hover {
  color: #0f3b78;
}

.gyg-tour-card-body p {
  color: #475569;
  line-height: 1.65;
  font-size: 0.96rem;
  margin-bottom: 16px;
}

.gyg-tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.gyg-tour-meta span {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-size: 0.85rem;
  font-weight: 700;
}

.gyg-tour-card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.gyg-price-wrap small {
  display: block;
  color: #64748b;
  font-size: 0.82rem;
  margin-bottom: 2px;
}

.gyg-price-wrap strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  color: #0f172a;
}

.gyg-tour-card-footer .btn {
  min-height: 46px;
  border-radius: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .gyg-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gyg-hero-grid {
    grid-template-columns: 1fr;
  }

  .gyg-hero-visual {
    min-height: auto;
  }

  .gyg-hero-main-card img {
    height: 520px;
  }

  .gyg-mini-card-one,
  .gyg-mini-card-two {
    position: static;
    margin-top: 14px;
  }

  .gyg-hero-visual {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .gyg-hero {
    padding: 120px 0 56px;
  }

  .gyg-hero-search {
    grid-template-columns: 1fr;
  }

  .gyg-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .gyg-cards-grid {
    grid-template-columns: 1fr;
  }

  .gyg-tour-card-media img {
    height: 220px;
  }

  .gyg-tour-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .gyg-tour-card-footer .btn {
    width: 100%;
  }
}

.tour-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 24px;
}

.tour-gallery-main {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.tour-gallery-main img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.tour-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.tour-thumb {
  width: 100%;
  height: 95px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  opacity: 0.82;
  display: block;
}

.tour-thumb:hover {
  transform: translateY(-2px);
  opacity: 1;
  border-color: #0ea5c6;
}

.tour-thumb.active {
  border-color: #0f3b78;
  opacity: 1;
}

.tour-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 80px;
}

.tour-lightbox.is-open {
  display: flex;
}

.tour-lightbox-content {
  max-width: min(1100px, 100%);
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.tour-lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.tour-lightbox-counter {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}

.tour-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}

.tour-lightbox-prev {
  left: 22px;
}

.tour-lightbox-next {
  right: 22px;
}

.tour-lightbox-close:hover,
.tour-lightbox-nav:hover {
  background: rgba(255,255,255,0.22);
}

body.lightbox-open {
  overflow: hidden;
}

.tour-gallery-gyg {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 12px;
  margin: 20px 0 28px;
  align-items: stretch;
}

.tour-gallery-gyg .tour-gallery-main {
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 18px;
}

.tour-gallery-gyg .tour-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.tour-gallery-gyg .tour-gallery-main img:hover {
  transform: scale(1.02);
}

.tour-gallery-grid {
  width: 100%;
  height: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.tour-gallery-grid img,
.tour-gallery-more {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  border-radius: 14px;
  overflow: hidden;
}

.tour-gallery-grid img {
  cursor: pointer;
  transition: transform 0.25s ease;
}

.tour-gallery-grid img:hover {
  transform: scale(1.03);
}

.tour-gallery-more {
  position: relative;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tour-gallery-more::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.15), rgba(15,23,42,0.55));
}

.tour-gallery-more span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

@media (max-width: 1024px) {
  .tour-gallery-gyg {
    grid-template-columns: 1fr;
  }

  .tour-gallery-gyg .tour-gallery-main,
  .tour-gallery-grid {
    height: auto;
  }

  .tour-gallery-gyg .tour-gallery-main img {
    height: 420px;
  }

  .tour-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .tour-gallery-grid img,
  .tour-gallery-more {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 768px) {
  .tour-gallery-main img {
    height: 280px;
  }

  .tour-gallery-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-thumb {
    height: 90px;
  }

  .tour-lightbox {
    padding: 20px 18px;
  }

  .tour-lightbox-nav {
    width: 46px;
    height: 46px;
    font-size: 28px;
  }

  .tour-lightbox-prev {
    left: 10px;
  }

  .tour-lightbox-next {
    right: 10px;
  }

  .tour-gallery-gyg .tour-gallery-main img {
    height: 300px;
  }

  .tour-gallery-grid {
    gap: 8px;
  }
}

.tour-page-main {
  background: #ffffff;
}

.tour-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  font-size: 14px;
  color: #64748b;
}

.tour-breadcrumbs a {
  color: #64748b;
  text-decoration: none;
}

.tour-breadcrumbs a:hover {
  color: #0f3b78;
}

.tour-top-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.tour-main-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 12px;
}

.tour-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 18px;
  max-width: 68ch;
}

.tour-quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.tour-quick-info span {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

.tour-rating {
  font-size: 14px;
  color: #111827;
}

.tour-rating span {
  color: #64748b;
}

.tour-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.best-seller {
  background: #f59e0b;
  color: #fff;
}

.premium-badge {
  background: #0f3b78;
  color: #fff;
}

.tour-urgency {
  background: #fff7ed;
  color: #9a3412;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  margin: 12px 0 20px;
  border: 1px solid #fed7aa;
}

.tour-info-block {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #e5e7eb;
}

.tour-info-block h2 {
  font-size: 24px;
  color: #0f172a;
  margin-bottom: 14px;
}

.tour-info-block p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 14px;
}

.tour-feature-list {
  margin: 0;
  padding-left: 20px;
  color: #475569;
  line-height: 1.8;
}

.tour-feature-list li + li {
  margin-top: 8px;
}

.tour-included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tour-included-grid div {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px;
  color: #0f172a;
  font-weight: 600;
}

.tour-why-book {
  margin-bottom: 10px;
}

.tour-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tour-why-card {
  padding: 16px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid #dbeafe;
}

.tour-why-card strong {
  display: block;
  color: #0f172a;
  margin-bottom: 6px;
}

.tour-why-card span {
  color: #475569;
  line-height: 1.6;
  font-size: 14px;
}

.tour-sticky-box {
  position: sticky;
  top: 110px;
}

.tour-sticky-top {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 14px 16px;
  margin-bottom: 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.tour-sticky-rating {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.tour-sticky-rating span {
  color: #64748b;
  font-weight: 600;
}

.tour-sticky-activity {
  font-size: 13px;
  color: #b45309;
  font-weight: 700;
}

.tour-guarantees {
  margin-top: 14px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.tour-guarantees div {
  color: #334155;
  font-size: 14px;
  font-weight: 600;
}

.tour-guarantees div + div {
  margin-top: 10px;
}

@media (max-width: 991px) {
  .tour-included-grid,
  .tour-why-grid {
    grid-template-columns: 1fr;
  }

  .tour-sticky-box {
    position: static;
    top: auto;
  }
}

.excursions-search-wrap {
  max-width: 760px;
  margin: 24px auto 36px;
  text-align: center;
}

.excursions-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #dbe2ea;
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.excursions-search-icon {
  font-size: 18px;
  line-height: 1;
  opacity: 0.7;
}

.excursions-search-input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: #0f172a;
  font-family: inherit;
}

.excursions-search-input::placeholder {
  color: #64748b;
}

.excursions-search-count {
  margin-top: 10px;
  color: #64748b;
  font-size: 14px;
}

.searchable-tour-card.is-hidden {
  display: none !important;
}

.tour-reviews-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
}

.reviews-section-head h2 {
  margin-bottom: 8px;
  color: #0f172a;
}

.reviews-section-head p {
  color: #64748b;
  margin-bottom: 16px;
}

.reviews-average-card {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 14px 18px;
  border-radius: 14px;
  margin-bottom: 20px;
}

.reviews-average-card strong {
  font-size: 20px;
  color: #0f172a;
}

.reviews-average-card span {
  color: #64748b;
  font-size: 14px;
}

.reviews-login-box,
.reviews-user-box,
.review-form {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 18px;
}

.review-field {
  margin-bottom: 14px;
}

.review-field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #0f172a;
}

.review-field select,
.review-field textarea {
  width: 100%;
  border: 1px solid #dbe2ea;
  border-radius: 12px;
  padding: 12px;
  font: inherit;
}

.approved-reviews-list {
  display: grid;
  gap: 14px;
}

.review-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px;
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-card p {
  color: #334155;
  line-height: 1.7;
  margin-bottom: 10px;
}

.review-card small {
  color: #64748b;
}

.hero-badges {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.hero-badges span {
  background: rgba(255,255,255,0.15);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  backdrop-filter: blur(6px);
}

.tour-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

/* 🔥 CONTENIDO FLEX PARA EMPUJAR BOTÓN ABAJO */
.tour-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 🔥 BOTÓN PROFESIONAL */
.card-btn {
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  background: linear-gradient(135deg, #00bcd4, #0097a7);
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 15px rgba(0, 188, 212, 0.3);
}

/* ✨ HOVER PREMIUM */
.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 188, 212, 0.5);
  background: linear-gradient(135deg, #00d4ef, #00acc1);
}

/* 💥 CLICK EFFECT */
.card-btn:active {
  transform: scale(0.98);
}

/* 🔥 CARD BASE */
.tour-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
  position: relative;
}

/* ✨ HOVER GENERAL */
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* IMAGEN */
.tour-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* ZOOM SUAVE */
.tour-card:hover .tour-img {
  transform: scale(1.08);
}

/* OVERLAY OSCURO SUAVE */
.tour-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 220px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), transparent);
  pointer-events: none;
}

.tour-badge {
  background: linear-gradient(135deg, #00bcd4, #0097a7);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.tour-rating {
  font-size: 14px;
  font-weight: 600;
  color: #444;
}

.card-btn {
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 13px 18px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(0, 114, 255, 0.3);
}

.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 114, 255, 0.5);
}

.tour-card {
  cursor: pointer;
}

.tour-content ul {
  padding-left: 0;
  list-style: none;
}

.tour-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 14px;
  color: #555;
}

.tour-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00bcd4;
  font-size: 12px;
}

.tour-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tour-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tour-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* 🔥 MOBILE FIX */
@media (max-width: 768px) {

  .tour-layout {
    display: block !important;
  }

  .booking-card {
    position: relative !important;
    top: auto !important;
    width: 100% !important;
    margin-top: 20px;
  }

}

@media (max-width: 768px) {
  .tour-layout {
    grid-template-columns: 1fr;
  }
}

/* 🔥 BARRA FIJA MOBILE */
.mobile-booking-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-booking-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 12px 16px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .mobile-booking-bar .price {
    font-weight: 700;
    font-size: 16px;
  }

  .mobile-booking-bar button {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border: none;
    color: white;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
  }
}

.booking-modal {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 90%;
  background: #fff;
  z-index: 1000;
  transition: 0.4s ease;
  border-radius: 20px 20px 0 0;
  overflow-y: auto;
}

.booking-modal.active {
  bottom: 0;
}

.booking-modal-content {
  padding: 20px;
}

/* 🔥 FIX MOBILE BOOKING MODAL */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  display: none;
  z-index: 9999;
}

.booking-modal.active {
  display: block;
}

/* CONTENIDO */
.booking-modal-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background: #ffffff;
  border-radius: 20px 20px 0 0;
  overflow-y: auto;
  padding: 20px;
}

/* SCROLL SUAVE */
.booking-modal-content::-webkit-scrollbar {
  width: 6px;
}

.booking-modal-content::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
}

/* BOTÓN CERRAR */
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 18px;
  cursor: pointer;
}

/* 🔥 MOBILE BOOKING MODAL PRO */
.booking-modal {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  transition: bottom 0.35s ease;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow-y: auto;
}

.booking-modal.active {
  bottom: 0;
}

/* contenido */
.booking-modal-content {
  padding: 20px;
  padding-bottom: 120px;
}

/* botón cerrar */
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 18px;
}

/* barra inferior tipo app */
.mobile-booking-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  border-top: 1px solid #e5e7eb;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
}

.mobile-booking-bar .price {
  font-size: 18px;
  font-weight: 800;
}

.mobile-booking-bar button {
  background: #2563eb;
  color: white;
  border: none;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
}

/* 👇 SOLO MOBILE */
@media (min-width: 768px) {
  .mobile-booking-bar {
    display: none;
  }

  .booking-modal {
    display: none;
  }
}

@media (max-width: 768px) {
  .booking-sidebar {
    display: none;
  }
}

.booking-modal-header {
  position: sticky;
  top: 0;
  background: white;
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.booking-modal {
  background: rgba(0,0,0,0.4);
}

.booking-modal-content {
  background: white;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* DESKTOP */
@media (min-width: 768px) {
  .mobile-booking-bar,
  .booking-modal {
    display: none;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .booking-sidebar {
    display: none;
  }
}

.booking-modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.booking-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-content {
  transform: translateY(100%);
  transition: 0.3s ease;
}

.booking-modal.active .booking-modal-content {
  transform: translateY(0);
}

.booking-modal-content {
  max-height: 90vh;
  overflow-y: auto;
}

.modal-book-btn {
  position: sticky;
  bottom: 0;
  background: white;
  padding: 16px;
  border-top: 1px solid #e5e7eb;
}

.modal-book-btn button {
  width: 100%;
  background: #2563eb;
  color: white;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
}

body.modal-open {
  overflow: hidden;
}

/* 🔥 MODAL BASE */
.booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 9999;
}

/* 🔥 CUANDO SE ABRE */
.booking-modal.active {
  display: flex;
  align-items: flex-end;
}

/* 🔥 CONTENIDO */
.booking-modal-content {
  background: #fff;
  width: 100%;
  border-radius: 20px 20px 0 0;
  padding: 20px;
  max-height: 90vh;
  overflow-y: auto;
}

/* 🔥 HEADER */
.booking-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

/* 🔥 BOTÓN CERRAR */
.close-btn {
  background: #e5e7eb;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 18px;
}

/* 🔥 MOBILE BAR */
.mobile-booking-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9998;
  border-top: 1px solid #e5e7eb;
}

.mobile-booking-bar button {
  background: #2563eb;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
}

/* 🔥 FIX IOS */
body.modal-open {
  overflow: hidden;
}
