/* ================= GLOBAL RESET ================= */

* {
  box-sizing: border-box;
}

:root {
  --brand:#0e7490;
  --brand-2:#14b8a6;
  --ink:#0f172a;
  --muted:#475569;
  --card: rgba(255,255,255,0.65);
  --accent:#0891b2;
}

/* ================= BACKGROUND TEXTURE ================= */

html {
  background-image: url("../img/texture.png");
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: top center;
  background-attachment: fixed;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: transparent;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,'Helvetica Neue',Arial,'Noto Sans',sans-serif;
  color: var(--ink);
}

/* ================= LINKS ================= */

a {
  color: var(--brand);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ================= CONTAINER ================= */

.container {
  max-width:1150px;
  margin:0 auto;
  padding:0 16px;
}

/* ================= HEADER ================= */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(12px) saturate(160%);
  border-bottom: 1px solid #e2e8f0;
}

.nav {
  display:flex;
  align-items:center;
  gap:18px;
  padding:10px 0;
}

.nav .brand {
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
}

.logo {
  width:34px;
  height:34px;
}

.nav a {
  font-weight:600;
  color:var(--ink);
}

.nav .cta {
  margin-left:auto;
}

/* ================= BUTTONS ================= */

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:14px;
  border:1px solid #e2e8f0;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  font-weight:700;
}

.btn.primary {
  background: var(--brand);
  color:white;
  border:none;
}

.btn.ghost {
  background: transparent;
  border-color:#cbd5e1;
}

/* ================= HERO ================= */

.hero {
  position:relative;
  overflow:hidden;
  border-bottom:1px solid #e2e8f0;
}

.hero-media {
  width:100%;
  height:64vh;
  object-fit:cover;
  display:block;
}

.hero-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(2,6,23,.55),
    rgba(2,6,23,.35),
    transparent 60%
  );
}

.hero-text {
  position:absolute;
  left:50%;
  top:40%;
  transform:translate(-50%,-50%);
  color:white;
  text-align:center;
  width:min(900px,92%);
}

/* ================= SECTIONS ================= */

.section {
  padding:40px 0;
  background: transparent;
}

.section h2 {
  font-size:28px;
  margin:0 0 14px 0;
}

.light {
  color: var(--muted);
}

/* ================= GRIDS ================= */

.grid {
  display:grid;
  gap:16px;
}

/* ================= CARDS (BASE) ================= */

.card {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  border:1px solid #e2e8f0;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 8px 18px rgba(2,6,23,.08);
}

/* ================= KPI ================= */

.kpi {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(10px);
  border:1px solid #e2e8f0;
  padding:12px;
  border-radius:16px;
  text-align:center;
}

/* ================= FORMS ================= */

.query {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  border:1px solid #e2e8f0;
  border-radius:16px;
  padding:16px;
  display:grid;
  gap:10px;
}

.input {
  padding:12px;
  border-radius:12px;
  border:1px solid #cbd5e1;
  width:100%;
}

/* ================= FOOTER ================= */

.footer {
  margin-top:40px;
  border-top:1px solid #e2e8f0;
  background: transparent;
}

.footer-inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  padding:18px 0;
  font-size:14px;
  color:var(--muted);
}

@media (max-width:760px) {
  .footer-inner {
    grid-template-columns:1fr;
  }
}

/* =====================================================
   🔥 GALLERY (FINAL FIXED – IMAGES + VIDEOS)
===================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.gallery-grid .card {
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
}

/* IMPORTANT: NO FIXED HEIGHT */
.gallery-grid img,
.gallery-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* =====================================================
   LIGHTBOX (HALF SCREEN – ALL DEVICES)
===================================================== */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(8px);
}

.gallery-lightbox .lightbox-content img,
.gallery-lightbox .lightbox-content video {
  width: 90vw;
  max-width: 900px;
  max-height: 50vh;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: zoomIn 0.3s ease;
}

.gallery-lightbox video {
  background: #000;
}

.gallery-lightbox .close-btn {
  position: absolute;
  top: 22px;
  right: 30px;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
}

@keyframes zoomIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* =====================================================
   MISC CLEANUPS
===================================================== */

hr,
footer hr,
footer::before,
footer::after {
  display: none !important;
}
/* =====================================================
   GLOBAL GLASS FOR POST-GALLERY SECTIONS
   (Packages, FAQs, About, Contact)
===================================================== */

/* ALL section text blocks after gallery */
.section .card,
.section .query,
.section .kpi,
.section table,
.section ul,
.section ol,
.section p,
.section h3,
.section h4 {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 14px 16px;
}

/* PACKAGE LIST / FAQ LIST FIX */
.section ul li,
.section ol li {
  background: transparent;
  padding-left: 6px;
}

/* =====================================================
   CONTACT PAGE – FORM + INFO GLASS
===================================================== */

.contact-box,
.contact-info,
.contact-details {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 18px;
}

/* =====================================================
   FOOTER – EMAIL, PHONE, COPYRIGHT (ALL PAGES)
===================================================== */

.footer,
.footer-inner,
.footer a,
.footer span,
.footer strong {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.footer-inner {
  border-radius: 20px;
  padding: 18px;
  border: 1px solid #e2e8f0;
}

/* Make footer text readable */
.footer a,
.footer span,
.footer strong {
  color: #0f172a;
}

/* ================= FAQ DETAILS FIX ================= */

.section.faq details {
  background: rgba(255,255,255,0.85);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 14px;
  border: 1px solid #e2e8f0;
}

.section.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #0f172a;
}

.section.faq details p {
  margin-top: 10px;
  color: #334155;
  line-height: 1.6;
}

.section.faq summary::marker {
  color: #0e7490;
}

.section.faq details[open] {
  box-shadow: 0 6px 18px rgba(2,6,23,.12);
}

/* ================= FAQ PAGE FIX ================= */

.section.faq .container {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 28px;

  box-shadow: 0 12px 30px rgba(2,6,23,.12);
}
/* ================= GALLERY GLASS (MATCH DESTINATIONS) ================= */

.section.gallery {
  background: transparent;
}

.section.gallery .container {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 28px;

  box-shadow: 0 12px 30px rgba(2,6,23,.12);
}


/* ===============================
   Destination Glass Text Fix
   =============================== */

.glass-card {
  color: #111;
}

.glass-card h1,
.glass-card h2,
.glass-card h3 {
  color: #000;
}

.glass-card p,
.glass-card li {
  color: #222;
}

.glass-card ul li::marker {
  color: #000;
}
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
}
/* ===============================
   Gallery Hover Fix
   =============================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.08);
  filter: brightness(0.85);
}
/* ===============================
   Fullscreen Gallery Lightbox
   =============================== */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox img,
.gallery-lightbox video {
  max-width: 95%;
  max-height: 90%;
  border-radius: 12px;
}

.gallery-lightbox video {
  outline: none;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
}
