:root{
  --primary:#0b1220;
  --secondary:#f5b321;
  --secondary-dark:#d88b00;
  --accent:#22c55e;
  --soft:#f8fafc;
  --text:#0f172a;
  --muted:#64748b;
  --line:#dbe4f0;
  --white:#ffffff;
  --shadow:0 18px 50px rgba(15,23,42,.08);
  --shadow-lg:0 28px 80px rgba(2,6,23,.22);
  --radius:24px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.65;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(1180px,calc(100% - 32px));
  margin:auto;
}

/* TOPBAR */
.topbar{
  background:#020617;
  color:#e2e8f0;
  font-size:14px;
}

.topbar-wrap{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:12px 0;
  flex-wrap:wrap;
}

.topbar a{
  color:#fff;
}

.dot{
  margin:0 10px;
  opacity:.6;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid #e5e7eb;
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px 0;
  position:relative;
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo-mark{
  width:64px;
  height:64px;
  border-radius:22px;
  background:linear-gradient(135deg,#f5b321,#f7c94d);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:24px;
  color:#111827;
  flex-shrink:0;
}

.logo-text strong{
  display:block;
  font-size:20px;
  line-height:1.2;
}

.logo-text small{
  display:block;
  color:#64748b;
  font-size:14px;
  margin-top:3px;
}

.nav-menu{
  display:flex;
  align-items:center;
  gap:22px;
}

.nav-menu a{
  font-weight:600;
  color:#334155;
  transition:.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active{
  color:var(--secondary-dark);
}

.desktop-header-cta{
  display:flex;
  gap:10px;
}

.small-btn{
  padding:12px 18px;
  font-size:14px;
}

.menu-toggle{
  display:none;
  background:none;
  border:none;
  padding:0;
  width:42px;
  height:42px;
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  width:28px;
  height:3px;
  margin:5px auto;
  background:#1e293b;
  border-radius:20px;
}

.mobile-header-cta{
  display:none;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:999px;
  font-weight:800;
  border:none;
  transition:.3s ease;
  cursor:pointer;
}

.btn-primary{
  background:linear-gradient(135deg,#f5b321,#f59e0b);
  color:#fff;
  box-shadow:0 12px 28px rgba(245,158,11,.28);
}

.btn-dark{
  background:#0f172a;
  color:#fff;
}

.btn:hover{
  transform:translateY(-2px);
}

/* HERO */
.hero{
  position:relative;
  overflow:hidden;
  min-height:760px;
  display:flex;
  align-items:center;
}

.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1s ease-in-out;
}

.hero-slide.active{
  opacity:1;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(2,6,23,.82),rgba(2,6,23,.55));
  z-index:1;
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:36px;
  align-items:center;
  padding:90px 0;
}

.hero-copy{
  color:#fff;
}

.eyebrow{
  display:inline-block;
  padding:14px 22px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  font-weight:700;
  margin-bottom:18px;
  font-size:15px;
}

.hero h1{
  font-size:58px;
  line-height:1.08;
  margin:0 0 18px;
}

.hero p{
  font-size:18px;
  color:#e2e8f0;
  margin:0 0 26px;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:24px;
}

.hero-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.hero-points div{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  padding:16px;
  border-radius:18px;
}

.hero-points strong{
  color:#fff;
}

.hero-points span{
  color:#cbd5e1;
}

/* HERO FORM */
.hero-card{
  background:rgba(255,255,255,.96);
  padding:28px;
  border-radius:28px;
  box-shadow:var(--shadow-lg);
}

.hero-card h3{
  margin:0 0 10px;
  font-size:28px;
  color:#0f172a;
}

.hero-card p{
  margin:0 0 18px;
  color:#64748b;
  font-size:15px;
}

.card-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:#ecfdf5;
  color:#166534;
  font-size:13px;
  font-weight:800;
  margin-bottom:12px;
}

.form-grid{
  display:grid;
  gap:14px;
}

input,
textarea,
select{
  width:100%;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid #cbd5e1;
  font:inherit;
  outline:none;
  background:#fff;
}

input:focus,
textarea:focus,
select:focus{
  border-color:#f59e0b;
  box-shadow:0 0 0 4px rgba(245,158,11,.15);
}

textarea{
  min-height:100px;
  resize:vertical;
}

/* GENERAL */
.section{
  padding:80px 0;
}

.section-alt{
  background:#f8fafc;
}

.section-title{
  max-width:800px;
  margin:0 auto 40px;
  text-align:center;
}

.section-title h2{
  font-size:40px;
  margin:0 0 14px;
  line-height:1.2;
}

.section-title p{
  color:var(--muted);
  margin:0;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.card,
.info-panel{
  background:#fff;
  padding:26px;
  border-radius:24px;
  border:1px solid #e2e8f0;
  box-shadow:var(--shadow);
}

.card h3,
.info-panel h3{
  margin:0 0 12px;
}

.card p,
.info-panel p{
  color:var(--muted);
}

.icon-badge{
  width:56px;
  height:56px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff7ed;
  color:#c2410c;
  font-weight:800;
  margin-bottom:16px;
}

.content-wrap{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;
  align-items:start;
}

.check-list{
  list-style:none;
  padding:0;
  margin:18px 0 0;
}

.check-list li{
  position:relative;
  padding-left:26px;
  margin-bottom:10px;
  color:var(--muted);
}

.check-list li:before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#16a34a;
  font-weight:800;
}

.compact{
  margin-top:14px;
}

.premium-panel{
  background:linear-gradient(180deg,#fffaf0,#ffffff);
}

/* TRUST */
.trust-strip-wrap{
  padding-top:30px;
}

.trust-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.trust-strip > div{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:20px;
  padding:20px;
  box-shadow:var(--shadow);
}

.trust-strip strong{
  display:block;
  margin-bottom:6px;
  font-size:18px;
  color:#0f172a;
}

.trust-strip span{
  color:var(--muted);
  font-size:14px;
}

/* FLEET */
.fleet-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.fleet-card{
  background:#fff;
  border-radius:26px;
  overflow:hidden;
  border:1px solid #e2e8f0;
  box-shadow:var(--shadow);
  transition:.3s ease;
}

.fleet-card:hover,
.feature-card:hover,
.card:hover{
  transform:translateY(-4px);
}

.fleet-visual{
  height:220px;
  background-size:cover;
  background-position:center;
}

.fleet-sedan{
  background-image:url('../images/fleet-sedan.jpg');
}

.fleet-suv{
  background-image:url('../images/fleet-suv.jpg');
}

.fleet-luxury{
  background-image:url('../images/fleet-thar.jpg');
}

.fleet-content{
  padding:22px;
}

.fleet-tag{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background:#fff7ed;
  color:#c2410c;
  font-size:12px;
  font-weight:800;
  margin-bottom:10px;
}

/* PROCESS */
.process-step .step-no{
  width:50px;
  height:50px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#0f172a;
  color:#fff;
  font-weight:800;
  margin-bottom:16px;
}

/* BANNER */
.banner{
  background:linear-gradient(135deg,#0f172a,#1f2937);
  color:#fff;
  border-radius:30px;
  padding:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.banner h3{
  margin:0 0 10px;
  font-size:32px;
  line-height:1.2;
}

.banner p{
  margin:0;
  color:#cbd5e1;
}

/* FOOTER */
.site-footer{
  background:#020617;
  color:#cbd5e1;
  padding:70px 0 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:26px;
}

.site-footer h3,
.site-footer h4{
  color:#fff;
  margin-top:0;
}

.site-footer p,
.site-footer li,
.site-footer a{
  color:#cbd5e1;
}

.site-footer ul{
  list-style:none;
  padding:0;
  margin:0;
}

.site-footer li{
  margin-bottom:12px;
}

.footer-bottom{
  margin-top:30px;
  padding:18px 0;
  border-top:1px solid rgba(255,255,255,.1);
  text-align:center;
}

.footer-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}

.footer-badges span{
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:999px;
}

.floating-whatsapp{
  position:fixed;
  right:18px;
  bottom:18px;
  background:#16a34a;
  color:#fff;
  padding:14px 20px;
  border-radius:999px;
  font-weight:800;
  z-index:999;
  box-shadow:0 14px 30px rgba(34,197,94,.35);
}

/* MOBILE */
@media (max-width: 991px){
  .menu-toggle{
    display:block;
  }

  .desktop-header-cta{
    display:none;
  }

  .nav-menu{
    display:none;
    position:absolute;
    top:100%;
    left:16px;
    right:16px;
    background:#fff;
    border-radius:18px;
    padding:18px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }

  .nav-menu.show{
    display:flex;
  }

  .mobile-header-cta{
    display:flex;
    flex-direction:column;
    width:100%;
    gap:12px;
    margin-top:10px;
  }

  .hero-grid,
  .content-wrap,
  .grid-3,
  .fleet-grid,
  .trust-strip,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .hero-points{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:42px;
  }

  .banner{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 767px){
  .topbar-wrap{
    flex-direction:column;
    align-items:flex-start;
  }

  .topbar-right{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
  }

  .dot{
    display:none;
  }

  .logo{
    gap:10px;
  }

  .logo-mark{
    width:58px;
    height:58px;
    font-size:22px;
    border-radius:18px;
  }

  .logo-text strong{
    font-size:18px;
  }

  .logo-text small{
    font-size:13px;
  }

  .hero{
    min-height:auto;
  }

  .hero-grid{
    padding:65px 0;
  }

  .hero h1{
    font-size:34px;
  }

  .hero p{
    font-size:16px;
  }

  .eyebrow{
    font-size:14px;
    padding:12px 18px;
  }

  .btn{
    width:100%;
  }

  .hero-card{
    padding:22px;
  }

  .section-title h2{
    font-size:30px;
  }

  .banner h3{
    font-size:26px;
  }

  .floating-whatsapp{
    right:12px;
    bottom:12px;
    padding:12px 16px;
    font-size:14px;
  }
}