:root{
  --dark:#0f172a;
  --dark-2:#111827;
  --text:#1f2937;
  --muted:#6b7280;
  --bg:#f8fafc;
  --white:#ffffff;
  --primary:#f59e0b;
  --primary-hover:#d97706;
  --line:#e5e7eb;
  --shadow:0 12px 40px rgba(15, 23, 42, 0.12);
  --radius:18px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(1180px, 92%);
  margin:0 auto;
}

.top-info{
  background:#020617;
  color:#fff;
  font-size:14px;
}

.top-info-wrap{
  display:flex;
  justify-content:center;
  gap:28px;
  padding:10px 0;
  flex-wrap:wrap;
}

.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(15, 23, 42, 0.94);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.header-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
  gap:20px;
}

.logo-image{
  display:flex;
  align-items:center;
}

.logo-image img{
  height:54px;
  width:auto;
  display:block;
}

.nav{
  display:flex;
  align-items:center;
  gap:24px;
}

.nav a{
  color:#fff;
  font-weight:600;
  font-size:15px;
}

.nav a:hover{
  color:var(--primary);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.call-btn{
  background:var(--primary);
  color:#111827;
  font-weight:700;
  padding:12px 18px;
  border-radius:12px;
}

.call-btn:hover{
  background:var(--primary-hover);
}

.menu-btn{
  display:none;
  border:none;
  background:transparent;
  color:#fff;
  font-size:30px;
  cursor:pointer;
}

.hero{
  position:relative;
  min-height:92vh;
  display:flex;
  align-items:center;
  background:
    linear-gradient(rgba(2,6,23,.68), rgba(2,6,23,.68)),
    url('images/hero.webp') center/cover no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(2,6,23,.65), rgba(2,6,23,.30));
}

.hero-wrap{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
  padding:90px 0;
}

.hero-left{
  color:#fff;
}

.hero-badge{
  display:inline-block;
  background:rgba(245,158,11,.14);
  color:#fbbf24;
  border:1px solid rgba(251,191,36,.28);
  padding:10px 16px;
  border-radius:999px;
  margin-bottom:20px;
  font-weight:700;
}

.hero-left h1{
  font-size:60px;
  line-height:1.1;
  margin-bottom:18px;
}

.hero-left p{
  max-width:640px;
  font-size:18px;
  color:#e5e7eb;
  margin-bottom:28px;
}

.hero-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:28px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 24px;
  border-radius:12px;
  font-weight:700;
  transition:.25s ease;
}

.btn-primary{
  background:var(--primary);
  color:#111827;
}

.btn-primary:hover{
  background:var(--primary-hover);
}

.btn-secondary{
  color:#fff;
  border:2px solid rgba(255,255,255,.7);
  background:transparent;
}

.btn-secondary:hover{
  background:#fff;
  color:#111827;
}

.btn-secondary.dark{
  color:#ffffff;
  border:2px solid #25D366;
  background:#25D366;
}

.btn-secondary.dark:hover{
  background:#1fb857;
  border-color:#1fb857;
  color:#ffffff;
}

.full{
  width:100%;
  border:none;
  cursor:pointer;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.stat-box{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  padding:18px;
  border-radius:16px;
  backdrop-filter:blur(8px);
}

.stat-box strong{
  display:block;
  font-size:28px;
  color:#fff;
  margin-bottom:6px;
}

.stat-box span{
  color:#d1d5db;
  font-size:14px;
}

.form-card{
  background:rgba(255,255,255,.96);
  padding:28px;
  border-radius:24px;
  box-shadow:var(--shadow);
}

.form-card h3{
  font-size:28px;
  margin-bottom:6px;
  color:var(--dark);
}

.form-card p{
  color:var(--muted);
  margin-bottom:18px;
}

.form-card form{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.form-card input,
.form-card select,
.form-card textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:12px;
  padding:14px 16px;
  font-size:15px;
  outline:none;
}

.form-card textarea{
  min-height:120px;
  resize:vertical;
}

.quick-services{
  margin-top:-42px;
  position:relative;
  z-index:5;
}

.quick-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.quick-card{
  background:#fff;
  border-radius:20px;
  padding:24px;
  box-shadow:var(--shadow);
}

.quick-icon{
  font-size:36px;
  margin-bottom:10px;
}

.quick-card h3{
  margin-bottom:8px;
  font-size:20px;
}

.section{
  padding:90px 0;
}

.section-head{
  text-align:center;
  max-width:820px;
  margin:0 auto 40px;
}

.section-head h2{
  font-size:40px;
  line-height:1.2;
  margin-bottom:10px;
}

.section-head p{
  color:var(--muted);
}

.section-label{
  display:inline-block;
  color:var(--primary);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:12px;
  font-size:14px;
}

.services{
  background:#fff;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.service-item{
  border:1px solid var(--line);
  border-radius:20px;
  padding:20px;
  background:#fff;
  transition:.25s ease;
}

.service-item:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}

.service-img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:16px;
  margin-bottom:18px;
  display:block;
}

.service-item h3{
  font-size:22px;
  margin-bottom:10px;
  color:var(--dark);
}

.why-wrap{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:30px;
  align-items:start;
}

.why-left h2{
  font-size:40px;
  line-height:1.2;
  margin-bottom:14px;
}

.why-left p{
  color:var(--muted);
}

.about-img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:20px;
  margin-top:20px;
  box-shadow:var(--shadow);
  display:block;
}

.why-right{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.why-box{
  background:#fff;
  padding:24px;
  border-radius:20px;
  box-shadow:var(--shadow);
}

.why-box h3{
  margin-bottom:8px;
}

.testimonial-section{
  background:#fff;
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.testimonial{
  background:#f8fafc;
  border:1px solid var(--line);
  border-radius:20px;
  padding:28px;
}

.testimonial p{
  margin-bottom:16px;
  color:#374151;
}

.cta-band{
  padding:30px 0 0;
}

.cta-band-wrap{
  background:linear-gradient(135deg, #111827, #1f2937);
  color:#fff;
  border-radius:28px;
  padding:34px 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.cta-band-wrap h2{
  font-size:34px;
  margin-bottom:6px;
}

.cta-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.contact-wrap{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:30px;
  align-items:center;
}

.contact-info h2{
  font-size:38px;
  margin-bottom:14px;
}

.contact-info ul{
  list-style:none;
}

.contact-info li{
  margin-bottom:14px;
  font-size:18px;
}

.contact-map{
  overflow:hidden;
  border-radius:22px;
  box-shadow:var(--shadow);
  min-height:380px;
}

.contact-map iframe{
  width:100%;
  height:100%;
  min-height:380px;
  border:0;
}

.footer{
  background:#020617;
  color:#fff;
  padding:30px 0;
}

.footer-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.footer-logo-text{
  font-size:22px;
  font-weight:800;
  margin-bottom:6px;
}

.footer-logo-img{
  width:220px;
  max-width:100%;
  height:auto;
  margin-bottom:8px;
}

.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.footer-links a{
  color:#fff;
}

.floating-call,
.floating-wa{
  position:fixed;
  right:18px;
  z-index:999;
  color:#fff;
  font-weight:700;
  border-radius:999px;
  padding:14px 18px;
  box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.floating-call{
  bottom:76px;
  background:#111827;
}

.floating-wa{
  bottom:18px;
  background:#25D366;
}

@media (max-width:1100px){
  .hero-wrap,
  .why-wrap,
  .contact-wrap{
    grid-template-columns:1fr;
  }

  .quick-grid,
  .services-grid,
  .testimonial-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-left h1{
    font-size:48px;
  }
}

@media (max-width:768px){
  .nav{
    display:none;
    position:absolute;
    top:82px;
    right:4%;
    width:230px;
    padding:18px;
    flex-direction:column;
    align-items:flex-start;
    background:#0f172a;
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
  }

  .nav.show{
    display:flex;
  }

  .menu-btn{
    display:block;
  }

  .call-btn{
    display:none;
  }

  .logo-image img{
    height:42px;
  }

  .hero-left h1{
    font-size:36px;
  }

  .hero-stats,
  .quick-grid,
  .services-grid,
  .why-right,
  .testimonial-grid{
    grid-template-columns:1fr;
  }

  .section{
    padding:70px 0;
  }

  .section-head h2,
  .why-left h2,
  .contact-info h2,
  .cta-band-wrap h2{
    font-size:30px;
  }

  .cta-band-wrap{
    flex-direction:column;
    align-items:flex-start;
  }
}

.road-help{
  background:linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.road-help-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:start;
}

.road-help-card{
  background:#111827;
  color:#fff;
  padding:30px;
  border-radius:24px;
  box-shadow:var(--shadow);
}

.road-help-card h3{
  font-size:28px;
  margin-bottom:18px;
}

.road-help-list{
  list-style:none;
  display:grid;
  gap:12px;
}

.road-help-list li{
  padding:12px 14px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
}

.road-help-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:20px;
}

.road-help-right{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.road-help-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px;
  box-shadow:var(--shadow);
}

.road-help-box h3{
  margin-bottom:10px;
  font-size:22px;
  color:var(--dark);
}

.road-help-box p{
  color:var(--muted);
}

@media (max-width:1100px){
  .road-help-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:768px){
  .road-help-right{
    grid-template-columns:1fr;
  }
}