:root{
  --black:#0b0b0d;
  --white:#ffffff;
  --gold:#d4af37;
  --gold2:#b8942a;
  --muted:#b7b7b7;
  --card:#111116;
  --line:rgba(255,255,255,.10);
  --shadow:0 16px 50px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:var(--black);
  color:var(--white);
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
.container{width:min(1120px, calc(100% - 32px)); margin:0 auto}

/* Topbar */
.topbar{position:sticky; top:0; z-index:50; background:rgba(11,11,13,.86); backdrop-filter: blur(10px); border-bottom:1px solid var(--line)}
.topbar-inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:12px 0}
.brand{display:flex; align-items:center; gap:12px; min-width:0}
.brand img{width:44px; height:44px; object-fit:cover; border-radius:12px}
.brand h1{margin:0; font-size:16px; line-height:1.1; letter-spacing:.3px}
.brand p{margin:2px 0 0; color:var(--muted); font-size:12px}

.nav{display:flex; gap:16px; align-items:center}
.nav a{font-size:13px; color:rgba(255,255,255,.88)}
.nav a:hover{color:var(--gold)}

.actions{display:flex; gap:10px; align-items:center}
.btn{display:inline-flex; align-items:center; gap:8px; padding:10px 12px; border-radius:14px; border:1px solid var(--line); background:rgba(255,255,255,.06); font-weight:700; font-size:13px}
.btn:hover{transform:translateY(-1px); box-shadow:0 10px 28px rgba(0,0,0,.25)}
.btn-gold{background:linear-gradient(180deg, var(--gold), var(--gold2)); border:0; color:#141414}
.btn-green{background:#25D366; border:0; color:#0b0b0d}
.btn-small{padding:8px 10px; border-radius:12px; font-size:12px; font-weight:800}

.hamburger{display:none; padding:10px 12px}

/* Language */
.lang{position:relative}
.lang-toggle{display:flex; align-items:center; gap:8px; cursor:pointer; padding:8px 10px; border:1px solid var(--line); background:rgba(255,255,255,.06); border-radius:14px; user-select:none}
.lang-menu{position:absolute; right:0; top:calc(100% + 8px); width:190px; background:#0f0f14; border:1px solid var(--line); border-radius:16px; padding:8px; box-shadow:var(--shadow); display:none}
.lang-menu button{width:100%; text-align:left; padding:10px 10px; border-radius:12px; background:transparent; border:0; color:var(--white); cursor:pointer}
.lang-menu button:hover{background:rgba(255,255,255,.06)}
.lang.open .lang-menu{display:block}

/* Mobile drawer */
.mobile-drawer{display:none; padding:14px 0 16px; border-top:1px solid var(--line)}
.mobile-drawer a{display:block; padding:10px 0; color:rgba(255,255,255,.9)}
.mobile-drawer a:hover{color:var(--gold)}
.mobile-drawer .mobile-lang{margin-top:10px}

/* Hero */
.hero{position:relative; min-height:72vh; display:flex; align-items:center; border-bottom:1px solid var(--line)}
.hero-media{position:absolute; inset:0; overflow:hidden}
.hero-media video{width:100%; height:100%; object-fit:cover; filter:contrast(1.05) saturate(.85)}
.hero-media::after{content:""; position:absolute; inset:0; background:linear-gradient(90deg, rgba(11,11,13,.85), rgba(11,11,13,.55), rgba(11,11,13,.85))}
.hero-inner{position:relative; display:grid; grid-template-columns: 1.2fr .8fr; gap:18px; padding:70px 0}
.pill{display:inline-flex; padding:8px 12px; border-radius:999px; background:rgba(212,175,55,.18); border:1px solid rgba(212,175,55,.35); color:var(--gold); font-weight:800; font-size:12px}
.hero h2{margin:14px 0 10px; font-size:44px; letter-spacing:.2px}
.hero p{margin:0 0 16px; color:rgba(255,255,255,.88); line-height:1.6; max-width:640px}
.hero-cta{display:flex; gap:10px; flex-wrap:wrap}

/* Stats card: white bg black text */
.hero-card{background:#fff; color:#0b0b0d; border-radius:22px; padding:18px; box-shadow:var(--shadow)}
.hero-card h3{margin:0 0 12px; font-size:15px}
.stats{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.stat{background:#f4f4f4; border:1px solid rgba(0,0,0,.08); border-radius:16px; padding:12px}
.stat b{display:block; font-size:20px}
.stat span{font-size:12px; color:rgba(0,0,0,.72)}

/* Sections */
.section{padding:56px 0; border-bottom:1px solid var(--line)}
.section-title{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin-bottom:18px}
.section-title h3{margin:0; font-size:26px}
.section-title p{margin:8px 0 0; color:rgba(255,255,255,.80); max-width:760px; line-height:1.6}

.grid{display:grid; gap:14px}
.grid-3{grid-template-columns:repeat(3,1fr)}
.card{background:rgba(255,255,255,.04); border:1px solid var(--line); border-radius:22px; padding:16px}

/* Service cards: gold background, black text */
.service{background:linear-gradient(180deg, rgba(212,175,55,.95), rgba(184,148,42,.95)); border:0; color:#0b0b0d}
.service h4{margin:10px 0 8px; font-size:16px}
.service p{margin:0 0 12px; color:rgba(0,0,0,.75); line-height:1.55}
.icon{width:44px; height:44px; border-radius:16px; display:flex; align-items:center; justify-content:center; background:rgba(0,0,0,.10); border:1px solid rgba(0,0,0,.15)}
.icon svg{width:22px; height:22px}
.service-actions{display:flex; gap:10px; align-items:center}
.service .btn-small{background:#0b0b0d; color:#fff; border:0}

/* Reservation form: white theme */
.form-wrap{background:#fff; color:#0b0b0d; border-radius:26px; padding:18px; box-shadow:var(--shadow)}
.form-wrap .section-title h3{color:#0b0b0d}
.form-wrap .section-title p{color:rgba(0,0,0,.72)}
.form{display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin-top:14px}
.form .full{grid-column:1 / -1}
.field{display:flex; flex-direction:column; gap:6px}
label{font-size:12px; color:rgba(0,0,0,.70); font-weight:700}
input, select, textarea{border:1px solid rgba(0,0,0,.12); border-radius:14px; padding:12px 12px; font-size:14px; outline:none; background:#fff}
input:focus, textarea:focus{border-color:rgba(212,175,55,.8); box-shadow:0 0 0 4px rgba(212,175,55,.18)}
textarea{min-height:96px; resize:vertical}
.form-actions{display:flex; gap:10px; flex-wrap:wrap}

/* Fleet gallery */
.gallery{display:grid; grid-template-columns:repeat(3, 1fr); gap:12px}
.g-item{border-radius:22px; overflow:hidden; border:1px solid var(--line); background:#0f0f14; cursor:pointer}
.g-item img{width:100%; height:230px; object-fit:cover; display:block; transition:transform .25s ease}
.g-item:hover img{transform:scale(1.03)}

/* Why cards */
.why-grid{grid-template-columns:repeat(4,1fr)}
.why{background:rgba(255,255,255,.04)}
.why b{display:block; font-size:14px; margin-bottom:6px; color:var(--gold)}
.why span{color:rgba(255,255,255,.82); font-size:13px; line-height:1.55}

/* Reviews */
.reviews{grid-template-columns:repeat(3,1fr)}
.review p{margin:0 0 10px; color:rgba(255,255,255,.85); line-height:1.6}
.review b{color:var(--gold)}

/* Contact */
.contact-grid{grid-template-columns: 1fr 1.2fr}
.contact-card{background:rgba(255,255,255,.04)}
.kv{display:grid; grid-template-columns:140px 1fr; gap:10px; padding:8px 0; border-bottom:1px dashed rgba(255,255,255,.12)}
.kv:last-child{border-bottom:0}
.kv div:first-child{color:rgba(255,255,255,.72)}
.map{border-radius:22px; overflow:hidden; border:1px solid var(--line); background:#0f0f14}
.map iframe{width:100%; height:360px; border:0}

/* Floating buttons */
.fab{position:fixed; right:16px; bottom:16px; display:flex; flex-direction:column; gap:10px; z-index:80}
.fab a{width:52px; height:52px; border-radius:18px; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow); border:1px solid rgba(0,0,0,.15)}
.fab .wa{background:#25D366}
.fab .ig{background:linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4)}
.fab svg{width:22px; height:22px; fill:#0b0b0d}
.fab .ig svg{fill:#fff}

/* Lightbox */
.lightbox{position:fixed; inset:0; background:rgba(0,0,0,.82); display:none; align-items:center; justify-content:center; z-index:100}
.lightbox.open{display:flex}
.lightbox img{max-width:min(96vw, 1100px); max-height:88vh; border-radius:18px; box-shadow:var(--shadow)}
.lightbox button{position:fixed; top:14px; right:14px; background:rgba(255,255,255,.12); color:#fff; border:1px solid rgba(255,255,255,.18); border-radius:14px; padding:10px 12px; cursor:pointer}

footer{padding:26px 0; color:rgba(255,255,255,.72)}
.footer-inner{display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap}
.footer-brand{display:flex; align-items:center; gap:10px}
.footer-brand img{width:36px; height:36px; border-radius:10px; object-fit:cover}

@media (max-width: 980px){
  .nav{display:none}
  .hamburger{display:inline-flex}
  .top-wa{display:none} /* hide WhatsApp top button on mobile */

  /* cleaner mobile brand */
  .brand img{width:40px; height:40px; border-radius:12px}
  .brand h1{font-size:15px; line-height:1.15}
  .brand p{font-size:11px}

  .hero-inner{grid-template-columns:1fr; padding:56px 0}
  .hero h2{font-size:36px}
  .grid-3{grid-template-columns:1fr 1fr}
  .why-grid{grid-template-columns:1fr 1fr}
  .reviews{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr 1fr} /* mobile 2-grid */
  .g-item img{height:190px}
}
@media (max-width: 560px){
  .grid-3{grid-template-columns:1fr}
  /* services should stay 2-column on small phones */
  .services-grid{grid-template-columns:1fr 1fr}
  .form{grid-template-columns:1fr}
  .brand p{display:none}
}
