* {
    
    box-sizing: border-box;
}
.roboto-custom {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "width" 100;
}

html, body {
    height: 100%;
}


body {
  font-family: "Roboto", sans-serif;
  color: #35250e;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}
header {
    background-color: #000;
    color:#38BDF8;
    width: 100%;

}
header h1 {
    font-size: 1.5rem;
    margin: 0;
    padding: 1rem;
}
h1, h2, h3 {
    background-color: transparent;
}

.navbar {
    display: flex;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    flex-direction: column; /* Stack hamburger and menu vertically */
    gap: 0.5rem;
    position: relative;
}

.hamburger {
    background-color: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
    padding: 0.5rem 1rem;
}

.nav-links ul {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0;
    padding: 0.5rem 0;
    list-style: none;
    width: max-content;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    position: absolute;
    top: 100%; /* Position below hamburger */
    right: 0;
    z-index: 10;
}

.nav-links.active ul {
    display: flex;
    background-color: #000;
    padding: 2rem;
}

.nav-links.active ul li a {
    color: #fff;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
}
.nav-links ul li a:hover {
    color: #38BDF8;
    font-weight: 600;
    border-left: #38BDF8 4px solid;
}
.hero {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #def5ff;
    color: #0a0000;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color:#374151;
}   
#font-color {
    color: #38bdf8;
}
.hero-image {
  display: none;
}
   
.hero-button, .review-button {
    background-color: #38BDF8;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    margin: 0 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease;
}
.hero-button:last-child {
    border: 1px solid black;
    color: black;
    background-color: transparent;
}
.hero-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.background {
    background-color: #f9fafb;
}
.professional p, .testimonials p {
    color: #383a3b;
}
.services, .Fleet, .professional, .testimonials h1 {
    padding: 2rem 1rem;
    background-color: #f9fafb;
    margin:auto;
    text-align: center;
}

.container {
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-card, .fleet-card, .driver-card, .testimonial-card, .contact-item{
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover, .fleet-card:hover, .driver-card:hover, .testimonial-card:hover, .contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.write-review {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}
.fleet-card img {
    width: 100%;
    max-width: 220px;
    height: 140px;
    object-fit: cover;
    border-radius: 0.5rem;
    display: block;
    margin: 0 auto 1rem auto;
}
.fleet-card p {
    color: #6b7280;
    font-size: 1rem;
}
.fleet-card li {
    font-size: 0.9rem;
}
.driver-card img {
    width: 100%;
    max-width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 1rem auto;
}
.testimonials p:nth-child(1), .contact h1,p, .quote h2,p{
    text-align: center;

}
.contact-item {
    min-width: 300px;
    margin: auto;
}

  
.contact-item p {
    color: #6b7280;
    margin: 0.5rem 0;
}

#quote-page {
    background-color: #011c27;
}
.quote h2,p {
    color: #fff;
    text-align: center;
    
}
#payment-gps  {
    background-color: #38bff86c;
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    max-width: 500px;
    margin: 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;

}

.quote form {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem 1rem;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote form label {
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #374151;
    display: block;
}

.quote form input,
.quote form select,
.quote form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    background: #f9fafb;
    color: #222;
    box-sizing: border-box;
}

.quote form textarea {
    resize: vertical;
}

.quote form button[type="submit"] {
    background-color: #38BDF8;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.quote form button[type="submit"]:hover {
    background-color: #0ea5e9;
}

.quote form i.icon-required {
    color: #e11d48;
    margin-left: 0.25rem;
    font-size: 1rem;
    vertical-align: middle;
}

footer {
    background-color: #000;
    color: #fff;
    font-size: 0.9rem;
    text-align: left;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: auto;
    margin-bottom: 0;    
}
footer h2 {
    color: #38BDF8;
}
footer h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}
footer .services, .contact h3{
    text-align: left;
    padding: 0;
    margin-bottom: 1rem;
}
footer p,ul { 
    margin-bottom: 0.5rem;
    color: #9CA3AF;
    text-align: left;
    margin-left: -0.5rem;
    padding-left: 1rem;
}
footer a {
    color: #38BDF8;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
/* Modal styles */
.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  max-width: 400px;
  text-align: center;
  position: relative;
}
.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
}
#chat-modal.modal {
    position: fixed;
    right: 1.5rem;
    bottom: 5rem; /* adjust as needed to sit above the chat icon */
    left: auto;
    top: auto;
    width: 320px;
    max-width: 90vw;
    background: #fff;
    box-shadow: 0 4px 24px rgba(56,189,248,0.12);
    border-radius: 0.5rem;
    z-index: 9999;
    display: none;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

#chat-modal .modal-content {
    padding: 1.5rem 1rem 1rem 1rem;
    position: relative;
    text-align: left;
}

.close-chat {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #9b9b9b;
}

/* Responsive: horizontal nav for wider screens */
@media (min-width: 600px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .header-title {
        margin-bottom: 0;
    }
    nav ul {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
    }
    nav li {
        width: auto;
    }
    .nav-links {
        flex-direction: row;
        align-items: center;
        position: static;
        gap: 0;
        background-color: transparent;
    }
    .hamburger {
        display: none;
    }
    .nav-links ul {
        position: static;
        background: none;
        box-shadow: none;
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        display: flex !important;
    }
    .nav-links ul li a {
        color:#fff;
        font-weight: 600;
        padding: 0.5rem 1rem;
        transition: border-color 0.3s ease;
    }
    .nav-links ul li a:hover {
        border-left: none;
        border-bottom: 2px solid #38BDF8;
        color: #38BDF8;
        font-weight: 600;
        background-color: transparent;
    }

    .nav-links ul li:nth-child(5) {
        background-color: #38BDF8;
        border-radius: 0.375rem;
        padding: 0.75rem;
        margin-right: 3px;
    }
    .nav-links ul li:nth-child(5):hover a {
        color: #000;
        border: none;
       
    }
    .quote form {
        padding: 2rem 2rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
    }
    .quote form label {
        margin-bottom: 0.5rem;
    }
    .quote form input,
    .quote form select,
    .quote form textarea {
        margin-bottom: 1rem;
        padding: 0.5rem;
        border: 1px solid #ccc;
        border-radius: 0.375rem;
        width: 100%;
        box-sizing: border-box;
    }
    .quote form textarea {
        grid-column: span 2;
        resize: vertical;
    }
    .quote form button[type="submit"] {
        grid-column: span 2;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;    
        margin-top: 1rem;
}
}
    
@media (min-width: 600px) and (max-width: 900px) {
    .nav-links ul {
        gap: 0.5rem;
    }
    .nav-links ul li a {
        padding: 0.5rem 0.5rem;
        font-size: 0.95rem;
    }
    .nav-links ul {
        flex-wrap: wrap;
    }
}
/* Larger screens: adjust hero layout and form width */
@media (min-width: 900px) {
    .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
    }
 
    footer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        text-align: left;
        gap: 2rem;
    }
    footer > div {
        flex: 1 1 200px;
        margin-bottom: 0;
    }
    .footer {
        flex-basis: 100%;
        text-align: center;
        margin-top: 1rem;
    }
    .quote form {
        max-width: 700px;
        padding: 2.5rem 2rem;
    }
    .hero {
        flex-direction: row;
        text-align: left;
        align-items: center;
        justify-content: center;
        gap: 3rem;
    }
    .hero-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
    .hero-image-wrapper {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        min-width: 350px;
        max-width: 800px;
        height: auto;
    }
    .hero-image {
        display: block;
        width: 100%;
        max-width: 500px;
        height: auto;
        border-radius: 0.5rem;
        box-shadow: 0 4px 24px rgba(56,189,248,0.12);
        position: relative;
        z-index: 1;
    }
    
}
@media (min-width: 1200px) {
    footer {
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .footer {
        align-self: center;
    }
}
/* Icon styles */
.fa-solid.fa-car-side, .fa-solid.fa-location-dot, .fa-solid.fa-van-shuttle, .fa-solid.fa-clock {
    font-size: 2rem;
    color: #38BDF8;
    margin-bottom: 1rem;
}

.fa-solid.fa-greater-than, .fa-solid.fa-phone, .fa-solid.fa-envelope, .fa-solid.fa-map-pin, .fa-solid.fa-lock  {
    color: #38BDF8;
    margin-right: 0.5rem;
}

.fa-regular.fa-comment {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background-color: #38BDF8;
    color: #fff;
    margin-right: 0.5rem;
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 1000;
}
.fa-solid.fa-star {
    color: #FFD700;
    margin-right: 0.5rem;
}
.fa-regular.fa-star {
    color: #D3D3D3;
    margin-right: 0.5rem;
}
.fa-solid.fa-asterisk {
    margin-left: 0.15rem;
    margin-bottom: 0.75rem;
    font-size: 0.5rem;
    vertical-align: middle;
}
