:root{
  /* Brand Colors (Black / Yellow / White) */
  --black:#0b0b0f;
  --yellow:#f7c600;
  --white:#ffffff;

  /* UI Colors */
  --bg: var(--black);
  --panel:#111111;
  --alt:#0f0f0f;
  --text: var(--white);
  --muted:#cfcfcf;
  --line: rgba(255,255,255,.12);
  --accent: var(--yellow);

  /* Effects */
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
    radial-gradient(900px 520px at 10% 0%, rgba(247,198,0,.20), transparent 60%),
    radial-gradient(900px 520px at 90% 10%, rgba(247,198,0,.12), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit;text-decoration:none}
.container{width:min(1140px, 92vw); margin:0 auto}

/* Topbar */
.topbar{
  border-bottom:1px solid var(--line);
  background:rgba(0,0,0,.30);
  backdrop-filter: blur(10px);
}
.topbar__inner{display:flex;align-items:center;justify-content:space-between;padding:10px 0; gap:12px}
.topbar__left{display:flex; gap:10px; flex-wrap:wrap}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  padding:6px 10px; border:1px solid rgba(247,198,0,.25);
  border-radius:999px; font-size:12px; color:var(--muted);
  background: rgba(0,0,0,.15);
}
.badge--soft{border-color: rgba(255,255,255,.12)}
.toplink{font-size:13px;color:var(--muted)}
.toplink:hover{color:var(--text)}

/* Nav */
.nav{
  position:sticky; top:0; z-index:20;
  border-bottom:1px solid var(--line);
  background:rgba(11,11,15,.70);
  backdrop-filter: blur(10px);
}
.nav__inner{display:flex; align-items:center; justify-content:space-between; padding:12px 0}
.logo{display:flex;align-items:center;gap:10px}
.logo__img{
  height:36px;
  width:auto;
  display:block;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.25);
  padding:7px 10px;
}
.logo__img--footer{height:44px; padding:10px 12px; border-radius:14px;}
.nav__links{display:flex; gap:18px; align-items:center}
.nav__links a{color:var(--muted); font-weight:700; font-size:14px; letter-spacing:.2px}
.nav__links a:hover{color:var(--text)}
.nav__toggle{display:none;background:transparent;border:0;color:var(--text);font-size:20px}
.nav__mobile{
  display:flex; flex-direction:column; gap:10px;
  padding:12px 0 18px; border-top:1px solid var(--line);
}
.nav__mobile a{color:var(--muted); padding:10px 0}
.nav__mobile a:hover{color:var(--text)}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:14px;
  background:var(--accent);
  color:#000;
  font-weight:800;
  letter-spacing:.3px;
  border:none;
  box-shadow: 0 10px 25px rgba(247,198,0,.35);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 35px rgba(247,198,0,.50);
  filter:brightness(.98);
}
.btn--ghost{
  background:transparent;
  color:var(--white);
  border:1px solid rgba(247,198,0,.60);
  box-shadow:none;
}
.btn--ghost:hover{background:rgba(247,198,0,.10)}
.btn--small{padding:10px 12px;border-radius:12px}
.btn--block{width:100%}

/* Hero */
.hero{padding:56px 0 18px; position:relative; overflow:hidden}
.hero--image .hero__bg{
  position:absolute; inset:-40px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.75), rgba(0,0,0,.88)),
    url("https://images.unsplash.com/photo-1525609004556-c46c7d6cf023?auto=format&fit=crop&w=2200&q=70");
  background-size: cover;
  background-position: center;
  filter:saturate(1.05);
}
.hero__grid{display:grid; gap:26px; align-items:start; grid-template-columns: 1.25fr .95fr; position:relative}
.kicker{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:10px}
.pill{
  display:inline-flex; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(247,198,0,.18);
  border:1px solid rgba(247,198,0,.35);
  font-weight:800;
  font-size:12px;
  letter-spacing:.3px;
}
.pill--ghost{
  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.14);
  color:var(--muted);
}
.hero h1{font-size: clamp(34px, 4vw, 52px); line-height:1.06; margin:0 0 12px}
.hl{color:var(--accent)}
.sub{color:var(--muted); font-size:16px; margin:0 0 18px; max-width:62ch}
.hero__cta{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:18px}
.note{position:relative; margin-top:12px}

/* Trust */
.trust{display:grid; gap:10px; grid-template-columns: repeat(3, 1fr)}
.trust__item{
  background: rgba(0,0,0,.35);
  border:1px solid rgba(247,198,0,.22);
  border-radius: var(--radius);
  padding:14px;
}
.trust__item strong{display:block; color:var(--accent)}
.trust__item span{color:var(--muted); font-size:13px}

/* Mini row */
.mini{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:14px}
.stars{color:var(--accent); letter-spacing:2px; font-weight:900}
.link{color:var(--accent); font-weight:800}
.link:hover{text-decoration:underline}

/* Cards / Panels */
.card,.panel,.pricecard{
  background: rgba(17,17,17,.92);
  border:1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card{padding:18px}
.card--glass{
  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.panel{padding:18px}
.panel--icon .icon{
  width:44px;height:44px;border-radius:14px;
  display:grid;place-items:center;
  background: rgba(247,198,0,.14);
  border:1px solid rgba(247,198,0,.28);
  margin-bottom:10px;
  color: var(--accent);
}
.icon svg{width:22px;height:22px}

.hero__photos{display:grid; gap:12px; grid-template-columns:1fr 1fr; margin-top:12px}
.photoCard{position:relative; overflow:hidden; border-radius:18px; border:1px solid rgba(255,255,255,.10)}
.photoCard img{width:100%; height:160px; object-fit:cover; display:block}
.photoTag{
  position:absolute; left:10px; bottom:10px;
  padding:6px 10px; border-radius:999px;
  background: rgba(0,0,0,.70);
  color: var(--white);
  border:1px solid rgba(247,198,0,.50);
  font-size:12px; font-weight:800; letter-spacing:.2px;
}

/* Sections */
.section{padding:56px 0}
.section--alt{
  background: rgba(255,255,255,.02);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.section__head{margin-bottom:18px}
.section__head h2{margin:0 0 6px; font-size:30px}
.muted{color:var(--muted)}
.tiny{font-size:12px}

.grid3{display:grid; gap:14px; grid-template-columns:repeat(3, 1fr)}
.grid2{display:grid; gap:14px; grid-template-columns:repeat(2, 1fr)}

.list{margin:12px 0 0; padding-left:18px; color:var(--muted)}
.list li{margin:6px 0}

/* Chips */
.chips{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}
.chip{
  padding:9px 12px;
  border-radius:999px;
  background: rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.10);
  color:var(--text);
  font-size:13px;
}

/* Pricing cards w/ images */
.pricecard{overflow:hidden}
.pricecard--image img{width:100%; height:160px; object-fit:cover; display:block; filter:saturate(1.05)}
.pricecard__body{padding:18px}
.price{margin:14px 0 16px}
.price__row{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0; border-bottom:1px solid rgba(255,255,255,.08);
}
.price__row:last-child{border-bottom:none}
.price__row strong{font-size:20px; color: var(--accent)}

/* CTA Strip */
.ctaStrip{
  margin-top:16px;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(247,198,0,.20);
  background: linear-gradient(180deg, rgba(247,198,0,.10), rgba(0,0,0,0));
}
.ctaStrip--tight{margin-top:18px}
.ctaStrip h3{margin:0 0 4px}
.ctaStrip p{margin:0}
.ctaStrip__actions{display:flex; gap:10px; flex-wrap:wrap}

/* Forms */
.form{display:grid; gap:12px}
.form label{display:grid; gap:6px; font-weight:700; font-size:13px}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(247,198,0,.65);
  box-shadow: 0 0 0 4px rgba(247,198,0,.12);
}
input::placeholder, textarea::placeholder{color:rgba(207,207,207,.75)}
.hr{border:none; border-top:1px solid rgba(255,255,255,.10); margin:16px 0}
.stack{display:grid; gap:10px}
.split{display:grid; gap:10px; grid-template-columns:1fr 1fr}
.form--wide{max-width:780px}

/* Gallery */
.gallery{
  display:grid;
  gap:12px;
  grid-template-columns: repeat(3, 1fr);
}
.gItem{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  position:relative;
}
.gItem img{
  width:100%;
  height:190px;
  object-fit:cover;
  display:block;
  transition: transform .25s ease;
}
.gItem:hover img{transform: scale(1.03)}
.gItem::after{
  content:"Book Now";
  position:absolute; inset:auto 10px 10px auto;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(0,0,0,.70);
  border:1px solid rgba(247,198,0,.55);
  color:var(--white);
  font-weight:900;
  font-size:12px;
  letter-spacing:.2px;
}

/* Testimonials */
.testimonials{
  margin-top:16px;
  display:grid;
  gap:14px;
  grid-template-columns: repeat(3, 1fr);
}
.tCard{
  background: rgba(17,17,17,.92);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:16px;
  box-shadow: var(--shadow);
}
.tHead{display:flex; gap:10px; align-items:center; margin-bottom:10px}
.avatar{
  width:40px;height:40px;border-radius:14px;
  display:grid;place-items:center;
  background: rgba(247,198,0,.18);
  border:1px solid rgba(247,198,0,.35);
  font-weight:900; color:var(--accent);
}
.tStars{color:var(--accent); letter-spacing:2px; font-weight:900; font-size:12px}

/* Footer */
.footer{
  padding:38px 0 18px;
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);
}
.footer__grid{display:grid; gap:14px; grid-template-columns: 1.2fr .6fr .8fr}
.footlink{color:var(--muted)}
.footlink:hover{color:var(--text)}
.footer__bottom{padding-top:10px; border-top:1px solid rgba(255,255,255,.10); margin-top:12px}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .trust{grid-template-columns:1fr}
  .hero__photos{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .testimonials{grid-template-columns:1fr}
  .nav__links{display:flex; flex-wrap:wrap; gap:12px}
  .nav__toggle{display:none}
.footer__grid{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
}


.panel ol{color:var(--muted)}
.panel ol li{margin:6px 0}


/* Urgency banner */
.urgency{
  background: linear-gradient(90deg, #f7c600, #ffd84d);
  color:#000;
  font-weight:800;
}
.urgency__inner{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
}
.urgency a{
  background:#000;
  color:#fff;
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
}

/* Sticky CTA */
.sticky-cta{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  display:none;
  background:#000;
  border-top:1px solid rgba(255,255,255,.15);
  z-index:999;
}
.sticky-cta a{
  flex:1;
  text-align:center;
  padding:14px;
  font-weight:900;
  color:#fff;
}
.sticky-cta a:first-child{
  background:#000;
}
.sticky-cta a:last-child{
  background:#f7c600;
  color:#000;
}

/* Show sticky CTA on mobile */
@media (max-width: 768px){
  .sticky-cta{
    display:flex;
  }
  body{
    padding-bottom:60px;
  }
}

/* Before/After */
.ba-grid{display:grid;gap:14px;grid-template-columns:repeat(2,1fr)}
.ba-card{border-radius:18px;overflow:hidden;border:1px solid rgba(255,255,255,.1)}
.ba-card img{width:100%;display:block}
.ba-label{background:#f7c600;color:#000;font-weight:900;padding:8px;text-align:center}

/* Reviews */
.reviews{display:grid;gap:14px;grid-template-columns:repeat(3,1fr)}
.review-card{background:#111;border:1px solid rgba(255,255,255,.1);padding:16px;border-radius:18px}

/* Responsive additions */
@media(max-width:900px){
  .ba-grid,.reviews{grid-template-columns:1fr}
}

/* Nav pill link (Login) */
.nav__pill{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: var(--text);
  font-weight:900;
  letter-spacing:.2px;
}
.nav__pill:hover{border-color: rgba(247,198,0,.55); background: rgba(247,198,0,.08)}

.rewardBox{display:grid; gap:10px; margin-top:10px}
.rewardRow{display:flex; justify-content:space-between; align-items:center; padding:12px; border-radius:14px; background: rgba(0,0,0,.25); border:1px solid rgba(255,255,255,.08)}
.dashHead{display:flex; justify-content:space-between; gap:12px; align-items:flex-start; flex-wrap:wrap}
.dashActions{display:flex; gap:10px; flex-wrap:wrap}
.progressWrap{margin-top:10px}
.progressTop{display:flex; justify-content:space-between; align-items:center; gap:10px}
.progressBar{height:14px; border-radius:999px; background: rgba(255,255,255,.10); overflow:hidden; border:1px solid rgba(255,255,255,.10); margin-top:8px}
.progressFill{height:100%; width:0%; background: var(--accent)}

/* Admin/Portal transaction list */
.txList{display:grid; gap:10px}
.txRow{
  padding:12px;
  border-radius:14px;
  background: rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.08);
  display:grid;
  gap:4px;
}

/* Polish v2 */
img{max-width:100%;height:auto}
.form input,.form select,.form textarea{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.30);
}
.form input:focus,.form select:focus,.form textarea:focus{
  outline:none;
  border-color: rgba(247,198,0,.65);
  box-shadow: 0 0 0 3px rgba(247,198,0,.15);
}
.panel{box-shadow: 0 12px 30px rgba(0,0,0,.25)}
.gallery img{border-radius:18px}
.txRow strong{letter-spacing:.2px}
.hr{border:0;border-top:1px solid rgba(255,255,255,.12);margin:14px 0}

.fleetPhotos{display:grid;gap:12px;grid-template-columns:repeat(3,1fr);margin-bottom:14px}
.fleetPhotos img{border-radius:18px;border:1px solid rgba(255,255,255,.10);background:rgba(0,0,0,.2)}
@media(max-width:900px){.fleetPhotos{grid-template-columns:1fr}}

/* Booking embeds */
.embedWrap{
  width:100%;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
}
.embedWrap iframe{
  width:100%;
  height:820px;
  border:0;
  display:block;
}

/* ===== Gallery Large Stacked Boxes ===== */
#gallery .gallery{
  display:grid;
  grid-template-columns: 1fr;
  gap:24px;
}

#gallery .gallery img{
  width:100%;
  height:450px;
  object-fit:contain;
  background:#000;
  border-radius:22px;
}

/* ===== Tight Gallery Grid ===== */
#gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 0;
}

#gallery .gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* ===== Package Comparison Tables ===== */
.tableWrap{overflow:auto;border-radius:18px;border:1px solid rgba(255,255,255,.12)}
.compareTable{width:100%;border-collapse:separate;border-spacing:0;min-width:720px}
.compareTable th,.compareTable td{padding:14px 14px;text-align:left;border-bottom:1px solid rgba(255,255,255,.10)}
.compareTable th{background:rgba(0,0,0,.35);position:sticky;top:0}
.compareTable td:nth-child(2), .compareTable td:nth-child(3),
.compareTable th:nth-child(2), .compareTable th:nth-child(3){text-align:center}
.compareTable tbody tr:hover td{background:rgba(247,198,0,.06)}
.compareTable tbody tr:last-child td{border-bottom:0}

.badge--gold{
  background: rgba(247,198,0,.18);
  border: 1px solid rgba(247,198,0,.55);
  color: var(--accent);
  font-weight: 700;
}
