:root{
  --blue:#04358F;
  --pink:#C70567;

  --bg:#ffffff;
  --panel:#ffffff;
  --text:#0b1220;
  --muted:rgba(11,18,32,0.68);
  --border:rgba(11,18,32,0.10);

  --shadow: 0 25px 50px -12px rgba(4, 53, 143, 0.15);
  --shadowSoft: 0 10px 30px -5px rgba(4, 53, 143, 0.08);

  --radius: 18px;
  --radius2: 24px;

  --max: 1120px;
}

html{
  scroll-behavior: smooth;
}

::selection {
  background: var(--pink);
  color: #fff;
}

/* Force scrollbar to stay visible and be thicker */
html { scrollbar-width: auto; scrollbar-color: #888 #f0f0f0; }
::-webkit-scrollbar { width: 24px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background-color: #888; border-radius: 24px; border: 3px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-thumb:hover { background-color: #555; }

*{box-sizing:border-box}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: Helvetica, Arial, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height:1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin:0 auto;
}

.h2{
  font-family:"League Spartan", sans-serif;
  letter-spacing:-0.4px;
  font-size:34px;
  margin:0;
}
.sub{
  margin:10px 0 0;
  color:var(--muted);
  max-width: 70ch;
}

.section{
  padding:72px 0;
}
.section.alt{
  background: linear-gradient(180deg, rgba(4,53,143,0.05), rgba(199,5,103,0.04));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.sectionHead{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:22px;
}
.aboutUsTag{
  font-family: "League Spartan", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}

/* ===== Liquid glass navbar (corrected centering) ===== */
.topBar{
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.topBarInner{
  pointer-events: auto;

  width: 100%;
  max-width: 1180px;
  margin: 0 auto;

  padding: 12px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);

  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.3);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.45);
}
body{
  padding-top: 86px;
}


.brand{
  display:flex;
  align-items:center;
  justify-content: center;
  gap:12px;
  min-width: auto;
  position: absolute;
  left: 12%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.brandLogo{
  width:auto;
  height:50px;
  object-fit:cover;
}
.brandText{display:none}
.brandName{
  font-family:"League Spartan", sans-serif;
  font-weight:700;
  font-size:20px;
  letter-spacing:-0.2px;
}
.brandTag{
  font-size:12px;
  color:var(--muted);
}
.brand:active{
  transform: translate(-50%, -50%) scale(0.96);
}

/* Nav */
.nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}
.nav a{
  font-size:14px;
  color:var(--muted);
  padding:8px 14px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.nav a:hover{
  color: var(--text);
  background: rgba(4, 53, 143, 0.06);
}
.nav a:active{
  transform: scale(0.96);
}
.nav .cta{
  background: linear-gradient(135deg, var(--blue), var(--pink));
  color:#fff;
  box-shadow: 0 14px 30px rgba(4,53,143,0.25);
}

/* Fleet carousel */
.fleetCarousel{
  position:relative;
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background: color-mix(in oklab, var(--panel) 92%, transparent);
  box-shadow: var(--shadowSoft);
  overflow:visible;
  padding:18px;
}

.fleetTrack{
  display:flex;
  gap:14px;
  overflow:auto;
  scroll-snap-type:x mandatory;
  padding: 6px 8px 18px;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.fleetTrack::-webkit-scrollbar{display:none}

.fleetCard{
  scroll-snap-align:start;
  flex: 0 0 min(320px, 80vw);
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(11,18,32,0.06);
  background: var(--panel);
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
  transform: translateZ(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
}
.fleetCard:hover{
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(4, 53, 143, 0.18);
}
.fleetCard:active{
  transform: scale(0.98);
  box-shadow: 0 8px 20px rgba(4, 53, 143, 0.15);
}
.fleetImg{
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.fleetCard:hover .fleetImg{ transform: scale(1.06); }
.fleetInfo{
  padding: 20px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.fleetName{
  font-family:"League Spartan", sans-serif;
  font-weight:700;
  letter-spacing:-0.2px;
  font-size:18px;
}
.fleetPrice{
  color:var(--muted);
  font-size:14px;
}
.fleetMeta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:6px;
}
.pill{
  font-size:12px;
  color: color-mix(in oklab, var(--text) 86%, transparent);
  background: color-mix(in oklab, var(--panel) 88%, transparent);
  border:1px solid var(--border);
  padding:6px 10px;
  border-radius:999px;
}

.carNav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:54px;
  height:54px;
  border-radius:999px;
  border:1px solid var(--border);
  background: color-mix(in oklab, var(--panel) 88%, transparent);
  cursor:pointer;
  z-index: 5;
  display:grid;
  place-items:center;
  font-size:28px;
  transition: all 0.2s ease;
}
.carNav.prev{left:-36px}
.carNav.next{right:-36px}
.carNav:hover { 
  transform: translateY(-50%) scale(1.15); 
  background: #fff;
  color: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 12px 30px rgba(4, 53, 143, 0.2);
}
.carNav:active{
  transform: translateY(-50%) scale(0.9);
}



/* Pricing stack */
.pricingStack{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.pricingBlock{
  display:grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap:18px;
  align-items:start;
}
.pricingBlock.reverse{
  grid-template-columns: 0.92fr 1.08fr;
}
.pricingText{
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background: color-mix(in oklab, var(--panel) 92%, transparent);
  box-shadow: var(--shadowSoft);
  padding: 32px;
}
.pTitle{
  font-family:"League Spartan", sans-serif;
  font-weight:800;
  letter-spacing:-0.3px;
  font-size:22px;
  margin:0 0 8px;
}
.sectionTag{
  font-family: "League Spartan", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}
/* List styling for car details */
.pList {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.pList li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 15px;
}
.pList li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.pList li.green-check::before {
  color: green !important;
}
.green-check{
  font-weight:bold;
}


.pPara{margin:0 0 10px; color:var(--muted)}

.priceGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:6px;
  margin-top:5px;
  margin-bottom: 1px;
  justify-items: center;
}
.priceChip{
  width: 210px;
  margin: 5px;
  border: 3px solid var(--border);
  background: var(--panel);
  border-radius: 16px;
  padding: 5px;
  color: #000;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.35s ease,
    color 0.25s ease;
}

.priceChip:hover{
  transform: translateY(-2px);
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--pink)
  );
  box-shadow: 0 20px 40px rgba(4,53,143,0.25);
  border-color: transparent;
}

.priceLabel{font-size:16px; color:#fff var(--muted);text-align: center;}

.priceValue{
  margin-top:1px;
  font-family:"League Spartan", sans-serif;
  font-weight:800;
  letter-spacing:-0.2px;
  font-size:32px;
  text-align: center;
}

.pActions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:10px 14px;
  border:1px solid var(--border);
  background: color-mix(in oklab, var(--panel) 86%, transparent);
  color: var(--text);
  font-size:14px;
  cursor:pointer;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.bookBtn{
  display: block;
  margin: 8px auto 6px auto;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(4,53,143,0.06);
  color: var(--blue);
  font-weight: 600;
  font-size: 18;
  border: 1px solid rgba(4,53,143,0.15);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn.primary{
  border:none;
  color:#fff;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  box-shadow: 0 14px 30px rgba(4,53,143,0.25);
}
.btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.btn:active{
  transform: scale(0.98);
}

.bookBtn:hover{
  background: linear-gradient(135deg, var(--blue), var(--pink));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(4,53,143,0.25);
}
.bookBtn:active{
  transform: scale(0.98);
}

.pricingMedia{
  position:sticky;
  top:92px;
}
.mediaCard{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 180ms ease, box-shadow 180ms ease;
  background:#000;
}
.mediaCard:hover{
  transform: perspective(900px) rotateX(1.4deg) rotateY(-1.2deg);
  box-shadow: 0 24px 54px rgba(0,0,0,0.18);
}
.mediaCard img{
  width:100%;
  height: 360px;
  object-fit:cover;
  display:block;
}

.noteRow{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top: 18px;
}
.noteCard{
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background: color-mix(in oklab, var(--panel) 92%, transparent);
  box-shadow: var(--shadowSoft);
  padding:14px;
}
.noteTitle{
  font-family:"League Spartan", sans-serif;
  font-weight:800;
  margin-bottom:6px;
}
.noteText{color:var(--muted); font-size:14px}

.centerCta{display:flex; justify-content:center; margin-top:18px}

/* FAQ */
.faq{
  display:flex;
  flex-direction:column;
  gap:7px;
}
details{
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background: color-mix(in oklab, var(--panel) 92%, transparent);
  box-shadow: var(--shadowSoft);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
details[open] {
  background: #fff;
  box-shadow: 0 20px 40px -5px rgba(4, 53, 143, 0.15);
  transform: translateY(-4px);
  border-color: rgba(4, 53, 143, 0.2);
}
summary{
  cursor:pointer;
  font-family:"League Spartan", sans-serif;
  font-weight:700;
  font-size: 17px;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
  transition: background 0.2s ease;
}
summary:hover { background: rgba(4, 53, 143, 0.03); }
summary:active { background: rgba(4, 53, 143, 0.06); }
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  font-size: 28px;
  font-weight: 300;
  color: var(--blue);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  line-height: 1;
  margin-left: 12px;
}
details[open] summary::after {
  transform: rotate(45deg) scale(1.1);
  color: var(--pink);
}
.faqBody{
  padding: 0 24px 24px;
  color:var(--muted);
  font-size:15px;
  line-height: 1.6;
  animation: faqSlideDown 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
@keyframes faqSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer */
.footer{
  padding: 36px 0 20px;
  border-top: 1px solid var(--border);
  background: color-mix(in oklab, var(--panel) 92%, transparent);
}
.footerInner{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
  padding-bottom: 18px;
}
.footerCol{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.footerBrand{
  font-family:"League Spartan", sans-serif;
  font-weight:800;
  font-size:18px;
}
.footerTitle{
  font-family:"League Spartan", sans-serif;
  font-weight:800;
  margin-bottom:4px;
}
.footerMeta{color:var(--muted); font-size:14px}
.footerBottom{
  padding-top: 14px;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:13px;
}
.footerCol a:hover {
  color: var(--blue);
  text-decoration: underline;
}
.footerCol a:active {
  transform: scale(0.98);
  transform-origin: left center;
}

/* Floating booking pill */
.floatingBook{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display:flex;
  align-items:center;
  gap:0;
  border-radius:999px;
  padding: 12px 14px;
  color:#fff;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  box-shadow: 0 18px 42px rgba(4,53,143,0.26);
  border: none;
}
.floatingIcon{
  width:28px; height:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background: rgba(255,255,255,0.16);
  font-size: 16px;
  line-height: 1;
}
.floatingIcon svg { width: 16px; height: 16px; }
.floatingText{
  max-width: 0;
  overflow:hidden;
  white-space:nowrap;
  opacity: 0;
  margin-left: 0;
  transition: max-width 500ms cubic-bezier(0.25, 1, 0.5, 1), opacity 300ms ease-out 100ms, margin-left 500ms cubic-bezier(0.25, 1, 0.5, 1);
}
.floatingBook:hover .floatingText{
  max-width: 160px;
  opacity: 1;
  margin-left: 10px;
}
.floatingBook:active{
  transform: scale(0.96);
}

/* Floating back button */
.floatingBack{
  position: fixed;
  left: 18px;
  bottom: 380px;
  top: auto;
  z-index: 9999;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: 0 4px 15px rgba(4, 53, 143, 0.2);
  color: var(--text);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  line-height: 1;
  overflow: hidden;
}
.floatingBack::after {
  content: "Back";
  font-family: "League Spartan", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  max-width: 0;
  opacity: 0;
  margin-left: 0;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.floatingBack:hover{
  width: 120px;
  background-color: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 20px rgba(4, 53, 143, 0.6), 0 10px 25px rgba(4, 53, 143, 0.25);
  transform: translateY(-3px);
}
.floatingBack:hover::after {
  max-width: 60px;
  opacity: 1;
  margin-left: 8px;
}
.floatingBack:active{
  transform: scale(0.96);
}

/* Floating WhatsApp button */
.floatingWhatsapp{
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  box-shadow: var(--shadowSoft);
  color: #fff;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
}
.floatingWhatsapp:hover{
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  filter: brightness(1.08);
}
.floatingWhatsapp:active{
  transform: scale(0.95);
}
.floatingWhatsapp svg { width: 26px; height: 26px; }

/* Car Page Navigation (Prev/Next) */
.carPageNav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9990;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 8px 6px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 10px;
  color: var(--text);
  box-shadow: var(--shadowSoft);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.carPageNav:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 10px 30px rgba(4, 53, 143, 0.2);
}
.carPageNav.prev { left: 18px; }
.carPageNav.next { right: 18px; }

/* Scroll Progress Bar */
#scrollProgress {
  position: fixed;
  left: 0;
  bottom: 0;
  height: 12px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  z-index: 100000;
  pointer-events: none;
  transition: width 0.1s ease-out;
  opacity: 1;
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* About Section */
.aboutGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.aboutContent {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.aboutImageWrap {
  position: relative;
  border-radius: var(--radius2);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s ease;
}
.aboutImageWrap:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 30px 60px -12px rgba(0,0,0,0.25);
}
.aboutImageWrap img {
  width: 100%;
  height: auto;
  display: block;
  will-change: transform;
}
.statRow {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.statItem strong {
  display: block;
  font-family: "League Spartan", sans-serif;
  font-size: 36px;
  line-height: 1;
  color: var(--blue);
  margin-bottom: 6px;
}
.statItem span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 980px){
  .nav{display:none;}
  .pricingBlock,
  .pricingBlock.reverse{ grid-template-columns: 1fr; }
  .pricingMedia{ position:relative; top:auto; }
  .mediaCard img{ height: 280px; }
  .noteRow{ grid-template-columns: 1fr; }
  .footerInner{ grid-template-columns: 1fr; }
  .aboutGrid { grid-template-columns: 1fr; gap: 32px; }
  .aboutImageWrap { order: -1; transform: rotate(0deg); }
}
/* Header logo size (bulletproof) */
.brand img{
  height: 50px;
  width: auto;
  object-fit: cover;
  display: block;
}

@media (max-width: 520px){
  .brand img{ height: 38px; }
}

/* ===== Single reviews carousel ===== */
#reviews{
  padding: 80px 0;
}

.reviewsHeader{
  text-align: center;
  margin-bottom: 28px;
}

.reviewsHeader .stars{
  color: #e63946;
  font-size: 18px;
  letter-spacing: 2px;
}

.reviewsHeader .googleText{
  font-size: 13px;
  opacity: 0.75;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.reviewsHeader .googleText img{
  height: 18px;
  width: auto;
}

.reviewsCarousel{
  position: relative;
  overflow: hidden;
  padding: 40px 0; /* makes background taller */
}

/* soft fade on left & right edges */
.reviewsCarousel::before,
.reviewsCarousel::after{
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.reviewsCarousel::before{
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0) 100%);
}

.reviewsCarousel::after{
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255,255,255,0) 100%);
}


.reviewsTrack{
  display: flex;
  gap: 25px;
  width: max-content;
  animation: reviewsScroll 80s linear infinite;
}

.reviewCard{
  width: 300px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}

.reviewHeader{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.reviewAvatar{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e5e5e5;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.reviewName{
  font-weight: 600;
  font-size: 14px;
}

.reviewText{
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.85;
}

@keyframes reviewsScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ===== Gallery ===== */
.gallerySection { position: relative; padding-bottom: 40px; }

.galleryGrid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px !important;
  margin-top: 32px;
}

/* Mobile Optimization: Force 2 columns for better UX */
@media (max-width: 600px) {
  .galleryGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px !important;
  }
}

.galleryItem {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: #f0f0f0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  transform: translateZ(0);
}
.galleryItem:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 30px rgba(4, 53, 143, 0.15);
  z-index: 2;
}
.galleryItem img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}
.galleryItem:hover img { transform: scale(1.12); }

/* Collapse Wrapper */
.galleryWrapper {
  position: relative;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.galleryWrapper.collapsed { max-height: 600px; }

/* Gradient Overlay */
.galleryOverlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 300px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 90%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 20px; z-index: 10; pointer-events: none;
  transition: opacity 0.5s ease;
}
.galleryWrapper:not(.collapsed) .galleryOverlay { display: none; }

/* Buttons */
.galleryBtnContainer { display: flex; justify-content: center; margin-top: 20px; position: relative; z-index: 20; }
.galleryActionBtn {
  background: var(--panel); border: 1px solid var(--border); color: var(--blue);
  font-family: "League Spartan", sans-serif; font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 1.5px; padding: 14px 32px;
  border-radius: 999px; cursor: pointer; box-shadow: var(--shadowSoft);
  transition: all 0.3s ease; display: flex; align-items: center; gap: 8px; pointer-events: auto;
}
.galleryActionBtn:hover {
  background: var(--blue); color: #fff; transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(4, 53, 143, 0.25);
}
.galleryActionBtn:active { transform: scale(0.96); }
.galleryActionBtn svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.galleryActionBtn:hover svg { transform: translateY(2px); }
.galleryActionBtn.less:hover svg { transform: translateY(-2px); }
.galleryBtnContainer.hidden { display: none; }

/* Modal Improvements */
.galleryModal {
  position: fixed; inset: 0; z-index: 100000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5, 10, 20, 0.96) !important; backdrop-filter: blur(12px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.galleryModal.active { opacity: 1; pointer-events: auto; }

.galleryModalContent { background: transparent; box-shadow: none; max-width: 1200px; width: 95%; border-radius: 0; overflow: visible; }
#modalImg {
  display: block;
  border-radius: 12px; box-shadow: 0 0 50px rgba(0,0,0,0.5);
  max-height: 85vh; width: auto; max-width: 100%; margin: 0 auto;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.2, 0, 0.2, 1);
  opacity: 1; transform: scale(1);
}
#modalImg.switching { opacity: 0; transform: scale(0.92); }

.galleryNav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(12px); border-radius: 50%;
  width: 64px; height: 64px; display: grid; place-items: center; font-size: 28px;
  border: 1px solid rgba(255, 255, 255, 0.3); transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  color: #fff; box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.galleryNav.prev { left: 24px; }
.galleryNav.next { right: 24px; }
.galleryNav:hover {
  background: #fff; color: var(--blue); transform: translateY(-50%) scale(1.15);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.5); border-color: #fff;
}
.galleryNav:active { transform: translateY(-50%) scale(0.95); }
.galleryClose {
  position: absolute;
  top: 24px; right: 24px; background: rgba(255,255,255,0.1); color: #fff;
  backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.2);
}
.galleryClose:hover { background: #e63946; border-color: #e63946; color: #fff; transform: rotate(90deg); }

/* ===== Liquid glass navbar ===== */
.topBar{
  position: fixed;
  top: 12px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none; /* allows hero interaction behind */
}

.topBarInner{
  pointer-events: auto;
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
  padding: 0 18px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);

  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.3);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.45);
}
body{
  padding-top: 86px;
}

/* ===== Hero & Loader ===== */
body.locked { overflow: hidden; }

.scroll-area { height: 360vh; position: relative; }
.sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  display: grid;
  place-items: center;
}
#c {
  display: block;
  width: 100%;
  height: 100%;
  grid-area: 1 / 1;
}
/* Hero Background Elements */
.hero-bg {
  grid-area: 1 / 1;
  z-index: 5;
  width: 100%;
  height: 100%;
  position: relative;
  pointer-events: none;
  overflow: hidden;
  opacity: 0; /* Controlled by JS */
}
.hero-blob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(4, 53, 143, 0.06) 0%, rgba(199, 5, 103, 0.04) 35%, transparent 70%);
}
.hero-bg-img {
  position: absolute;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  object-fit: cover;
  will-change: transform;
}
.hero-bg-img.left {
  top: 18%; left: 1%; width: 20vw; max-width: 320px; aspect-ratio: 4/3;
}
.hero-bg-img.right {
  bottom: 18%; right: 3%; width: 24vw; max-width: 380px; aspect-ratio: 16/9;
}
@media (max-width: 1000px) {
  .hero-bg-img { display: none; }
}

#heroTextCard{
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
  grid-area: 1 / 1;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.1s linear;
}

#heroTitle{
  font-family: "League Spartan", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #04358F;
  text-align: center;
  font-size: clamp(28px, 3.3vw, 56px);
  line-height: 1.02;
  margin: 0;
}
#heroTitle span{
  color: #C70567;
}

.heroSub{
margin-top: 15px;
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
text-align: center;
}

.heroTagline{
margin: 0;
font-size: clamp(18px, 2vw, 22px);
font-weight: 600;
letter-spacing: 0.2px;
color: #111;
}

.heroChecks{
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px 16px;
}

.heroChecks li{
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 12px;
border: 1px solid rgba(0,0,0,0.08);
border-radius: 999px;
background: rgba(255,255,255,0.55);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
font-size: 14px;
color: rgba(17,17,17,0.78);
}

.heroChecks li::before{
content: "✓";
font-weight: 800;
color: var(--blue, #04358f);
}

@media (max-width: 520px){
}

/* Loader overlay */
#loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity 600ms ease;
}
#loaderInner {
  width: min(520px, 92vw);
  display: grid;
  place-items: center;
  gap: 18px;
}
#gauge {
  width: min(520px, 92vw);
  height: auto;
  display: block;
}
#loaderText {
  text-align: center;
  color: #fff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
#loaderText .label {
  font-size: 18px;
  letter-spacing: 0.2px;
}
#loaderText .pct {
  margin-top: 6px;
  font-size: 48650;
}
#hint {
  color: rgba(255,255,255,0.65);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  text-align: center;
}

/* Booking Frame */
.bookingWrap {
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadowSoft);
}

/* Back to Top Button */
.backToTop {
  position: fixed;
  bottom: 24px;
  left: 24px;
  min-width: 48px;
  width: auto;
  height: 48px;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadowSoft);
  color: var(--blue);
  z-index: 9990;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.backToTop .text {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  font-weight: 600;
  font-size: 14px;
  transition: max-width 0.4s ease, opacity 0.3s ease, margin-left 0.4s ease;
}
.backToTop.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.backToTop.atBottom {
  left: 50%;
  padding: 0 20px;
}
.backToTop.visible.atBottom {
  transform: translateX(-50%) translateY(0) scale(1);
}
.backToTop.atBottom .text {
  max-width: 120px;
  opacity: 1;
  margin-left: 8px;
}
.backToTop:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 15px 30px rgba(4,53,143,0.2);
  color: var(--pink);
  border-color: var(--pink);
}
.backToTop.atBottom:hover {
  transform: translateX(-50%) translateY(-4px) scale(1.1);
}
.backToTop:active {
  transform: scale(0.9);
}
.backToTop.atBottom:active {
  transform: translateX(-50%) scale(0.9);
}
.backToTop.launch {
  transition: transform 0.7s ease-in, opacity 0.7s ease-in;
  transform: translateY(-120vh) scale(0.5);
  opacity: 0;
}
.backToTop.atBottom.launch {
  transform: translate(-50%, -120vh) scale(0.5);
}
.note {
  display: inline-block;
  padding: 6px 10px;
  font-size: 0.8rem;
  color: #6c757d;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 10px;
}

/* ===== Mobile Menu & Hamburger ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--blue);
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.mobileMenu {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobileMenu.active { opacity: 1; pointer-events: auto; }
.mobileMenu a {
  font-family: "League Spartan", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
}
.mobileMenuClose {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--blue);
  cursor: pointer;
  padding: 8px;
  transition: transform 0.3s ease;
}
.mobileMenuClose:hover { transform: rotate(90deg); color: var(--pink); }

@media (max-width: 980px) {
  .nav { display: none; }
  .hamburger { display: block; }
  /* Center brand on mobile */
  .brand { left: 50% !important; transform: translate(-50%, -50%) !important; }
  /* Align hamburger to left */
  .topBarInner { justify-content: flex-start; }
}