
  :root {
    --green: #15803D;
    --blue: #0057B8;
    --footer: #111827;
    --light-green: #e8f5ee;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --white: #ffffff;
    --border: #e5e7eb;
    --bg-light: #f9fafb;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: 'Open Sans', sans-serif; color: var(--text-dark); }

  
  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: #fff; box-shadow: 0 1px 6px rgba(0,0,0,0.08);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 65px;
  }
  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-logo img { height: 48px; }
  .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
  .nav-links a {
    text-decoration: none; color: var(--text-dark);
    font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 14px;
    transition: color .2s;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--green); }
  .btn-wa {
    background: var(--green); color: #fff; border: none; cursor: pointer;
    padding: 10px 20px; border-radius: 4px;
    font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px;
    display: flex; align-items: center; gap: 7px; text-decoration: none;
    transition: background .2s;
    /*font-weight: 600;*/
  }
  .btn-wa:hover { background: #166534; }
  .btn-wa svg { width: 16px; height: 16px; fill: #fff; }

  /* PAGE SECTIONS */
  /*.page { display: none; }
  .page.active { display: block; }*/

  /* HERO */
  .hero {
    position: relative; min-height: 280px;
    background: linear-gradient(rgba(0,0,0,0.62), rgba(0,0,0,0.62)),
      url('images/Truck 3.jpeg') center/cover no-repeat;
    display: flex; align-items: center; padding: 60px 5%;
  }
  .hero-content { max-width: 560px; }
  .hero h1 {
    font-family: 'Montserrat', sans-serif; font-weight: 800;
    font-size: clamp(22px, 3vw, 36px); color: #fff; line-height: 1.2;
    text-transform: uppercase; margin-bottom: 10px;
  }
  .hero h1 span { color: var(--green); display: block; }
  .hero p { color: #d1d5db; font-size: 15px; margin-bottom: 24px; }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-outline {
    border: 1.5px solid #fff; color: #fff; background: transparent;
    padding: 10px 20px; border-radius: 4px; cursor: pointer;
    font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px;
    text-decoration: none; transition: all .2s;
  }
  .btn-outline:hover { background: #fff; color: var(--text-dark); }

  /* TRUST BADGES */
  .trust-badges {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px; padding: 40px 5%; background: #fff;
  }
  .badge {
    border: 1.5px solid var(--border); border-radius: 8px;
    padding: 22px 16px; text-align: center;
  }
  .badge-icon { width: 42px; height: 42px; margin: 0 auto 10px; }
  .badge-icon svg { width: 100%; height: 100%; stroke: var(--green); fill: none; stroke-width: 1.5; }
  .badge p {
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 11px; color: var(--blue); text-transform: uppercase; letter-spacing: .5px;
    line-height: 1.4;
  }

  /* SECTION TITLE */
  .section { padding: 56px 5%; }
  .section-title {
    text-align: center; font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: clamp(20px, 2.5vw, 26px);
    color: var(--blue); margin-bottom: 36px;
  }

  /* SERVICES GRID */
  .services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .service-card {
    border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden;
    text-align: center;
  }
  .service-card img { width: 100%; height: 110px; object-fit: cover; display: block; }
  .service-card p {
    font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 12px;
    padding: 12px 8px; color: var(--text-dark);
  }

  /* WHY CHOOSE */
  .why-section {
    background: linear-gradient(rgba(0,0,0,0.70), rgba(0,0,0,0.70)),
      url('images/blue truck.jpeg') center/cover;
    padding: 56px 5%;
  }
  .why-section h2 {
    text-align: center; font-family: 'Montserrat', sans-serif; font-weight: 800;
    font-size: 22px; color: #fff; text-transform: uppercase; margin-bottom: 32px;
    letter-spacing: 1px;
  }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 60px; max-width: 700px; margin: 0 auto; }
  .why-item { display: flex; align-items: flex-start; gap: 10px; }
  .why-item svg { width: 18px; height: 18px; stroke: var(--green); fill: none; flex-shrink: 0; margin-top: 2px; }
  .why-item span { color: #e5e7eb; font-size: 14px; }

  .why-item i {
  color: var(--green);
  font-size: 18px;
  width: 22px;
}

  /* TRUSTED BY */
  .trusted-section { padding: 48px 5%; background: #fff; }
  .trusted-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
  .trusted-logo { text-align: center; }
  .trusted-logo img { height: 60px; object-fit: contain; }
  .trusted-logo p { font-size: 12px; color: var(--text-gray); margin-top: 6px; font-weight: 600; }
  

  /* CTA BANNER */
  .cta-banner {
    background: var(--blue); padding: 28px 5%;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  }
  .cta-banner h3 {
    font-family: 'Montserrat', sans-serif; font-weight: 700; color: #fff; font-size: 20px;
  }
  .cta-banner p { color: #bfdbfe; font-size: 14px; }

  /* FOOTER */
  footer { background: var(--footer); padding: 48px 5% 24px; }
  .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
  .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
  .footer-logo img { height: 56px; }
  .footer-logo-name {
    font-family: 'Montserrat', sans-serif; font-weight: 800; color: #fff; font-size: 18px;
  }
  .footer-logo-sub { color: var(--green); font-size: 11px; font-weight: 600; text-transform: uppercase; }
  footer p { color: #9ca3af; font-size: 13.5px; line-height: 1.7; }
  footer h4 {
    font-family: 'Montserrat', sans-serif; font-weight: 700; color: #fff;
    font-size: 15px; margin-bottom: 16px;
  }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a {
    color: #9ca3af; text-decoration: none; font-size: 13.5px;
    transition: color .2s;
  }
  .footer-links a:hover, .footer-links a.active { color: var(--green); }
  .footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
  .footer-contact-item svg { width: 16px; height: 16px; stroke: #9ca3af; fill: none; flex-shrink: 0; margin-top: 2px; }
  .footer-contact-item span { color: #9ca3af; font-size: 13.5px; }
  .footer-bottom { border-top: 1px solid #374151; padding-top: 20px; text-align: center; }
  .footer-bottom p { color: #6b7280; font-size: 12px; }
  .footer-contact-item i {
  color: #9ca3af;
  width: 18px;
  margin-right: 10px;
}

  /* PAGE HERO (inner pages) */
  .page-hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
      url('images/Truck 4.jpeg') center/cover no-repeat;
    padding: 48px 5%; min-height: 130px; display: flex; flex-direction: column; justify-content: center;
  }
  .page-hero h1 {
    font-family: 'Montserrat', sans-serif; font-weight: 800;
    font-size: clamp(22px, 3vw, 32px); color: #fff; text-transform: uppercase; margin-bottom: 8px;
  }
  .breadcrumb { display: flex; align-items: center; gap: 8px; }
  .breadcrumb a { color: #d1d5db; font-size: 13px; text-decoration: none; }
  .breadcrumb span { color: #9ca3af; font-size: 13px; }
  .breadcrumb .current { color: #9ca3af; font-size: 13px; }

  /* ABOUT PAGE */
  .about-who { padding: 56px 5%; }
  .about-who-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: center; }
  .about-who-text h2 {
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 22px; color: var(--blue); margin-bottom: 20px;
  }
  .about-who-text p { color: var(--text-gray); font-size: 14.5px; line-height: 1.75; margin-bottom: 14px; }
  .about-who img { width: 100%; height: 260px; object-fit: cover; border-radius: 8px; }
  .about-stats {
    background: var(--light-green); border-radius: 8px; padding: 24px 28px; margin-top: 32px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  }
  .about-stat { text-align: center; }
  .about-stat svg { width: 28px; height: 28px; stroke: var(--green); fill: none; margin: 0 auto 8px; display: block; }
  .about-stat p {
    font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 11px;
    color: var(--text-dark); text-align: center; line-height: 1.4;
  }

  .mvv-section { padding: 0 5% 56px; }
  .mvv-section h2 {
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 22px;
    color: var(--blue); text-align: center; margin-bottom: 32px;
  }
  .mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .mvv-card {
    border: 1.5px solid var(--border); border-radius: 10px; padding: 32px 24px; text-align: center;
  }
  .mvv-card svg { width: 44px; height: 44px; stroke: var(--green); fill: none; margin: 0 auto 12px; display: block; }
  .mvv-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--green); margin-bottom: 14px; }
  .mvv-card p { color: var(--text-gray); font-size: 14px; line-height: 1.7; }

  /* SERVICES PAGE */
  .services-intro { padding: 40px 5% 0; text-align: center; }
  .services-intro p { color: var(--text-gray); font-size: 15px; max-width: 700px; margin: 0 auto; }
  .services-list { padding: 40px 5% 56px; }
  .services-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .service-item {
    border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden;
    display: flex; gap: 0;
  }
  .service-item img { width: 140px; height: 140px; object-fit: cover; flex-shrink: 0; }
  .service-item-body { padding: 20px; }
  .service-item-body h3 {
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px;
    color: var(--green); margin-bottom: 8px;
  }
  .service-item-body p { color: var(--text-gray); font-size: 13.5px; line-height: 1.65; }

  /* PROJECTS PAGE */
  .projects-section { padding: 56px 5%; }
  .projects-section h2 {
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 22px;
    color: var(--blue); text-align: center; margin-bottom: 32px;
  }
  .projects-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .project-card {
    border: 1.5px solid var(--border); border-radius: 8px; padding: 24px;
    display: flex; flex-direction: column; align-items: center; text-align: center;
  }
  .project-card img { height: 60px; object-fit: contain; margin-bottom: 16px; }
  .project-card p { color: var(--text-gray); font-size: 13px; line-height: 1.65; }
  .project-card .project-meta { margin-top: 14px; }
  .project-card .project-loc {
    font-size: 12px; color: var(--text-gray); margin-top: 6px;
  }
  .project-card .project-date { font-size: 12px; color: var(--text-gray); }

  /* CONTACT PAGE */
  .contact-section { padding: 48px 5%; display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; }
  .contact-info h2 {
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 20px;
    color: var(--blue); margin-bottom: 24px;
  }
  .contact-info-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
  .contact-info-item svg { width: 18px; height: 18px; stroke: var(--green); fill: none; flex-shrink: 0; margin-top: 2px; }
  .contact-info-item span { color: var(--text-gray); font-size: 14px; line-height: 1.6; }
  .contact-form h2 {
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 20px;
    color: var(--blue); margin-bottom: 24px;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
  .form-group { margin-bottom: 14px; }
  .form-group label {
    display: block; font-size: 13px; font-weight: 600; color: var(--text-dark);
    margin-bottom: 6px; font-family: 'Montserrat', sans-serif;
  }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; border: 1.5px solid var(--border); border-radius: 4px;
    padding: 10px 12px; font-size: 14px; font-family: 'Open Sans', sans-serif;
    color: var(--text-dark); background: #fff; outline: none; transition: border .2s;
  }
  .form-group input:focus, .form-group textarea:focus { border-color: var(--blue); }
  .form-group textarea { height: 110px; resize: vertical; }
  .btn-submit {
    width: 100%; background: var(--green); color: #fff; border: none; cursor: pointer;
    padding: 12px; border-radius: 4px; font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 14px; transition: background .2s;
  }
  .btn-submit:hover { background: #166534; }

  @media (max-width: 900px) {
    .trust-badges { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .about-who-grid { grid-template-columns: 1fr; }
    .about-who img { height: 200px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .mvv-grid { grid-template-columns: 1fr; }
    .services-list-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-section { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .trusted-logos { gap: 24px; }
  }
  @media (max-width: 600px) {
    .nav-links { display: none; }
    .trust-badges { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
  }

  .contact-map {
  margin-top: 24px;
  width: 100%;
  height: 260px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid var(--border);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* Notification styles - these won't affect your existing form design */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 9999;
    animation: slideIn 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.notification.success {
    background-color: #10b981;
    border-left: 4px solid #047857;
}

.notification.error {
    background-color: #ef4444;
    border-left: 4px solid #b91c1c;
}

.notification.info {
    background-color: #3b82f6;
    border-left: 4px solid #1e40af;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.btn-submit.disabled {
    opacity: 0.7;
    cursor: not-allowed;
}