html { scroll-behavior: smooth; }

:root{
  --bg-dark: #151a1e;
  --bg-dark-2: #0f1316;
  --text: #111827;
  --muted: rgba(255,255,255,0.75);
  --shadow: 0 20px 60px rgba(0,0,0,.28);
}

body{
  color: var(--text);
}

/* NAV */
.navbar-glass{
  background: rgba(18, 22, 26, 0.92) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.brand-lockup .brand-main{ letter-spacing: .2px; }
.brand-lockup .brand-accent{ font-style: italic; font-weight: 600; opacity: .95; }
.nav-link{ opacity: .9; }
.nav-link:hover{ opacity: 1; }

/* HERO */
.hero{
  position: relative;
  height: min(78vh, 820px);
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-overlay{
  position:absolute;
  inset:0;
  /* Light touch: keeps photo colors but ensures text readability */
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.60) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.10) 65%,
    rgba(0,0,0,0.00) 100%
  );
}

.hero-inner{
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 2.5rem;
}

.hero-left{
  padding: 5.5rem 0 3rem;
}

.hero-left h1{
  color:#fff;
  font-weight: 800;
  line-height: 1.08;
  font-size: clamp(2.4rem, 4.2vw, 3.9rem);
  text-shadow: 0 10px 40px rgba(0,0,0,.55);
  margin-bottom: 1rem;
}

.hero-left .muted{
  display: inline-block;
  font-weight: 600;
  opacity: .9;
}

.hero-lead{
  color: rgba(255,255,255,0.92);
  max-width: 620px;
  font-size: 1.08rem;
  margin-bottom: 1.75rem;
  text-shadow: 0 6px 24px rgba(0,0,0,.35);
}

.hero-actions{
  display:flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.hero-stats{
  display:flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: .25rem;
}

.stat{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: .75rem 1rem;
  min-width: 120px;
  color:#fff;
}
.stat-top{ font-size: .85rem; opacity: .85; }
.stat-val{ font-weight: 800; }

.hero-right{
  padding-top: 5.5rem;
}

.glass-card{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  color:#fff;
}

.text-muted-light{ color: rgba(255,255,255,0.85); }
.glass-card .btn{
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
}

/* SECTIONS */
.section{ padding: 4rem 0; }
.section-light{ background: #fff; }
.section-muted{ background: #f5f6f8; }

.section-head{ margin-bottom: 1.25rem; }
.section-title{ font-weight: 800; margin: 0; }
.section-sub{ color: #6b7280; margin-top: .35rem; }

.gallery-head{
  display:flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* TOUR CARDS */
.tour-card{
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.tour-img{
  height: 190px;
  object-fit: cover;
}

/* GALLERY TILES */
.gallery-tile{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
}
.gallery-tile img{
  width: 100%;
  height: 210px;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
  transition: transform .25s ease;
}
.gallery-tile:hover img{
  transform: scale(1.07);
}
.gallery-caption{
  position:absolute;
  left:0; right:0; bottom:0;
  padding: 12px 12px;
  background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,0));
  color:#fff;
}

/* INQUIRY */
.checklist{
  margin-top: 1.25rem;
  padding: 1.25rem;
  border-radius: 14px;
  background: #f3f4f6;
  border: 1px solid rgba(0,0,0,.05);
}
.check-item{
  padding-left: 1.4rem;
  position: relative;
  margin: .6rem 0;
  color: #374151;
}
.check-item:before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 900;
}

.form-card{
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
}

/* FOOTER */
.footer{
  background: var(--bg-dark-2);
  color: rgba(255,255,255,0.75);
  padding: 1.6rem 0;
}
.footer-inner{
  display:flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-right{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-social{
  display:flex;
  gap: 10px;
}

.social-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  text-decoration:none;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}

.social-link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.social-link i{
  font-size: 18px;
}





/* =========================================================
   NEW: Clickable tiles + Modals (Tours + Gallery + Thanks)
   ========================================================= */

/* Make cards clickable without ugly button styling */
.tour-tile,
.gallery-btn{
  background: none;
  border: 0;
  padding: 0;
}

/* Remove focus ring looking weird, but keep accessibility */
.tour-tile:focus,
.gallery-btn:focus{
  outline: none;
}
.tour-tile:focus-visible,
.gallery-btn:focus-visible{
  outline: 3px solid rgba(13,110,253,.35); /* bootstrap primary-ish */
  outline-offset: 4px;
  border-radius: 14px;
}

/* Tour hover polish */
.tour-tile:hover .tour-card{
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0,0,0,.12);
}

/* Tour modal layout */
.tour-modal-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.tour-modal-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}
.tour-modal-content{
  padding: 1.5rem;
}

/* Gallery lightbox modal */
.gallery-modal-img{
  width: 100%;
  height: 80vh;
  object-fit: contain;
  background: #0b0f12;
  display:block;
}
.gallery-modal-meta{
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: #fff;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  padding: 10px 12px;
  border-radius: 10px;
}
.gallery-close{
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 5;
  filter: invert(1);
}

/* Make modals match your rounded style a bit more */
.modal-content{
  border-radius: 14px;
  overflow: hidden;
}

/* RESPONSIVE */
@media (max-width: 992px){
  .hero-inner{
    grid-template-columns: 1fr;
    text-align: left;
    padding-top: 1rem;
  }
  .hero-right{ display: none; }
  .hero-left{ padding: 4rem 0 2.5rem; }

  /* Modals on smaller screens */
  .tour-modal-grid{
    grid-template-columns: 1fr;
  }
  .tour-modal-media img{
    height: 280px;
  }
}

@media (max-width: 768px){
  .hero{
    height: min(70vh, 740px);
  }
  .hero-overlay{
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.25) 55%,
      rgba(0,0,0,0.00) 100%
    );
  }
  .hero-actions{
    justify-content: flex-start;
  }
}



/* ===== MICRO ANIMATIONS ===== */
.reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.show{
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance */
.hero-left h1,
.hero-left .hero-lead,
.hero-actions,
.hero-stats{
  opacity: 0;
  transform: translateY(12px);
  animation: heroIn .8s ease forwards;
}

.hero-left .hero-lead{ animation-delay: .15s; }
.hero-actions{ animation-delay: .3s; }
.hero-stats{ animation-delay: .45s; }

@keyframes heroIn{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tour hover extra life */
.tour-card:hover .tour-img{
  transform: scale(1.08);
}

/* Gallery hover micro motion */
.gallery-tile:hover{
  transform: translateY(-3px);
  transition: transform .25s ease;
}

