/* ============================================================
   TRANSPORT SERVICES
   FINAL COMPLETE STYLE.CSS
   DESIGN + LAYOUT ONLY
============================================================ */

/* ============================================================
   01. ROOT VARIABLES
============================================================ */

:root {
    --primary: #078bd1;
    --primary-dark: #056da5;
    --primary-light: #eaf8ff;

    --navy: #082f4d;
    --navy-2: #123f5e;

    --text: #29485d;
    --muted: #6d8597;

    --white: #ffffff;
    --bg: #f6fbfe;
    --bg-blue: #edf9ff;

    --border: #d9e9f2;
    --border-light: #e8f1f6;

    --success: #16b77b;
    --danger: #dc3545;

    --shadow-sm: 0 5px 20px rgba(8, 47, 77, 0.06);
    --shadow: 0 18px 55px rgba(8, 47, 77, 0.10);
    --shadow-lg: 0 25px 70px rgba(8, 47, 77, 0.14);

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;

    --container: 1180px;
}


/* ============================================================
   02. RESET
============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 0% 15%,
            rgba(39, 176, 235, 0.08),
            transparent 28%
        ),
        #f7fbfe;

    color: var(--text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    font-size: 16px;
    line-height: 1.6;

    overflow-x: hidden;
}

body,
input,
select,
textarea,
button {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--navy);
    font-weight: 800;
    line-height: 1.2;
}

p {
    margin-top: 0;
}


/* ============================================================
   03. CONTAINER
============================================================ */

.container {
    width: min(
        var(--container),
        calc(100% - 40px)
    );

    margin-left: auto;
    margin-right: auto;
}


/* ============================================================
   04. MAIN
============================================================ */

main {
    width: 100%;
    min-height: 300px;
}


/* ============================================================
   05. SKIP LINK
============================================================ */

.skip-link {
    position: absolute;
    top: -100px;
    left: 15px;

    z-index: 99999;

    padding: 10px 16px;

    background: var(--navy);
    color: #fff;

    border-radius: 8px;
}

.skip-link:focus {
    top: 15px;
}


/* ============================================================
   06. GENERIC BUTTONS
============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 48px;

    padding: 12px 22px;

    border: 1px solid transparent;
    border-radius: 11px;

    font-size: 14px;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        #0799df,
        #057abd
    );

    color: #fff;

    box-shadow:
        0 9px 24px rgba(7, 139, 209, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(7, 139, 209, 0.28);
}

.btn-outline {
    background: #fff;
    color: var(--navy);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}


/* ============================================================
   07. BOOKING PAGE
============================================================ */

.booking-section,
.booking-page,
.booking-wrapper,
#booking {
    position: relative;

    width: 100%;

    padding:
        52px 20px
        70px;

    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(70, 190, 238, 0.13),
            transparent 25%
        ),
        radial-gradient(
            circle at 95% 15%,
            rgba(0, 153, 225, 0.10),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #f9fdff 0%,
            #edf9fe 100%
        );
}


/* ============================================================
   08. BOOKING TOP HEADING
============================================================ */

.booking-section h1,
.booking-page h1,
.booking-wrapper h1 {
    max-width: 900px;

    margin:
        0 auto 10px;

    color: var(--navy);

    font-size:
        clamp(32px, 4vw, 48px);

    font-weight: 850;

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.booking-section > p,
.booking-page > p,
.booking-wrapper > p {
    max-width: 760px;

    margin:
        0 auto 30px;

    color: var(--muted);

    text-align: center;

    line-height: 1.7;
}


/* ============================================================
   09. BOOKING FORM
============================================================ */

.booking-form,
form.booking-form,
#bookingForm {
    position: relative;

    width: 100%;
    max-width: 1080px;

    margin: 0 auto;

    padding: 38px;

    background:
        rgba(255, 255, 255, 0.97);

    border:
        1px solid rgba(157, 204, 227, 0.55);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow);

    overflow: hidden;
}


/* Top accent */

.booking-form::before,
form.booking-form::before,
#bookingForm::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            #057abd,
            #09a6e8,
            #65d0f5
        );
}


/* ============================================================
   10. BOOKING SECTIONS
============================================================ */

.booking-form section,
.booking-form .form-section,
.booking-form .booking-step,
.booking-form .form-group-section {
    width: 100%;

    margin:
        0 0 30px;

    padding:
        0 0 30px;

    border-bottom:
        1px solid var(--border-light);
}

.booking-form section:last-child,
.booking-form .form-section:last-child,
.booking-form .booking-step:last-child,
.booking-form .form-group-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;

    border-bottom: 0;
}


/* ============================================================
   11. BOOKING HEADINGS
============================================================ */

.booking-form h2 {
    margin:
        0 0 7px;

    color: var(--navy);

    font-size: 26px;
    font-weight: 800;

    letter-spacing: -0.4px;
}

.booking-form h3 {
    margin:
        0 0 18px;

    color: var(--navy);

    font-size: 20px;
    font-weight: 750;
}

.booking-form p {
    color: var(--muted);
    line-height: 1.65;
}


/* ============================================================
   12. STEP LABEL
============================================================ */

.booking-step-number,
.step-number,
.form-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 34px;
    height: 26px;

    margin-bottom: 9px;
    padding: 0 10px;

    border-radius: 20px;

    background: var(--primary-light);
    color: var(--primary-dark);

    font-size: 11px;
    font-weight: 850;

    letter-spacing: 0.5px;
}


/* ============================================================
   13. FORM GRID
============================================================ */

.booking-form .form-row,
.booking-form .row,
.booking-form .form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px 22px;

    width: 100%;

    margin: 0;
}


/* ============================================================
   14. FORM GROUP
============================================================ */

.booking-form .form-group,
.booking-form .field,
.booking-form .mb-3 {
    width: 100%;

    margin:
        0 0 18px;
}

.booking-form .form-row .form-group,
.booking-form .form-grid .form-group {
    margin-bottom: 0;
}


/* ============================================================
   15. LABELS
============================================================ */

.booking-form label {
    display: block;

    margin:
        0 0 8px;

    color: #28475c;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.4;
}

.booking-form label .required {
    color: var(--primary);
}

.booking-form label span {
    color: inherit;
}


/* ============================================================
   16. INPUTS
============================================================ */

.booking-form input:not([type="submit"]):not([type="button"]):not([type="hidden"]):not([type="file"]),
.booking-form select,
.booking-form textarea {
    display: block;

    width: 100%;

    min-height: 50px;

    padding:
        12px 15px;

    border:
        1px solid var(--border);

    border-radius: 11px;

    outline: none;

    background: #fff;

    color: #173d57;

    font-size: 15px;

    line-height: 1.4;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.booking-form textarea {
    min-height: 115px;
    resize: vertical;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #9aafbd;
}

.booking-form input:hover,
.booking-form select:hover,
.booking-form textarea:hover {
    border-color: #bdd9e8;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 4px
        rgba(7, 139, 209, 0.10);

    background: #fff;
}


/* ============================================================
   17. SELECT
============================================================ */

.booking-form select {
    appearance: auto;
    cursor: pointer;
}


/* ============================================================
   18. SERVICE FEE
============================================================ */

.booking-form .service-fee,
.booking-form .fee-display,
.service-fee,
.fee-display {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    margin-top: 7px;

    color: var(--primary-dark);

    font-size: 14px;

    font-weight: 800;
}


/* ============================================================
   19. SERVICE CARDS
============================================================ */

.services-section,
.services-wrapper,
#services {
    width: 100%;

    padding:
        70px 20px;

    background: #fff;
}

.services-section .container,
.services-wrapper .container,
#services .container {
    max-width: var(--container);
    margin: 0 auto;
}

.services-section h2,
.services-wrapper h2,
#services h2 {
    margin-bottom: 10px;

    color: var(--navy);

    font-size:
        clamp(30px, 4vw, 44px);

    font-weight: 850;

    text-align: center;

    letter-spacing: -1px;
}

.services-section > p,
.services-wrapper > p,
#services > p {
    max-width: 700px;

    margin:
        0 auto 35px;

    color: var(--muted);

    text-align: center;
}


/* Cards grid */

.services-grid,
.service-grid,
.services-list {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


/* Individual card */

.service-card,
.services-grid .card,
.service-item {
    position: relative;

    min-height: 205px;

    padding: 26px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f7fcff
        );

    border:
        1px solid #dceef6;

    border-radius: 20px;

    box-shadow:
        0 10px 30px
        rgba(8, 47, 77, 0.055);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card::after,
.service-item::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    top: -55px;
    right: -50px;

    border-radius: 50%;

    background:
        rgba(78, 194, 237, 0.09);
}

.service-card:hover,
.service-item:hover {
    transform: translateY(-4px);

    border-color: #c4e6f5;

    box-shadow:
        0 18px 42px
        rgba(8, 47, 77, 0.10);
}

.service-card h3,
.service-item h3 {
    position: relative;
    z-index: 1;

    margin:
        0 0 9px;

    color: var(--navy);

    font-size: 20px;
    font-weight: 800;
}

.service-card p,
.service-item p {
    position: relative;
    z-index: 1;

    margin:
        0 0 20px;

    color: var(--muted);

    font-size: 14px;
}

.service-card .price,
.service-item .price {
    position: relative;
    z-index: 2;

    display: flex;

    justify-content: space-between;
    align-items: center;

    padding-top: 15px;

    border-top:
        1px solid var(--border-light);

    color: var(--primary-dark);

    font-size: 15px;
    font-weight: 850;
}


/* ============================================================
   20. PAYMENT SECTION
============================================================ */

.payment-section,
.payment-details,
.booking-payment {
    width: 100%;

    margin-top: 25px;

    padding: 32px;

    background:
        linear-gradient(
            145deg,
            #f3fbff,
            #ffffff
        );

    border:
        1px solid #d4eaf5;

    border-radius: 18px;

    text-align: center;
}

.payment-section h2,
.payment-details h2,
.booking-payment h2 {
    margin:
        0 0 18px;

    color: var(--navy);

    font-size: 24px;
}

.payment-section p,
.payment-details p,
.booking-payment p {
    color: var(--muted);
}

.payment-section img,
.payment-details img,
.booking-payment img {
    width: min(280px, 100%);

    margin:
        18px auto 22px;

    border-radius: 15px;

    box-shadow:
        0 12px 35px
        rgba(8, 47, 77, 0.12);
}


/* ============================================================
   21. FILE UPLOAD
============================================================ */

.booking-form input[type="file"] {
    width: 100%;

    min-height: 50px;

    padding: 10px;

    border:
        1px dashed #afd3e4;

    border-radius: 11px;

    background: #f8fcff;

    color: #587184;

    cursor: pointer;
}


/* ============================================================
   22. FORM BUTTONS
============================================================ */

.booking-form button,
.booking-form input[type="submit"],
.booking-form input[type="button"],
.booking-form .btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding:
        12px 24px;

    border:
        1px solid transparent;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #0799df,
            #057abd
        );

    color: #fff;

    font-size: 14px;

    font-weight: 800;

    box-shadow:
        0 8px 22px
        rgba(7, 139, 209, 0.20);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.booking-form button:hover,
.booking-form input[type="submit"]:hover,
.booking-form input[type="button"]:hover,
.booking-form .btn:hover {
    transform: translateY(-2px);

    filter: brightness(1.03);

    box-shadow:
        0 13px 30px
        rgba(7, 139, 209, 0.27);
}


/* ============================================================
   23. BOOKING INFORMATION
============================================================ */

.booking-info,
.booking-notice,
.delivery-info {
    width: 100%;
    max-width: 1080px;

    margin:
        22px auto 0;

    padding:
        18px 22px;

    background: #fff;

    border:
        1px solid #d4eaf5;

    border-radius: 14px;

    color: #5a7385;

    font-size: 14px;

    line-height: 1.7;
}

.booking-info strong,
.booking-notice strong,
.delivery-info strong {
    color: var(--navy);
}


/* ============================================================
   24. SUCCESS / THANK YOU
============================================================ */

.booking-success,
.success-message,
.thank-you {
    width: min(650px, calc(100% - 30px));

    margin:
        45px auto;

    padding: 40px;

    background: #fff;

    border:
        1px solid #d8edf6;

    border-radius: 22px;

    text-align: center;

    box-shadow: var(--shadow);
}

.booking-success h1,
.success-message h1,
.thank-you h1 {
    margin-bottom: 12px;

    color: var(--navy);

    font-size: 32px;
}

.booking-success p,
.success-message p,
.thank-you p {
    color: var(--muted);
}


/* ============================================================
   25. FOOTER
============================================================ */

footer {
    width: 100%;

    margin: 0;

    background:
        linear-gradient(
            180deg,
            #f2faff,
            #eaf6fc
        );

    border-top:
        1px solid #d8ebf4;
}

footer .container,
.footer-container {
    width:
        min(
            var(--container),
            calc(100% - 40px)
        );

    margin:
        0 auto;
}


/* Footer main */

.footer-main {
    padding:
        48px 0 35px;
}


/* Footer grid */

.footer-grid {
    display: grid;

    grid-template-columns:
        1.45fr
        1fr
        1.2fr
        1fr;

    gap: 40px;

    align-items: start;
}

footer h3,
footer h4 {
    margin:
        0 0 15px;

    color: var(--navy);

    font-size: 18px;

    font-weight: 800;
}

footer p {
    margin:
        0 0 12px;

    color: #5c7485;

    font-size: 14px;

    line-height: 1.7;
}

footer ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

footer li {
    margin-bottom: 9px;
}

footer a {
    color: #557084;

    font-size: 14px;

    transition:
        color 0.2s ease;
}

footer a:hover {
    color: var(--primary);
}


/* Footer bottom */

.footer-bottom {
    padding:
        17px 0;

    background:
        rgba(220, 240, 250, 0.65);

    border-top:
        1px solid #d4e8f2;
}

.footer-bottom .container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    margin: 0;

    color: #668092;

    font-size: 13px;
}


/* ============================================================
   26. ALERTS
============================================================ */

.alert {
    width: 100%;

    margin-bottom: 18px;

    padding: 13px 16px;

    border-radius: 10px;

    font-size: 14px;
}

.alert-success {
    background: #eafaf4;
    border: 1px solid #bcebd7;
    color: #11744f;
}

.alert-danger {
    background: #fff1f2;
    border: 1px solid #f4c5ca;
    color: #a52834;
}

.alert-info {
    background: #edf8ff;
    border: 1px solid #c8e7f7;
    color: #17658d;
}


/* ============================================================
   27. UTILITY
============================================================ */

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.hidden {
    display: none !important;
}


/* ============================================================
   28. TABLET
============================================================ */

@media (max-width: 1000px) {

    .services-grid,
    .service-grid,
    .services-list {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 30px;
    }

}


/* ============================================================
   29. TABLET / SMALL LAPTOP
============================================================ */

@media (max-width: 850px) {

    .booking-section,
    .booking-page,
    .booking-wrapper,
    #booking {
        padding:
            42px 16px
            55px;
    }

    .booking-form,
    form.booking-form,
    #bookingForm {
        padding: 30px;
    }

    .booking-form .form-row,
    .booking-form .row,
    .booking-form .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .booking-form .form-row .form-group,
    .booking-form .form-grid .form-group {
        margin-bottom: 18px;
    }

}


/* ============================================================
   30. MOBILE
============================================================ */

@media (max-width: 600px) {

    body {
        font-size: 15px;
    }

    .container {
        width:
            calc(100% - 24px);
    }

    .booking-section,
    .booking-page,
    .booking-wrapper,
    #booking {
        padding:
            28px 12px
            42px;
    }

    .booking-section h1,
    .booking-page h1,
    .booking-wrapper h1 {
        font-size: 31px;

        letter-spacing: -0.8px;
    }

    .booking-section > p,
    .booking-page > p,
    .booking-wrapper > p {
        font-size: 14px;

        margin-bottom: 22px;
    }

    .booking-form,
    form.booking-form,
    #bookingForm {
        padding:
            22px 16px;

        border-radius: 17px;
    }

    .booking-form h2 {
        font-size: 22px;
    }

    .booking-form h3 {
        font-size: 18px;
    }

    .booking-form input:not([type="submit"]):not([type="button"]):not([type="hidden"]):not([type="file"]),
    .booking-form select,
    .booking-form textarea {
        min-height: 48px;

        font-size: 15px;
    }

    .booking-form button,
    .booking-form input[type="submit"],
    .booking-form input[type="button"],
    .booking-form .btn {
        width: 100%;
    }

    .services-section,
    .services-wrapper,
    #services {
        padding:
            45px 12px;
    }

    .services-grid,
    .service-grid,
    .services-list {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .service-card,
    .service-item {
        min-height: 190px;

        padding: 22px;
    }

    .payment-section,
    .payment-details,
    .booking-payment {
        padding:
            22px 15px;
    }

    .payment-section img,
    .payment-details img,
    .booking-payment img {
        width: min(245px, 100%);
    }

    .footer-main {
        padding:
            35px 0 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    footer .container,
    .footer-container {
        width:
            calc(100% - 28px);
    }

    .footer-bottom .container {
        flex-direction: column;

        text-align: center;

        gap: 8px;
    }

}


/* ============================================================
   31. VERY SMALL MOBILE
============================================================ */

@media (max-width: 380px) {

    .booking-form,
    form.booking-form,
    #bookingForm {
        padding:
            18px 13px;
    }

    .booking-form h2 {
        font-size: 20px;
    }

    .booking-form label {
        font-size: 13px;
    }

    .booking-form input:not([type="submit"]):not([type="button"]):not([type="hidden"]):not([type="file"]),
    .booking-form select,
    .booking-form textarea {
        font-size: 14px;
    }

}


/* ============================================================
   32. PREVENT LAYOUT BREAKS
============================================================ */

.booking-section,
.booking-page,
.booking-wrapper,
#booking,
.booking-form,
.services-section,
.services-wrapper,
#services,
footer {
    max-width: 100%;
}

.booking-form *,
.services-section *,
.services-wrapper *,
footer * {
    max-width: 100%;
}


/* ============================================================
   33. ACCESSIBILITY
============================================================ */

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline:
        3px solid
        rgba(7, 139, 209, 0.25);

    outline-offset: 2px;
}


/* ============================================================
   34. REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

}