/* =====================================================
   SLN ENTERPRISES
   COMPLETE STYLESHEET
===================================================== */


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #17263b;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}


/* =====================================================
   COLORS
===================================================== */

:root {
    --navy: #061b3d;
    --navy-light: #09295a;
    --blue: #075ebd;
    --blue-light: #eaf4ff;

    --white: #ffffff;
    --light: #f5f8fc;

    --text: #17263b;
    --muted: #657386;

    --border: #dce4ed;

    --green: #25d366;

    --shadow:
        0 15px 40px rgba(6, 27, 61, 0.10);
}


/* =====================================================
   CONTAINER
===================================================== */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =====================================================
   TOP INFORMATION BAR
===================================================== */

.top-bar {
    background: var(--navy);
    color: white;
}

.top-bar-inner {
    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


/* SMALL LOGO */

.top-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border: 2px solid white;
    border-radius: 50%;

    color: white;

    font-size: 11px;
    font-weight: 900;
}

.top-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.top-logo-text strong {
    font-size: 13px;
}

.top-logo-text span {
    margin-top: 3px;

    font-size: 8px;

    color: #a9c9ee;

    letter-spacing: 0.7px;
}


/* TOP CONTACT */

.top-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    flex-wrap: wrap;

    gap: 12px;

    font-size: 12px;
    font-weight: 700;
}

.top-contact a {
    color: var(--green);
}

.top-contact a:hover {
    color: #7fc1ff;
}

.top-divider {
    color: #5e7897;
}


/* =====================================================
   NAVIGATION
===================================================== */

.header {
    position: sticky;
    top: 0;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(10px);
}

.nav-wrapper {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* BRAND */

.brand {
    display: flex;
    align-items: center;

    gap: 11px;

    color: var(--navy);
}

.brand-logo {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: var(--navy);
    color: white;

    font-weight: 900;
    font-size: 15px;
}

.brand strong {
    display: block;

    font-size: 15px;

    letter-spacing: 0.4px;
}

.brand small {
    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 8px;

    letter-spacing: 0.8px;
}


/* NAVIGATION LINKS */

nav {
    display: flex;
    align-items: center;

    gap: 25px;
}

nav a {
    color: #3b4b5e;

    font-size: 14px;
    font-weight: 700;

    transition: 0.2s;
}

nav a:hover {
    color: var(--blue);
}

.nav-quote {
    padding: 11px 17px;

    border-radius: 8px;

    background: var(--navy);

    color: white !important;
}


/* MOBILE MENU BUTTON */

.menu-button {
    display: none;

    background: none;

    border: none;

    color: var(--white);

    font-size: 27px;

    cursor: pointer;
}


/* =====================================================
   HERO SECTION
===================================================== */

.hero {
    padding: 75px 0;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f1f7ff
        );
}

.hero-grid {
    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 60px;

    align-items: center;
}


/* HERO TEXT */

.hero-content {
    min-width: 0;
}

.hero-tag {
    display: inline-block;

    margin-bottom: 17px;

    color: var(--blue);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;
}

.hero h1 {
    margin-bottom: 25px;

    color: var(--navy);

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1;

    letter-spacing: -3px;
}

.hero h1 span {
    display: block;

    color: var(--blue);
}

.hero-content > p {
    max-width: 620px;

    margin-bottom: 28px;

    color: var(--muted);

    font-size: 18px;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}

.btn {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 21px;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 800;

    transition: 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    background: var(--blue);

    color: white;
}

.btn.primary:hover {
    background: var(--navy-light);
}

.btn.secondary {
    background: white;

    border: 1px solid #c8d4e0;

    color: var(--navy);
}


/* HERO FEATURES */

.hero-features {
    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 27px;
}

.hero-features div {
    color: #dde1e6;

    font-size: 12px;

    font-weight: 800;
}

.hero-features span {
    color: var(--blue);
}


/* =====================================================
   HERO IMAGE
===================================================== */

/*
   IMPORTANT:
   Your transport image is square.

   This CSS keeps the COMPLETE IMAGE visible.
*/

.hero-image {
    width: 100%;

    max-width: 590px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 22px;

    background: #ffffff;

    border: 1px solid var(--border);

    box-shadow:
        0 20px 50px rgba(6, 27, 61, 0.15);
}

.hero-image img {
    width: 100%;

    height: auto;

    display: block;

    aspect-ratio: 1 / 1;

    object-fit: contain;
}


/* =====================================================
   GENERAL SECTION
===================================================== */

.section {
    padding: 90px 0;
}

.section-heading {
    max-width: 700px;

    margin-bottom: 45px;
}

.section-heading > span {
    display: block;

    margin-bottom: 12px;

    color: var(--blue);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;
}

.section-heading h2 {
    margin-bottom: 14px;

    color: var(--navy);

    font-size: clamp(34px, 4.5vw, 54px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.section-heading p {
    color: var(--muted);
}

.section-heading.left {
    margin-bottom: 20px;
}


/* =====================================================
   SERVICES
===================================================== */

.service-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

.service-card {
    padding: 35px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 18px;

    box-shadow:
        0 7px 25px rgba(6, 27, 61, 0.04);

    transition: 0.25s;
}

.service-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow);
}

.service-card.service-main {
    background: var(--navy);

    color: white;
}

.service-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;

    border-radius: 14px;

    background: var(--blue-light);

    font-size: 25px;
}

.service-main .service-icon {
    background: rgba(255, 255, 255, 0.1);
}

.service-card h3 {
    margin-bottom: 13px;

    font-size: 24px;
}

.service-card p {
    margin-bottom: 22px;

    color: var(--muted);
}

.service-main p {
    color: #bdc9d8;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 9px 0;

    border-top: 1px solid var(--border);

    font-size: 14px;

    font-weight: 700;
}

.service-main li {
    border-color: rgba(255, 255, 255, 0.15);
}


/* =====================================================
   ROUTE SECTION
===================================================== */

.route-section {
    padding: 38px 0;

    background: var(--blue);

    color: white;
}

.route-content {
    display: flex;

    align-items: center;

    gap: 20px;
}

.route-icon {
    width: 55px;
    height: 55px;

    flex: 0 0 55px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.13);

    font-size: 24px;
}

.route-content small {
    color: #bddbff;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;
}

.route-content h2 {
    font-size: clamp(21px, 3vw, 32px);

    line-height: 1.15;
}


/* =====================================================
   FLEET
===================================================== */

.fleet-section {
    background: var(--light);
}

.fleet-grid {
    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 14px;
}

.fleet-card {
    padding: 25px 12px;

    text-align: center;

    background: white;

    border: 1px solid var(--border);

    border-radius: 15px;

    transition: 0.2s;
}

.fleet-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow);
}

.fleet-number {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    margin: 0 auto 14px;

    border-radius: 50%;

    background: var(--navy);

    color: white;

    font-weight: 900;
}

.fleet-card h3 {
    font-size: 15px;
}

.fleet-card p {
    margin-top: 3px;

    color: var(--muted);

    font-size: 12px;
}


/* =====================================================
   ABOUT
===================================================== */

.about-grid {
    display: grid;

    grid-template-columns: 1fr 380px;

    gap: 70px;

    align-items: start;
}

.about-text {
    max-width: 700px;

    color: var(--muted);

    font-size: 17px;
}

.advantages {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 13px;

    margin-top: 30px;
}

.advantages div {
    font-size: 14px;

    font-weight: 800;
}

.advantages b {
    margin-right: 5px;

    color: var(--blue);
}


/* =====================================================
   CONTACT CARD
===================================================== */

.contact-card {
    padding: 32px;

    background: var(--navy);

    color: white;

    border-radius: 20px;

    box-shadow: var(--shadow);
}

.contact-card > span {
    color: #79baff;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;
}

.contact-card h3 {
    margin: 10px 0 22px;

    font-size: 28px;
}

.contact-card a:not(.btn) {
    display: block;

    margin: 12px 0;

    color: #dbe8f6;

    font-size: 14px;

    word-break: break-word;
}

.contact-card p {
    margin-top: 22px;

    color: #bac8d8;

    font-size: 14px;
}

.gst-box {
    margin-top: 20px;

    padding: 13px;

    background: rgba(255, 255, 255, 0.07);

    border-radius: 8px;

    font-size: 11px;
}

.gst-box strong {
    display: block;

    margin-top: 3px;

    color: white;

    font-size: 13px;
}

.contact-button {
    width: 100%;

    margin-top: 20px;
}


/* =====================================================
   QUOTATION SECTION
===================================================== */

.quotation-section {
    padding: 90px 0;

    background: #edf5fc;
}

.quotation-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 60px;

    align-items: start;
}

.quotation-info > span {
    color: var(--blue);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;
}

.quotation-info h2 {
    margin: 12px 0 18px;

    color: var(--navy);

    font-size: clamp(34px, 4.5vw, 54px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.quotation-info > p {
    max-width: 520px;

    color: var(--muted);
}


/* QUOTATION STEPS */

.quotation-steps {
    margin-top: 30px;
}

.quotation-steps div {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 13px 0;

    border-bottom: 1px solid var(--border);
}

.quotation-steps strong {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--navy);

    color: white;

    font-size: 10px;
}

.quotation-steps span {
    font-size: 13px;

    font-weight: 700;
}


/* =====================================================
   QUOTATION FORM
===================================================== */

.quotation-form {
    padding: 35px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 20px;

    box-shadow: var(--shadow);
}

.quotation-form h3 {
    color: var(--navy);

    font-size: 25px;
}

.required-note {
    margin-bottom: 22px;

    color: var(--muted);

    font-size: 11px;
}


/* FORM ROW */

.form-row {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin-bottom: 15px;
}


/* FORM LABEL */

.quotation-form label {
    display: block;

    color: #37485b;

    font-size: 12px;

    font-weight: 800;
}


/* FORM INPUTS */

.quotation-form input,
.quotation-form select,
.quotation-form textarea {
    display: block;

    width: 100%;

    margin-top: 7px;

    padding: 13px;

    background: white;

    color: var(--text);

    border: 1px solid var(--border);

    border-radius: 8px;

    outline: none;
}

.quotation-form input:focus,
.quotation-form select:focus,
.quotation-form textarea:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 3px rgba(7, 94, 189, 0.09);
}

.quotation-form textarea {
    min-height: 120px;

    margin-bottom: 18px;

    resize: vertical;
}


/* SUBMIT BUTTON */

.submit-button {
    width: 100%;

    padding: 15px;

    border: none;

    border-radius: 9px;

    background: var(--blue);

    color: white;

    font-weight: 900;

    cursor: pointer;

    transition: 0.2s;
}

.submit-button:hover {
    background: var(--navy);
}


/* FORM STATUS */

.form-status {
    min-height: 20px;

    margin-top: 13px;

    text-align: center;

    font-size: 13px;

    font-weight: 700;
}

.form-status.success {
    color: #15834b;
}

.form-status.error {
    color: #c62828;
}


/* =====================================================
   FINAL CALL TO ACTION
===================================================== */

.final-cta {
    padding: 60px 0;

    background: var(--blue);

    color: white;
}

.final-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.final-cta span {
    color: #c5e0ff;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;
}

.final-cta h2 {
    margin-top: 8px;

    font-size: clamp(30px, 4vw, 45px);

    line-height: 1.05;
}

.cta-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}

.btn.light {
    background: white;

    color: var(--navy);
}

.btn.dark {
    background: var(--navy);

    color: white;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    padding: 60px 0 20px;

    background: var(--navy);

    color: white;
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1.5fr 1fr;

    gap: 40px;

    padding-bottom: 45px;
}

.footer-brand-block strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 0.4px;
}

.footer-brand-block small {
    display: block;
    margin-top: 5px;
    color: var(--accent);
    font-size: 10px;
    letter-spacing: 1px;
}

.footer-brand-column > p {
    margin-top: 18px;
}

.footer-logo {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;
}

.footer-logo > div {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border: 1px solid #5d718a;

    border-radius: 9px;

    font-weight: 900;
}

.footer-logo span {
    font-weight: 900;
}

.footer-logo small {
    display: block;

    margin-top: 3px;

    color: #91a5ba;

    font-size: 8px;
}

.footer-grid p {
    color: #a8b7c6;

    font-size: 13px;
}

.footer-grid h4 {
    margin-bottom: 15px;

    font-size: 14px;
}

.footer-grid a {
    display: block;

    margin: 9px 0;

    color: #a8b7c6;

    font-size: 13px;
}

.footer-grid a:hover {
    color: white;
}

.footer-grid a[href="#services"] {
    color: #8fc3ff;
}

.footer-grid a[href="#services"]:hover {
    color: #ffffff;
}

.footer-grid a[href="#quotation"] {
    color: var(--accent);
    font-weight: 800;
}

.footer-grid a[href="#quotation"]:hover {
    color: #ffd27a;
}

.copyright {
    width: min(1180px, calc(100% - 40px));

    margin: auto;

    padding-top: 20px;

    border-top: 1px solid #203550;

    color: #7e91a5;

    font-size: 12px;
}


/* =====================================================
   WHATSAPP FLOATING BUTTON
===================================================== */

.whatsapp-button {
    position: fixed;

    right: 20px;
    bottom: 20px;

    z-index: 999;

    width: 56px;
    height: 56px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--green);

    color: white;

    font-size: 24px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.2);

    transition: 0.2s;
}

.whatsapp-button:hover {
    transform: scale(1.08);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        max-width: 650px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .quotation-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .container {
        width: calc(100% - 28px);
    }


    /* TOP BAR */

    .top-bar-inner {
        padding: 9px 0;

        flex-direction: column;

        align-items: flex-start;
    }

    .top-contact {
        justify-content: flex-start;

        font-size: 10px;
    }

    .top-divider {
        display: none;
    }


    /* NAVIGATION */

    .nav-wrapper {
        min-height: 68px;
    }

    .menu-button {
        display: block;
    }

    nav {
        display: none;

        position: absolute;

        top: 68px;

        left: 14px;
        right: 14px;

        padding: 10px;

        background: white;

        border: 1px solid var(--border);

        border-radius: 12px;

        box-shadow: var(--shadow);

        flex-direction: column;

        align-items: stretch;

        gap: 2px;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 11px;
    }

    nav .nav-quote {
        text-align: center;
    }


    /* HERO */

    .hero {
        padding: 55px 0;
    }

    .hero h1 {
        font-size: 44px;

        letter-spacing: -2px;
    }

    .hero-content > p {
        font-size: 16px;
    }


    /* HERO IMAGE */

    .hero-image {
        width: 100%;

        max-width: 500px;

        margin: 0 auto;

        border-radius: 16px;
    }

    .hero-image img {
        width: 100%;

        height: auto;

        aspect-ratio: 1 / 1;

        object-fit: contain;
    }


    /* SECTIONS */

    .section {
        padding: 70px 0;
    }


    /* FLEET */

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* ADVANTAGES */

    .advantages {
        grid-template-columns: 1fr;
    }


    /* FORM */

    .form-row {
        grid-template-columns: 1fr;
    }

    .quotation-form {
        padding: 23px;
    }


    /* CTA */

    .final-cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 420px) {

    .brand strong {
        font-size: 13px;
    }

    .brand small {
        font-size: 7px;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .route-content {
        align-items: flex-start;
    }

    .route-icon {
        width: 45px;
        height: 45px;

        flex: 0 0 45px;
    }

}


/* =====================================================
   VISUAL REFRESH
===================================================== */

:root {
    --navy: #101820;
    --navy-light: #1d3142;
    --blue: #1264c5;
    --blue-light: #e8f2ff;
    --light: #f4f7fa;
    --text: #17222d;
    --muted: #627181;
    --border: #d9e2eb;
    --accent: #f5a623;
    --green: #20b965;
    --shadow: 0 18px 45px rgba(16, 24, 32, 0.12);
}

body {
    background:
        radial-gradient(circle at 90% 8%, rgba(18, 100, 197, 0.08), transparent 28rem),
        #ffffff;
    color: var(--text);
}

.top-bar {
    background: var(--navy);
    border-bottom: 3px solid var(--accent);
}

.top-bar-content {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
    color: #c5d2de;
    font-size: 12px;
    font-weight: 700;
}

.top-info a {
    color: #70e59e;
}

.top-info a:hover {
    color: #ffffff;
}

.header {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 5px 24px rgba(16, 24, 32, 0.06);
}

nav {
    justify-content: flex-end;
}

nav a {
    color: #354454;
}

.quote-nav {
    background: var(--accent);
    color: var(--navy) !important;
    box-shadow: 0 8px 18px rgba(245, 166, 35, 0.25);
}

.quote-nav:hover {
    background: #e39412;
    color: var(--navy) !important;
}

.hero {
    padding: 96px 0 105px;
    background:
        linear-gradient(120deg, #ffffff 0%, #f3f8ff 58%, #e7f1fb 100%);
}

.hero-grid {
    gap: 72px;
}

.hero-label,
.section-heading > span,
.quotation-info > span {
    color: var(--blue);
    letter-spacing: 2.5px;
}

.hero h1,
.section-heading h2,
.quotation-info h2 {
    color: var(--navy);
    letter-spacing: 0;
}

.hero h1 span {
    color: var(--blue);
}

.hero-content > p {
    color: #526474;
}

.btn-primary,
.btn.primary {
    background: var(--accent);
    color: var(--navy);
    box-shadow: 0 10px 22px rgba(245, 166, 35, 0.22);
}

.btn-primary:hover,
.btn.primary:hover {
    background: #e39412;
    color: var(--navy);
}

.dark-btn {
    background: var(--accent);
    color: var(--navy);
}

.dark-btn:hover {
    background: #e39412;
    color: var(--navy);
}

.btn-outline,
.btn.secondary {
    border-color: #b9c9d8;
}

.trust-points span::first-letter,
.hero-features span,
.advantages b {
    color: var(--accent);
}

.hero-photo,
.hero-image {
    border: 8px solid #ffffff;
    border-radius: 26px;
    box-shadow: 0 24px 55px rgba(16, 24, 32, 0.18);
}

.hero-photo {
    overflow: visible;
    background: #f8fafc;
}

.hero-photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.image-caption,
.about-photo-label {
    background: rgba(16, 24, 32, 0.92);
    border-left: 4px solid var(--accent);
}

.image-caption strong {
    color: var(--accent);
}

.image-caption span {
    color: #e7f1fb;
}

.about-photo-label strong {
    color: var(--accent);
}

.about-photo-label span {
    color: #e7f1fb;
}

.section {
    padding: 100px 0;
}

.services-grid,
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.service-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(16, 24, 32, 0.06);
}

.service-card:hover,
.fleet-card:hover {
    border-color: #9fc1e4;
}

.service-image {
    min-height: 250px;
    display: grid;
    place-items: center;
    padding: 12px;
    background: #f8fafc;
}

.service-image img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    object-position: center;
}

.service-body {
    padding: 30px;
}

.service-icon {
    background: var(--blue-light);
    color: var(--blue);
}

.route-banner,
.route-section,
.final-cta {
    padding: 38px 0;
    background: var(--blue);
    color: white;
}

.route-icon {
    color: var(--accent);
}

.fleet-section,
.poster-section {
    background: #ffffff;
}

.fleet-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.fleet-card {
    padding: 0 0 20px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    background: #ffffff;
}

.fleet-image {
    height: auto;
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    padding: 8px 14px;
    background: #ffffff;
    border-bottom: 0;
}

.fleet-image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.fleet-card h3 {
    margin-top: 17px;
    color: var(--navy);
}

.fleet-card p {
    margin-bottom: auto;
}

.about-section {
    background: #ffffff;
}

.about-photo {
    overflow: visible;
    border-radius: 16px;
    background: #f8fafc;
}

.about-photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.about-content > p,
.about-text {
    color: lab(97.71% -0.56 -3.45);
}

h1,
h2,
h3,
p,
a,
span,
strong,
small {
    overflow-wrap: break-word;
}

.quotation-section {
    background: #eaf2f9;
}

.quotation-form {
    border-top: 4px solid var(--accent);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.submit-button,
.whatsapp-submit {
    background: var(--green);
}

.submit-button:hover,
.whatsapp-submit:hover {
    background: #15904c;
}

footer {
    background: var(--navy);
}

.whatsapp-button,
.floating-whatsapp {
    background: var(--green);
    box-shadow: 0 10px 25px lab(100% 0.01 -0.01 / 0.3);
}

@media (max-width: 700px) {
    .top-info {
        justify-content: flex-start;
        gap: 7px 12px;
        font-size: 10px;
    }

    .hero {
        padding: 64px 0 72px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .services-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        min-height: 190px;
    }

    .service-image img {
        max-height: 220px;
    }

    .fleet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section {
        padding: 72px 0;
    }
}