*{margin:0;padding:0;box-sizing:border-box;font-family:Arial,Helvetica,sans-serif}
html{scroll-behavior:smooth}
body{background:#fff;color:#111;overflow-x:hidden}
a{text-decoration:none;color:inherit}

@keyframes heroFadeUp{
  from{opacity:0;transform:translateY(28px)}
  to{opacity:1;transform:translateY(0)}
}

@keyframes heroCardIn{
  from{opacity:0;transform:translateX(34px) scale(.96)}
  to{opacity:1;transform:translateX(0) scale(1)}
}

@keyframes softFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}

@keyframes imageShimmer{
  0%{transform:translateX(-120%)}
  100%{transform:translateX(120%)}
}

.reveal{
  opacity:0;
  transform:translateY(34px);
  transition:opacity .8s ease,transform .8s cubic-bezier(.2,.8,.2,1);
  will-change:opacity,transform;
}

.reveal.in-view{
  opacity:1;
  transform:translateY(0);
}

@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    scroll-behavior:auto !important;
    transition-duration:.01ms !important;
  }

  .reveal{
    opacity:1;
    transform:none;
  }
}

.hero{
  min-height:720px;
  background:linear-gradient(90deg,rgba(0,0,0,.86) 0%,rgba(0,0,0,.56) 43%,rgba(0,0,0,.82) 100%),
  url("assets/img/hero/ban1.png") center/cover;
  border-bottom-left-radius:55px;
  border-bottom-right-radius:55px;
  position:relative;
  color:white;
  overflow:hidden;
}

.nav{
  position:relative;
  z-index:5;
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:14px 48px;
  font-size:14px;
  letter-spacing:0;
  text-transform:none;
}

.nav-brand{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:4px;
  flex:0 0 auto;
  color:#fff;
  text-decoration:none;
}

.nav-brand-title{
  font-size:clamp(22px,2.2vw,30px);
  font-weight:300;
  line-height:1;
  letter-spacing:clamp(3px,0.55vw,7px);
}

.nav-brand-tagline{
  font-size:10px;
  font-weight:600;
  letter-spacing:2.4px;
  text-transform:uppercase;
  opacity:.82;
}

.nav-links{
  flex:1 1 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:clamp(18px,2.4vw,38px);
}

.nav-links a{
  min-height:auto;
  display:inline-flex;
  align-items:center;
  color:rgba(255,255,255,.92);
  font-size:14px;
  font-weight:500;
  letter-spacing:0;
  text-transform:none;
  white-space:nowrap;
  transition:color .2s ease,opacity .2s ease;
}

.nav-links a:hover,
.nav-links a:focus{
  color:#fff;
  opacity:1;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex:0 0 auto;
}

.nav-btn{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:0 22px;
  border:1.5px solid transparent;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  letter-spacing:0;
  text-transform:none;
  white-space:nowrap;
  transition:transform .2s ease,background .2s ease,border-color .2s ease,color .2s ease;
}

.nav-btn-primary{
  background:#fff;
  color:#111;
}

.nav-btn-primary:hover,
.nav-btn-primary:focus{
  transform:translateY(-1px);
  background:#f2f2f2;
}

.nav-btn-outline{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.72);
}

.nav-btn-outline:hover,
.nav-btn-outline:focus{
  background:rgba(255,255,255,.08);
  border-color:#fff;
}

.nav > a,
.nav-link{
  min-height:70px;
  display:flex;
  align-items:center;
  gap:7px;
}

.nav-link i{
  font-size:10px;
  transition:transform .3s ease;
}

.nav-dropdown{
  position:relative;
}

.mega-menu{
  position:absolute;
  top:64px;
  width:min(760px,calc(100vw - 48px));
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:30px;
  padding:24px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:18px;
  background:rgba(246,248,247,.96);
  color:#111;
  box-shadow:0 28px 70px rgba(0,0,0,.28);
  -webkit-backdrop-filter:blur(14px);
  backdrop-filter:blur(14px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(18px);
  transition:opacity .28s ease,visibility .28s ease,transform .28s ease;
}

.services-dropdown .mega-menu{
  left:0;
}

.trips-dropdown .mega-menu{
  right:0;
}

.account-dropdown .mega-menu{
  right:0;
}

.account-menu{
  width:min(360px,calc(100vw - 48px));
  grid-template-columns:1fr;
  gap:0;
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0);
}

.nav-dropdown:hover .nav-link i,
.nav-dropdown:focus-within .nav-link i{
  transform:rotate(180deg);
}

.mega-title{
  min-height:52px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
  padding:0 18px;
  border-radius:10px;
  background:#fff;
  color:#111;
  font-size:15px;
  font-weight:900;
  letter-spacing:0;
  text-transform:none;
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.06);
}

.mega-title.accent{
  background:#111;
  color:#fff;
}

.mega-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:13px;
  border-radius:12px;
  text-transform:none;
  letter-spacing:0;
  transition:background .25s ease,transform .25s ease,box-shadow .25s ease;
}

.mega-item:hover,
.mega-item:focus{
  background:#fff;
  transform:translateX(6px);
  box-shadow:0 12px 25px rgba(0,0,0,.08);
}

.mega-icon{
  width:46px;
  height:46px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:#111;
  color:#fff;
  font-size:17px;
}

.mega-item b{
  display:block;
  margin-bottom:4px;
  color:#111;
  font-size:16px;
  line-height:1.1;
}

.mega-item small{
  display:block;
  color:#646464;
  font-size:12px;
  line-height:1.35;
}

.mobile-menu-btn{
  display:none;
  width:44px;
  height:44px;
  border:0;
  border-radius:12px;
  background:transparent;
  color:#111;
  cursor:pointer;
  place-items:center;
  padding:10px;
  flex-shrink:0;
}

.mobile-menu-btn span{
  display:block;
  width:20px;
  height:2px;
  border-radius:4px;
  background:#fff;
  transition:transform .25s ease,opacity .25s ease,width .25s ease;
}

.mobile-menu-btn span:nth-child(2){
  width:14px;
  justify-self:start;
}

.mobile-nav-login{
  display:none !important;
  box-sizing:border-box;
  align-items:center;
  justify-content:center;
  gap:7px;
  width:auto !important;
  min-width:0 !important;
  max-width:none;
  height:34px !important;
  min-height:34px !important;
  max-height:34px !important;
  padding:0 14px 0 12px !important;
  border:0;
  border-radius:999px;
  background:#fff;
  color:#111;
  font-size:12px;
  font-weight:700;
  letter-spacing:.01em;
  line-height:1;
  white-space:nowrap;
  position:relative;
  z-index:7;
  flex:0 0 auto;
  align-self:center !important;
  aspect-ratio:auto !important;
  box-shadow:0 8px 20px rgba(0,0,0,.22);
  transition:transform .2s ease,background .2s ease,box-shadow .2s ease;
}

.mobile-nav-login i{
  font-size:11px;
  opacity:.85;
}

.mobile-nav-login span{
  line-height:1;
}

.mobile-nav-login:hover,
.mobile-nav-login:focus{
  background:#f3f3f3;
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(0,0,0,.28);
}

.mobile-nav-login-dark{
  background:#111;
  color:#fff;
  box-shadow:0 6px 16px rgba(0,0,0,.14);
}

.mobile-nav-login-dark:hover,
.mobile-nav-login-dark:focus{
  background:#222;
  color:#fff;
}

.mobile-menu-panel{
  display:none;
}

.logo{
  font-weight:900;
  font-size:24px;
  letter-spacing:3px;
}

.hero-layout{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(320px,620px) minmax(280px,360px);
  align-items:center;
  justify-content:space-between;
  gap:42px;
  padding:55px 5.5% 0;
}

.hero-content{
  text-align:left;
  padding-top:25px;
  animation:heroFadeUp .9s ease both .15s;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:36px;
  padding:0 18px;
  border:1px solid rgba(255,255,255,.36);
  border-radius:999px;
  background:rgba(0,0,0,.26);
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:.4px;
  text-transform:uppercase;
  -webkit-backdrop-filter:blur(8px);
  backdrop-filter:blur(8px);
}

.hero-badge i{
  color:#fff;
}

.hero h1{
  margin-top:20px;
  font-size:clamp(46px,5.2vw,76px);
  line-height:1.02;
  font-weight:900;
  letter-spacing:0;
  color:#fff;
  text-shadow:0 8px 26px rgba(0,0,0,.42);
}

.hero h1::after{
  content:"";
  display:block;
  width:74px;
  height:4px;
  margin-top:20px;
  border-radius:10px;
  background:#fff;
}

.hero p{
  max-width:430px;
  margin:18px 0 0;
  font-size:18px;
  line-height:1.55;
  color:rgba(255,255,255,.84);
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.hero-btn{
  min-width:180px;
  min-height:56px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.24);
  color:#fff;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.3px;
  transition:transform .3s ease,box-shadow .3s ease,background .3s ease,border-color .3s ease;
}

.hero-btn.primary{
  background:rgba(255,255,255,.18);
  color:#fff;
  border-color:rgba(255,255,255,.48);
}

.hero-btn.secondary{
  background:rgba(255,255,255,.08);
  -webkit-backdrop-filter:blur(8px);
  backdrop-filter:blur(8px);
}

.hero-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 32px rgba(0,0,0,.28);
}

.hero-card{
  align-self:center;
  padding:30px;
  border:1px solid rgba(255,255,255,.34);
  border-radius:16px;
  background:linear-gradient(145deg,rgba(34,36,36,.82),rgba(2,8,12,.84));
  box-shadow:0 24px 70px rgba(0,0,0,.4);
  -webkit-backdrop-filter:blur(14px);
  backdrop-filter:blur(14px);
  animation:heroCardIn .9s cubic-bezier(.2,.8,.2,1) both .28s;
}

.hero-card-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding-bottom:20px;
  border-bottom:1px solid rgba(255,255,255,.16);
}

.hero-card h2{
  color:#fff;
  font-size:18px;
  line-height:1.2;
}

.hero-card-head span{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#fff;
  color:#111;
  font-size:20px;
  flex:0 0 auto;
  animation:softFloat 3.2s ease-in-out infinite;
}

.hero-card ul{
  list-style:none;
  display:grid;
  gap:18px;
  padding:20px 0;
  border-bottom:1px solid rgba(255,255,255,.16);
}

.hero-card li{
  display:flex;
  align-items:center;
  gap:12px;
  color:rgba(255,255,255,.84);
  font-size:13px;
}

.hero-card li i{
  color:#fff;
}

.hero-call{
  padding-top:18px;
}

.hero-call small{
  display:block;
  color:rgba(255,255,255,.74);
  font-size:12px;
  margin-bottom:10px;
}

.hero-call a{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  font-size:18px;
  font-weight:700;
}

.hero-call a i{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#fff;
  color:#111;
  font-size:14px;
}

.down{
  position:absolute;
  bottom:32px;
  left:50%;
  transform:translateX(-50%);
  width:68px;
  height:68px;
  border-radius:50%;
  background:#050505;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:24px;
  line-height:1;
  border:6px solid #fff;
  box-shadow:0 14px 28px rgba(0,0,0,.25);
  cursor:pointer;
  z-index:2;
  transition:transform .3s ease,box-shadow .3s ease,background .3s ease;
  animation:heroFadeUp .7s ease both .65s;
}

.down:hover{
  transform:translateX(-50%) translateY(-4px);
  box-shadow:0 20px 36px rgba(0,0,0,.34);
}

section{padding:80px 38px}

.intro{
  display:grid;
  grid-template-columns:1fr 1.2fr 180px;
  gap:30px;
  align-items:center;
}

.intro h2{
  font-size:28px;
  line-height:1;
}

.intro p{
  font-size:13px;
  color:#555;
  max-width:440px;
}

.btn{
  background:#050505;
  color:#fff;
  border:none;
  border-radius:30px;
  padding:13px 18px;
  font-size:12px;
  cursor:pointer;
  transition:transform .3s ease,box-shadow .3s ease,background .3s ease,color .3s ease;
}

.btn:hover{transform:translateY(-2px);box-shadow:0 12px 25px rgba(0,0,0,.22)}

.tabs{text-align:center;margin:30px 0}

.tabs button{
  border:0;
  background:none;
  margin:0 22px;
  font-weight:700;
  cursor:pointer;
  padding-bottom:10px;
  color:#555;
  transition:color .25s ease,border-color .25s ease,transform .25s ease;
}

.tabs button:hover{
  transform:translateY(-2px);
  color:#111;
}

.tabs button.active{
  color:#111;
  border-bottom:2px solid #111;
}

.showcase{
  background:#f1f1f1;
  border-radius:26px;
  min-height:510px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  transition:box-shadow .35s ease,transform .35s ease;
}

.showcase:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 55px rgba(0,0,0,.1);
}

.showcase .big-text{
  position:absolute;
  top:25px;
  font-size:150px;
  font-weight:900;
  color:#e4e4e4;
  z-index:0;
  letter-spacing:-8px;
  transition:opacity .4s ease,transform .4s ease;
}

.driver-img{
  position:relative;
  z-index:1;
  width:72%;
  max-width:850px;
  height:330px;
  object-fit:cover;
  border-radius:24px;
  filter:drop-shadow(0 25px 22px rgba(0,0,0,.18));
  transition:opacity .28s ease,transform .45s ease,filter .45s ease;
}

.showcase:hover .driver-img{
  transform:scale(1.025);
  filter:drop-shadow(0 34px 30px rgba(0,0,0,.22));
}

.driver-img.is-switching{
  opacity:.25;
  transform:scale(.98);
}

.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  border:0;
  background:#fff;
  font-size:24px;
  cursor:pointer;
  z-index:2;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease;
}

.arrow:hover{
  transform:translateY(-50%) scale(1.08);
  box-shadow:0 12px 28px rgba(0,0,0,.18);
}

.left{left:45px}
.right{right:45px}

.specs{
  position:absolute;
  bottom:45px;
  display:flex;
  gap:35px;
  z-index:2;
  background:rgba(255,255,255,.78);
  -webkit-backdrop-filter:blur(8px);
  backdrop-filter:blur(8px);
  padding:18px 28px;
  border-radius:18px;
}

.spec{border-right:1px solid #bbb;padding-right:28px}
.spec:last-child{border-right:0}
.spec small{display:block;color:#777;font-size:11px}
.spec b{font-size:15px}

.center-title{
  text-align:center;
  max-width:760px;
  margin:0 auto 45px;
}

.center-title h2{
  font-size:28px;
  line-height:1.15;
}

.center-title p{
  color:#777;
  margin-top:8px;
}

.feature-grid{
  display:grid;
  grid-template-columns:1.4fr .65fr .9fr;
  gap:24px;
  align-items:stretch;
}

.feature-card{
  border-radius:24px;
  overflow:hidden;
  background:#eee;
  min-height:230px;
  box-shadow:0 14px 30px rgba(0,0,0,.08);
  transition:transform .4s ease,box-shadow .4s ease;
  position:relative;
}

.feature-card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(110deg,#e9eef2 0%,#f8fbfd 45%,#dde6ec 100%);
  transition:opacity .45s ease,visibility .45s ease;
}

.feature-card::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  z-index:2;
  width:55%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.72),transparent);
  animation:imageShimmer 1.15s ease-in-out infinite;
  transition:opacity .35s ease;
}

.feature-card.image-loaded::before,
.feature-card.image-loaded::after{
  opacity:0;
  visibility:hidden;
}

.feature-card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 48px rgba(0,0,0,.14);
}

.feature-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:0;
  transform:scale(1.06);
  transition:opacity .7s ease,transform .75s cubic-bezier(.2,.8,.2,1);
}

.feature-card.image-loaded img{
  opacity:1;
  transform:scale(1);
}

.feature-card:hover img{
  transform:scale(1.06);
}

.feature-text{
  padding:20px;
  font-size:13px;
}

.feature-text p{
  color:#666;
  margin-top:8px;
  line-height:1.5;
}

.tech{padding-top:40px}

.tech-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.tech-card{
  background:#f3f3f3;
  border-radius:22px;
  padding:28px;
  min-height:170px;
  box-shadow:inset 0 1px 0 #fff;
  transition:transform .35s ease,box-shadow .35s ease,background .35s ease;
}

.tech-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 35px rgba(0,0,0,.08);
}

.tech-card span{font-weight:900;font-size:13px}
.tech-card h3{font-size:17px;margin:18px 0 12px}
.tech-card p{font-size:12px;color:#666;line-height:1.5}

.faq-section{
  position:relative;
  display:grid;
  grid-template-columns:minmax(260px,370px) 1fr;
  gap:52px;
  align-items:center;
  margin:20px 38px 0;
  padding:76px 5.5%;
  border-radius:28px;
  background:linear-gradient(135deg,#fff 0%,#f6f9fb 100%);
  box-shadow:0 28px 80px rgba(0,0,0,.08);
  overflow:hidden;
}

.faq-section::before{
  content:"Frequently Asked Questions";
  position:absolute;
  top:18px;
  right:5%;
  color:rgba(0,0,0,.035);
  font-size:64px;
  font-weight:900;
  letter-spacing:-1px;
  white-space:nowrap;
  pointer-events:none;
}

.faq-aside{
  position:relative;
  z-index:1;
}

.faq-aside img{
  width:100%;
  height:370px;
  object-fit:cover;
  display:block;
  border-radius:10px;
  box-shadow:0 28px 70px rgba(0,0,0,.16);
}

.faq-aside p{
  max-width:300px;
  margin-top:22px;
  color:#364656;
  font-size:15px;
  line-height:1.45;
}

.faq-list{
  position:relative;
  z-index:1;
  display:grid;
  gap:12px;
}

.faq-list::before{
  content:"Frequently Asked Questions";
  display:block;
  margin:0 0 18px;
  color:#111;
  font-size:38px;
  line-height:.95;
  font-weight:900;
  letter-spacing:-.5px;
}

.faq-item{
  background:#fff;
  border:1px solid rgba(0,0,0,.055);
  overflow:hidden;
  box-shadow:0 14px 34px rgba(0,0,0,.06);
  transition:background .3s ease,box-shadow .3s ease,transform .3s ease;
}

.faq-item.active{
  background:#fff;
  box-shadow:0 26px 58px rgba(0,0,0,.12);
}

.faq-question{
  width:100%;
  min-height:62px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:19px 22px;
  border:0;
  background:transparent;
  color:#1f2933;
  text-align:left;
  font-size:16px;
  font-weight:700;
  line-height:1.25;
  cursor:pointer;
}

.faq-question span{
  flex:0 0 auto;
  color:#1f2933;
  font-size:24px;
  font-weight:400;
  line-height:1;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .32s ease;
}

.faq-answer p{
  max-width:720px;
  padding:0 22px 22px;
  color:#4b5968;
  font-size:15px;
  line-height:1.6;
}

.faq-item.active .faq-answer{
  max-height:150px;
}

.cta{
  margin:30px 38px 0;
  border-radius:28px;
  min-height:360px;
  background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.75)),
  url("assets/img/drivers/CTA.png") center/cover;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  position:relative;
}

.cta::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent 0%,rgba(255,255,255,.16) 48%,transparent 100%);
  transform:translateX(-120%);
  transition:transform .9s ease;
}

.cta:hover::before{
  transform:translateX(120%);
}

.cta > div{
  position:relative;
  z-index:1;
}

.cta h2{font-size:30px}
.cta p{
  max-width:560px;
  margin:14px auto;
  color:#ddd;
  font-size:13px;
  line-height:1.6;
}

.cta .btn{
  background:#fff;
  color:#111;
}

footer{
  margin-top:40px;
  background:#020202;
  color:#fff;
  min-height:360px;
  position:relative;
  padding:55px 42px;
  overflow:hidden;
}

.footer-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.footer-logo{
  font-size:26px;
  font-weight:900;
  letter-spacing:3px;
}

.socials{display:flex;gap:18px}
.footer-links{text-align:center;margin-top:90px}

.footer-links a{
  margin:0 18px;
  font-size:13px;
  color:#ddd;
}

.footer-bg{
  position:absolute;
  bottom:-35px;
  left:20px;
  font-size:165px;
  font-weight:900;
  color:rgba(255,255,255,.08);
  letter-spacing:-8px;
}

@media(max-width:900px){
  .hero{
    min-height:auto;
    padding-bottom:110px;
  }
  .mega-menu{
    width:min(640px,calc(100vw - 36px));
    grid-template-columns:1fr;
    gap:18px;
  }
  .hero-layout{
    grid-template-columns:1fr;
    padding-top:35px;
  }
  .hero-card{
    max-width:440px;
  }
  .intro{grid-template-columns:1fr;text-align:center}
  .tech-grid{grid-template-columns:repeat(2,1fr)}
  .feature-grid{grid-template-columns:1fr}
  .faq-section{
    grid-template-columns:1fr;
    gap:34px;
    margin:20px 24px 0;
    padding:58px 28px;
  }
  .faq-aside{
    max-width:360px;
    transform:none;
  }
  .faq-aside p,
  .faq-list,
  .faq-list::before{
    transform:none;
  }
  .faq-list::before{
    font-size:32px;
  }
  .faq-item.active{
    transform:none;
  }
}

@media(max-width:900px){
  .booking-topbar{
    position:sticky;
    top:0;
  }

  .booking-topbar .nav{
    display:grid;
    grid-template-columns:44px minmax(0,1fr) auto;
    grid-template-areas:"menu brand login";
    align-items:center;
    column-gap:10px;
    row-gap:0;
    min-height:64px;
    padding:10px 16px;
    padding-left:max(16px, env(safe-area-inset-left));
    padding-right:max(16px, env(safe-area-inset-right));
  }

  .booking-topbar .mobile-menu-btn{
    display:grid;
    grid-area:menu;
    justify-self:start;
    width:44px;
    height:44px;
  }

  .booking-topbar .nav-brand{
    grid-area:brand;
    justify-self:center;
    align-items:center;
    text-align:center;
    min-width:0;
    max-width:100%;
  }

  .booking-topbar .nav-brand-tagline{
    display:none;
  }

  .booking-topbar .nav-brand-title{
    font-size:14px;
    letter-spacing:1.2px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width:100%;
  }

  .booking-topbar .mobile-nav-login{
    display:inline-flex !important;
    grid-area:login;
    justify-self:end;
    align-self:center !important;
    height:34px !important;
    min-height:34px !important;
    max-height:34px !important;
    padding:0 14px 0 12px !important;
    font-size:12px;
  }

  .booking-topbar .nav-links,
  .booking-topbar .nav-actions{
    display:none !important;
  }

  .booking-topbar .mobile-menu-panel{
    display:grid;
    top:calc(100% + 8px);
    left:16px;
    right:16px;
  }
}

@media(max-width:900px){
  .nav{
    display:grid;
    grid-template-columns:44px minmax(0,1fr) auto;
    grid-template-areas:"menu brand login";
    align-items:center;
    column-gap:10px;
    row-gap:0;
    min-height:64px;
    gap:unset;
    padding:10px 16px;
    padding-left:max(16px, env(safe-area-inset-left));
    padding-right:max(16px, env(safe-area-inset-right));
  }

  .mobile-menu-btn{
    display:grid;
    grid-area:menu;
    justify-self:start;
    position:relative;
    z-index:6;
    width:44px;
    height:44px;
  }

  .nav-brand{
    display:flex !important;
    grid-area:brand;
    justify-self:center;
    align-items:center;
    text-align:center;
    position:relative;
    z-index:6;
    min-width:0;
    max-width:100%;
  }

  .nav-brand-tagline{
    display:none;
  }

  .nav-brand-title{
    font-size:14px;
    letter-spacing:1.2px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width:100%;
  }

  .mobile-nav-login{
    display:inline-flex !important;
    grid-area:login;
    justify-self:end;
    align-self:center !important;
    height:34px !important;
    min-height:34px !important;
    max-height:34px !important;
    padding:0 14px 0 12px !important;
    font-size:12px;
  }

  .nav-links,
  .nav-actions{
    display:none !important;
  }

  .nav.is-open .mobile-menu-btn span:first-child{
    transform:translateY(6px) rotate(45deg);
  }

  .nav.is-open .mobile-menu-btn span:nth-child(2){
    opacity:0;
    width:0;
  }

  .nav.is-open .mobile-menu-btn span:last-child{
    transform:translateY(-6px) rotate(-45deg);
  }

  .mobile-menu-panel{
    position:absolute;
    top:72px;
    left:16px;
    right:16px;
    z-index:5;
    display:grid;
    gap:8px;
    max-height:0;
    padding:0 16px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.22);
    border-radius:18px;
    background:rgba(255,255,255,.96);
    color:#111;
    box-shadow:0 24px 55px rgba(0,0,0,.28);
    -webkit-backdrop-filter:blur(12px);
    backdrop-filter:blur(12px);
    opacity:0;
    transform:translateY(-10px);
    transition:max-height .32s ease,padding .32s ease,opacity .25s ease,transform .25s ease;
  }

  .mobile-menu-panel.is-open{
    max-height:560px;
    padding:16px;
    opacity:1;
    transform:translateY(0);
  }

  .mobile-menu-panel a{
    min-height:44px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:0 12px;
    border-radius:8px;
    color:#111;
    font-size:14px;
    font-weight:600;
    letter-spacing:0;
    text-transform:none;
  }

  .mobile-nav-btn{
    justify-content:center;
    margin-top:6px;
    border-radius:999px;
  }

  .mobile-nav-btn-primary{
    background:#111;
    color:#fff;
  }

  .mobile-nav-btn-outline{
    border:1.5px solid #111;
    color:#111;
  }

  .hero-layout{
    padding:28px 20px 0;
    gap:28px;
  }

  .hero h1{
    font-size:clamp(34px,10vw,48px);
  }
}

@media(max-width:600px){
  .nav,
  .booking-topbar .nav{
    padding:10px 14px;
    padding-left:max(14px, env(safe-area-inset-left));
    padding-right:max(14px, env(safe-area-inset-right));
    grid-template-columns:40px minmax(0,1fr) auto;
    min-height:58px;
  }

  .mobile-menu-btn,
  .booking-topbar .mobile-menu-btn{
    width:40px;
    height:40px;
  }

  .nav-brand,
  .booking-topbar .nav-brand{
    display:flex !important;
    grid-area:brand;
    justify-self:center;
  }

  .nav-brand-title,
  .booking-topbar .nav-brand-title{
    font-size:12px;
    letter-spacing:1px;
  }

  .mobile-nav-login,
  .booking-topbar .mobile-nav-login{
    display:inline-flex !important;
    grid-area:login;
    justify-self:end;
    align-self:center !important;
    height:32px !important;
    min-height:32px !important;
    max-height:32px !important;
    padding:0 12px 0 10px !important;
    font-size:11px;
  }

  .mobile-nav-login.is-user,
  .booking-topbar .mobile-nav-login.is-user{
    padding:2px 10px 2px 3px !important;
  }

  .mobile-menu-panel{
    top:66px;
    left:12px;
    right:12px;
  }

  .booking-topbar .mobile-menu-panel{
    top:calc(100% + 6px);
    left:12px;
    right:12px;
  }

  .hero{
    min-height:auto;
    border-bottom-left-radius:32px;
    border-bottom-right-radius:32px;
    padding-bottom:90px;
  }
  .hero-layout{
    padding:20px 16px 0;
    gap:22px;
  }
  .hero h1{font-size:clamp(32px,9vw,40px)}
  .hero p{font-size:15px}
  .hero-badge{
    min-height:34px;
    padding:0 14px;
    font-size:10px;
  }
  .hero-actions{
    align-items:stretch;
  }
  .hero-btn{
    width:100%;
    min-width:0;
  }
  .hero-card{
    padding:22px;
    max-width:100%;
  }
  .down{
    width:56px;
    height:56px;
    bottom:22px;
    border-width:5px;
    font-size:20px;
  }
  section{padding:65px 18px}
  .showcase{flex-direction:column;padding:60px 10px}
  .showcase .big-text{font-size:65px;top:35px}
  .driver-img{width:95%;height:280px}
  .arrow{width:40px;height:40px}
  .left{left:18px}
  .right{right:18px}
  .specs{
    position:static;
    margin-top:20px;
    flex-wrap:wrap;
    gap:18px;
    justify-content:center;
  }
  .spec{border:0;padding-right:0;text-align:center}
  .tech-grid{grid-template-columns:1fr}
  .faq-section{
    padding-top:35px;
    margin:20px 18px 0;
    padding:42px 16px;
    border-radius:22px;
  }
  .faq-section::before{
    display:none;
  }
  .faq-aside{
    max-width:none;
  }
  .faq-aside img{
    height:220px;
    border-radius:8px;
  }
  .faq-list::before{
    font-size:28px;
    line-height:1.05;
  }
  .faq-question{
    min-height:58px;
    padding:16px;
    font-size:15px;
  }
  .faq-answer p{
    padding:0 16px 18px;
    font-size:14px;
  }
  .cta{margin:20px 18px 0;padding:30px}
  .footer-top{flex-direction:column;gap:25px}
  .footer-links a{display:block;margin:15px 0}
  .footer-bg{font-size:72px}
}


/* New Premium Dark Footer */
.footer{
  background:#050505;
  color:#fff;
  padding:90px 6% 45px;
  margin-top:50px;
  min-height:initial;
  position:relative;
  overflow:hidden;
}

.footer .footer-top{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr 1fr;
  gap:45px;
  align-items:flex-start;
}

.footer .footer-logo h2{
  font-size:44px;
  font-weight:900;
  letter-spacing:1px;
}

.footer .footer-logo p{
  margin-top:14px;
  color:#aaa;
  letter-spacing:5px;
  font-size:13px;
}

.footer-col h4{
  font-size:15px;
  margin-bottom:25px;
  text-transform:uppercase;
  letter-spacing:1px;
}

.footer-col a{
  display:block;
  color:#c9c9c9;
  text-decoration:none;
  margin-bottom:18px;
  font-size:18px;
  transition:color .3s ease,transform .3s ease;
}

.footer-col a:hover{
  color:#fff;
  transform:translateX(6px);
}

.footer-line{
  height:1px;
  background:#333;
  margin:70px 0 55px;
}

.footer-center{
  text-align:center;
}

.small-title,
.social-title{
  color:#999;
  font-size:14px;
  letter-spacing:3px;
  font-weight:700;
  margin-bottom:18px;
}

.footer-email{
  color:#fff;
  font-size:38px;
  text-decoration:none;
  display:inline-block;
  margin-bottom:42px;
}

.social-icons{
  display:flex;
  justify-content:center;
  gap:24px;
  margin-bottom:55px;
}

.social-icons a{
  width:58px;
  height:58px;
  background:#202020;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  font-size:28px;
  transition:.3s;
}

.social-icons a:hover{
  transform:translateY(-6px);
  background:#fff;
  color:#000;
}

.copyright{
  color:#aaa;
  font-size:17px;
}

.booking-panel-overlay{
  position:fixed;
  inset:0;
  z-index:1000;
  display:grid;
  place-items:center;
  padding:20px;
  background:rgba(8,18,42,.42);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .28s ease,visibility .28s ease;
}

.booking-panel-overlay.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.booking-panel-backdrop{
  position:absolute;
  inset:0;
  cursor:pointer;
}

.booking-slide-panel{
  position:relative;
  z-index:1;
  width:min(1320px,100%);
  max-height:calc(100vh - 40px);
  display:grid;
  grid-template-rows:88px 1fr;
  overflow:hidden;
  border:1px solid rgba(221,231,248,.9);
  border-radius:12px;
  background:#f8fbff;
  box-shadow:0 30px 90px rgba(14,34,71,.28);
  transform:translateY(24px) scale(.96);
  transition:transform .32s ease;
}

.booking-panel-overlay.is-open .booking-slide-panel{
  transform:translateY(0) scale(1);
}

.booking-panel-top{
  min-height:88px;
  display:flex;
  align-items:center;
  gap:34px;
  padding:0 42px;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid #dbe7ff;
}

.booking-modal-brand{
  min-width:220px;
  display:flex;
  align-items:center;
  gap:12px;
  color:#081846;
  font-size:25px;
  font-weight:900;
  letter-spacing:-.6px;
}

.booking-modal-brand > span:first-child{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border:3px solid #1056ff;
  border-radius:50%;
  color:#1056ff;
  font-size:18px;
}

.booking-modal-brand > span:last-child{
  color:#1056ff;
}

.booking-modal-title{
  flex:1;
}

.booking-modal-title h2{
  color:#07133d;
  font-size:33px;
  font-weight:900;
  letter-spacing:-1px;
  line-height:1;
}

.booking-panel-close{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border:0;
  border-radius:50%;
  background:transparent;
  color:#33476d;
  cursor:pointer;
  font-size:26px;
  transition:transform .25s ease,background .25s ease,color .25s ease;
}

.booking-panel-close:hover{
  transform:translateY(-2px);
  background:#eef4ff;
  color:#1056ff;
}

.booking-modal-body{
  display:grid;
  grid-template-columns:minmax(0,1.72fr) minmax(360px,.95fr);
  gap:22px;
  padding:30px 36px 38px;
  overflow:auto;
}

.booking-modal-card{
  border:1px solid #dbe4f3;
  border-radius:18px;
  background:#fff;
  box-shadow:0 18px 55px rgba(25,54,96,.08);
}

.booking-modal-form{
  padding:34px 34px 28px;
}

.booking-modal-heading h3,
.booking-modal-summary h3{
  color:#07133d;
  font-size:25px;
  font-weight:900;
  letter-spacing:-.5px;
}

.booking-modal-heading p{
  margin-top:10px;
  color:#344a73;
  font-size:17px;
  line-height:1.45;
}

.booking-modal-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:30px 34px;
  margin-top:30px;
}

.booking-modal-field{
  position:relative;
  display:grid;
  gap:12px;
}

.booking-modal-field span,
.booking-modal-label{
  display:flex;
  align-items:center;
  gap:12px;
  color:#112657;
  font-size:15px;
  font-weight:800;
}

.booking-modal-field i,
.booking-modal-label i{
  color:#1056ff;
  font-size:18px;
}

.booking-modal-field input,
.booking-modal-field select{
  width:100%;
  height:56px;
  border:1px solid #d7e1f0;
  border-radius:9px;
  background:#fff;
  color:#081846;
  outline:none;
  padding:0 24px;
  font-size:17px;
  font-weight:500;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
}

.booking-modal-field input:focus,
.booking-modal-field select:focus{
  border-color:#1056ff;
  box-shadow:0 0 0 4px rgba(16,86,255,.1);
}

.pac-container{
  display:none !important;
}

.location-suggestion-list{
  position:absolute;
  left:0;
  right:0;
  top:100%;
  z-index:2000;
  display:grid;
  gap:4px;
  margin-top:6px;
  padding:8px;
  border:1px solid #d7e1f0;
  border-radius:9px;
  background:#fff;
  box-shadow:0 16px 38px rgba(8,24,70,.16);
  max-height:260px;
  overflow:auto;
}

.location-suggestion-list[hidden]{
  display:none;
}

.location-suggestion-list button{
  min-height:42px;
  display:flex;
  align-items:center;
  gap:10px;
  border:0;
  border-radius:7px;
  background:#fff;
  color:#081846;
  cursor:pointer;
  padding:8px 10px;
  text-align:left;
  font-size:14px;
  font-weight:700;
}

.location-suggestion-list button:hover{
  background:#eef4ff;
  color:#1056ff;
}

.location-suggestion-list i{
  color:#1056ff;
}

.location-suggestion-message{
  min-height:42px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  color:#344a73;
  font-size:14px;
  font-weight:800;
}

.location-suggestion-message i{
  color:#1056ff;
}

.booking-distance-preview{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-top:24px;
  padding:18px;
  border:1px solid #cddbf0;
  border-radius:10px;
  background:#f8fbff;
}

.booking-distance-preview div{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-height:44px;
}

.booking-distance-preview span{
  display:flex;
  align-items:center;
  gap:9px;
  color:#112657;
  font-size:15px;
  font-weight:900;
}

.booking-distance-preview span i{
  color:#1056ff;
}

.booking-distance-preview strong{
  color:#1056ff;
  font-size:20px;
  font-weight:900;
  text-align:right;
}

.booking-distance-preview small{
  grid-column:1/-1;
  color:#344a73;
  font-size:13px;
  font-weight:800;
}

.booking-modal-group{
  margin-top:32px;
}

.booking-modal-options,
.booking-modal-slots{
  display:grid;
  gap:18px 22px;
  margin-top:16px;
}

.booking-modal-options{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.booking-modal-slots{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.booking-modal-options button,
.booking-modal-slots button{
  position:relative;
  min-height:50px;
  border:1px solid #cddbf0;
  border-radius:9px;
  background:#fff;
  color:#0b1d52;
  cursor:pointer;
  font-size:16px;
  font-weight:800;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease,color .25s ease,border-color .25s ease;
}

.booking-modal-options button:hover,
.booking-modal-slots button:hover{
  transform:translateY(-2px);
  border-color:#1056ff;
}

.booking-modal-options button.active,
.booking-modal-slots button.active{
  border-color:#1056ff;
  color:#fff;
  background:#0858ff;
  box-shadow:0 14px 30px rgba(16,86,255,.22);
}

.booking-modal-options button.active::after,
.booking-modal-slots button.active::after{
  content:"\f00c";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  width:24px;
  height:24px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#fff;
  color:#1056ff;
  position:absolute;
  right:12px;
  top:50%;
  transform:translateY(-50%);
  font-size:12px;
}

.booking-modal-summary{
  padding:34px 32px;
}

.booking-summary-list{
  margin-top:28px;
}

.booking-summary-row{
  display:grid;
  grid-template-columns:46px minmax(120px,1fr) auto;
  align-items:center;
  gap:14px;
  min-height:70px;
  border-bottom:1px solid #dde6f1;
  color:#112657;
  font-size:15px;
  font-weight:600;
}

.booking-summary-row i{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#edf4ff;
  color:#1056ff;
  font-size:16px;
}

.booking-summary-row strong{
  color:#07133d;
  text-align:right;
  font-size:15px;
  font-weight:900;
}

.booking-modal-price{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-top:30px;
  padding:22px;
  border:1px solid #cddbf0;
  border-radius:9px;
  background:#f8fbff;
}

.booking-modal-price span{
  display:block;
  color:#1056ff;
  font-size:17px;
  font-weight:900;
}

.booking-modal-price small{
  display:block;
  margin-top:8px;
  color:#344a73;
  font-size:14px;
}

.booking-modal-price strong{
  color:#1056ff;
  font-size:34px;
  font-weight:900;
}

.booking-modal-confirm{
  width:100%;
  min-height:62px;
  margin-top:28px;
  border:0;
  border-radius:9px;
  background:#0858ff;
  color:#fff;
  cursor:pointer;
  font-size:20px;
  font-weight:900;
  box-shadow:0 16px 34px rgba(16,86,255,.28);
  transition:transform .25s ease,box-shadow .25s ease;
}

.booking-modal-confirm:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 40px rgba(16,86,255,.34);
}

.booking-modal-success{
  display:none;
  margin-top:14px;
  padding:13px 16px;
  border-radius:9px;
  background:#dcfce7;
  color:#166534;
  text-align:center;
  font-weight:900;
}

.booking-modal-success.visible{
  display:block;
}

body.booking-panel-open{
  overflow:hidden;
}

@media(max-width:1000px){
  .booking-slide-panel{
    grid-template-rows:auto 1fr;
  }

  .booking-panel-top{
    flex-wrap:wrap;
    gap:14px;
    min-height:auto;
    padding:18px 22px;
  }

  .booking-modal-title{
    order:3;
    flex-basis:100%;
  }

  .booking-modal-body{
    grid-template-columns:1fr;
    padding:22px;
  }

  .booking-modal-options,
  .booking-modal-slots{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .footer .footer-top{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:650px){
  .booking-panel-overlay{
    place-items:center;
    padding:10px;
  }

  .booking-slide-panel{
    width:100%;
    max-height:calc(100vh - 20px);
    margin:0;
    border-radius:12px;
    transform:translateY(20px) scale(.96);
  }

  .booking-panel-overlay.is-open .booking-slide-panel{
    transform:translateY(0) scale(1);
  }

  .booking-panel-top{
    padding:14px;
  }

  .booking-modal-brand{
    min-width:0;
    font-size:21px;
  }

  .booking-modal-brand > span:first-child{
    width:34px;
    height:34px;
  }

  .booking-modal-title h2{
    font-size:25px;
  }

  .booking-modal-body{
    padding:14px;
  }

  .booking-modal-form,
  .booking-modal-summary{
    padding:22px 18px;
    border-radius:14px;
  }

  .booking-modal-grid,
  .booking-modal-options,
  .booking-modal-slots{
    grid-template-columns:1fr;
  }

  .booking-summary-row{
    grid-template-columns:40px 1fr;
    gap:10px;
  }

  .booking-summary-row strong{
    grid-column:2;
    text-align:left;
  }

  .booking-modal-price{
    align-items:flex-start;
    flex-direction:column;
  }

  .footer{
    padding:60px 6% 35px;
  }

  .footer .footer-top{
    grid-template-columns:1fr;
  }

  .footer .footer-logo h2{
    font-size:34px;
  }

  .footer-email{
    font-size:24px;
  }

  .social-icons{
    gap:14px;
  }

  .social-icons a{
    width:50px;
    height:50px;
    font-size:24px;
  }
}

.booking-page{
  background:#fff;
  color:#111;
}

.booking-topbar{
  position:sticky;
  top:0;
  z-index:20;
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.06);
  box-shadow:0 8px 30px rgba(0,0,0,.04);
}

.booking-topbar .nav{
  position:relative;
}

.booking-topbar .mobile-menu-panel{
  display:none;
}

.nav-light .nav-brand,
.nav-light .nav-links a{
  color:#111;
}

.nav-light .nav-brand-tagline{
  color:#666;
  opacity:1;
}

.nav-light .nav-btn-primary{
  background:#111;
  color:#fff;
}

.nav-light .nav-btn-primary:hover,
.nav-light .nav-btn-primary:focus{
  background:#222;
}

.nav-light .nav-btn-outline{
  color:#111;
  border-color:rgba(0,0,0,.22);
}

.nav-light .nav-btn-outline:hover,
.nav-light .nav-btn-outline:focus{
  background:rgba(0,0,0,.04);
  border-color:#111;
}

.mobile-menu-btn-dark span{
  background:#111;
}

.mobile-menu-panel-light{
  background:rgba(255,255,255,.98);
  color:#111;
  border-color:rgba(0,0,0,.08);
}

@media(max-width:900px){
  .booking-topbar .mobile-menu-panel{
    display:grid;
  }
}

.booking-layout{
  max-width:1180px;
  margin:0 auto;
  padding:48px 32px 72px;
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(280px,.85fr);
  gap:48px;
  align-items:start;
}

.booking-kicker{
  color:#f97316;
  font-size:14px;
  font-weight:700;
  margin-bottom:12px;
}

.booking-form-wrap h1{
  font-size:clamp(34px,4vw,52px);
  line-height:1.08;
  font-weight:800;
  letter-spacing:-.02em;
  margin-bottom:14px;
}

.booking-intro{
  max-width:560px;
  color:#667085;
  font-size:15px;
  line-height:1.6;
}

.booking-divider{
  height:1px;
  background:#eceff3;
  margin:28px 0 30px;
}

.booking-form{
  display:grid;
  gap:22px;
}

.booking-field-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.booking-field,
.booking-form .booking-field{
  display:grid;
  gap:10px;
}

.booking-field label,
.booking-label{
  font-size:14px;
  font-weight:700;
  color:#111;
}

.booking-field input{
  width:100%;
  min-height:52px;
  padding:0 16px;
  border:0;
  border-radius:14px;
  background:#f3f4f6;
  color:#111;
  font-size:15px;
}

.booking-field input:focus{
  outline:2px solid rgba(17,17,17,.12);
  background:#eef0f3;
}

.transmission-options{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.transmission-option{
  position:relative;
  cursor:pointer;
}

.transmission-option input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.transmission-option span{
  min-height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:#f3f4f6;
  font-size:15px;
  font-weight:700;
  color:#444;
  transition:background .2s ease,color .2s ease,box-shadow .2s ease;
}

.transmission-option input:checked + span{
  background:#111;
  color:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.booking-summary-card{
  padding:18px 20px;
  border-radius:18px;
  background:#f8fafc;
  border:1px solid #e8edf3;
  display:grid;
  gap:12px;
}

.booking-summary-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  font-size:14px;
  color:#667085;
}

.booking-summary-row strong{
  color:#111;
  font-size:15px;
}

.booking-price{
  font-size:22px;
  font-weight:800;
}

.booking-policy{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#667085;
  font-size:14px;
  line-height:1.5;
}

.booking-policy input{
  margin-top:3px;
}

.booking-submit{
  min-height:54px;
  border:0;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:transform .2s ease,background .2s ease;
}

.booking-submit:hover:not(:disabled){
  transform:translateY(-1px);
  background:#222;
}

.booking-submit:disabled{
  opacity:.7;
  cursor:not-allowed;
}

.booking-success,
.booking-error{
  display:none;
  padding:14px 16px;
  border-radius:14px;
  font-size:14px;
  font-weight:700;
}

.booking-success{
  background:#ecfdf3;
  color:#067647;
}

.booking-error{
  background:#fef3f2;
  color:#b42318;
}

.booking-aside{
  display:grid;
  gap:18px;
}

.booking-photo-card{
  overflow:hidden;
  border-radius:28px;
  min-height:420px;
  background:#dbeafe;
}

.booking-photo-card img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
  display:block;
}

.booking-info-card{
  display:flex;
  align-items:center;
  gap:16px;
  padding:18px 20px;
  border-radius:20px;
  background:#f3f4f6;
}

.booking-info-icon{
  width:52px;
  height:52px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#2563eb;
  color:#fff;
  font-size:18px;
}

.booking-info-card strong{
  display:block;
  margin-bottom:4px;
  font-size:16px;
}

.booking-info-card a{
  color:#475467;
  font-size:14px;
}

@media(max-width:960px){
  .booking-layout{
    grid-template-columns:1fr;
    padding:28px 16px 48px;
    padding-left:max(16px, env(safe-area-inset-left));
    padding-right:max(16px, env(safe-area-inset-right));
    gap:28px;
  }

  .booking-form-wrap h1{
    font-size:clamp(28px,8vw,36px);
  }

  .booking-intro{
    font-size:14px;
  }

  .booking-field-row,
  .transmission-options{
    grid-template-columns:1fr;
  }

  .booking-field input{
    min-height:48px;
    font-size:16px;
  }

  .booking-photo-card,
  .booking-photo-card img{
    min-height:280px;
    border-radius:22px;
  }

  .booking-aside{
    order:2;
  }
}

@media(max-width:640px){
  .booking-layout{
    padding:22px 14px 40px;
    padding-left:max(14px, env(safe-area-inset-left));
    padding-right:max(14px, env(safe-area-inset-right));
  }

  .booking-form-wrap h1{
    font-size:28px;
  }

  .booking-divider{
    margin:22px 0 24px;
  }

  .booking-submit{
    min-height:50px;
    width:100%;
  }
}

.login-layout{
  max-width:1180px;
  margin:0 auto;
  padding:48px 32px 72px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,.85fr);
  gap:48px;
  align-items:start;
}

.login-card-wrap{
  max-width:520px;
  min-width:0;
}

.login-card-wrap h1{
  font-size:clamp(34px,4vw,48px);
  line-height:1.08;
  font-weight:800;
  letter-spacing:-.02em;
  margin-bottom:14px;
}

.role-selector{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-bottom:24px;
}

.role-card{
  position:relative;
  padding:22px 14px;
  border:2px solid #e8edf3;
  border-radius:18px;
  background:#f8fafc;
  text-align:center;
  cursor:pointer;
  transition:border-color .2s ease,background .2s ease,box-shadow .2s ease;
}

.role-card.active{
  border-color:#111;
  background:#fff;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.role-badge{
  position:absolute;
  top:12px;
  right:12px;
  color:#f1c40f;
  opacity:0;
  transition:opacity .2s ease;
}

.role-card.active .role-badge{
  opacity:1;
}

.role-icon{
  font-size:28px;
  color:#667085;
  margin-bottom:10px;
}

.role-card.active .role-icon{
  color:#111;
}

.role-name{
  font-size:16px;
  font-weight:800;
  margin-bottom:4px;
}

.role-desc{
  font-size:12px;
  color:#667085;
}

.google-btn{
  width:100%;
  min-height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  border:0;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  transition:transform .2s ease,background .2s ease;
}

.google-btn:hover{
  transform:translateY(-1px);
  background:#222;
}

.login-profile-panel{
  display:grid;
  gap:12px;
  justify-items:center;
  text-align:center;
  padding:24px 0;
}

.login-profile-avatar{
  width:88px;
  height:88px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid #eceff3;
}

.login-profile-panel h2{
  font-size:24px;
}

.login-profile-panel p{
  color:#667085;
}

.login-role-badge{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
}

.login-profile-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  margin-top:8px;
}

.login-feedback{
  margin-top:16px;
  color:#067647;
  font-weight:700;
}

.login-feedback[hidden],
.login-profile-panel[hidden],
.login-error-box[hidden]{
  display:none !important;
}

.login-error-box{
  margin-top:16px;
  padding:14px 16px;
  border-radius:14px;
  background:#fef3f2;
  color:#b42318;
  font-size:13px;
  line-height:1.5;
  font-weight:600;
}

@media(max-width:960px){
  .login-layout{
    grid-template-columns:1fr;
    padding:28px 16px 48px;
    padding-left:max(16px, env(safe-area-inset-left));
    padding-right:max(16px, env(safe-area-inset-right));
    gap:28px;
  }

  .login-card-wrap{
    max-width:100%;
    order:1;
  }

  .login-layout > .booking-aside{
    order:2;
    width:100%;
    min-width:0;
  }

  .login-layout .booking-photo-card,
  .login-layout .booking-photo-card img{
    min-height:240px;
    max-height:320px;
    width:100%;
    border-radius:22px;
  }

  .login-card-wrap h1{
    font-size:clamp(28px,8vw,36px);
  }
}

@media(max-width:640px){
  .login-layout{
    padding:22px 14px 40px;
    padding-left:max(14px, env(safe-area-inset-left));
    padding-right:max(14px, env(safe-area-inset-right));
  }

  .role-selector{
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .role-card{
    padding:18px 10px;
  }

  .login-layout .booking-photo-card,
  .login-layout .booking-photo-card img{
    min-height:200px;
    max-height:260px;
  }
}

.visitor-location-overlay{
  position:fixed;
  inset:0;
  z-index:9999;
  display:grid;
  place-items:center;
  padding:20px;
  background:rgba(0,0,0,.55);
  -webkit-backdrop-filter:blur(4px);
  backdrop-filter:blur(4px);
  animation:visitorFadeIn .25s ease;
}

.visitor-location-overlay.is-closing{
  animation:visitorFadeOut .22s ease forwards;
}

.visitor-location-modal{
  width:min(420px,100%);
  padding:28px 24px 24px;
  border-radius:24px;
  background:#fff;
  box-shadow:0 30px 80px rgba(0,0,0,.28);
  text-align:center;
}

.visitor-location-icon{
  width:64px;
  height:64px;
  margin:0 auto 14px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#eef4ff;
  color:#2563eb;
  font-size:28px;
}

.visitor-location-kicker{
  color:#f97316;
  font-size:13px;
  font-weight:700;
  margin-bottom:8px;
}

.visitor-location-modal h2{
  font-size:24px;
  line-height:1.2;
  margin-bottom:10px;
}

.visitor-location-text{
  color:#667085;
  font-size:14px;
  line-height:1.55;
  margin-bottom:22px;
}

.visitor-location-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.visitor-location-btn{
  min-height:48px;
  border-radius:999px;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  border:1.5px solid transparent;
  transition:transform .2s ease,background .2s ease,border-color .2s ease;
}

.visitor-location-btn.allow{
  background:#111;
  color:#fff;
}

.visitor-location-btn.allow:hover{
  transform:translateY(-1px);
  background:#222;
}

.visitor-location-btn.deny{
  background:#fff;
  color:#111;
  border-color:#d0d5dd;
}

.visitor-location-btn.deny:hover{
  background:#f9fafb;
}

@keyframes visitorFadeIn{
  from{opacity:0}
  to{opacity:1}
}

@keyframes visitorFadeOut{
  from{opacity:1}
  to{opacity:0}
}
