/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

header h1 {
    color: orange;
    font-size: 1.6rem;
}

header h1 span {
    color: white;
}

header img {
    max-width: 100%;
    display: block;
    height: 80px;
}

.pcmenu {
    display: flex;
    gap: 25px;
}

.pcmenu a {
    color: #0B1D39;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.pcmenu a:hover {
    color: orange;
}

.bars {
    display: none;
    cursor: pointer;
    font-size: 28px;
}

/* MOBILE MENU */
#mobile-menu {
    display: none;
    flex-direction: column;
    background: #0B1D39;
}

#mobile-menu a {
    color: white;
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

#mobile-menu a:hover {
    background: orange;
}

/* CTA HERO */
.cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    min-height: 80vh;
    background-image: url("https://i.ibb.co/6RJ3HwW8/truck1.jpg");
    background-size: cover;
    background-position: center;
    text-align: center;
    color: orange;
}

.cta h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta button {
    background-color: orange;
    padding: 12px 50px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.cta button a {
    color: #0B1D39;
    text-decoration: none;
    font-weight: bold;
}

.cta button:hover {
    background-color: white;
    color: #0B1D39;
}

/* SERVICES */
.sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 50px 0;
}

.sections .section {
    max-width: 500px;
    padding: 30px 20px;
    margin: 10px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.sections .section:hover {
    transform: translateY(-5px);
}

.sections .section i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.sections .section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.sections .section p {
    font-size: 1rem;
    line-height: 1.5;
}

.sections .section:first-of-type {
    background-color: #0B1D39;
    color: white;
}

.sections .section:last-of-type {
    background-color: orange;
    color: #0B1D39;
}

.sections .section button {
    padding: 7px 25px;
    color: black;
    cursor: pointer;
    text-decoration: none;
}

.why-choose-us {
  background: #f8f9fa;
  padding: 70px 10%;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.2rem;
  color: #0B1D39;
  margin-bottom: 10px;
}

.why-sub {
  max-width: 650px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 1rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.why-card i {
  font-size: 2.2rem;
  color: orange;
  margin-bottom: 15px;
}

.why-card h3 {
  color: #0B1D39;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}


.quote-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
}

.quote-content {
  background: #fff;
  max-width: 600px;
  margin: 40px auto;
  height: 90vh;
  padding: 30px;
  border-radius: 8px;
  overflow-y: scroll;
}

.quote-content h2 {
  margin-bottom: 20px;
  color: #0B1D39;
}

.quote-content label {
  font-weight: bold;
  display: block;
  margin-top: 15px;
}

.quote-content input,
.quote-content select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
}

.quote-content button {
  margin-top: 20px;
  background: orange;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  font-weight: bold;
  cursor: pointer;
}

.quote-content button:hover {
  background: #0B1D39;
}

.close {
  float: right;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .quote-content {
    margin: 20px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  background: #fff;
  margin: 2% auto;
  padding: 30px;
  width: 90%;
  max-width: 600px;
  height: 90vh;
  overflow-y: scroll;
  border-radius: 8px;
}

.modal-content h2 {
  margin-bottom: 20px;
  color: #0B1D39;
}

.modal-content input,
.modal-content button {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
}

.close {
  float: right;
  font-size: 24px;
  cursor: pointer;
}

.alt-btn {
  display: block;
  text-align: center;
  margin-top: 10px;
  color: #0B1D39;
  font-weight: bold;
}



/* SECOND CTA */
.cta2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: #0B1D39;
    text-align: center;
    color: white;
}

.cta2 h1 {
    font-size: 2.5rem;
    color: orange;
    margin-bottom: 20px;
}

.cta2 p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta2 button {
    background-color: orange;
    padding: 12px 50px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.cta2 button a {
    color: #0B1D39;
    text-decoration: none;
    font-weight: bold;
}

.cta2 button:hover {
    background-color: white;
    color: #0B1D39;
}

/* CONTACT SECTION */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 60px 0;
}

.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
    margin-bottom: 60px;
}

.contact-section img {
    flex: 1 1 400px;
    max-width: 500px;
    border-radius: 8px;
    object-fit: cover;
}

.contact-info {
    flex: 1 1 400px;
    background: orange;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
}

.contact-info h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-info div {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    font-size: 1.2rem;
}

/* FORM SECTION */
.form-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
}

.form-text {
    flex: 1 1 350px;
    background: #0B1D39;
    color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.form-text h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.form-text p {
    font-size: 1rem;
    line-height: 1.5;
}

.form-box {
    flex: 2 1 450px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: 0.3s;
}

input:focus, textarea:focus {
    border-color: orange;
    outline: none;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.container button {
    background: orange;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: 0.3s;
}

.container button:hover {
    background: #0B1D39;
    color: orange;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .sections {
        flex-direction: column;
        align-items: center;
    }
    .sections .section {
        width: 90%;
    }
    .contact-section,
    .form-section {
        flex-direction: column;
    }
    .contact-info,
    .form-text,
    .form-box {
        text-align: center;
    }
    .pcmenu { 
        display: none; 
    }
    header .bars { 
        display: block; 
        color: #005a87; 
        font-size: 28px; 
    }
    .contact form input {
        width: 50vw;
    }
    .contact form button {
        cursor: default;
    }
}

/* MOBILE FIRST RESPONSIVE (600px and below) */
@media (max-width: 600px) {

    /* HEADER */
    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .bars {
        display: block;
        color: white;
        font-size: 28px;
        margin-top: 10px;
    }

    /* CTA HERO */
    .cta {
        padding: 40px 15px;
    }

    .cta h1 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1rem;
        max-width: 90%;
        text-align: center;
    }

    .cta button {
        width: 90%;
        padding: 12px 0;
        font-size: 1rem;
    }

    /* SERVICES SECTION */
    .sections {
        flex-direction: column;
        gap: 20px;
    }

    .sections .section {
        padding: 25px 15px;
        height: max-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .sections .section h2 {
        font-size: 1.5rem;
    }

    .sections .section p {
        font-size: 0.95rem;
    }

    /* CONTACT SECTION */
    .contact-section {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .contact-section img {
        max-width: 100%;
        max-height: 25vh;
    }

    .contact-info {
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-info p,
    .contact-info div {
        font-size: 0.95rem;
        text-align: center;
        justify-content: center;
    }

    /* FORM SECTION */
    .form-section {
        flex-direction: column;
        gap: 20px;
    }

    .form-text, .form-box {
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    .form-text h3 {
        font-size: 1.4rem;
    }

    .form-text p {
        font-size: 0.95rem;
    }

    .form-box input, .form-box textarea {
        font-size: 0.95rem;
    }

    .container button {
        width: 100%;
        padding: 12px 0;
        font-size: 1rem;
    }

    /* CTA2 */
    .cta2 {
        padding: 40px 15px;
    }

    .cta2 h1 {
        font-size: 1.8rem;
    }

    .cta2 p {
        font-size: 1rem;
    }

    .cta2 button {
        width: 90%;
        padding: 12px 0;
        font-size: 1rem;
    }
}

