/* ============================================================
   TRANSPORT SERVICES
   CONTACT PAGE — FINAL PREMIUM CSS
   ============================================================ */


/* ============================================================
   01. VARIABLES
   ============================================================ */

:root {
    --contact-primary: #078bd1;
    --contact-primary-dark: #0069a8;
    --contact-primary-light: #e7f7ff;

    --contact-sky: #dff4ff;
    --contact-sky-soft: #f4fbff;

    --contact-text: #0b2d49;
    --contact-text-soft: #55748d;

    --contact-white: #ffffff;

    --contact-border: rgba(8, 139, 209, .14);

    --contact-shadow:
        0 18px 50px rgba(5, 69, 105, .09);

    --contact-shadow-hover:
        0 25px 65px rgba(5, 69, 105, .14);
}


/* ============================================================
   02. MAIN
   ============================================================ */

.transport-contact-main {
    width: 100%;
    overflow: hidden;

    color: var(--contact-text);

    background:
        linear-gradient(
            180deg,
            #f5fbff 0%,
            #ffffff 45%,
            #eef9ff 100%
        );
}

.transport-contact-main .container {
    width: min(
        calc(100% - 40px),
        1080px
    );

    margin-left: auto;
    margin-right: auto;
}


/* ============================================================
   03. HERO
   ============================================================ */

.contact-hero {
    position: relative;
    isolation: isolate;

    padding: 88px 0 82px;

    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(7, 139, 209, .13),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 10%,
            rgba(72, 194, 239, .18),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #edfaff 0%,
            #ffffff 52%,
            #e2f6ff 100%
        );

    border-bottom: 1px solid var(--contact-border);
}


.contact-hero-background {
    position: absolute;
    inset: 0;

    z-index: -1;

    pointer-events: none;
    overflow: hidden;
}


.contact-hero-orb {
    position: absolute;

    border-radius: 50%;
}


.contact-hero-orb-one {
    width: 330px;
    height: 330px;

    top: -180px;
    right: -80px;

    background:
        radial-gradient(
            circle,
            rgba(7, 139, 209, .20),
            rgba(7, 139, 209, 0)
        );
}


.contact-hero-orb-two {
    width: 280px;
    height: 280px;

    bottom: -180px;
    left: -100px;

    background:
        radial-gradient(
            circle,
            rgba(71, 194, 239, .18),
            rgba(71, 194, 239, 0)
        );
}


.contact-hero-content {
    max-width: 850px;
}


.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 15px;

    color: var(--contact-primary);

    background: rgba(255,255,255,.84);

    border: 1px solid rgba(7,139,209,.18);
    border-radius: 999px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}


.contact-eyebrow i {
    font-size: 13px;
}


.contact-hero-title {
    margin: 22px 0 18px;

    color: var(--contact-text);

    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.02;

    letter-spacing: -2.7px;

    font-weight: 900;
}


.contact-hero-title span {
    color: var(--contact-primary);
}


.contact-hero-description {
    max-width: 760px;

    margin: 0;

    color: var(--contact-text-soft);

    font-size: 17px;
    line-height: 1.8;
}


/* ============================================================
   04. CONTACT SECTION
   ============================================================ */

.contact-section {
    padding: 88px 0;

    background: #ffffff;
}


.contact-layout {
    display: grid;

    grid-template-columns:
        minmax(290px, .82fr)
        minmax(0, 1.18fr);

    gap: 52px;

    align-items: start;
}


/* ============================================================
   05. CONTACT INFO
   ============================================================ */

.contact-info {
    min-width: 0;
}


.contact-section-heading {
    margin-bottom: 28px;
}


.contact-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 12px;

    color: var(--contact-primary);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.contact-section-label i {
    font-size: 13px;
}


.contact-section-heading h2 {
    margin: 0 0 12px;

    color: var(--contact-text);

    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.12;

    letter-spacing: -1.2px;

    font-weight: 900;
}


.contact-section-heading h2 span {
    color: var(--contact-primary);
}


.contact-section-heading p {
    margin: 0;

    color: var(--contact-text-soft);

    font-size: 14px;
    line-height: 1.8;
}


/* ============================================================
   06. CONTACT INFO CARDS
   ============================================================ */

.contact-info-card {
    display: flex;
    align-items: center;

    gap: 14px;

    width: 100%;

    margin-bottom: 13px;

    padding: 17px;

    color: inherit;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f4fbff
        );

    border: 1px solid var(--contact-border);

    border-radius: 16px;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(5,69,105,.055);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.contact-info-card:hover {
    color: inherit;

    transform: translateY(-3px);

    border-color:
        rgba(7,139,209,.27);

    box-shadow:
        0 15px 35px rgba(5,69,105,.10);
}


.contact-info-icon {
    width: 43px;
    height: 43px;

    min-width: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--contact-primary);

    background: var(--contact-primary-light);

    border-radius: 13px;
}


.contact-info-icon i {
    font-size: 16px;
}


.contact-info-content {
    display: flex;
    flex-direction: column;

    min-width: 0;

    flex: 1;
}


.contact-info-content strong {
    margin-bottom: 3px;

    color: var(--contact-text);

    font-size: 12px;
    font-weight: 850;
}


.contact-info-content > span {
    color: var(--contact-text-soft);

    font-size: 12.5px;
    line-height: 1.6;

    overflow-wrap: anywhere;
}


.contact-info-arrow {
    color: #94b4c6;

    font-size: 12px;

    transition:
        color .25s ease,
        transform .25s ease;
}


.contact-info-card:hover .contact-info-arrow {
    color: var(--contact-primary);

    transform: translateX(3px);
}


.contact-address-card {
    align-items: flex-start;

    cursor: default;
}


.contact-address-card:hover {
    transform: none;
}


/* ============================================================
   07. SUPPORT CARD
   ============================================================ */

.contact-support-card {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    margin-top: 22px;

    padding: 19px;

    background:
        linear-gradient(
            135deg,
            #eaf8ff,
            #f6fcff
        );

    border: 1px solid rgba(7,139,209,.12);

    border-radius: 17px;
}


.contact-support-icon {
    width: 38px;
    height: 38px;

    min-width: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--contact-primary),
            var(--contact-primary-dark)
        );

    border-radius: 11px;
}


.contact-support-icon i {
    font-size: 14px;
}


.contact-support-card strong {
    display: block;

    margin-bottom: 5px;

    color: var(--contact-text);

    font-size: 13px;
    font-weight: 850;
}


.contact-support-card p {
    margin: 0;

    color: var(--contact-text-soft);

    font-size: 11.5px;
    line-height: 1.65;
}


/* ============================================================
   08. FORM WRAPPER
   ============================================================ */

.contact-form-wrapper {
    padding: 34px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f3fbff 100%
        );

    border: 1px solid var(--contact-border);

    border-radius: 24px;

    box-shadow:
        var(--contact-shadow);
}


.contact-form-header {
    margin-bottom: 27px;
}


.contact-form-header .contact-section-label {
    margin-bottom: 9px;
}


.contact-form-header h2 {
    margin: 0 0 8px;

    color: var(--contact-text);

    font-size: 27px;
    line-height: 1.25;

    font-weight: 900;
}


.contact-form-header p {
    margin: 0;

    color: var(--contact-text-soft);

    font-size: 13px;
    line-height: 1.7;
}


/* ============================================================
   09. FORM GRID
   ============================================================ */

.contact-form {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}


.contact-field {
    min-width: 0;
}


.contact-field-full {
    grid-column: 1 / -1;
}


.contact-field label {
    display: block;

    margin: 0 0 7px;

    color: var(--contact-text);

    font-size: 12px;
    font-weight: 800;
}


.contact-field label span {
    color: #e04444;
}


/* ============================================================
   10. INPUTS
   ============================================================ */

.contact-input,
.contact-textarea {
    position: relative;
}


.contact-input i,
.contact-textarea i {
    position: absolute;

    left: 15px;
    top: 50%;

    z-index: 2;

    color: #7fa0b4;

    font-size: 13px;

    transform: translateY(-50%);

    pointer-events: none;

    transition:
        color .2s ease;
}


.contact-textarea i {
    top: 18px;

    transform: none;
}


.contact-input input,
.contact-textarea textarea {
    width: 100%;

    color: var(--contact-text);

    background: #ffffff;

    border: 1px solid #d7e8f1;

    border-radius: 12px;

    outline: none;

    font-family: inherit;

    font-size: 13px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


.contact-input input {
    height: 48px;

    padding:
        0 14px 0 43px;
}


.contact-textarea textarea {
    min-height: 135px;

    padding:
        14px 14px 14px 43px;

    line-height: 1.7;

    resize: vertical;
}


.contact-input input::placeholder,
.contact-textarea textarea::placeholder {
    color: #9bb1bf;
}


.contact-input input:hover,
.contact-textarea textarea:hover {
    border-color:
        rgba(7,139,209,.28);
}


.contact-input input:focus,
.contact-textarea textarea:focus {
    border-color: var(--contact-primary);

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(7,139,209,.09);
}


.contact-input:focus-within i,
.contact-textarea:focus-within i {
    color: var(--contact-primary);
}


/* ============================================================
   11. SUBMIT
   ============================================================ */

.contact-form-submit {
    grid-column: 1 / -1;

    margin-top: 2px;
}


.contact-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    width: 100%;

    min-height: 51px;

    padding: 0 22px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--contact-primary),
            var(--contact-primary-dark)
        );

    border: 0;

    border-radius: 13px;

    font-family: inherit;

    font-size: 13px;
    font-weight: 850;

    cursor: pointer;

    box-shadow:
        0 11px 26px rgba(7,139,209,.20);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.contact-submit-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 34px rgba(7,139,209,.27);
}


.contact-submit-button:active {
    transform: translateY(0);
}


.contact-submit-button:focus-visible {
    outline: 3px solid rgba(7,139,209,.22);

    outline-offset: 3px;
}


.contact-submit-button i {
    font-size: 12px;

    transition:
        transform .25s ease;
}


.contact-submit-button:hover i {
    transform: translateX(3px);
}


/* ============================================================
   12. CTA
   ============================================================ */

.contact-cta {
    padding: 0 0 90px;

    background: #ffffff;
}


.contact-cta-box {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 46px 50px;

    background:
        linear-gradient(
            135deg,
            #063d62 0%,
            #075c89 50%,
            #078bd1 100%
        );

    border-radius: 27px;

    box-shadow:
        0 24px 65px rgba(3,62,96,.20);

    overflow: hidden;
}


.contact-cta-box::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: -170px;
    right: -80px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.09);
}


.contact-cta-content,
.contact-cta-action {
    position: relative;
    z-index: 1;
}


.contact-cta-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 12px;

    color: #a9e4ff;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}


.contact-cta-content h2 {
    max-width: 680px;

    margin: 0 0 11px;

    color: #ffffff;

    font-size: clamp(28px,4vw,40px);
    line-height: 1.15;

    font-weight: 900;

    letter-spacing: -1px;
}


.contact-cta-content p {
    max-width: 620px;

    margin: 0;

    color: rgba(255,255,255,.80);

    font-size: 14px;
    line-height: 1.7;
}


.contact-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 190px;

    min-height: 49px;

    padding: 0 21px;

    color: #073d5d;

    background: #ffffff;

    border-radius: 12px;

    font-size: 13px;
    font-weight: 850;

    text-decoration: none;

    box-shadow:
        0 11px 27px rgba(0,0,0,.13);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.contact-cta-button:hover {
    color: #073d5d;

    transform: translateY(-3px);

    box-shadow:
        0 16px 34px rgba(0,0,0,.19);
}


.contact-cta-button i {
    color: var(--contact-primary);

    transition:
        transform .25s ease;
}


.contact-cta-button:hover i {
    transform: translateX(4px);
}


/* ============================================================
   13. TABLET
   ============================================================ */

@media (max-width: 991.98px) {

    .contact-hero {
        padding: 75px 0 68px;
    }


    .contact-layout {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .contact-info {
        max-width: 760px;
    }


    .contact-cta-box {
        padding: 40px;
    }

}


/* ============================================================
   14. MOBILE
   ============================================================ */

@media (max-width: 767.98px) {

    .transport-contact-main .container {
        width: min(
            calc(100% - 28px),
            1080px
        );
    }


    .contact-hero {
        padding: 60px 0 55px;
    }


    .contact-hero-title {
        margin-top: 18px;

        font-size: clamp(36px,11vw,52px);

        letter-spacing: -1.8px;
    }


    .contact-hero-description {
        font-size: 15px;

        line-height: 1.7;
    }


    .contact-section {
        padding: 65px 0;
    }


    .contact-section-heading h2 {
        font-size: 31px;
    }


    .contact-form-wrapper {
        padding: 26px 21px;

        border-radius: 20px;
    }


    .contact-form {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .contact-field-full {
        grid-column: auto;
    }


    .contact-form-submit {
        grid-column: auto;
    }


    .contact-info-card {
        padding: 15px;
    }


    .contact-support-card {
        padding: 17px;
    }


    .contact-cta {
        padding-bottom: 65px;
    }


    .contact-cta-box {
        flex-direction: column;
        align-items: flex-start;

        padding: 33px 26px;

        border-radius: 22px;
    }


    .contact-cta-action {
        width: 100%;
    }


    .contact-cta-button {
        width: 100%;
    }

}


/* ============================================================
   15. SMALL MOBILE
   ============================================================ */

@media (max-width: 479.98px) {

    .contact-eyebrow {
        padding: 8px 12px;

        font-size: 10px;
    }


    .contact-hero-title {
        font-size: 36px;
    }


    .contact-section {
        padding: 52px 0;
    }


    .contact-section-heading h2 {
        font-size: 28px;
    }


    .contact-form-wrapper {
        padding: 22px 17px;
    }


    .contact-form-header h2 {
        font-size: 24px;
    }


    .contact-input input {
        height: 47px;
    }


    .contact-textarea textarea {
        min-height: 125px;
    }


    .contact-cta-box {
        padding: 28px 21px;
    }


    .contact-cta-content h2 {
        font-size: 27px;
    }

}


/* ============================================================
   16. REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .contact-info-card,
    .contact-submit-button,
    .contact-cta-button {
        transition: none;
    }

}