/* ================= 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: 1;
  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: 0;
}

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

.logo {
  display: flex;
  align-items: center;
}




.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: none;

}

.hero-media {
  width:100%;
  height:80vh;
  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 {
  padding-bottom: 40px;
}

/* hero ke baad jo pehla section aata hai */
.hero + section {
  padding-top: 0;

}

.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;
}
/* ===============================
   HEADER & LOGO – SAFE SYSTEM
   =============================== */

.header {
  height: 95px;                     /* 👈 homepage logo thoda bada */
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10000;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px) saturate(160%);
}

.header .nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0;                      /* 🚫 no vertical padding */
}

.brand {
  display: flex;
  align-items: center;
}

/* 🔥 LOGO HARD ISOLATION */
.brand-logo {
  max-height: 80px;                /* 👈 yahin se logo size control */
  width: auto;
  display: block;
  position: static;
}

/* ===== GLOBAL MOBILE WIDTH FIX ===== */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* Kill fake extra width */
* {
  box-sizing: border-box;
}
/* ===============================
   MOBILE BACKGROUND FIX (CRITICAL)
   =============================== */

@media (max-width: 768px) {

  html {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }

  body {
    width: 100%;
    overflow-x: hidden;
  }

  .container,
  .section,
  header,
  footer {
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
  }
}

/* =====================================
   GLOBAL CARD SIZE EXPAND (PREMIUM FEEL)
   ===================================== */

/* Base card expansion */
.card,
.package-card,
.activity-card,
.gallery-grid .card {
  min-height: 100%;
  padding: 22px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover / focus expand (desktop) */
@media (hover: hover) {
  .card:hover,
  .package-card:hover,
  .activity-card:hover,
  .gallery-grid .card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    z-index: 2;
  }
}

/* Make grid items stretch equally */
.package-grid,
.activity-grid,
.gallery-grid {
  align-items: stretch;
}

/* Bigger cards on mobile too (no hover) */
@media (max-width: 768px) {
  .card,
  .package-card,
  .activity-card {
    padding: 24px;
    border-radius: 20px;
  }
}
/* =====================================
   REAL CARD WIDTH EXPAND FIX
   ===================================== */

/* Make section containers full width */
.section,
.container {
  max-width: 100%;
}

/* DESTINATIONS / GALLERY / PACKAGES GRID FIX */
.package-grid,
.gallery-grid,
.destinations-grid {
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

/* Make cards stretch to column width */
.package-card,
.gallery-grid .card,
.destinations-grid .card {
  width: 100%;
}
/* DESTINATIONS CARD SIZE FIX */
.destinations-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}
.destinations-grid img {
    height: 300px;
    object-fit: cover;
}
/* FACEBOOK FLOAT – MATCH WHATSAPP SIZE */
.facebook-float {
  position: fixed;
  bottom: 90px;          /* WhatsApp ke upar */
  right: 20px;
  z-index: 9999;

  width: 50px;
  height: 50px;
  background: #1877f2;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.facebook-float img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
/* ===============================
   CUSTOMISABLE PACKAGES SECTION
   =============================== */

.custom-packages {
  margin: 60px auto;
  padding: 0 20px;
}

.custom-box {
  max-width: 900px;
  margin: auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 30px 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.custom-box h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #0b5f6a;
}

.custom-box p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

.custom-highlight {
  background: #e9f6f8;
  border-left: 5px solid #0b5f6a;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14.5px;
  margin: 18px 0;
}

.custom-cta {
  font-weight: 600;
  color: #0b5f6a;
  margin-top: 10px;
}

/* Mobile Friendly */
@media (max-width: 768px) {
  .custom-box {
    padding: 22px;
  }

  .custom-box h2 {
    font-size: 22px;
  }
}

/* =====================================
   SAFE MOBILE HEADER (FINAL)
   ===================================== */

@media (max-width: 768px) {

  .header {
    height: auto;
    padding: 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .header .nav {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .header .nav::-webkit-scrollbar {
    display: none;
  }

  .brand {
    flex-shrink: 0;
  }

  .brand-logo {
    max-height: 34px;
    width: auto;
    display: block;
  }

  .header a {
    font-size: 14px;
    color: #000;
    flex-shrink: 0;
  }

  .cta {
    margin-left: auto;
    display: flex;
    gap: 6px;
    flex-shrink: 0;
  }

  .cta .btn {
    padding: 6px 10px;
    font-size: 13px;
  }
}

/* ===============================
   MOBILE HEADER GLITCH PATCH
   =============================== */

@media (max-width: 768px) {

  .header {
    height: auto !important;
    min-height: unset !important;
  }

  .header .nav {
    height: auto !important;
    overflow-x: auto;
    white-space: nowrap;
  }

  .header .nav a,
  .header .cta {
    flex-shrink: 0;
  }
}
@media (max-width: 768px) {
  .hero-media {
    height: 60vh !important;
  }
}
/* Customisable Package same width as Terms & Conditions */
.custom-box.policy-box{
  position: relative;
}

/* Badge position fix */
.custom-box.policy-box .badge{
  top: 14px;
  right: 14px;
}
