* {
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    background-image: linear-gradient(to left, transparent, #cbe9f6);
}
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #0093d0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
    padding: 0 20px;
}
.navbar-left .logo img {
    height: 110px;
    width: auto;
    margin: 0 20px;
}
.navbar-right {
    display: flex;
    gap: 10px;
}
.navbar-right a {
    color: #f2f2f2;
    text-align: center;
    padding: 1.25em;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}
.navbar-right a:hover {
    background-color: #fcd34d;
    color: #45627e;
}
.header-section {
    position: relative;
    min-height: 350px;
    background: url("transport_header.jpg") center/cover no-repeat;
    display: flex;
    gap: 2rem;
    padding: 20px;
}
.header-quote {
    text-align: center;
    align-content: center;
    align-self: center;
    color: white;
    font-size: 2rem;
    margin: 20px auto;
    padding: 10px;
    width: 50%;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.4);
}
.header-text {
    width: 60%;
    text-align: right;
    color: white;
    font-size: 1.25rem;
    margin: 20px;
    padding: 20px;
    box-sizing: border-box;
    align-self: center; 
    background-color: rgba(0, 0, 0, 0.4);
}
.transport_content {
    padding: 2rem;
    text-align: center;
}
.transport_content p {
    max-width: 900px;
    margin: 0 auto 1rem auto;
    line-height: 1.6;
    font-size: 1.15rem;
}
.info_section {
    background-color: #f5f7fd;
}
.info_container {
    padding: 2rem;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}
.info_container h2 {
    color: #003366;
    font-size: 2.25rem;
}
.info_container em {
    color: #555;
    font-size: 1.25rem; 
}
.info_container ul {
    text-align: left;
    max-width: 900px;
    margin: 1rem auto;
    line-height: 1.6;
    font-size: 1.15rem;
}
.info_container li strong {
    color: #000;
}
.transport_img {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
    padding: 0;
    gap: 0;
}
.transport_img div {
    flex: 1 0 25%;
    padding: 0;
    margin: 0;
}
.transport_img img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
    margin: 0;
    padding: 0;
}
.types_section {
    background-color: #f5f7fd;
    padding: 4rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.types_container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.types_container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.types_container h2 {
    color: #003366;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.types_container p {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.types_container .button {
    background-color: #007BFF;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s ease;
}
.types_container .button:hover {
    background-color: #0056b3;
}
form {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

form h1,
.contact-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2f4b70;
    margin: 0 auto 30px;
    position: relative;
    border-bottom: solid #d9d7d7;
    width: 80%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.full-width {
    grid-column: span 2;
}

label {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: #2a2a2a;
}

input,
textarea,
select {
    padding: 12px 14px;
    border: 1px solid #ccd5e0;
    border-radius: 8px;
    font-size: 1rem;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #2a72c7;
    outline: none;
    box-shadow: 0 0 0 3px rgba(42, 114, 199, 0.1);
}

textarea {
    resize: vertical;
}

button {
    display: block;
    margin: 30px auto 0;
    background-color: #1b4676;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #15395f;
}

footer {
    padding: 0;
    background-color: #0093d0;
    color: #ffffff;
}
footer .container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 2rem;
}
footer .container .split-1 {
    display: flex;
    flex-direction: column;
    padding: 10px 40px;
}
footer .container .split-1 a {
    padding-bottom: 5px;
}
footer .container .split-1 p {
    padding-bottom: 5px;
}
footer .split-1 img {
    max-width: 175px;
    height: auto;
}
footer .container .split-2 {
    display: flex;
    flex-direction: column;
    padding: 10px 40px;
    margin-top: 10px;
}
footer .container .split-2 h3 {
    padding-bottom: 5px;
}
footer a {
    color: #ffffff;
    text-decoration: none;
}
footer a:hover {
    color: #fcd34d;
}
footer > p {
    text-align: center;
    padding-top: 0.5rem;
    font-size: 0.9rem;
    background-color: #0093d0;
    margin: 0;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    background-color: #0093d0;
    font-size: 0.9rem;
    margin: 0;
}
.footer-links a {
    color: #ffffff;
    text-decoration: none;
}
.footer-links a:hover {
    color: #fcd34d;
}
.map-embed {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
    max-width: 450px;
}

@media screen and (max-width: 1080px) {
    .navbar a {
        font-size: 115%;
    }
    button {
        width: 50%;
    }
}
@media screen and (max-width: 750px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }
    .navbar-right {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .navbar-right a {
        width: 100%;
        text-align: center;
        padding: 0.5em 0;
        font-size: 100%;
    }
    .logo {
        display: none;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .full-width {
        grid-column: span 1;
    }
    button {
        width: 75%;
    }
}

@media screen and (max-width: 450px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }
    .navbar-right {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .navbar-right a {
        width: 100%;
        text-align: center;
        padding: 1em 0;
        font-size: 110%;
    }

    footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    footer .split-1,
    footer .split-2 {
        align-items: center;
    }
    footer .split-1,
    footer .split-2 h3 {
        margin-top: 0;
        margin-bottom: 0;
    }
    footer .split-1 p {
        margin-top: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    footer .split-1 img {
        max-width: 60vw;
    }
    .map-embed {
        aspect-ratio: auto;
        height: 250px;
    }
}
