/* ALERT */
.alert-message{
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-weight: 500;
}

/* SUCCESS */
.alert-message{
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

/* end message info */


.contact-section{

    padding: 80px 0;

    background: #1E1E1E;
}


.contact-wrapper{

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;
}


.contact-badge{

    display: inline-block;

    background: rgba(255,140,0,.1);

    color: var(--primary-orange);

    padding: 8px 18px;

    border-radius: 50px;

    font-weight: 600;

    margin-bottom: 20px;
}

.contact-info{
    background: white;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}


.contact-info h1{

    font-size: 42px;

    margin-bottom: 20px;
}


.contact-info p{

    color: #666;

    line-height: 1.8;

    margin-bottom: 30px;
}


.contact-details{

    display: flex;

    flex-direction: column;

    gap: 15px;

    font-size: 16px;
}


.contact-form-card{

    background: white;

    padding: 40px;

    border-radius: 18px;

    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}


.contact-form-card form{

    display: flex;

    flex-direction: column;

    gap: 18px;
}


.custom-input,
.custom-textarea{

    width: 100%;

    border: 1px solid #ddd;

    border-radius: 10px;

    padding: 14px 16px;
}


.contact-btn{

    background: var(--primary-orange);

    border: none;

    color: white;

    padding: 15px;

    border-radius: 10px;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;
}


.contact-btn:hover{

    transform: translateY(-2px);
}


@media(max-width:768px){

    .contact-wrapper{

        grid-template-columns: 1fr;
    }

    .contact-info h1{

        font-size: 30px;
    }

    .contact-form-card{

        padding: 25px;
    }
}