body{
    background:#f5f7fa;
    margin:0;
    font-family:sans-serif;
}

.property-info{
    display:flex;
    gap:12px;
    padding:12px;
    margin-bottom:20px;
    background:#f8f9fb;
    border-radius:12px;
    border:1px solid #e5e7eb;
}

.property-info img{
    width:100px;
    height:75px;
    object-fit:cover;
    border-radius:8px;
    flex-shrink:0;
}

.property-detail{
    flex:1;
}

.property-name{
    font-size:14px;
    font-weight:bold;
    color:#333;
    margin-bottom:6px;
}

.property-price{
    color:#d32f2f;
    font-weight:bold;
    margin-bottom:4px;
}

.property-address{
    font-size:12px;
    color:#666;
}

.contact-card{
    max-width:500px;
    margin:20px auto;
    padding:20px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
    box-sizing:border-box;
}

.contact-header{
    text-align:center;
    margin-bottom:25px;
}

.contact-header h2{
    margin:0;
    color:#1e3a5f;
}

.contact-header p{
    margin-top:8px;
    color:#777;
    font-size:13px;
}

.form-group{
    margin-bottom:18px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:bold;
    color:#333;
}

input[type=text],
input[type=email],
input[type=tel],
textarea{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    box-sizing:border-box;
}

textarea{
    resize:none;
}

.radio-inline{
    display:flex;
    gap:20px;
}

.contact-type{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.contact-type label{
    margin:0;
}

.contact-type input{
    display:none;
}

.contact-type span{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:14px 10px;
    background:#f1f4f8;
    border-radius:10px;
    cursor:pointer;
    border:2px solid transparent;
    transition:.2s;
}

.contact-type input:checked + span{
    background:#e7f0ff;
    border-color:#2c5aa0;
    color:#2c5aa0;
    font-weight:bold;
}

.agree-box{
    margin:20px 0;
    font-size:14px;
}

.submit-btn{
    width:100%;
    border:none;
    background:#1e3a5f;
    color:#fff;
    padding:16px;
    border-radius:12px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    box-shadow:0 4px 12px rgba(30,58,95,.3);
    margin-top: 10px;
}

.submit-btn:active{
    transform:scale(.98);
}

.quick-contact{
    display:flex;
    justify-content:center;
    gap:12px;
    margin:20px 0;
}

.quick-contact a{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:12px 18px;
    border-radius:10px;
    text-decoration:none;
    font-weight:bold;
    background:#f1f4f8;
    color:#1e3a5f;
}

.submit-btn:disabled{
    background:#ccc;
    cursor:not-allowed;
    box-shadow:none;
    opacity:.7;
}