/* =========================================================
   SRI LANGTA BABA AVIATION
   CONTACT PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.contact-page-hero {

    position: relative;

    min-height: 430px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background-color: #081b3a;

    background-repeat: no-repeat;

    background-position: center;

    background-size: cover;
}


.contact-page-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,21,45,.95),
            rgba(8,27,58,.72),
            rgba(8,27,58,.45)
        );
}


.contact-page-hero-content {

    position: relative;

    z-index: 2;

    padding-top: 130px;

    padding-bottom: 75px;
}


.contact-hero-small-title {

    display: inline-block;

    margin-bottom: 15px;

    color: #ff5a00;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.contact-page-hero h1 {

    max-width: 800px;

    margin: 0 0 18px;

    color: #ffffff;

    font-size: clamp(40px, 5vw, 64px);

    line-height: 1.08;

    font-weight: 800;
}


.contact-page-hero h1 span {

    color: #ff5a00;
}


.contact-page-hero-content > p {

    max-width: 650px;

    margin: 0 0 28px;

    color: rgba(255,255,255,.78);

    font-size: 16px;

    line-height: 1.8;
}


.contact-breadcrumb {

    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(255,255,255,.65);

    font-size: 13px;
}


.contact-breadcrumb a {

    color: #ffffff;

    text-decoration: none;
}


.contact-breadcrumb a:hover {

    color: #ff5a00;
}



/* =========================================================
   MAIN SECTION
========================================================= */

.contact-main-section {

    padding: 100px 0;

    background: #ffffff;
}


.contact-main-grid {

    display: grid;

    grid-template-columns: .85fr 1.35fr;

    gap: 35px;

    align-items: start;
}



/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-information {

    padding: 42px;

    background: #081b3a;

    border-radius: 18px;

    box-shadow:
        0 20px 50px rgba(8,27,58,.12);
}


.contact-section-small {

    display: block;

    margin-bottom: 10px;

    color: #ff5a00;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.contact-information h2 {

    margin: 0 0 15px;

    color: #ffffff;

    font-size: 34px;

    line-height: 1.2;
}


.contact-information > p {

    margin: 0 0 30px;

    color: rgba(255,255,255,.68);

    font-size: 14px;

    line-height: 1.8;
}



/* =========================================================
   CONTACT INFO BOX
========================================================= */

.contact-info-box {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 19px 0;

    border-top: 1px solid rgba(255,255,255,.1);
}


.contact-info-icon {

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    background: rgba(255,90,0,.12);

    color: #ff5a00;

    font-size: 17px;
}


.contact-info-box span {

    display: block;

    margin-bottom: 4px;

    color: rgba(255,255,255,.5);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.contact-info-box a,
.contact-info-box p {

    margin: 0;

    color: #ffffff;

    font-size: 13px;

    line-height: 1.5;

    text-decoration: none;
}


.contact-info-box a:hover {

    color: #ff5a00;
}



/* =========================================================
   FORM WRAPPER
========================================================= */

.contact-form-wrapper {

    padding: 42px;

    background: #f5f8fc;

    border: 1px solid #e4e9ef;

    border-radius: 18px;
}


.contact-form-heading {

    margin-bottom: 30px;
}


.contact-form-heading > span {

    display: block;

    margin-bottom: 9px;

    color: #ff5a00;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.contact-form-heading h2 {

    margin: 0 0 10px;

    color: #081b3a;

    font-size: 32px;

    line-height: 1.2;
}


.contact-form-heading p {

    max-width: 650px;

    margin: 0;

    color: #667085;

    font-size: 13px;

    line-height: 1.7;
}



/* =========================================================
   FORM GRID
========================================================= */

.career-contact-form {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


.contact-form-group {

    display: flex;

    flex-direction: column;

    gap: 8px;
}


.contact-form-group.full-width {

    grid-column: 1 / -1;
}


.contact-form-group label {

    color: #081b3a;

    font-size: 12px;

    font-weight: 700;
}


.contact-form-group label span {

    color: #ff5a00;
}



/* =========================================================
   INPUTS
========================================================= */

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {

    width: 100%;

    padding: 13px 14px;

    background: #ffffff;

    border: 1px solid #dce2e9;

    border-radius: 8px;

    outline: none;

    color: #081b3a;

    font-family: inherit;

    font-size: 13px;

    transition: all .25s ease;
}


.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {

    border-color: #ff5a00;

    box-shadow:
        0 0 0 3px rgba(255,90,0,.08);
}


.contact-form-group textarea {

    min-height: 120px;

    resize: vertical;
}



/* =========================================================
   RESUME UPLOAD
========================================================= */

.resume-upload-box {

    position: relative;

    min-height: 135px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background: #ffffff;

    border: 1.5px dashed #cbd3dd;

    border-radius: 10px;

    text-align: center;

    overflow: hidden;

    transition: all .25s ease;
}


.resume-upload-box:hover {

    border-color: #ff5a00;

    background: #fffaf7;
}


.resume-upload-box i {

    margin-bottom: 9px;

    color: #ff5a00;

    font-size: 25px;
}


.resume-upload-box strong {

    color: #081b3a;

    font-size: 13px;
}


.resume-upload-box small {

    margin-top: 5px;

    color: #8a94a3;

    font-size: 11px;
}


.resume-upload-box input {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    opacity: 0;

    cursor: pointer;
}



/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit-wrapper {

    grid-column: 1 / -1;

    display: flex;

    justify-content: flex-end;

    margin-top: 5px;
}


.contact-submit-wrapper button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 25px;

    background: #ff5a00;

    border: 1px solid #ff5a00;

    border-radius: 50px;

    color: #ffffff;

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition: all .3s ease;
}


.contact-submit-wrapper button:hover {

    background: #081b3a;

    border-color: #081b3a;

    transform: translateY(-2px);
}



/* =========================================================
   BOTTOM CTA
========================================================= */

.contact-bottom-section {

    padding: 85px 0;

    background: #f5f8fc;

    text-align: center;
}


.contact-bottom-content {

    max-width: 750px;

    margin: auto;
}


.contact-bottom-content span {

    display: block;

    margin-bottom: 10px;

    color: #ff5a00;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.contact-bottom-content h2 {

    margin: 0 0 15px;

    color: #081b3a;

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.2;
}


.contact-bottom-content p {

    margin: 0;

    color: #667085;

    font-size: 14px;

    line-height: 1.8;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .contact-main-grid {

        grid-template-columns: 1fr;

    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .contact-page-hero {

        min-height: 390px;

    }


    .contact-page-hero-content {

        padding-top: 90px;

        padding-bottom: 60px;

    }


    .contact-page-hero h1 {

        font-size: 36px;

    }


    .contact-page-hero-content > p {

        font-size: 14px;

    }


    .contact-main-section {

        padding: 70px 0;

    }


    .contact-information,
    .contact-form-wrapper {

        padding: 30px 24px;

    }


    .contact-information h2,
    .contact-form-heading h2 {

        font-size: 28px;

    }


    .career-contact-form {

        grid-template-columns: 1fr;

    }


    .contact-form-group.full-width {

        grid-column: auto;

    }


    .contact-submit-wrapper {

        grid-column: auto;

        justify-content: stretch;

    }


    .contact-submit-wrapper button {

        width: 100%;

    }

}


.thank-you-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

.thank-you-overlay.show {
    display: flex;
}

.thank-you-popup {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 35px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: thankYouPopup 0.3s ease;
}

.thank-you-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #f58220;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.thank-you-popup h2 {
    margin: 0 0 12px;
    font-size: 30px;
    color: #222222;
}

.thank-you-popup p {
    margin: 0 auto 25px;
    max-width: 390px;
    color: #666666;
    line-height: 1.7;
}

.thank-you-button {
    border: none;
    background: #f58220;
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.thank-you-button:hover {
    opacity: 0.9;
}

.thank-you-close {
    position: absolute;
    top: 12px;
    right: 16px;
    border: none;
    background: transparent;
    color: #777777;
    font-size: 30px;
    cursor: pointer;
}

@keyframes thankYouPopup {

    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .contact-page-hero-content {

        padding-top: 80px;

    }


    .contact-page-hero h1 {

        font-size: 32px;

    }


    .contact-information,
    .contact-form-wrapper {

        padding: 25px 18px;

    }


    .contact-info-box {

        gap: 12px;

    }


    .contact-info-icon {

        width: 42px;

        height: 42px;

    }

}