/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* PAGE LOAD FADE */

body {
  opacity: 0;
  transition: opacity 0.6s ease;
}
html {
    scroll-behavior: smooth;
}

body.loaded {
  opacity: 1;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #fff;
}

html {
  scroll-behavior: smooth;
}

.header {
  background: rgba(13, 27, 42, 0.95);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.35s ease;
}

.header.scrolled {
  background: rgba(8, 17, 29, 0.98);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.header.scrolled .navbar {
  padding: 12px 24px;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #fca311;
}

.nav-btn {
  background: #fca311;
  color: #000;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.nav-btn:hover {
  opacity: 0.9;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* HERO */
.hero {
  min-height: calc(100vh - 90px);
  background:
    linear-gradient(90deg, rgba(8,17,29,0.98) 0%, rgba(8,17,29,0.85) 38%, rgba(8,17,29,0.35) 70%),
    url("../images/truck-hero.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 40px;
  padding: 40px 8% 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  color: white;
}

.eyebrow {
  color: #fca311;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: 3.5rem;
  max-width: 800px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  max-width: 700px;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 14px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.primary {
  background: #fca311;
  color: #000;
}

.secondary {
  border: 2px solid white;
  color: white;
}

/* MOBILE */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .nav-links,
  .nav-btn {
    display: none;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-links.active {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: #0d1b2a;
    flex-direction: column;
    padding: 20px;
    gap: 18px;
  }
}
.stats {
  background: #ffffff;
  padding: 70px 24px;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-box {
  background: #f8f9fa;
  padding: 35px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e5e5e5;
}

.stat-box h2 {
  color: #fca311;
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.stat-box p {
  font-weight: 600;
  color: #333;
}

@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}
/* SERVICES */

.services {
  padding: 90px 24px;
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header p {
  color: #fca311;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #0d1b2a;
}

.services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    position:relative;
    overflow:hidden;
    transition:all .35s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-top:5px solid transparent;
    cursor: pointer;
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 60px rgba(0,0,0,.18);
    border-top:5px solid #fca311;
}
.service-card h3 {
  color: #0d1b2a;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}
/* WHY US */

.why-us {
  padding: 100px 24px;
  background: white;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-tag {
  color: #fca311;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-text h2 {
  font-size: 2.7rem;
  color: #0d1b2a;
  margin-bottom: 20px;
}

.why-text p {
  color: #555;
  line-height: 1.8;
}

.features {
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.feature span {
  color: #fca311;
  font-size: 1.3rem;
  font-weight: bold;
}

.why-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .why-container {
    grid-template-columns: 1fr;
  }

  .why-text h2 {
    font-size: 2rem;
  }
}

/* CTA SECTION */

.cta {
  background: #0d1b2a;
  padding: 100px 24px;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: auto;
}

.cta h2 {
  color: white;
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 35px;
}

.cta-btn {
  display: inline-block;
  background: #fca311;
  color: #000;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .cta h2 {
    font-size: 2rem;
  }
}
/* FOOTER */

/* PROFESSIONAL FOOTER */

.footer {
  background: #08111d;
  color: white;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  padding: 90px 8%;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr;
  gap: 60px;
}

.footer-column h3,
.footer-column h4 {
  margin-bottom: 28px;
  position: relative;
}

.footer-column h3::after,
.footer-column h4::after {
  content: "";
  display: block;
  width: 55px;
  height: 3px;
  background: #fca311;
  margin-top: 14px;
}

.footer-column p,
.footer-column li {
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 14px;
}

.footer-column a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #fca311;
  padding-left: 5px;
}

.footer-column i {
  color: #fca311;
  margin-right: 10px;
}

.footer-contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.footer-contact-item > i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border: 1px solid rgba(252,163,17,0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fca311;
  margin-right: 0;
}

.footer-contact-item strong {
  display: block;
  margin-bottom: 6px;
  color: white;
}

.footer-contact-item p {
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  padding: 28px 20px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.65);
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    padding: 70px 24px;
  }
}
/* PAGE HERO */

.page-hero {
  background:
  linear-gradient(90deg, rgba(8,17,29,0.98) 0%, rgba(8,17,29,0.85) 38%, rgba(8,17,29,0.35) 70%),
  url("../images/truck-hero.png") center right / cover no-repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 24px;
  text-align: center;
  color: white;
}

.page-hero-content {
  max-width: 800px;
  margin: auto;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

/* QUOTE PAGE */

.quote-section {
  padding: 90px 24px;
  background: #f8f9fa;
}

.quote-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 50px;
  align-items: start;
}

.quote-info {
  background: #0d1b2a;
  color: white;
  padding: 45px;
  border-radius: 16px;
}

.quote-info h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.quote-info p {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
}

.quote-benefits {
  margin-top: 30px;
}

.quote-benefits p {
  margin-bottom: 12px;
}

.quote-form {
  background: white;
  padding: 45px;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-group textarea {
  resize: vertical;
}

.form-btn {
  width: 100%;
  background: #fca311;
  color: #000;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: 0.3s;
}

.form-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .quote-container,
  .form-row {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .quote-info,
  .quote-form {
    padding: 30px;
  }
}
.form-success {
  display: none;
  background: #e8f7ee;
  color: #16723a;
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 18px;
  font-weight: 600;
  border-left: 5px solid #16723a;
}
/* ==========================
   CONTACT PAGE
========================== */

.contact-section {
  padding: 90px 24px;
  background: #f8f9fa;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  background: #0d1b2a;
  color: white;
  padding: 45px;
  border-radius: 16px;
}

.contact-info h2 {
  font-size: 2.2rem;
  margin: 20px 0;
}

.contact-info p {
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

.contact-detail {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.15);
}

.contact-detail h4 {
  color: #fca311;
  margin-bottom: 8px;
}

.contact-form {
  background: white;
  padding: 45px;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  font-family: inherit;
  font-size: .95rem;
  transition: .3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #fca311;
  box-shadow: 0 0 0 4px rgba(252,163,17,.15);
}

.contact-form textarea {
  resize: vertical;
}

@media (max-width:768px){

  .contact-container{
      grid-template-columns:1fr;
  }

  .contact-info,
  .contact-form{
      padding:30px;
  }

}
/* ANIMATIONS */

.fade-in {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
/* PREMIUM INTERACTIONS */

.btn,
.nav-btn,
.cta-btn,
.form-btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn:hover,
.nav-btn:hover,
.cta-btn:hover,
.form-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card,
.testimonial-card,
.stat-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.testimonial-card:hover,
.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.10);
}

.why-image {
  overflow: hidden;
  border-radius: 16px;
}

.why-image img {
  transition: transform 0.5s ease;
}

.why-image:hover img {
  transform: scale(1.06);
}
/* ACTIVE NAVIGATION */

.nav-links a.active {
  color: #fca311;
  font-weight: 700;
}

.nav-links a.active::after {
  width: 100%;
}

/* ABOUT PAGE */

.about-section {
  padding: 100px 24px;
  background: white;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.6rem;
  color: #0d1b2a;
  margin-bottom: 20px;
}

.about-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-image {
  overflow: hidden;
  border-radius: 16px;
}

.about-image img {
  width: 100%;
  display: block;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.06);
}

.mission-section {
  padding: 90px 24px;
  background: #f8f9fa;
}

.mission-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.mission-card {
  background: white;
  padding: 35px;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  transition: 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.10);
}

.mission-card h3 {
  color: #0d1b2a;
  margin-bottom: 15px;
}

.mission-card p {
  color: #555;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .about-container,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .about-text h2 {
    font-size: 2rem;
  }
}
/* SCROLL PROGRESS BAR */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: #fca311;
  z-index: 9999;
  transition: width 0.1s ease;
}
/* SERVICES PAGE */

.services-page {
  padding: 100px 24px;
  background: #f8f9fa;
}

.services-page-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-detail-card {
  background: white;
  padding: 35px;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.10);
}

.service-icon{
    width:70px;
    height:70px;
    background:#0d1b2a;
    color:#fca311;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:2rem;
    margin-bottom:25px;
    transition:.35s;
}
.service-card:hover .service-icon{
    transform:rotate(8deg) scale(1.12);
}
.service-detail-card h3 {
  color: #0d1b2a;
  margin-bottom: 14px;
}
.learn-more{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:20px;
    color:#fca311;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}
.service-card:hover .learn-more{
    transform:translateX(8px);
}

.service-detail-card p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}

.service-detail-card ul {
  list-style: none;
}

.service-detail-card li {
  color: #444;
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.service-detail-card li::before {
  content: "•";
  color: #fca311;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.broker-trust {
  padding: 100px 24px;
  background: white;
}

.trust-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.trust-text h2 {
  font-size: 2.5rem;
  color: #0d1b2a;
  margin-bottom: 20px;
}

.trust-text p {
  color: #555;
  line-height: 1.8;
}

.trust-list {
  background: #0d1b2a;
  padding: 35px;
  border-radius: 16px;
}

.trust-item {
  color: white;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-weight: 500;
}

.trust-item:last-child {
  border-bottom: none;
}

@media (max-width: 992px) {
  .services-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-page-grid {
    grid-template-columns: 1fr;
  }

  .trust-text h2 {
    font-size: 2rem;
  }
}
/* FLEET PAGE */

.fleet-section {
  padding: 100px 24px;
  background: #f8f9fa;
}

.fleet-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.fleet-card {
  background: white;
  padding: 35px;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  transition: 0.3s ease;
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.10);
}

.fleet-card h3 {
  color: #0d1b2a;
  margin-bottom: 15px;
}

.fleet-card p {
  color: #555;
  line-height: 1.8;
}

.coverage-section {
  padding: 100px 24px;
  background: white;
}

.coverage-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: center;
}

.coverage-text h2 {
  font-size: 2.5rem;
  color: #0d1b2a;
  margin-bottom: 20px;
}

.coverage-text p {
  color: #555;
  line-height: 1.8;
}

.coverage-points {
  margin-top: 28px;
}

.coverage-points p {
  margin-bottom: 12px;
  font-weight: 500;
}

.coverage-box {
  background: #0d1b2a;
  color: white;
  padding: 40px;
  border-radius: 18px;
}

.coverage-box h3 {
  margin-bottom: 25px;
}

.coverage-stat {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 20px 0;
}

.coverage-stat span {
  display: block;
  color: #fca311;
  font-size: 2rem;
  font-weight: 800;
}

.coverage-stat p {
  color: rgba(255,255,255,0.8);
}

@media (max-width: 992px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coverage-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .coverage-text h2 {
    font-size: 2rem;
  }
}
/* PREMIUM HERO REDESIGN */

/* FIXED PREMIUM HERO */

/* CLEAN PROFESSIONAL HERO */

.hero {
  min-height: 90vh;
  background:
    linear-gradient(rgba(8,17,29,0.82), rgba(8,17,29,0.82)),
    url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1600&q=80");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  min-height: 82vh;
  padding: 70px 8%;
}

.hero-left {
  color: white;
  font-size: 3.5rem;
  max-width: 900px;
}

.hero-left h1 {
  color: white;
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-description {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 800px;
  margin-bottom: 28px;
}

.hero-checks {
  color: white;
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
  font-weight: 600;
}

.hero-right {
  display: none;
}

@media (max-width: 768px) {
  .hero-left h1 {
    font-size: 2.5rem;
  }

  .hero {
    padding: 70px 24px;
  }
}

.floating-card {
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  background: rgba(8, 17, 29, 0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 24px;
  z-index: 5;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.floating-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.floating-item:last-child {
  border-bottom: none;
}

.floating-item h3 {
  color: #fca311;
  font-size: 2rem;
}

.floating-item p {
  color: rgba(255,255,255,0.85);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 70px 24px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-checks {
    justify-items: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .floating-card {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 25px;
  }

  .hero-truck {
    height: 330px;
  }
}
/* NEW CLEAN HERO */

.hero-new {
  background: linear-gradient(135deg, #0d1b2a 0%, #08111d 100%);
  padding: 80px 8%;
  overflow: hidden;
}

.hero-new-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-new-text {
  color: white;
}

.hero-new-text h1 {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-new-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-badges span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 14px;
  border-radius: 30px;
  color: white;
  font-weight: 600;
}

.hero-new-image {
  position: relative;
}

.hero-new-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 26px;
  display: block;
  box-shadow: 0 35px 80px rgba(0,0,0,0.35);
}

.hero-stats-card {
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
  width: 230px;
  background: rgba(8,17,29,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.hero-stats-card div {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.hero-stats-card div:last-child {
  border-bottom: none;
}

.hero-stats-card h3 {
  color: #fca311;
  font-size: 2rem;
}

.hero-stats-card p {
  color: rgba(255,255,255,0.85);
  margin: 0;
}

@media (max-width: 900px) {
  .hero-new-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-badges,
  .hero-buttons {
    justify-content: center;
  }

  .hero-stats-card {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 25px;
  }

  .hero-new-text h1 {
    font-size: 2.5rem;
  }

  .hero-new-image img {
    height: 330px;
  }
}
/* TRUST STRIP */

.trust-strip{

    background:#ffffff;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    padding:45px 8%;

}

.trust-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.trust-item span{

    font-size:2rem;

}

.trust-item h3{

    color:#0d1b2a;

    margin-bottom:8px;

    font-size:1.1rem;

}

.trust-item p{

    color:#666;

    line-height:1.6;

}

@media(max-width:900px){

.trust-strip{

grid-template-columns:1fr;

}

}

/* SAFETY PAGE */

.safety-section {
  padding: 100px 24px;
  background: #f8f9fa;
}

.safety-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.safety-card {
  background: white;
  padding: 35px;
  border-radius: 18px;
  border-top: 5px solid #fca311;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: .35s ease;
}

.safety-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0,0,0,.14);
}

.safety-card h3 {
  color: #0d1b2a;
  margin-bottom: 14px;
}

.safety-card p {
  color: #555;
  line-height: 1.8;
}

.safety-process {
  padding: 100px 24px;
  background: white;
}

.process-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.process-text h2 {
  font-size: 2.5rem;
  color: #0d1b2a;
  margin-bottom: 20px;
}

.process-text p {
  color: #555;
  line-height: 1.8;
}

.process-list {
  background: #0d1b2a;
  padding: 40px;
  border-radius: 20px;
}

.process-step {
  color: white;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-weight: 500;
}

.process-step:last-child {
  border-bottom: none;
}

@media (max-width: 992px) {
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .process-text h2 {
    font-size: 2rem;
  }
}
/* =========================
   CAREERS PAGE
========================= */

.careers-section{

padding:100px 8%;

background:#f8f9fa;

}

.careers-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:50px;

}

.career-card{

background:white;

padding:35px;

border-radius:18px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

}

.career-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.career-card h3{

margin-bottom:15px;

color:#0d1b2a;

}

.career-card p{

color:#666;

line-height:1.8;

}

.application-section{

padding:100px 8%;

background:white;

}

.application-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.application-text h2{

font-size:2.5rem;

margin-bottom:20px;

color:#0d1b2a;

}

.application-text p{

color:#666;

line-height:1.8;

margin-bottom:30px;

}

.application-box{

background:#0d1b2a;

padding:40px;

border-radius:20px;

color:white;

}

.application-box h3{

margin-bottom:25px;

}

.application-box ul{

list-style:none;

padding:0;

}

.application-box li{

padding:14px 0;

border-bottom:1px solid rgba(255,255,255,.12);

}

.application-box li:last-child{

border-bottom:none;

}

@media(max-width:900px){

.careers-grid{

grid-template-columns:1fr;

}

.application-container{

grid-template-columns:1fr;

}

.application-text{

text-align:center;

}

}
.fade-in {
  opacity: 1 !important;
  transform: none !important;
}
.footer-contact{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
}

.contact-item span{
    font-size:1.3rem;
    min-width:25px;
    color:#fca311;
}

.contact-item p{
    margin:0;
    color:#ffffff;
    line-height:1.7;
}

/* BACK TO TOP BUTTON */

.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #fca311;
  color: #0d1b2a;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  transition: 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-5px);
  background: #e59500;
}

.back-to-top.show {
  display: flex;
}
.hero-image img {
    animation: floatTruck 6s ease-in-out infinite;
}

@keyframes floatTruck {

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}
/* SUCCESS PAGE */

.success-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d1b2a, #08111d);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.success-box {
  background: white;
  max-width: 600px;
  padding: 55px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #fca311;
  color: #0d1b2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  font-weight: 800;
}

.success-box h1 {
  color: #0d1b2a;
  margin-bottom: 16px;
}

.success-box p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.success-secondary {
  margin-left: 12px;
  border: 2px solid #0d1b2a;
  color: #0d1b2a;
}

@media (max-width: 600px) {
  .success-box {
    padding: 35px 25px;
  }

  .success-secondary {
    margin-left: 0;
    margin-top: 12px;
  }
}
body.loaded .success-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d1b2a, #08111d);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

body.loaded .success-box {
  background: white;
  max-width: 600px;
  padding: 55px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

body.loaded .success-icon {
  width: 80px;
  height: 80px;
  background: #fca311;
  color: #0d1b2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  font-weight: 800;
}
.simple-service-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.service-card .learn-more {
  display: none;
}