/*==================================================
CONTACT PAGE
==================================================*/

.contact-hero{
    position:relative;
    overflow:hidden;
    background:#000000;
    padding:100px 0 120px;
}

/*==================================================
BACKGROUND
==================================================*/

.contact-bg{
    position:absolute;
    inset:0;
    z-index:1;
}

.contact-bg img{
    width:100%;
    object-fit:cover;
}

.contact-overlay{
    position:absolute;
    inset:0;
    z-index:2;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.88) 0%,
            rgba(0,0,0,.45) 35%,
            rgba(0,0,0,.65) 100%
        );
}

/*==================================================
HEXAGON OVERLAY
==================================================*/

.contact-hero::before{
    content:"";

    position:absolute;
    inset:0;
    z-index:2;

    background:
        radial-gradient(
            circle at center,
            rgba(128,206,10,.25),
            transparent 45%
        );

    filter:blur(80px);
}

/*==================================================
LEFT MESH GLOW
==================================================*/

.contact-hero::after{

    content:"";

    position:absolute;

    left:-250px;
    bottom:250px;

    width:550px;
    height:550px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(128,206,10,.25),
            transparent 70%
        );

    filter:blur(40px);

    z-index:2;
}

/*==================================================
PAGE TITLE
==================================================*/

.contact-heading{
    position:relative;
    z-index:5;
    margin-bottom:240px;
}

.contact-heading h1{
    color:#00C083;
    font-size:var(--fs-6xl);
    font-weight:500;
    margin:0;
}

/*==================================================
CONTACT CARD
==================================================*/

.contact-card{

    position:relative;
    z-index:5;

    max-width:90%;

    margin:auto;

    padding:55px;

    border-radius:22px;

    background:
        linear-gradient(
            360deg,
            rgba(0,73,43,1),
            rgba(0,98,96,.5),
            rgba(0,79,83,1)
        );

    backdrop-filter:blur(25px);

    border:
        1px solid rgba(0,192,131,.15);

    box-shadow:
        0 40px 120px rgba(0,0,0,.55);
}

.contact-card::before{

    content:"";

    position:absolute;

    left:0;
    right:0;
    top:0;

    height:1px;

    background:
        rgba(255,255,255,.12);
}

/*==================================================
TITLE
==================================================*/

.contact-title{
    text-align:center;
    margin-bottom:45px;
}

.contact-title span{
    display:block;

    color:#fff;

    font-size:var(--fs-xl);

    letter-spacing:2px;

    margin-bottom:10px;
}

.contact-title h2{
    color:#80ce0a;

    font-size:var(--fs-5xl);

    font-weight:400;

    margin:0;
}

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

.contact-form .form-control{

    height:56px;

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

    border:1px solid #248273;

    border-radius:10px;

    color:#fff;

    padding:0 20px;

    transition:.4s;
}

.contact-form textarea.form-control{

    height:auto;
    min-height:140px;

    padding-top:18px;
}

.contact-form .form-control::placeholder{
    color:rgba(255,255,255,.35);
}

.contact-form .form-control:focus{

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

    border-color:#00C083;

    box-shadow:none;

    color:#fff;
}

/*==================================================
BUTTON
==================================================*/

.contact-btn{

    min-width:220px;

    border:none;

    border-radius:100px;

    padding:14px 45px;

    font-size:1.1rem;
    font-weight:600;

    color:#fff;

    background:
        linear-gradient(
            90deg,
            #00C083,
            #80ce0a
        );

    transition:.4s;
}

.contact-btn:hover{

    transform:
        translateY(-3px);

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

/*==================================================
LOCATIONS
==================================================*/

.location-wrapper{

    position:relative;
    z-index:5;

    margin-top:100px;
}

.location-card{

    text-align:center;

    margin-bottom:40px;
}

.location-icon{

    width:110px;
    height:110px;

    margin:auto auto 30px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(128,206,10,.35),
            transparent
        );

    box-shadow:
        0 0 50px rgba(128,206,10,.25);

    display:flex;
    align-items:center;
    justify-content:center;
}

.location-icon img{
    width:72px;
}

.location-card h4{

    color:#00C083;

    font-size:1.45rem;

    margin-bottom:15px;
}

.location-card p{

    color:#d7d7d7;

    line-height:1.7;

    font-size:var(--fs-base);
}

/*==================================================
BOTTOM BAR
==================================================*/

.contact-bottom{

    background:#045e5d;

    padding:35px 0;
}

.contact-bottom-box{

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

    gap:20px;
}

.contact-phone-icon{

    width:55px;
    height:55px;

    border-radius:12px;

    background:#00C083;

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

    color:#fff;

    font-size:var(--fs-xl);
}

.contact-bottom h5{

    color:#00C083;

    margin-bottom:6px;
}

.contact-bottom p{

    color:#fff;

    margin:0;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1199px){

    .contact-heading{
        margin-bottom:180px;
    }

    .contact-title h2{
        font-size:3rem;
    }

}

@media(max-width:991px){

    .contact-hero{
        min-height:auto;
        padding-top:150px;
    }

    .contact-heading{
        margin-bottom:120px;
    }

    .contact-heading h1{
        font-size:3rem;
    }

    .contact-card{
        padding:45px;
    }

    .contact-title span{
        font-size:1.2rem;
    }

    .contact-title h2{
        font-size:2.5rem;
    }

}

@media(max-width:767px){

    .contact-heading{
        margin-bottom:80px;
    }

    .contact-heading h1{
        font-size:2.4rem;
    }

    .contact-card{
        padding:35px 25px;
    }

    .contact-title span{
        font-size:var(--fs-base);
    }

    .contact-title h2{
        font-size:2rem;
    }

    .location-wrapper{
        margin-top:70px;
    }

    .contact-bottom-box{
        flex-direction:column;
        text-align:center;
    }

}

@media(max-width:575px){

    .contact-heading h1{
        font-size:2rem;
    }

    .contact-title h2{
        font-size:1.8rem;
    }

    .contact-btn{
        width:100%;
    }

}