

.bn-contact-page {
    width: 100%;
    padding: 90px 0;
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at top left,
            #004aad33,
            transparent 40%
        ),
        radial-gradient(
            circle at bottom right,
            #7a00ff22,
            transparent 35%
        ),
        linear-gradient(
            180deg,
            #05070d,
            #0a1020
        );
}


/*==================================================
    HEADING
==================================================*/

.bn-contact-heading {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 25px;

    text-align: center;

    background: rgba(255,255,255,.05);

    border-radius: 25px;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,.10);

    box-shadow:
        0 0 30px rgba(0,216,239,.20),
        inset 0 1px 0 rgba(255,255,255,.10);
}


.bn-contact-title {
    margin: 0 0 15px;

    font-size: 42px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: 3px;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            #00d8ef,
            #7a00ff,
            #ff0080,
            #ffffff
        );

    background-size: 300% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    animation: bnContactTitleFlow 6s linear infinite;

    text-shadow:
        0 0 15px rgba(0,216,239,.45);
}


.bn-contact-subtitle {
    margin: 0;

    font-size: 17px;
    font-weight: 500;

    line-height: 1.7;

    background:
        linear-gradient(
            90deg,
            #00d8ef,
            #7a00ff,
            #ff0080,
            #00d8ef
        );

    background-size: 250% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    animation: bnContactSubtitleFlow 6s linear infinite;
}


/*==================================================
    MAP
==================================================*/

.bn-contact-map {
    width: 90%;
    max-width: 1090px;
    margin: 0 auto 50px;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(0,216,239,.25);
    box-shadow:
        0 25px 60px rgba(0,0,0,.45),
        0 0 35px rgba(0,216,239,.12);
}

.bn-contact-map::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            120deg,
            transparent 35%,
            rgba(255,255,255,.08) 50%,
            transparent 65%
        );

    transform: translateX(-100%);

    animation: bnContactMapShine 7s linear infinite;
}


.bn-contact-map iframe {
    display: block;

    width: 100%;
    height: 430px;

    filter:
        grayscale(20%)
        contrast(110%)
        brightness(75%);
}


/*==================================================
    MAIN CONTAINER
==================================================*/

.bn-contact-container {
    width: 90%;
    max-width: 1400px;

    margin: 0 auto 50px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.5fr)
        minmax(300px, .8fr);

    gap: 35px;

    position: relative;
    z-index: 2;
}


/*==================================================
    FORM CARD
==================================================*/

.bn-contact-form-card,
.bn-contact-info-card {

    position: relative;

    overflow: hidden;

    padding: 35px 30px;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.035)
        );

    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

    border: 1px solid rgba(255,255,255,.12);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.15),
        0 20px 50px rgba(0,0,0,.40);

    transition: .45s ease;
}


.bn-contact-form-card::before,
.bn-contact-info-card::before {

    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    top: -130px;
    right: -130px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,216,239,.25),
            transparent 70%
        );

    transition: .6s;
}


.bn-contact-form-card:hover,
.bn-contact-info-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 30px 70px rgba(0,0,0,.50),
        0 0 40px rgba(0,216,239,.15);
}


.bn-contact-form-card:hover::before,
.bn-contact-info-card:hover::before {

    transform: scale(1.4);
}


/*==================================================
    FORM ROW
==================================================*/

.bn-contact-form-row {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 20px;

    margin-bottom: 20px;
}


.bn-contact-form-group,
.bn-contact-form-wide {

    position: relative;
}


.bn-contact-form-group label,
.bn-contact-form-wide label {

    display: block;

    margin-bottom: 8px;

    color: rgba(255,255,255,.88);

    font-size: 14px;
    font-weight: 600;

    letter-spacing: .5px;
}


/*==================================================
    INPUTS
==================================================*/

.bn-contact-form-group input,
.bn-contact-form-wide select,
.bn-contact-form-wide textarea {

    width: 100%;

    box-sizing: border-box;

    padding: 14px 16px;

    border-radius: 14px;

    border: 1px solid rgba(255,255,255,.12);

    background: rgba(0,0,0,.25);

    color: #fff;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition: .35s;
}
.bn-contact-form-wide select option {
    background: #111827;
    color: #ffffff;
    font-size: 14px;
}

/* Selected option */
.bn-contact-form-wide select option:checked {
    background: #00d8ef;
    color: #05070d;
}

/*==================================================
    SELECT FOCUS
==================================================*/

.bn-contact-form-wide select:focus {
    border-color: #00d8ef;

    box-shadow:
        0 0 10px rgba(0,216,239,.35),
        0 0 25px rgba(0,216,239,.15);
}

/*==================================================
    SELECT ARROW / CURSOR
==================================================*/

.bn-contact-form-wide select {
    cursor: pointer;
}


.bn-contact-form-group input::placeholder,
.bn-contact-form-wide textarea::placeholder {

    color: rgba(255,255,255,.45);
}


.bn-contact-form-group input:focus,
.bn-contact-form-wide select:focus,
.bn-contact-form-wide textarea:focus {

    border-color: #00d8ef;

    background: rgba(0,216,239,.07);

    box-shadow:
        0 0 18px rgba(0,216,239,.18),
        inset 0 0 10px rgba(0,216,239,.04);
}


.bn-contact-form-wide {

    margin-bottom: 20px;
}


.bn-contact-form-wide select {

    appearance: none;

    cursor: pointer;
}


.bn-contact-form-wide textarea {

    resize: vertical;

    min-height: 130px;
}


/*==================================================
    BUTTONS
==================================================*/

.bn-contact-buttons {

    display: flex;

    gap: 15px;

    margin-top: 25px;
}


.bn-contact-submit,
.bn-contact-signup {

    flex: 1;

    min-height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    font-family: inherit;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    cursor: pointer;

    transition: .35s;
}


.bn-contact-submit {

    border: none;

    color: #05070d;

    background:
        linear-gradient(
            135deg,
            #00d8ef,
            #00a6c0
        );

    box-shadow:
        0 10px 25px rgba(0,216,239,.25);
}


.bn-contact-signup {

    color: #fff;

    border: 1px solid rgba(0,216,239,.45);

    background:
        rgba(0,216,239,.08);
}


.bn-contact-submit:hover {

    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0,216,239,.40);

    background:
        linear-gradient(
            135deg,
            #00f0ff,
            #7a00ff
        );

    color: #fff;
}


.bn-contact-signup:hover {

    transform: translateY(-4px);

    color: #05070d;

    background: #00d8ef;

    box-shadow:
        0 15px 35px rgba(0,216,239,.30);
}


/*==================================================
    CONTACT INFORMATION
==================================================*/

.bn-contact-info-card {

    text-align: center;
}


.bn-contact-info-title {

    margin: 0 0 10px;

    font-size: 28px;
    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 2px;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            #00d8ef,
            #7a00ff,
            #ffffff
        );

    background-size: 250% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    animation: bnContactSubtitleFlow 5s linear infinite;
}


.bn-contact-info-subtitle {

    margin-bottom: 35px;

    color: rgba(255,255,255,.65);

    font-size: 14px;
}


/*==================================================
    INFO ITEMS
==================================================*/

.bn-contact-info-item {

    display: flex;

    align-items: center;

    gap: 18px;

    text-align: left;

    padding: 20px;

    margin-bottom: 18px;

    border-radius: 18px;

    background:
        rgba(255,255,255,.045);

    border: 1px solid rgba(255,255,255,.08);

    transition: .35s;
}


.bn-contact-info-item:hover {

    transform: translateX(7px);

    background:
        rgba(0,216,239,.08);

    border-color:
        rgba(0,216,239,.35);

    box-shadow:
        0 10px 30px rgba(0,0,0,.25),
        0 0 20px rgba(0,216,239,.10);
}


.bn-contact-info-item > i {

    min-width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 18px;

    color: #00d8ef;

    background:
        rgba(0,216,239,.10);

    border: 1px solid rgba(0,216,239,.25);

    box-shadow:
        0 0 18px rgba(0,216,239,.15);
}


.bn-contact-info-item h3 {

    margin: 0 0 5px;

    color: #fff;

    font-size: 15px;

    font-weight: 700;
}


.bn-contact-info-item p {

    margin: 0;

    color: rgba(255,255,255,.68);

    font-size: 13px;

    line-height: 1.6;

    word-break: break-word;
}


/*==================================================
    ANIMATIONS
==================================================*/

@keyframes bnContactTitleFlow {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}


@keyframes bnContactSubtitleFlow {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}


@keyframes bnContactMapShine {

    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }

}


/*==================================================
    TABLET
==================================================*/

@media(max-width:991px) {

    .bn-contact-page {
        padding: 70px 0;
    }

    .bn-contact-container {
        grid-template-columns: 1fr;
    }

    .bn-contact-info-card {
        text-align: center;
    }

}


/*==================================================
    MOBILE
==================================================*/

@media(max-width:600px) {

    .bn-contact-page {
        padding: 55px 0;
    }

    .bn-contact-heading {
        width: 92%;

        padding: 22px 15px;

        margin-bottom: 35px;

        border-radius: 20px;
    }

    .bn-contact-title {
        font-size: 27px;

        letter-spacing: 2px;
    }

    .bn-contact-subtitle {
        font-size: 14px;

        line-height: 1.6;
    }

    .bn-contact-map {
        width: 92%;

        margin-bottom: 30px;

        border-radius: 20px;
    }

    .bn-contact-map iframe {
        height: 300px;
    }

    .bn-contact-container {
        width: 92%;

        grid-template-columns: 1fr;

        gap: 24px;
    }

    .bn-contact-form-card,
    .bn-contact-info-card {
        padding: 25px 18px;

        border-radius: 22px;
    }

    .bn-contact-form-row {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .bn-contact-form-group input,
    .bn-contact-form-wide select,
    .bn-contact-form-wide textarea {
        font-size: 14px;

        padding: 13px 14px;
    }

    .bn-contact-buttons {
        flex-direction: column;
    }

    .bn-contact-submit,
    .bn-contact-signup {
        width: 100%;
    }

    .bn-contact-info-title {
        font-size: 23px;
    }

    .bn-contact-info-item {
        padding: 16px;

        gap: 13px;
    }

}


/*==================================================
    SMALL PHONES
==================================================*/

@media(max-width:380px) {

    .bn-contact-title {
        font-size: 23px;
    }

    .bn-contact-subtitle {
        font-size: 13px;
    }

    .bn-contact-form-card,
    .bn-contact-info-card {
        padding: 22px 14px;
    }

    .bn-contact-info-item {
        align-items: flex-start;
    }

    .bn-contact-info-item > i {
        min-width: 40px;
        height: 40px;
    }

}