/* Start custom CSS for html, class: .elementor-element-62d082f */.contact-section{
    padding:120px 0;
    background:#080808;
    min-height:100vh;
}

.contact-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 80px;
}

.contact-header span{
    color:#00ff66;
    font-size:14px;
    letter-spacing:2px;
    font-weight:700;
}

.contact-header h1{
    font-size:64px;
    color:#ffffff;
    font-weight:800;
    margin:20px 0;
}

.contact-header p{
    color:#b8b8b8;
    font-size:18px;
    line-height:1.8;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:40px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.info-card{
    display:flex;
    align-items:center;
    gap:20px;
    background:#121212;
    border:1px solid rgba(255,255,255,.08);
    padding:25px;
    border-radius:20px;
}

.icon{
    width:60px;
    height:60px;
    background:rgba(0,255,102,.1);
    border:1px solid rgba(0,255,102,.2);
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.info-card h3{
    color:#ffffff;
    margin-bottom:5px;
}

.info-card p{
    color:#b8b8b8;
}

.contact-highlight{
    background:#121212;
    border:1px solid rgba(0,255,102,.15);
    border-radius:20px;
    padding:30px;
}

.contact-highlight h3{
    color:#ffffff;
    margin-bottom:20px;
}

.contact-highlight ul{
    list-style:none;
}

.contact-highlight li{
    color:#b8b8b8;
    margin-bottom:15px;
}

/* FORM */

.contact-form-box{
    background:#121212;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:40px;
}

.form-group{
    margin-bottom:20px;
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    background:#1a1a1a;
    border:1px solid rgba(255,255,255,.08);
    color:#ffffff;
    padding:18px;
    border-radius:12px;
    font-size:16px;
    outline:none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
    border-color:#00ff66;
}

.submit-btn{
    width:100%;
    background:#00ff66;
    color:#000;
    border:none;
    padding:18px;
    border-radius:12px;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.submit-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(0,255,102,.25);
}

@media(max-width:991px){

.contact-wrapper{
    grid-template-columns:1fr;
}

.contact-header h1{
    font-size:46px;
}
}

@media(max-width:768px){

.contact-section{
    padding:80px 0;
}

.contact-header h1{
    font-size:34px;
}

.contact-header p{
    font-size:16px;
}

.contact-form-box{
    padding:25px;
}
}/* End custom CSS */