.ecf-wrapper{
    width:100%;
    max-width:100%;
    display:block;
}

#ecf-contact-form{
    width:100%;
    max-width:600px;
    margin:0 auto;
}

.ecf-row{
    margin-bottom:15px;
}

.ecf-input{
    width:100%;
    padding:10px;
    border:1px solid #ccc;
    border-radius:4px;
    box-sizing:border-box;
}

.ecf-btn{
    background:#0073aa;
    color:#fff;
    border:none;
    padding:12px 25px;
    cursor:pointer;
    border-radius:4px;
}

.ecf-btn:hover{
    background:#005177;
}

.ecf-upload-box{

border:2px dashed #d9d9d9;

padding:25px;

border-radius:8px;

text-align:center;

background:#fafafa;

}

.ecf-btn-secondary{
    background:#0073aa;
    color:#fff;
    border:none;
    padding:5px 10px;
    border-radius:4px;
    cursor:pointer;
    font-size:12px;
    font-weight:500;
    line-height:1.2;
    min-height:30px;
}

.ecf-btn-secondary:hover{
    background:#005177;
}

.ecf-upload-note{

margin-top:15px;

font-size:13px;

color:#777;

}

#ecf-file-preview{

margin-top:15px;

padding:12px;

background:#f4f4f4;

border-radius:6px;

display:flex;

justify-content:space-between;

align-items:center;

}

.ecf-file-info{

display:flex;

flex-direction:column;

}

#ecf-remove-file{

background:#dc3545;

color:#fff;

border:none;

padding:8px 15px;

border-radius:4px;

cursor:pointer;

}

#ecf-loading{

    display:none;

    text-align:center;

    padding:30px 20px;

}

.ecf-loader{

    width:45px;
    height:45px;

    margin:0 auto 15px;

    border:4px solid #e5e5e5;

    border-top:4px solid #28a745;

    border-radius:50%;

    animation:ecf-spin .8s linear infinite;

}

#ecf-loading p{

    margin:0;

    font-size:16px;

    color:#444;

    font-weight:600;

}

@keyframes ecf-spin{

    100%{

        transform:rotate(360deg);

    }

}



#ecf-success-card{
    display:none;
    text-align:center;
    background:#ffffff;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:45px 30px;
    margin:20px 0;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.ecf-success-icon{
    width:90px;
    height:90px;
    margin:0 auto 20px;
    background:#22c55e;
    color:#fff;
    border-radius:50%;
    font-size:48px;
    line-height:90px;
    font-weight:bold;
}

#ecf-success-card h2{
    margin:0 0 15px;
    font-size:36px;
    color:#222;
    font-weight:700;
}

#ecf-success-card p{
    margin:0;
    font-size:18px;
    color:#666;
    line-height:1.7;
}