/* Transport Page Styles */
.transport-page {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    padding-bottom: 4rem;
}

/* Hero Section */
.transport-hero {
    background-color: #0a1a44; /* Dark Blue */
    color: white;
    text-align: center;
    padding: 4rem 1rem;
    position: relative;
}

.transport-hero__icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.transport-hero__icon {
    height: 30px;
    width: auto;
}

.transport-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.transport-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Intro Section */
.transport-intro {
    text-align: center;
    padding: 3rem 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.transport-intro h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0a1a44;
    margin-bottom: 1.5rem;
}

.transport-intro ul {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
}

.transport-intro li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
    color: #333;
}

.transport-intro li::before {
    content: "•";
    color: #0a1a44;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

/* Vehicle Section */
.transport-vehicle-section {
    text-align: center;
    padding: 3rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.transport-vehicle-icon {
    height: 40px;
    width: auto;
    margin: 0 auto 1rem auto;
    display: block;
}

.transport-vehicle-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a1a44;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.transport-vehicle-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    display: inline-block;
    text-align: left;
}

.transport-vehicle-features li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
    color: #333;
}

.transport-vehicle-features li::before {
    content: "-";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #0a1a44;
}

.transport-gallery {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.transport-gallery img {
    width: 45%;
    min-width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    object-fit: cover;
    height: 250px;
}

/* Features Section (Flexibility, Transfers, B2B) */
.transport-feature {
    text-align: center;
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.transport-feature-icon {
    height: 35px;
    width: auto;
    margin: 0 auto 1rem auto;
    display: block;
}

.transport-feature h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a1a44;
    margin-bottom: 1rem;
}

.transport-feature p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* CTA Section */
.transport-cta {
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 2rem;
}

.transport-btn {
    display: inline-flex;
    align-items: center;
    background-color: #0a1a44;
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    gap: 0.8rem;
    transition: background-color 0.3s;
}

.transport-btn:hover {
    background-color: #152c60;
    color: white;
}

.transport-cta h4 {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a1a44;
}

/* Responsive */
@media (max-width: 768px) {
    .transport-gallery img {
        width: 100%;
    }
}
