/* =========================
   RIDEME CANCUN - SITE CSS
   ========================= */

:root{
  --brand: #0d2c54;
  --brand-2: #14b8c4;
  --brand-3: #f4f8fb;
  --text: #16324a;
  --muted: #6b7a8c;
  --white: #ffffff;
  --radius: 1.25rem;
  --shadow-soft: 0 14px 40px rgba(8, 31, 61, .08);
  --shadow-hover: 0 20px 44px rgba(8, 31, 61, .14);
  --nav-border: rgba(13, 44, 84, .08);
}

/* Base */
html, body{
  overflow-x: hidden;
}

body{
  -webkit-font-smoothing: antialiased;
  color: var(--text);
  background: #fff;
}

/* =========================
   NAVBAR
   ========================= */
.site-navbar{
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 8px 24px rgba(8, 31, 61, .05);
  padding-top: .85rem;
  padding-bottom: .85rem;
}

.site-navbar .navbar-brand{
  color: var(--brand) !important;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: 1.15rem;
}

.site-navbar .nav-link{
  color: var(--text) !important;
  font-weight: 600;
  padding-left: .9rem !important;
  padding-right: .9rem !important;
  position: relative;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus{
  color: var(--brand-2) !important;
}

.site-navbar .nav-link.active{
  color: var(--brand) !important;
}

.site-navbar .nav-link.active::after,
.site-navbar .nav-link:hover::after{
  content: "";
  position: absolute;
  left: .9rem;
  right: .9rem;
  bottom: .2rem;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-2);
}

.site-navbar .navbar-toggler{
  border: 1px solid rgba(13,44,84,.14);
  padding: .45rem .7rem;
  border-radius: .9rem;
}

.site-navbar .navbar-toggler:focus{
  box-shadow: 0 0 0 .2rem rgba(20, 184, 196, .15);
}

.site-navbar .navbar-toggler-icon{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2813, 44, 84, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-navbar .navbar-collapse{
  margin-top: .5rem;
}

.nav-hello{
  color: var(--muted);
  font-size: .92rem;
}

.nav-hello strong{
  color: var(--brand);
}

.btn-nav-outline{
  border: 1px solid rgba(13, 44, 84, .18);
  color: var(--brand);
  background: #fff;
  border-radius: 999px;
  font-weight: 700;
  padding: .55rem 1rem;
}

.btn-nav-outline:hover,
.btn-nav-outline:focus{
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.btn-nav-brand{
  background: var(--brand-2);
  border: 1px solid var(--brand-2);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  padding: .55rem 1rem;
  box-shadow: 0 10px 25px rgba(20, 184, 196, .22);
}

.btn-nav-brand:hover,
.btn-nav-brand:focus{
  background: #10a7b2;
  border-color: #10a7b2;
  color: #fff;
}

.site-logo{
  height: 60px;
  width: auto;
}

/* =========================
   GENERALES
   ========================= */
.home section{
  position: relative;
}

.min-vh-50{
  min-height: 70vh;
}

.section-heading{
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker{
  display: inline-block;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: .75rem;
}

.section-kicker-light{
  color: rgba(255,255,255,.85);
}

.section-title{
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  color: var(--brand);
  margin-bottom: .9rem;
}

.section-text{
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0;
}

/* =========================
   HERO
   ========================= */
.hero{
  min-height: 380px;
  border-radius: 0;
}

.hero-home{
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-bg{
  position: absolute;
  inset: 0;
  background-position: center 40%;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
  transition: transform 6s ease;
}

.hero:hover .hero-bg{
  transform: scale(1.06);
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7,22,42,.82) 0%,
    rgba(7,22,42,.48) 48%,
    rgba(7,22,42,.18) 100%
  );
}

.hero-content{
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 110px;
}

.hero-kicker{
  display: inline-block;
  padding: .55rem .95rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(10px);
}

.hero-title{
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 1.1rem;
  max-width: 800px;
}

.hero-subtitle{
  font-size: 1.08rem;
  line-height: 1.8;
  opacity: .94;
  max-width: 640px;
}

.hero-trust{
  font-size: .98rem;
  line-height: 1.6;
  opacity: .95;
}

/* =========================
   BOTONES
   ========================= */
.btn-brand{
  background: var(--brand-2);
  color: #fff;
  border: 1px solid var(--brand-2);
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(20, 184, 196, .28);
}

.btn-brand:hover,
.btn-brand:focus{
  background: #10a7b2;
  border-color: #10a7b2;
  color: #fff;
}

.btn-outline-brand{
  border: 1px solid var(--brand);
  color: var(--brand);
  background: transparent;
  border-radius: 999px;
  font-weight: 700;
  padding: .7rem 1.15rem;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus{
  background: var(--brand);
  color: #fff;
}

/* =========================
   EFECTOS / CARDS
   ========================= */
.glass{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}

.lift{
  transition: transform .2s ease, box-shadow .2s ease;
  border-radius: var(--radius);
}

.lift:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover) !important;
}

.card,
.cta-banner,
.hero{
  border-radius: var(--radius);
}

.card-img-top{
  height: 170px;
  object-fit: cover;
  transition: transform .35s ease;
}

.card:hover .card-img-top{
  transform: scale(1.04);
}

/* =========================
   PROMO CARDS
   ========================= */
.promo-section{
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #fff;
}

.promo-card{
  border-radius: 1.35rem;
  box-shadow: var(--shadow-soft);
}

.promo-img{
  height: 230px;
  object-fit: cover;
}

.promo-card .card-body{
  display: flex;
  flex-direction: column;
}

.promo-badge{
  display: inline-block;
  align-self: flex-start;
  padding: .42rem .75rem;
  border-radius: 999px;
  background: #eaf8fa;
  color: #0f8390;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.promo-title{
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: .9rem;
}

.promo-text{
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* =========================
   REVIEWS
   ========================= */
.reviews-section{
  background: var(--brand-3);
}

.review-card{
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.review-stars{
  font-size: 1.2rem;
  letter-spacing: .15em;
  color: #f5b301;
  margin-bottom: 1rem;
}

.review-text{
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.review-author{
  font-weight: 700;
  color: var(--brand);
}

.reviews-note{
  color: var(--muted);
  font-size: .96rem;
}

.review-logo{
  max-height: 42px;
  width: auto;
  opacity: .92;
}

/* =========================
   CTA FINAL
   ========================= */
.home-cta{
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #fff;
}

.cta-banner{
  background: linear-gradient(135deg, rgba(13, 44, 84, .96), rgba(20, 184, 196, .88));
  box-shadow: var(--shadow-soft);
  border-radius: 1.6rem;
}

.cta-title{
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
}

.cta-text{
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  opacity: .95;
  line-height: 1.8;
}

/* =========================
   FOOTER
   ========================= */
.site-footer{
  background: #0b1f38;
  color: rgba(255,255,255,.88);
  margin-top: 4rem;
  padding-top: 3.5rem;
  padding-bottom: 1.25rem;
}

.footer-top{
  padding-bottom: 2.2rem;
}

.footer-brand{
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: .03em;
  margin-bottom: 1rem;
}

.footer-title{
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}

.footer-text{
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  max-width: 340px;
}

.footer-links li,
.footer-contact li{
  margin-bottom: .7rem;
}

.footer-links a{
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: color .2s ease, padding-left .2s ease;
}

.footer-links a:hover{
  color: var(--brand-2);
  padding-left: .2rem;
}

.footer-links span,
.footer-contact li{
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 1.25rem;
}

.footer-copy{
  color: rgba(255,255,255,.58);
  font-size: .92rem;
  line-height: 1.6;
}

/* =========================
   BOOK PAGE
   ========================= */
.booking-hero{
  max-width: 760px;
}

.booking-kicker{
  display: inline-block;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: .8rem;
}

.booking-title{
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
}

.booking-subtitle{
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 700px;
}

.booking-highlights{
  margin-top: .5rem;
}

.booking-pill{
  display: inline-flex;
  align-items: center;
  padding: .5rem .9rem;
  border-radius: 999px;
  background: #eef8fa;
  color: #0f8390;
  font-size: .85rem;
  font-weight: 700;
  border: 1px solid rgba(20,184,196,.25);
  box-shadow: 0 6px 16px rgba(20,184,196,.08);
}

.booking-card{
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.booking-section-heading{
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1.2rem;
}

.booking-section-kicker{
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-2);
}

.booking-section-title{
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand);
}

.booking-divider{
  height: 1px;
  background: linear-gradient(90deg, rgba(13,44,84,.12), rgba(13,44,84,.03));
  margin: 2rem 0 1.5rem;
}

.booking-soft-box{
  border: 1px solid rgba(13, 44, 84, .10);
  border-radius: 1rem;
  background: #f8fbfd;
}

.booking-recommendation-box{
  border: 1px solid rgba(13, 44, 84, .10);
  border-radius: 1rem;
  background: #f8fbfd;
  padding: 1rem;
}

.booking-quote-box{
  border: 1px solid rgba(13, 44, 84, .12);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  box-shadow: var(--shadow-soft);
}

.booking-extra-card{
  border: 1px solid rgba(13, 44, 84, .10);
  border-radius: 1.1rem;
  padding: 1rem;
  background: #fff;
  height: 100%;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.booking-extra-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(20, 184, 196, .25);
}
.booking-extra-card .included-free-wrap{
  padding: 1rem !important;
}

.booking-extra-card .included-free-wrap .d-flex{
  gap: .75rem;
}

.booking-extra-card .included-free-wrap .d-flex > div:first-child{
  flex: 1 1 auto;
  min-width: 0;
}

.booking-extra-card .included-free-wrap .d-flex > div:last-child{
  flex: 0 0 90px;
}

.booking-extra-card .included-free-wrap .form-control{
  min-height: 44px;
}

.booking-extra-card .included-free-wrap .small.fw-semibold{
  line-height: 1.5;
}


.booking-inner-box{
  border: 1px solid rgba(13, 44, 84, .10);
  border-radius: .95rem;
  background: #fff;
  padding: .85rem;
}

.booking-submit-btn{
  min-width: 220px;
  padding: .9rem 1.35rem;
  font-weight: 800;
}

.booking-card .form-label{
  font-weight: 700;
  color: var(--brand);
  margin-bottom: .55rem;
}

.booking-card .form-control,
.booking-card .form-select{
  min-height: 48px;
  border-radius: .9rem;
  border: 1px solid rgba(13, 44, 84, .14);
  box-shadow: none;
}

.booking-card textarea.form-control{
  min-height: auto;
  border-radius: 1rem;
}

.booking-card .form-control:focus,
.booking-card .form-select:focus{
  border-color: rgba(20, 184, 196, .8);
  box-shadow: 0 0 0 .2rem rgba(20, 184, 196, .12);
}

.booking-card .form-text,
.booking-card .text-muted,
.booking-card small.text-muted{
  color: var(--muted) !important;
}

.booking-card hr{
  border-color: rgba(13, 44, 84, .10);
}

.booking-card .alert-danger{
  border-radius: 1rem;
}

.booking-card .form-check-label{
  color: var(--brand);
}

/* =========================
   BOOK SUCCESS PAGE
   ========================= */
.booking-success-page .booking-success-hero{
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.booking-success-alert{
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(13, 44, 84, .10);
}

.booking-success-alert.success{
  background: #f2fbf6;
  border-color: rgba(25, 135, 84, .18);
}

.booking-success-alert.warning{
  background: #fff8e8;
  border-color: rgba(255, 193, 7, .28);
}

.booking-success-icon{
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  background: var(--brand-2);
  box-shadow: 0 8px 18px rgba(20,184,196,.16);
}

.booking-success-alert.warning .booking-success-icon{
  background: #e0a800;
}

.booking-summary-box{
  height: 100%;
  border: 1px solid rgba(13, 44, 84, .10);
  border-radius: 1.1rem;
  padding: 1rem 1.1rem;
  background: #f8fbfd;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.booking-summary-box:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(20, 184, 196, .22);
}

.booking-summary-box-highlight{
  background: linear-gradient(180deg, #ffffff 0%, #eef8fa 100%);
}

.booking-summary-label{
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .45rem;
}

.booking-summary-value{
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1.5;
}

.booking-success-note{
  padding: .95rem 1rem;
  border-radius: 1rem;
  background: #f8fbfd;
  border: 1px solid rgba(13, 44, 84, .08);
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 767.98px){
  .booking-success-alert{
    padding: .95rem 1rem;
  }

  .booking-summary-box{
    padding: .95rem 1rem;
  }

  .booking-summary-value{
    font-size: .98rem;
  }
}

/* =========================
   SERVICES PAGE
   ========================= */

.service-visual-card{
  height: 100%;
  border: 1px solid rgba(13, 44, 84, .10);
  border-radius: 1.35rem;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex;
  flex-direction: column;
}

.service-visual-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(20, 184, 196, .24);
}

.service-visual-card-highlight{
  background: linear-gradient(180deg, #ffffff 0%, #f5fbfc 100%);
}

.service-visual-img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.service-visual-card:hover .service-visual-img{
  transform: scale(1.04);
}

.service-visual-body{
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
}

.service-visual-badge{
  display: inline-block;
  padding: .42rem .75rem;
  border-radius: 999px;
  background: #eaf8fa;
  color: #0f8390;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.service-visual-title{
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: .9rem;
  line-height: 1.3;
}

.service-visual-text{
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}

.services-hero-box{
  max-width: 900px;
  margin: 0 auto;
}

.services-title{
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
}

.services-subtitle{
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.services-grid-section{
  background: #fff;
}

.service-feature-card{
  height: 100%;
  border: 1px solid rgba(13, 44, 84, .10);
  border-radius: 1.35rem;
  padding: 1.5rem;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-feature-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(20, 184, 196, .24);
}

.service-feature-card-highlight{
  background: linear-gradient(180deg, #ffffff 0%, #f4fbfc 100%);
}

.service-feature-icon{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef8fa;
  color: #0f8390;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-feature-title{
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: .9rem;
  line-height: 1.3;
}

.service-feature-text{
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}

.services-info-section{
  background: var(--brand-3);
}

.services-info-box{
  border: 1px solid rgba(13, 44, 84, .08);
  border-radius: 1.4rem;
  background: #fff;
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.services-check-list{
  display: grid;
  gap: .9rem;
}

.services-check-item{
  position: relative;
  padding-left: 1.8rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.6;
}

.services-check-item::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-2);
  font-weight: 800;
}

.services-destination-box{
  border: 1px solid rgba(13, 44, 84, .10);
  border-radius: 1rem;
  background: #f8fbfd;
  padding: .95rem 1rem;
  font-weight: 700;
  color: var(--brand);
  text-align: center;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.services-destination-box:hover{
  transform: translateY(-3px);
  border-color: rgba(20, 184, 196, .24);
  box-shadow: var(--shadow-soft);
}

/* RESPONSIVE ORIGINAL */
@media (max-width: 767.98px){
  .service-visual-img{
    height: 220px;
  }

  .service-visual-body{
    padding: 1.15rem;
  }

  .service-feature-card{
    padding: 1.25rem;
  }

  .services-info-box{
    padding: 1.25rem;
  }
}

/* =========================
   BOTONES CARDS (FIX)
   ========================= */

html{
  scroll-behavior: smooth;
}

.service-card-btn-wrap{
  margin-top: auto;
  padding-top: 16px;
  text-align: center;
}

.service-card-btn,
.service-card-btn:link,
.service-card-btn:visited,
.service-card-btn:active{
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  border: 1px solid var(--brand);
  transition: all .2s ease;
}

.service-card-btn:hover,
.service-card-btn:focus{
  background: var(--brand-2);
  border-color: var(--brand-2);
  color: #fff !important;
  text-decoration: none !important;
}

.service-card-btn-outline,
.service-card-btn-outline:link,
.service-card-btn-outline:visited,
.service-card-btn-outline:active{
  background: transparent;
  color: var(--brand) !important;
  border: 1px solid rgba(13, 44, 84, .2);
  text-decoration: none !important;
}

.service-card-btn-outline:hover,
.service-card-btn-outline:focus{
  background: var(--brand);
  color: #fff !important;
  border-color: var(--brand);
  text-decoration: none !important;
}

@media (max-width: 767.98px){
  .service-card-btn{
    width: 100%;
    max-width: 280px;
  }
}


/* =========================
   ABOUT PAGE
   ========================= */

.about-hero-inner{
  max-width: 760px;
}

.about-kicker{
  display: inline-block;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: .8rem;
}

.about-title{
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.about-subtitle{
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 700px;
}

/* STORY */

.about-photo-wrap{
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-photo{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.about-section-title{
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 1rem;
}

.about-text{
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* VALUES */

.about-value-card{
  border: 1px solid rgba(13,44,84,.10);
  border-radius: 1.3rem;
  padding: 1.6rem;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.about-value-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eef8fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: .8rem;
}

.about-value-title{
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: .6rem;
}

.about-value-text{
  color: var(--muted);
  line-height: 1.7;
}

/* =========================
   CONTACT PAGE
   ========================= */
.contact-hero{
  max-width: 760px;
}

.contact-kicker{
  display: inline-block;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: .8rem;
}

.contact-title{
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
}

.contact-subtitle{
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 720px;
}

.contact-card{
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.contact-info-card{
  border: 1px solid rgba(13, 44, 84, .10);
  border-radius: 1.4rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
}

.contact-info-title{
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: .9rem;
}

.contact-info-text{
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.contact-info-list{
  display: grid;
  gap: .9rem;
}

.contact-info-item{
  padding: .9rem 1rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(13, 44, 84, .08);
}

.contact-info-label{
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--brand-2);
  margin-bottom: .25rem;
}

.contact-info-value{
  color: var(--brand);
  font-weight: 700;
  line-height: 1.6;
}

.contact-info-note{
  margin-top: 1.2rem;
  padding: .95rem 1rem;
  border-radius: 1rem;
  background: #eef8fa;
  color: #0f8390;
  line-height: 1.7;
  font-size: .95rem;
}

.contact-section-heading{
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1.2rem;
}

.contact-section-kicker{
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-2);
}

.contact-section-title{
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand);
}

.contact-divider{
  height: 1px;
  background: linear-gradient(90deg, rgba(13,44,84,.12), rgba(13,44,84,.03));
  margin: 2rem 0 1.5rem;
}

.contact-card .form-label{
  font-weight: 700;
  color: var(--brand);
  margin-bottom: .55rem;
}

.contact-card .form-control,
.contact-card .form-select{
  min-height: 48px;
  border-radius: .9rem;
  border: 1px solid rgba(13, 44, 84, .14);
  box-shadow: none;
}

.contact-card textarea.form-control{
  min-height: auto;
  border-radius: 1rem;
}

.contact-card .form-control:focus,
.contact-card .form-select:focus{
  border-color: rgba(20, 184, 196, .8);
  box-shadow: 0 0 0 .2rem rgba(20, 184, 196, .12);
}

.contact-alert{
  border-radius: 1rem;
}

.contact-submit-btn{
  min-width: 220px;
  padding: .9rem 1.35rem;
  font-weight: 800;
}

@media (max-width: 767.98px){
  .contact-card{
    border-radius: 1.15rem;
  }

  .contact-info-card{
    padding: 1.25rem;
  }

  .contact-submit-btn{
    width: 100%;
  }
}

/* =========================
   FIND RESERVATION PAGE
   ========================= */
.lookup-hero{
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.lookup-kicker{
  display: inline-block;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: .8rem;
}

.lookup-title{
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
}

.lookup-subtitle{
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.lookup-card{
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.lookup-section-heading{
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1.2rem;
}

.lookup-section-kicker{
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-2);
}

.lookup-section-title{
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand);
}

.lookup-card .form-label{
  font-weight: 700;
  color: var(--brand);
  margin-bottom: .55rem;
}

.lookup-card .form-control{
  min-height: 48px;
  border-radius: .9rem;
  border: 1px solid rgba(13, 44, 84, .14);
  box-shadow: none;
}

.lookup-card .form-control:focus{
  border-color: rgba(20, 184, 196, .8);
  box-shadow: 0 0 0 .2rem rgba(20, 184, 196, .12);
}

.lookup-alert{
  border-radius: 1rem;
}

.lookup-submit-btn{
  font-weight: 800;
  padding: .9rem 1.35rem;
}

@media (max-width: 767.98px){
  .lookup-card{
    border-radius: 1.15rem;
  }
}

/* =========================
   RESERVATION LOOKUP PAGE
   ========================= */
.lookup-summary-page .lookup-summary-hero{
  max-width: 100%;
}

.lookup-summary-card{
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.lookup-summary-box{
  height: 100%;
  border: 1px solid rgba(13, 44, 84, .10);
  border-radius: 1.1rem;
  padding: 1rem 1.05rem;
  background: #f8fbfd;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.lookup-summary-box:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(20, 184, 196, .22);
}

.lookup-summary-box-highlight{
  background: linear-gradient(180deg, #ffffff 0%, #eef8fa 100%);
}

.lookup-summary-label{
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .45rem;
}

.lookup-summary-value{
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1.55;
}

.lookup-summary-value-notes{
  font-weight: 600;
  white-space: normal;
}

.lookup-edit-box{
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(13, 44, 84, .10);
}

.lookup-summary-card .form-label{
  font-weight: 700;
  color: var(--brand);
  margin-bottom: .55rem;
}

.lookup-summary-card .form-control,
.lookup-summary-card .form-select{
  min-height: 48px;
  border-radius: .9rem;
  border: 1px solid rgba(13, 44, 84, .14);
  box-shadow: none;
}

.lookup-summary-card .form-control:focus,
.lookup-summary-card .form-select:focus{
  border-color: rgba(20, 184, 196, .8);
  box-shadow: 0 0 0 .2rem rgba(20, 184, 196, .12);
}

.lookup-extras-list{
  display: grid;
  gap: .85rem;
}

.lookup-extra-item{
  border: 1px solid rgba(13, 44, 84, .08);
  border-radius: 1rem;
  padding: 1rem 1.05rem;
  background: #fff;
}

.lookup-help-box{
  border: 1px solid rgba(20, 184, 196, .18);
  border-radius: 1.4rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7fcfd 100%);
  box-shadow: var(--shadow-soft);
  padding: 2rem 1.5rem;
}

.lookup-help-title{
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand);
}

.lookup-help-text{
  color: var(--muted);
  line-height: 1.8;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767.98px){
  .lookup-summary-card{
    border-radius: 1.15rem;
  }

  .lookup-summary-box,
  .lookup-extra-item{
    padding: .95rem 1rem;
  }

  .lookup-help-box{
    padding: 1.5rem 1rem;
  }
}

/* =========================
   AUTH PAGES
   ========================= */
.auth-hero{
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.auth-kicker{
  display: inline-block;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: .8rem;
}

.auth-title{
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
}

.auth-subtitle{
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.auth-card{
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.auth-section-heading{
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1.2rem;
}

.auth-section-kicker{
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-2);
}

.auth-section-title{
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand);
}

.auth-card .form-label{
  font-weight: 700;
  color: var(--brand);
  margin-bottom: .55rem;
}

.auth-card .form-control,
.auth-card .form-select{
  min-height: 48px;
  border-radius: .9rem;
  border: 1px solid rgba(13, 44, 84, .14);
  box-shadow: none;
}

.auth-card .form-control:focus,
.auth-card .form-select:focus{
  border-color: rgba(20, 184, 196, .8);
  box-shadow: 0 0 0 .2rem rgba(20, 184, 196, .12);
}

.auth-alert{
  border-radius: 1rem;
}

.auth-submit-btn{
  font-weight: 800;
  padding: .9rem 1.35rem;
}

.auth-links{
  line-height: 1.8;
}

.auth-links a{
  text-decoration: none;
}

.auth-divider{
  height: 1px;
  background: linear-gradient(90deg, rgba(13,44,84,.12), rgba(13,44,84,.03));
  margin: 2rem 0 1.5rem;
}

.auth-links a:hover{
  text-decoration: underline;
}

@media (max-width: 767.98px){
  .auth-card{
    border-radius: 1.15rem;
  }
}

/* =========================
   MY ACCOUNT PAGE
   ========================= */
.account-hero{
  max-width: 760px;
}

.account-kicker{
  display: inline-block;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: .8rem;
}

.account-title{
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
}

.account-subtitle{
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.account-card{
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.account-section-heading{
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.account-section-kicker{
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-2);
}

.account-section-title{
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand);
}

.account-info-box{
  border: 1px solid rgba(13, 44, 84, .10);
  border-radius: 1rem;
  background: #f8fbfd;
  padding: 1rem 1.05rem;
  height: 100%;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.account-info-box:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(20, 184, 196, .22);
}

.account-info-label{
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  margin-bottom: .35rem;
}

.account-info-value{
  font-size: .98rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1.5;
}

.account-side-text{
  color: var(--muted);
  line-height: 1.8;
}

.account-side-box{
  border: 1px solid rgba(13, 44, 84, .08);
  border-radius: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  padding: 1rem 1.05rem;
}

.account-side-box-title{
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--brand-2);
  margin-bottom: .4rem;
}

.account-side-box-text{
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 767.98px){
  .account-card{
    border-radius: 1.15rem;
  }

  .account-info-box,
  .account-side-box{
    padding: .95rem 1rem;
  }
}

/* =========================
   PROFILE PAGE
   ========================= */
.profile-hero{
  max-width: 100%;
}

.profile-kicker{
  display: inline-block;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: .8rem;
}

.profile-title{
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
}

.profile-subtitle{
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 720px;
}

.profile-card{
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.profile-section-heading{
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1.2rem;
}

.profile-section-kicker{
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-2);
}

.profile-section-title{
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand);
}

.profile-divider{
  height: 1px;
  background: linear-gradient(90deg, rgba(13,44,84,.12), rgba(13,44,84,.03));
  margin: 2rem 0 1.5rem;
}

.profile-card .form-label{
  font-weight: 700;
  color: var(--brand);
  margin-bottom: .55rem;
}

.profile-card .form-control{
  min-height: 48px;
  border-radius: .9rem;
  border: 1px solid rgba(13, 44, 84, .14);
  box-shadow: none;
}

.profile-card .form-control:focus{
  border-color: rgba(20, 184, 196, .8);
  box-shadow: 0 0 0 .2rem rgba(20, 184, 196, .12);
}

.profile-card .form-control:disabled{
  background: #f8fbfd;
  color: #6b7a8c;
  opacity: 1;
}

.profile-alert{
  border-radius: 1rem;
}

.profile-submit-btn{
  min-width: 220px;
  font-weight: 800;
  padding: .9rem 1.35rem;
}

@media (max-width: 767.98px){
  .profile-card{
    border-radius: 1.15rem;
  }

  .profile-submit-btn{
    width: 100%;
  }
}

/* =========================
   MY RESERVATIONS PAGE
   ========================= */
.myres-hero{
  max-width: 100%;
}

.myres-kicker{
  display: inline-block;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: .8rem;
}

.myres-title{
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
}

.myres-subtitle{
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 760px;
}

.myres-section-heading{
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.myres-section-kicker{
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-2);
}

.myres-section-title{
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand);
}

.myres-table-card{
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.myres-table thead th{
  background: #f8fbfd;
  color: var(--brand);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(13, 44, 84, .08);
  padding: 1rem 1rem;
  white-space: nowrap;
}

.myres-table tbody td{
  padding: 1rem;
  border-color: rgba(13, 44, 84, .08);
  color: var(--text);
  vertical-align: middle;
}

.myres-folio{
  color: var(--brand);
}

.myres-empty-box{
  border: 1px solid rgba(13, 44, 84, .08);
  border-radius: 1rem;
  background: #f8fbfd;
  padding: 1rem 1.1rem;
  color: var(--muted);
}

@media (max-width: 767.98px){
  .myres-table-card{
    border-radius: 1.15rem;
  }

  .myres-table thead th,
  .myres-table tbody td{
    padding: .85rem .8rem;
  }
}

/* =========================
   OTROS
   ========================= */
.feature-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5ff;
  margin-bottom: .6rem;
  font-size: 20px;
}

.step-pill{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9f2ff;
  font-weight: 700;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (min-width: 992px){
  .site-navbar .navbar-collapse{
    margin-top: 0;
  }
}

@media (max-width: 991.98px){
  .hero-home{
    min-height: 70vh;
  }

  .hero-content{
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .promo-img,
  .card-img-top{
    height: 210px;
  }
}

@media (max-width: 767.98px){
  .site-footer{
    padding-top: 3rem;
    padding-bottom: 1rem;
  }

  .footer-top{
    padding-bottom: 1.8rem;
  }

  .footer-text{
    max-width: 100%;
  }

  .hero-home{
    min-height: 580px;
  }

  .min-vh-50{
    min-height: auto;
  }

  .hero-content{
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-title{
    font-size: 2.2rem;
  }

  .hero-subtitle{
    font-size: 1rem;
  }

  .hero-trust{
    font-size: .92rem;
    gap: .75rem !important;
  }

  .promo-img,
  .card-img-top{
    height: 200px;
  }

  .review-card{
    padding: 1.4rem;
  }

  .site-navbar .nav-link.active::after,
  .site-navbar .nav-link:hover::after{
    display: none;
  }

  .booking-card{
    border-radius: 1.15rem;
  }

  .booking-submit-btn{
    width: 100%;
  }

}
