
:root{
  --primary:#f59e0b;
  --primary-dark:#d97706;
  --bg:#0f172a;
  --bg-soft:#111827;
  --card:#1f2937;
  --text:#e5e7eb;
  --muted:#cbd5e1;
  --white:#ffffff;
  --border:rgba(255,255,255,.08);
  --success:#16a34a;
  --shadow:0 15px 40px rgba(0,0,0,.18);
  --radius:18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:#334155;
  background:#f8fafc;
  line-height:1.7;
}
a{color:var(--primary-dark);text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%;display:block}
.container{width:min(1140px,92%);margin:auto}
.site-header{
  position:sticky;top:0;z-index:999;
  backdrop-filter: blur(12px);
  background:rgba(15,23,42,.92);
  box-shadow:0 6px 20px rgba(0,0,0,.15);
}
.nav-wrap{
  display:flex;align-items:center;justify-content:space-between;
  min-height:76px;gap:20px;
}
.logo{
  display:flex;align-items:center;gap:12px;font-weight:700;color:#fff;font-size:1.2rem;
}
.logo img{height:54px;width:auto}
.nav{
  display:flex;gap:20px;flex-wrap:wrap;align-items:center;
}
.nav a{
  color:#fff;font-weight:600;font-size:.96rem;padding:10px 12px;border-radius:999px;
}
.nav a:hover,.nav a.active{
  background:rgba(245,158,11,.18);text-decoration:none;color:#fff;
}
.btn,.btn-outline{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:13px 20px;border-radius:999px;font-weight:700;border:none;cursor:pointer;
  transition:.25s ease; text-decoration:none;
}
.btn{
  background:linear-gradient(135deg,var(--primary),#fbbf24);
  color:#111827;box-shadow:0 10px 25px rgba(245,158,11,.28);
}
.btn:hover{transform:translateY(-1px);text-decoration:none}
.btn-outline{
  border:1px solid rgba(255,255,255,.28); color:#fff; background:transparent;
}
.hero{
  background:
    linear-gradient(rgba(15,23,42,.72),rgba(15,23,42,.76)),
    url('../../images/slide1.jpg') center/cover no-repeat;
  color:#fff;
}
.hero .inner{
  min-height:78vh;display:grid;grid-template-columns:1.2fr .8fr;gap:36px;align-items:center;
  padding:72px 0;
}
.eyebrow{
  display:inline-block;padding:8px 14px;border-radius:999px;
  background:rgba(245,158,11,.16);color:#fde68a;font-weight:700;font-size:.85rem;
}
.hero h1{font-size:clamp(2.3rem,4vw,4.4rem);line-height:1.1;margin:16px 0}
.hero p{font-size:1.05rem;color:#e2e8f0;max-width:700px}
.hero-card{
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.1);
  border-radius:24px;padding:28px;box-shadow:var(--shadow)
}
.quick-points{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:24px}
.quick-points div{
  background:rgba(255,255,255,.08);padding:14px 16px;border-radius:16px;color:#fff
}
.section{padding:50px 0}
.section-dark{background:var(--bg);color:#fff}
.section-title{font-size:clamp(1.8rem,3vw,2.6rem);margin:0 0 8px}
.section-subtitle{max-width:760px;color:#64748b}
.section-dark .section-subtitle{color:#cbd5e1}
.grid{display:grid;gap:24px}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
.card{
  background:#fff;border-radius:var(--radius);padding:24px;box-shadow:var(--shadow);
  border:1px solid rgba(15,23,42,.06)
}
.section-dark .card{
  background:rgba(255,255,255,.06);color:#fff;border:1px solid var(--border)
}
.card h3{margin-top:0}
.icon-badge{
  width:52px;height:52px;border-radius:14px;display:grid;place-items:center;
  background:linear-gradient(135deg,#f59e0b,#fbbf24);color:#111827;font-weight:800;
  margin-bottom:14px
}
.service-card img,.fleet-card img{
  border-radius:16px;aspect-ratio:4/3;object-fit:cover;margin-bottom:16px
}
.list-check{padding-left:18px;margin:0}
.list-check li{margin:8px 0}
.cta-band{
  background:linear-gradient(135deg,#f59e0b,#fbbf24);padding:28px;border-radius:24px;
  box-shadow:var(--shadow);display:flex;justify-content:space-between;gap:24px;align-items:center
}
.cta-band h3{margin:0;color:#111827}
.cta-band p{margin:6px 0 0;color:#3f3f46}
.form-card{
  background:#fff;padding:28px;border-radius:24px;box-shadow:var(--shadow)
}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.field{display:flex;flex-direction:column;gap:8px}
input,textarea,select{
  width:100%;padding:14px 16px;border:1px solid #dbe2ea;border-radius:14px;
  font:inherit;outline:none;background:#fff
}
input:focus,textarea:focus,select:focus{border-color:var(--primary)}
textarea{min-height:150px;resize:vertical}
.info-list{
  display:grid;gap:16px
}
.info-item{
  background:#fff;border-radius:18px;padding:18px 20px;box-shadow:var(--shadow)
}
.table-wrap{overflow:auto}
.faq-item{
  background:#fff;border-radius:18px;padding:20px 22px;box-shadow:var(--shadow);margin-bottom:16px
}
.page-hero{
  background:linear-gradient(135deg,#0f172a,#1e293b);color:#fff;padding:80px 0 54px
}
.page-hero h1{margin:0 0 8px;font-size:clamp(2rem,4vw,3.5rem)}
.breadcrumb{color:#cbd5e1}
.content-card{
  background:#fff;border-radius:24px;padding:34px;box-shadow:var(--shadow)
}
.content-card h2,.content-card h3{color:#0f172a}
.footer{
  background:#0f172a;color:#cbd5e1;padding:22px 0
}
.footer-row{display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap}
.notice{
  padding:12px 14px;border-left:4px solid var(--primary);background:#fff7ed;border-radius:10px;color:#7c2d12
}
.small{font-size:.94rem;color:#64748b}
.sticky-whatsapp{
  position:fixed;right:18px;bottom:18px;z-index:9999;
  background:#25D366;color:#fff;padding:14px 18px;border-radius:999px;
  box-shadow:0 14px 30px rgba(0,0,0,.22);font-weight:700
}
@media (max-width: 991px){
  .hero .inner,.grid-3,.grid-2{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
  .cta-band{flex-direction:column;align-items:flex-start}
}
@media (max-width: 640px){
  .nav-wrap{flex-direction:column;padding:12px 0}
  .nav{justify-content:center}
  .hero .inner{min-height:auto;padding:56px 0}
  .section{padding:56px 0}
  .content-card,.form-card,.card{padding:20px}
}
/*ABOUT*/
.about-card{
      background:#fff;
      padding:32px;
      border-radius:24px;
      box-shadow:0 15px 40px rgba(0,0,0,.08);
      border:1px solid #e2e8f0;
    }

    .about-card h2{
      margin-top:24px;
      color:#0f172a;
    }

    .about-card p{
      color:#475569;
      line-height:1.8;
      margin-bottom:16px;
    }

    .about-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:20px;
      margin-top:26px;
    }

    .about-box{
      background:#f8fafc;
      padding:20px;
      border-radius:16px;
      border:1px solid #e2e8f0;
    }

    .about-box h3{
      margin-top:0;
      color:#0f172a;
    }

    .about-box p{
      font-size:14px;
    }

    @media(max-width:768px){
      .about-grid{
        grid-template-columns:1fr;
      }
    }
    /*CONTACT*/
    .form-message{
      display:none;
      margin-bottom:16px;
      padding:14px 16px;
      border-radius:12px;
      font-size:14px;
      font-weight:500;
    }

    .form-message.success{
      display:block;
      background:#dcfce7;
      color:#166534;
      border:1px solid #86efac;
    }

    .form-message.error{
      display:block;
      background:#fee2e2;
      color:#991b1b;
      border:1px solid #fca5a5;
    }

    .btn[disabled]{
      opacity:.7;
      cursor:not-allowed;
    }
/*FOOTER*/
.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  margin-bottom:30px;
}

.footer h3{
  margin-bottom:12px;
  color:#fde68a;
}

.footer p{
  color:#cbd5e1;
  font-size:14px;
  line-height:1.6;
}

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

.footer-links li{
  margin-bottom:8px;
}

.footer-links a{
  color:#cbd5e1;
  text-decoration:none;
  font-size:14px;
}

.footer-links a:hover{
  color:#fff;
}

.footer-bottom{
  border-top:1px solid #334155;
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}

.footer-bottom p{
  margin:0;
  font-size:13px;
}

.footer-bottom-links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.footer-bottom-links a{
  color:#cbd5e1;
  font-size:13px;
  text-decoration:none;
}

.footer-bottom-links a:hover{
  color:#fff;
}

@media(max-width:900px){
  .footer-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .footer-grid{
    grid-template-columns:1fr;
  }
}
/*BLOG*/
.blog-list-card{
      background:#fff;
      border-radius:22px;
      padding:22px;
      box-shadow:0 10px 30px rgba(0,0,0,.08);
      border:1px solid #e2e8f0;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      height:100%;
      transition:.3s;
    }

    .blog-list-card:hover{
      transform:translateY(-4px);
      box-shadow:0 20px 40px rgba(0,0,0,.12);
    }

    .blog-list-card h3{
      margin-top:0;
      color:#0f172a;
    }

    .blog-list-card p{
      color:#475569;
      font-size:15px;
      line-height:1.6;
      margin-top: 0px;
    }

    .blog-list-card a{
      margin-top:2px;
      text-decoration:none;
      font-weight:700;
      color:#f59e0b;
    }

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

    @media(max-width:900px){
      .blog-grid{
        grid-template-columns:repeat(2,1fr);
      }
    }

    @media(max-width:600px){
      .blog-grid{
        grid-template-columns:1fr;
      }
    }
/* Blog Pages */
.blog-wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.blog-hero{
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  padding: 70px 0 50px;
}

.blog-meta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:14px;
  color:#cbd5e1;
  font-size:14px;
}

.blog-card{
  background:#fff;
  border-radius:24px;
  padding:32px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  border:1px solid rgba(15,23,42,.06);
}

.blog-card h2{
  margin-top:26px;
  margin-bottom:10px;
  color:#0f172a;
  font-size:28px;
}

.blog-card h3{
  margin-top:22px;
  margin-bottom:8px;
  color:#0f172a;
  font-size:22px;
}

.blog-card p{
  color:#475569;
  margin-bottom:16px;
  line-height:1.8;
}

.blog-card ul{
  padding-left:20px;
  color:#475569;
  line-height:1.8;
}

.blog-highlight{
  background:#fff7ed;
  border-left:4px solid #f59e0b;
  padding:18px 20px;
  border-radius:12px;
  margin:24px 0;
  color:#7c2d12;
}

.cta-box{
  margin-top:34px;
  background:linear-gradient(135deg,#f59e0b,#fbbf24);
  padding:24px;
  border-radius:20px;
  color:#111827;
}

.cta-box h3{
  margin-top:0;
  color:#111827;
}

.cta-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
}

.btn-dark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 20px;
  border-radius:999px;
  font-weight:700;
  background:#111827;
  color:#fff;
  text-decoration:none;
}

.related-links{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(2,1fr);
  margin-top:20px;
}

.related-links a{
  background:#f8fafc;
  padding:16px 18px;
  border-radius:16px;
  border:1px solid #e2e8f0;
  text-decoration:none;
  color:#0f172a;
  font-weight:600;
}

.related-links a:hover{
  background:#fff;
  border-color:#cbd5e1;
}

@media (max-width: 768px){
  .blog-card{
    padding:22px;
  }
  .related-links{
    grid-template-columns:1fr;
  }
}

/* Share Buttons */
.share-bar{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin:18px 0 28px;
}

.share-label{
  font-size:14px;
  font-weight:700;
  color:#334155;
}

.share-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid #e2e8f0;
  background:#fff;
  color:#0f172a;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  transition:.25s ease;
  cursor:pointer;
}

.share-btn:hover{
  transform:translateY(-1px);
  border-color:#cbd5e1;
  background:#f8fafc;
}

.share-btn svg{
  width:16px;
  height:16px;
  flex-shrink:0;
}

.copy-toast{
  display:none;
  margin-top:10px;
  font-size:14px;
  color:#166534;
  font-weight:600;
}

.blog-card-img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:16px;
  margin-bottom:14px;
}

.blog-list-card h3{
  margin-top:8px;
  margin-bottom: 5px;
}