.contact-box{
    width:100%;
    background:#ffffff;
}

.contact-main{
    padding:60px 0 30px;
    display:flex;
    justify-content:space-between;
    gap:30px;
}

.contact-main-left{
    width:35%;
}

.contact-main-right{
    width:65%;
}

.contact-card{
    width:100%;
    background:#ffffff;
    border:1px solid #eeeeee;
    border-radius:16px;
    padding:35px 30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.contact-card h2{
    font-size:2rem;
    line-height:42px;
    color:#222222;
    margin-bottom:25px;
    font-weight:bold;
}

.contact-info-list{
    margin:0;
    padding:0;
    list-style:none;
}

.contact-info-list li{
    display:flex;
    align-items:flex-start;
    gap:16px;
    padding:0 0 24px 0;
    margin-bottom:24px;
    border-bottom:1px solid #f2f2f2;
}

.contact-info-list li:last-child{
    margin-bottom:0;
    padding-bottom:0;
    border-bottom:none;
}

.contact-info-list li i{
    width:48px;
    height:48px;
    line-height:48px;
    text-align:center;
    border-radius:50%;
    background:#fc0000;
    color:#ffffff;
    font-size:20px;
    flex:0 0 48px;
}

.contact-info-list li strong{
    display:block;
    font-size:18px;
    line-height:28px;
    color:#222222;
    margin-bottom:6px;
}

.contact-info-list li p{
    font-size:15px;
    line-height:28px;
    color:#666666;
    margin:0;
}

.contact-form{
    width:100%;
}

.contact-form-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.contact-form-item{
    width:50%;
}

.contact-form-item.width-full{
    width:100%;
}

.contact-form-item label{
    display:block;
    font-size:15px;
    line-height:24px;
    color:#222222;
    margin-bottom:8px;
    font-weight:600;
}

.contact-form-item input,
.contact-form-item textarea{
    width:100%;
    border:1px solid #dddddd;
    border-radius:10px;
    background:#ffffff;
    padding:0 16px;
    font-size:15px;
    color:#333333;
    transition:all .3s ease;
    box-sizing:border-box;
}

.contact-form-item input{
    height:48px;
    line-height:48px;
}

.contact-form-item textarea{
    height:160px;
    padding-top:14px;
    resize:none;
    line-height:24px;
}

.contact-form-item input:focus,
.contact-form-item textarea:focus{
    border-color:#fc0000;
    outline:none;
    box-shadow:0 0 0 3px rgba(252,0,0,0.08);
}

.contact-submit-btn{
    display:inline-block;
    min-width:180px;
    height:50px;
    line-height:50px;
    text-align:center;
    border:none;
    border-radius:30px;
    background:#fc0000;
    color:#ffffff;
    font-size:16px;
    cursor:pointer;
    transition:all .3s ease;
}

.contact-submit-btn:hover{
    background:#d80000;
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(252,0,0,0.22);
}

.contact-map-wrap{
    padding:20px 0 60px;
}

.contact-map-box{
    width:100%;
}

.contact-map-box h2{
    font-size:2rem;
    line-height:42px;
    color:#222222;
    margin-bottom:20px;
    font-weight:bold;
}

.contact-map{
    width:100%;
    height:420px;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.feedback-submit-disabled{
    opacity:.75;
    cursor:not-allowed !important;
}

.custom-form-loading{
    display:none;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.42);
    z-index:99990;
}

.custom-form-loading-box{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    min-width:260px;
    background:#ffffff;
    border-radius:16px;
    padding:30px 28px;
    box-shadow:0 18px 45px rgba(0,0,0,0.18);
    text-align:center;
}

.custom-form-loading-spinner{
    display:block;
    width:42px;
    height:42px;
    margin:0 auto 14px;
    border:3px solid rgba(252,0,0,0.16);
    border-top-color:#fc0000;
    border-radius:50%;
    animation:customFormSpin .85s linear infinite;
}

.custom-form-loading-text{
    color:#333333;
    font-size:15px;
    line-height:24px;
}

@keyframes customFormSpin{
    from{ transform:rotate(0deg); }
    to{ transform:rotate(360deg); }
}

.custom-form-modal{
    display:none;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    z-index:99991;
}

.custom-form-modal-mask{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.42);
}

.custom-form-modal-box{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:420px;
    max-width:92%;
    background:#ffffff;
    border-radius:18px;
    padding:34px 28px 28px;
    box-shadow:0 18px 45px rgba(0,0,0,0.18);
    text-align:center;
}

.custom-form-modal-icon{
    width:72px;
    height:72px;
    line-height:72px;
    margin:0 auto 18px;
    border-radius:50%;
    background:rgba(46,180,95,0.12);
    color:#2eb45f;
    font-size:36px;
    font-weight:bold;
}

.custom-form-modal-icon.error{
    background:rgba(252,0,0,0.10);
    color:#fc0000;
}

.custom-form-modal-title{
    margin-bottom:10px;
    color:#222222;
    font-size:1.6rem;
    line-height:1.3;
    font-weight:700;
}

.custom-form-modal-text{
    color:#666666;
    font-size:15px;
    line-height:26px;
    margin-bottom:24px;
}

.custom-form-modal-btn{
    display:inline-block;
    min-width:120px;
    height:44px;
    line-height:44px;
    padding:0 20px;
    border-radius:24px;
    background:#fc0000;
    color:#ffffff;
    text-decoration:none;
    font-size:15px;
    transition:all .3s ease;
}

.custom-form-modal-btn:hover{
    background:#d80000;
}

@media (max-width: 768px) {
    .contact-main{
        flex-wrap:wrap;
        padding:45px 0 25px;
    }

    .contact-main-left,
    .contact-main-right{
        width:100%;
    }

    .contact-card{
        padding:28px 20px;
    }

    .contact-card h2,
    .contact-map-box h2{
        font-size:1.7rem;
        line-height:36px;
        margin-bottom:20px;
    }

    .contact-form-row{
        flex-wrap:wrap;
        gap:15px;
        margin-bottom:15px;
    }

    .contact-form-item{
        width:100%;
    }

    .contact-map-wrap{
        padding:15px 0 45px;
    }

    .contact-map{
        height:320px;
    }

    .custom-form-loading-box{
        min-width:220px;
        padding:24px 18px;
        border-radius:12px;
    }

    .custom-form-loading-spinner{
        width:36px;
        height:36px;
    }

    .custom-form-loading-text{
        font-size:14px;
        line-height:22px;
    }

    .custom-form-modal-box{
        padding:26px 18px 22px;
        border-radius:14px;
    }

    .custom-form-modal-icon{
        width:60px;
        height:60px;
        line-height:60px;
        font-size:30px;
        margin-bottom:14px;
    }

    .custom-form-modal-title{
        font-size:1.28rem;
    }

    .custom-form-modal-text{
        font-size:14px;
        line-height:24px;
        margin-bottom:20px;
    }

    .custom-form-modal-btn{
        min-width:100px;
        height:42px;
        line-height:42px;
        font-size:14px;
    }
}