/* General Body Styling */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.transport-header {
    background: url('images/transport.jpeg') no-repeat center center/cover;
    height: 400px;
    position: relative;
    color: white;
}

.transport-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 40px;
    box-sizing: border-box;
    z-index: 2;
}

.transport-header .logo {
    height: 60px;
    object-fit: contain;
    margin: 0;
    align-self: flex-start;
}

.home-icon-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.home-icon-link {
    color: white;
    font-size: 28px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.home-icon-link:hover {
    color: #ffc107;
}

.fade-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 35px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #fff 100%);
    z-index: 1;
}


.logo {
    width: 150px;
    margin: 0 auto;
}

/* home-icon */
.home-icon-link {
    color: white;
    font-size: 26px;
    transition: color 0.3s ease;
}

.home-icon-link:hover {
    color: #FFA500;
}

.home-icon-container {
    position: absolute;
    top: 20px;
    right: 20px;
}

.home-icon {
    vertical-align: middle;
}


/* Main Content Layout */
.main-content {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    flex-wrap: wrap;
}

/* Form Section */
.booking-container {
    width: 45%;
}

.form-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.get-quotations button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Slideshow */
.slideshow-container {
    width: 36%;
    margin: 0 auto;
    position: relative;
    margin-top: 20px;
}

.mySlides img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 12px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    background-color: rgba(0,0,0,0.3);
    border-radius: 50%;
    user-select: none;
}
.next { right: 10px; }
.prev { left: 10px; }

/* Footer Section */
.site-footer {
    width: 100%; /* ensures it spans full page width */
    background-color: #062177;
    color: #fff;
    padding: 10px 100px 100px;
    position: auto;
    bottom: 0;
  }
  
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-brand img {
    max-width: 120px;
    margin-bottom: 10px;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 8px;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  .footer-contact p {
    margin: 6px 0;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
  }


/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
    .booking-container,
    .slideshow-container,
    .extra-content {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* Instructions Section (legacy version) */
.instructions-section {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.instructions-section h2 {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.instructions-section p {
    font-size: 1em;
    margin-bottom: 10px;
    color: #333;
}

.instructions-section a {
    color: #007bff;
    text-decoration: none;
}

.instructions-section a:hover {
    text-decoration: underline;
}

.instructions-section h3 {
    font-size: 1.4em;
    color: #003366;
    margin-top: 20px;
}

/* Popular Drivers Section (legacy version) */
.popular-drivers-section {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-top: 30px;
}

.popular-drivers-section h2 {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.popular-drivers-section ul {
    list-style: none;
    padding: 0;
}

.popular-drivers-section li {
    font-size: 1.2em;
    margin-bottom: 8px;
    color: #333;
}

/* ✅ New Style for Combined Extra Content */
.extra-content {
    max-width: 75%;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-box {
    background-color: #ffffff;
    border-left: 6px solid #007bff;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

.info-box:hover {
    transform: translateY(-3px);
}

.info-box h2 {
    margin-top: 0;
    color: #003366;
}

.info-box p,
.info-box li {
    font-size: 16px;
    color: #333;
}

.info-box a {
    color: #007bff;
    text-decoration: none;
}

.info-box a:hover {
    text-decoration: underline;
}

.popular-drivers ul {
    list-style-type: none;
    padding-left: 0;
}

.popular-drivers li {
    padding: 6px 0;
}
