
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',sans-serif;
  background:#f8fafc;
  color:#0f172a;
  overflow-x:hidden;
}
body.loading{overflow:hidden}

::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:#f1f5f9}
::-webkit-scrollbar-thumb{background:#f59e0b;border-radius:99px}

:root{
  --navy:#071a3f;
  --navy2:#0b1f4b;
  --amber:#f59e0b;
  --orange:#f97316;
  --slate:#64748b;
}

/* PRELOADER - light and fast */
#preloader{
  position:fixed;
  inset:0;
  z-index:9999;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:opacity .45s ease,visibility .45s ease;
}
#preloader.done{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}
.pl-box{text-align:center}
.pl-logo{
  font-size:3rem;
  font-weight:900;
  letter-spacing:-.06em;
  color:var(--navy2);
}
.pl-logo span{color:var(--amber)}
.pl-text{
  margin-top:6px;
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:#94a3b8;
}
.pl-line{
  width:170px;
  height:3px;
  margin:22px auto 0;
  background:#e2e8f0;
  border-radius:50px;
  overflow:hidden;
}
.pl-line span{
  display:block;
  height:100%;
  width:100%;
  background:linear-gradient(90deg,var(--amber),var(--orange));
  transform-origin:left;
  animation:loadLine .8s ease forwards;
}
@keyframes loadLine{from{transform:scaleX(0)}to{transform:scaleX(1)}}

/* NAVBAR */
#navbar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:50;
  background:white;
  border-bottom:1px solid rgba(226,232,240,.8);
  backdrop-filter:blur(14px);
  transition:box-shadow .25s ease,background .25s ease;
}
#navbar.scrolled{
  background:rgba(255,255,255,.98);
  box-shadow:0 8px 30px rgba(15,23,42,.08);
}
.brand{
height:72px;
display:flex;
align-items:center;
overflow:hidden;
}

.brand img{
height:130px;
max-width:220px;
object-fit:contain;
display:block;
}
.nav-link{
  position:relative;
  color:#475569;
  font-size:.9rem;
  font-weight:600;
  transition:color .2s ease;
}
.nav-link:hover,.nav-link.active{color:var(--navy2)}
.nav-link::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  height:2px;
  width:0;
  border-radius:99px;
  background:var(--amber);
  transition:width .25s ease;
}
.nav-link:hover::after,.nav-link.active::after{width:100%}

.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:46px;
  padding:12px 24px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--amber),var(--orange));
  color:#071a3f;
  font-size:.9rem;
  font-weight:900;
  text-decoration:none;
  border:0;
  cursor:pointer;
  box-shadow:0 12px 28px rgba(245,158,11,.28);
  transition:transform .2s ease,box-shadow .2s ease;
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 18px 36px rgba(245,158,11,.34)}
.btn-light{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:46px;
  padding:12px 24px;
  border-radius:14px;
  color:#fff;
  font-size:.9rem;
  font-weight:800;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.42);
  background:rgba(255,255,255,.10);
  transition:background .2s ease,transform .2s ease;
}
.btn-light:hover{background:rgba(255,255,255,.16);transform:translateY(-2px)}

.mob-menu{
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:max-height .28s ease,opacity .28s ease;
  background:#fff;
  border-top:1px solid #e2e8f0;
}
.mob-menu.open{max-height:420px;opacity:1}

/* HERO - simple, smooth, no heavy animation */
#hero{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--navy);
}
.hero-video{
  position:absolute;
  inset:0;
  z-index:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.05) contrast(1.02) brightness(.82);
}
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  /* background:
    linear-gradient(90deg,rgba(151, 185, 253, 0.82) 0%,rgba(185, 205, 246, 0.58) 45%,rgba(7,26,63,.20) 100%),
    linear-gradient(180deg,rgba(205, 221, 245, 0.25),rgba(188, 204, 253, 0.72)); */
}
.hero-content{
  position:relative;
  z-index:2;
  width:100%;
  max-width:80rem;
  margin:0 auto;
  padding:9rem 1.25rem 5rem;
}
.hero-inner{max-width:760px}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:22px;
  padding:9px 16px;
  border-radius:999px;
  color:rgba(255,255,255,.88);
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.20);
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.hero-badge span{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--amber);
}
.hero-title{
  color:#fff;
  font-size:clamp(2.35rem,6vw,5.3rem);
  line-height:.98;
  letter-spacing:-.055em;
  font-weight:900;
  margin-bottom:22px;
}
.hero-title em{
  font-style:normal;
  color:var(--amber);
}
.hero-text{
  max-width:650px;
  color:rgba(226,232,240,.9);
  font-size:clamp(.98rem,1.6vw,1.15rem);
  line-height:1.8;
  margin-bottom:28px;
  font-weight:400;
}
.hero-stats{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:30px;
}
.hero-stat{
  min-width:112px;
  padding:13px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.11);
  border:1px solid rgba(255,255,255,.16);
}
.hero-stat strong{
  display:block;
  color:#fbbf24;
  font-size:1.45rem;
  line-height:1;
  font-weight:900;
}
.hero-stat span{
  display:block;
  margin-top:4px;
  color:rgba(255,255,255,.68);
  font-size:.66rem;
  letter-spacing:.13em;
  text-transform:uppercase;
  font-weight:800;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:13px}

body.loading .hero-badge,
body.loading .hero-title,
body.loading .hero-text,
body.loading .hero-stats,
body.loading .hero-actions{
  opacity:0;
  transform:translateY(24px);
}
body.loaded .hero-badge,
body.loaded .hero-title,
body.loaded .hero-text,
body.loaded .hero-stats,
body.loaded .hero-actions{
  opacity:1;
  transform:translateY(0);
  transition:opacity .7s ease,transform .7s ease;
}
body.loaded .hero-title{transition-delay:.08s}
body.loaded .hero-text{transition-delay:.16s}
body.loaded .hero-stats{transition-delay:.24s}
body.loaded .hero-actions{transition-delay:.32s}

/* COMMON */
section{position:relative}
.section-pad{padding:88px 0}
.container{max-width:80rem;margin:0 auto;padding:0 1.25rem}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:#b45309;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin-bottom:14px;
}
.eyebrow::before{
  content:'';
  width:34px;
  height:3px;
  border-radius:99px;
  background:var(--amber);
}
.section-title{
  font-size:clamp(1.9rem,4vw,3rem);
  line-height:1.12;
  font-weight:900;
  letter-spacing:-.04em;
  color:#0f172a;
}
.section-title span{color:var(--amber)}
.section-text{color:var(--slate);line-height:1.75;font-size:1rem}

.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .65s ease,transform .65s ease;
}
.reveal.show{opacity:1;transform:none}

.stat-card,.service-card,.fleet-card,.why-card,.contact-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:24px;
  box-shadow:0 8px 28px rgba(15,23,42,.055);
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
.stat-card:hover,.service-card:hover,.fleet-card:hover,.why-card:hover{
  transform:translateY(-5px);
  border-color:rgba(245,158,11,.55);
  box-shadow:0 18px 45px rgba(15,23,42,.10);
}

.stat-card{padding:28px 22px;text-align:center}
.stat-num{
  display:block;
  font-size:3rem;
  line-height:1;
  font-weight:900;
  color:var(--amber);
  margin-bottom:8px;
}
.stat-label{
  color:#64748b;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.service-card{overflow:hidden}
.service-card img{width:100%;height:210px;object-fit:cover;display:block}
.service-body{padding:26px}
.tag{
  display:inline-block;
  padding:5px 10px;
  border-radius:8px;
  background:#fff7ed;
  color:#b45309;
  border:1px solid #fed7aa;
  font-size:.62rem;
  letter-spacing:.15em;
  text-transform:uppercase;
  font-weight:900;
  margin-bottom:12px;
}
.service-body h3{font-size:1.25rem;font-weight:900;color:#0f172a;margin-bottom:10px}
.service-body p{color:#64748b;font-size:.92rem;line-height:1.72;margin-bottom:16px}
.check-list{display:grid;gap:8px;color:#475569;font-size:.88rem}
.check-list li{display:flex;gap:8px;align-items:flex-start}
.check-list li::before{content:'✓';color:var(--amber);font-weight:900}

.fleet-card{padding:26px}
.fleet-icon{
  width:48px;
  height:48px;
  border-radius:15px;
  background:#fff7ed;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--amber);
  margin-bottom:16px;
}
.fleet-card h3{font-size:1.15rem;font-weight:900;margin-bottom:8px}
.fleet-card p{color:#64748b;line-height:1.72;font-size:.92rem}

.why-section{background:#071a3f;color:#fff}
.why-section .section-title{color:#fff}
.why-section .section-text{color:rgba(226,232,240,.78)}
.why-card{padding:26px;text-align:center;background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.10);box-shadow:none}
.why-card h3{font-size:1.08rem;font-weight:900;margin-bottom:8px;color:#fff}
.why-card p{color:rgba(226,232,240,.75);line-height:1.7;font-size:.9rem}


.contact-info-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.contact-info-card{
  position:relative;
  padding:24px;
  overflow:hidden;
}
.contact-info-card::after{
  content:'';
  position:absolute;
  right:-28px;
  top:-28px;
  width:82px;
  height:82px;
  border-radius:50%;
  background:rgba(245,158,11,.10);
}
.contact-icon{
  width:46px;
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:15px;
  background:#fff7ed;
  color:#b45309;
  font-size:1.25rem;
  margin-bottom:15px;
}
.contact-info-card h3{
  font-size:1rem;
  font-weight:900;
  color:#0f172a;
  margin-bottom:7px;
}
.contact-info-card p,
.contact-info-card a{
  color:#64748b;
  line-height:1.65;
  font-size:.94rem;
  text-decoration:none;
  word-break:break-word;
}
.contact-info-card a:hover{color:var(--amber)}
.contact-note{
  margin-top:22px;
  padding:20px 22px;
  border-radius:22px;
  background:linear-gradient(135deg,#071a3f,#0b1f4b);
  color:#fff;
  box-shadow:0 16px 38px rgba(15,23,42,.14);
}
.contact-note strong{display:block;font-size:1.1rem;margin-bottom:5px}
.contact-note p{color:rgba(226,232,240,.78);line-height:1.7;font-size:.92rem}

.form-field{
  width:100%;
  border:1px solid #e2e8f0;
  border-radius:13px;
  background:#f8fafc;
  padding:13px 15px;
  outline:none;
  font-size:.92rem;
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
.form-field:focus{
  background:#fff;
  border-color:var(--amber);
  box-shadow:0 0 0 4px rgba(245,158,11,.12);
}

.footer-link{color:rgba(191,219,254,.78);font-size:.9rem;text-decoration:none;transition:color .2s ease}
.footer-link:hover{color:var(--amber)}

@media(max-width:900px){
  .hero-content{text-align:center;padding-top:8rem}
  .hero-inner{margin:0 auto}
  .hero-badge{font-size:.62rem;letter-spacing:.12em}
  .hero-stats,.hero-actions{justify-content:center}
}
@media(max-width:540px){
  .contact-info-grid{grid-template-columns:1fr}
  .brand{
height:64px;
overflow:hidden;
}


.stat-num{
 
  font-size:1rem;

}
.stat-label{
  font-size:8px;
 
}

.brand img{
height:110px;
}
  .section-pad{padding:68px 0}
  .hero-title{font-size:2.35rem;line-height:1.05}
  .hero-stat{min-width:96px;padding:12px 13px}
  .hero-actions a{width:100%}
}
