/* SECTION */
.contact-section{
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: #fff;
}

.contact-container{
    width: min(1200px, 92vw);
    margin: auto;
    position: relative;
    z-index: 2;
}

p{
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* HEADER */
.contact-top{
    margin-bottom: 48px;
}

.contact-title{
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #111827;
}

.contact-desc{
    max-width: 680px;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.8;
}

/* GRID */
.contact-grid{
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 28px;
    align-items: start;
}

/* LEFT PANEL */
.contact-info{
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 28px;
    position: sticky;
    top: 100px;
}

.contact-card{
    padding-bottom: 11px;
    margin-bottom: 11px;
    border-bottom: 1px solid #f1f5f9;
}

.contact-card:last-child{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-label{
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
    font-weight: 600;
}

.contact-value{
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.contact-value a{
    color: #111827;
    text-decoration: none;
    transition: 0.2s ease;
}

.contact-value a:hover{
    color: #64A40F;
}

/* SOCIAL */
.socials{
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.socials a{
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-size: 18px;
    transition: 0.2s ease;
    background: #fff;
    text-decoration: none;
}

.socials a:hover{
    transform: translateY(-2px);
    border-color: #64A40F;
    color: #64A40F;
    box-shadow: 0 10px 25px rgba(100,164,15,0.12);
}

/* FORM */
.form-box{
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.form-box::before{
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(34,197,94,0.08), transparent 70%);
    top: -180px;
    right: -160px;
}

/* TITLES */
.form-title{
    color: #111827;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1px;
    position: relative;
}

.form-subtitle{
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.7;
    position: relative;
    font-size: 15px;
}

/* FORM GRID */
.form-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
    position: relative;
}

.form-group{
    position: relative;
}

.form-group.full{
    grid-column: 1/-1;
}

/* LABEL */
.form-group label{
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
}

/* INPUT */
.textform{
    width: 100% !important;
    background: #fff !important;
    border: 1px solid #d1d5db !important;
    border-radius: 14px !important;
    color: #111827 !important;
    font-size: 15px !important;
    outline: none !important;
    transition: 0.2s ease !important;
    resize: none !important;
    font-family: 'Inter', sans-serif !important;
    box-sizing: border-box;
}

.textform:focus{
    border-color: #64A40F !important;
    box-shadow: 0 0 0 4px rgba(100,164,15,0.10);
}

.textform::placeholder{
    color: #9ca3af;
}

/* CHECKBOX */
.checkbox-label{
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    color: #6b7280 !important;
    line-height: 1.6 !important;
    font-size: 14px !important;
}

.checkbox-label input{
    margin-top: 3px;
    accent-color: #64A40F;
    width: 16px;
    height: 16px;
}

.checkbox-label a{
    color: #64A40F;
    text-decoration: none;
}

/* BUTTON */
.submit{
    margin-top: 10px;
    background: linear-gradient(135deg,#64A40F,#4F8F0C);
    border: none;
    color: #fff;
    padding: 14px 26px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 0 10px 25px rgba(100,164,15,0.18);
}

.submit:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(100,164,15,0.24);
}

/* ERRORS */
.error_1,
.error_2,
.error_3,
.error_4{
    color: #ef4444;
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

#result{
    color: #111827;
    padding-top: 12px;
}

/* RESPONSIVE */
@media(max-width:1050px){

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

    .contact-info{
        position: relative;
        top: auto;
    }
}

@media(max-width:700px){

    .contact-section{
        padding: 48px 0;
    }

    .contact-title{
        font-size: 34px;
    }

    .form-box{
        padding: 24px;
        border-radius: 20px;
    }

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

    .contact-info{
        padding: 22px;
        border-radius: 18px;
    }

    .form-title{
        font-size: 24px;
    }
}