
:root{
  --bg:#04162d;
  --bg2:#0a2244;
  --card:#0d254b;
  --text:#ffffff;
  --muted:#c5d0e2;
  --line:rgba(255,255,255,.08);
  --yellow:#f5bf1f;
  --yellow-dark:#e0aa12;
  --shadow:0 22px 60px rgba(0,0,0,.28);
  --container:min(1180px, calc(100% - 32px));
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Montserrat", Arial, sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#021427 0%,#051b34 40%,#072243 100%);
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:var(--container);margin:0 auto}
.section{padding:84px 0}
.topbar{
  background:#06172d;
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  min-height:56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand-mini{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
}
.brand-mini img{width:42px;height:42px;object-fit:contain}
.topbar-info{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  color:#edf3ff;
  font-size:.92rem;
}
.topbar-info .accent{color:var(--yellow);font-weight:700}

.nav-wrap{
  position:sticky;
  top:0;
  z-index:999;
  backdrop-filter:blur(14px);
  background:rgba(4,22,45,.82);
  border-bottom:1px solid var(--line);
}
.nav-row{
  min-height:80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand img{width:62px;height:62px;object-fit:contain}
.brand strong{display:block;font-size:1rem}
.brand small{color:#9cb0cb}
.nav{
  display:flex;
  align-items:center;
  gap:28px;
}
.nav a{
  font-weight:700;
  color:#fff;
  position:relative;
}
.nav a:not(.btn):hover,
.nav a.active{color:var(--yellow)}
.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border-radius:12px;
  border:1px solid var(--line);
  background:transparent;
  color:#fff;
  font-size:1.2rem;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:800;
  transition:transform .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-yellow{
  background:linear-gradient(135deg,var(--yellow),var(--yellow-dark));
  color:#111;
  box-shadow:0 14px 34px rgba(245,191,31,.24);
}
.btn-dark{
  background:rgba(255,255,255,.06);
  border-color:var(--line);
  color:#fff;
}
.btn.wide{width:100%}

.hero{
  position:relative;
  min-height:92vh;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(1,14,32,.92) 0%, rgba(1,14,32,.78) 48%, rgba(1,14,32,.36) 100%),
    radial-gradient(circle at 15% 20%, rgba(245,191,31,.16), transparent 26%);
}
.hero-grid{
  position:relative;
  z-index:1;
  min-height:92vh;
  display:grid;
  align-items:center;
}
.hero-copy{
  max-width:620px;
}
.badge{
  display:inline-flex;
  padding:8px 14px;
  border-radius:999px;
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  background:rgba(245,191,31,.12);
  border:1px solid rgba(245,191,31,.24);
  color:#ffe18c;
}
.hero h1{
  margin:18px 0 16px;
  font-size:clamp(2.9rem, 6vw, 5.3rem);
  line-height:.98;
}
.hero h1 span{color:var(--yellow)}
.hero p{
  margin:0;
  max-width:560px;
  color:#e6eefb;
  font-size:1.1rem;
  line-height:1.7;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}
.hero-stats{
  margin-top:34px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.hero-stats div{
  padding:18px;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(10px);
}
.hero-stats strong{
  display:block;
  font-size:1.2rem;
  margin-bottom:4px;
}
.hero-stats span{color:#aebfd8}

.section-heading{
  margin-bottom:28px;
}
.section-heading.center{
  text-align:center;
}
.section-heading h2{
  margin:14px 0 0;
  font-size:clamp(2rem, 4vw, 3.2rem);
  line-height:1.1;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.service-card,
.why-card,
.review-card{
  background:linear-gradient(180deg, rgba(12,33,68,.98), rgba(8,24,48,.96));
  border:1px solid var(--line);
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.service-card img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}
.card-body{padding:22px}
.card-body h3{
  margin:0 0 8px;
  color:var(--yellow);
}
.card-body p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.split-section{
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}
.split-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:26px;
  align-items:center;
}
.split-copy h2{
  margin:14px 0 14px;
  font-size:clamp(2rem,4vw,3rem);
}
.split-copy p{color:var(--muted);line-height:1.7}
.check-list{
  list-style:none;
  padding:0;
  margin:22px 0 0;
}
.check-list li{
  margin-bottom:12px;
  color:#f0f5ff;
  position:relative;
  padding-left:28px;
}
.check-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--yellow);
  font-weight:800;
}
.driver-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.driver-gallery img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  border-radius:20px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.why-card{
  padding:24px 20px;
  text-align:center;
}
.icon{
  width:72px;
  height:72px;
  display:grid;
  place-items:center;
  margin:0 auto 16px;
  border-radius:50%;
  background:rgba(245,191,31,.10);
  border:2px solid rgba(245,191,31,.28);
  color:var(--yellow);
  font-weight:800;
  font-size:1.25rem;
}
.why-card h3{margin:0 0 8px;color:var(--yellow)}
.why-card p{margin:0;color:var(--muted);line-height:1.6}

.review-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.review-card{
  padding:22px 20px;
}
.review-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:14px;
}
.review-head img{
  width:64px;
  height:64px;
  object-fit:cover;
  border-radius:50%;
  border:3px solid rgba(245,191,31,.35);
}
.review-head h3{
  margin:0 0 4px;
}
.stars{
  color:var(--yellow);
  letter-spacing:.18em;
}
.review-card p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.booking{
  position:relative;
  overflow:hidden;
}
.booking-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.booking-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(3,18,38,.55), rgba(3,18,38,.86));
}
.booking-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  align-items:center;
}
.booking-copy h2{
  margin:14px 0 12px;
  font-size:clamp(2rem,4vw,3rem);
}
.booking-copy p{
  color:#eef3ff;
  line-height:1.7;
}
.booking-form{
  background:rgba(255,255,255,.94);
  color:#111;
  padding:22px;
  border-radius:20px;
  box-shadow:var(--shadow);
}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-bottom:14px;
}
.form-grid input{
  width:100%;
  min-height:50px;
  padding:0 14px;
  border-radius:12px;
  border:1px solid #d5dbe6;
  font:inherit;
}

.faq-wrap{max-width:920px}
.faq-list{display:grid;gap:14px}
.faq-item{
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(12,33,68,.92);
  padding:18px 20px;
}
.faq-item summary{
  cursor:pointer;
  list-style:none;
  font-weight:700;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item p{
  margin:12px 0 0;
  color:var(--muted);
  line-height:1.7;
}

.site-footer{
  background:#06162b;
  border-top:1px solid var(--line);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .7fr .7fr;
  gap:22px;
  padding:30px 0;
}
.footer-logo{width:110px;margin-bottom:12px}
.site-footer p,.site-footer a{color:var(--muted);line-height:1.7}
.site-footer h3{margin:0 0 10px}
.site-footer a{display:block;margin-bottom:8px}
.footer-bottom{
  border-top:1px solid var(--line);
  padding:18px 0 24px;
  color:#96a8c4;
}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.visible{
  opacity:1;
  transform:none;
}
.delay-1{transition-delay:.08s}
.delay-2{transition-delay:.16s}
.delay-3{transition-delay:.24s}

@media (max-width:1080px){
  .service-grid,
  .review-grid{grid-template-columns:1fr}
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .split-grid,
  .booking-grid,
  .footer-grid{grid-template-columns:1fr}
}
@media (max-width:760px){
  .topbar-inner{
    flex-direction:column;
    align-items:flex-start;
    padding:12px 0;
  }
  .brand{display:none}
  .menu-toggle{display:block}
  .nav{
    display:none;
    position:absolute;
    right:16px;
    top:78px;
    width:min(280px, calc(100% - 32px));
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
    background:rgba(6,22,43,.98);
    border:1px solid var(--line);
    border-radius:16px;
    padding:16px;
    box-shadow:var(--shadow);
  }
  .nav.open{display:flex}
  .hero-grid{padding:70px 0}
  .hero-stats{grid-template-columns:1fr}
  .driver-gallery{grid-template-columns:1fr}
  .why-grid{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
}
