.hj-contact-wrapper {
background:#f8f5f1;
padding:50px 0;
direction:rtl;
font-family:'Tajawal', sans-serif;
}
.hj-container {
max-width:800px;
margin:auto;
padding:0 20px;
}
.hj-title {
font-size:32px;
font-weight:700;
color:#2e231c;
text-align:center;
margin-bottom:10px;
}
.hj-subtitle {
text-align:center;
font-size:16px;
color:#6d5f55;
margin-bottom:40px;
}
.hj-cards {
display:flex;
flex-wrap:wrap;
gap:20px;
margin-bottom:40px;
justify-content:center;
}
.hj-card {
background:white;
padding:20px;
border-radius:14px;
width:300px;
text-align:center;
box-shadow:0 2px 10px rgba(0,0,0,.05);
transition:0.3s;
}
.hj-card:hover {
transform:translateY(-3px);
box-shadow:0 4px 14px rgba(0,0,0,.08);
}
.hj-card h3 {
font-size:18px;
color:#362a22;
margin-bottom:10px;
}
.hj-link {
color:#a88663;
font-size:16px;
text-decoration:none;
font-weight:600;
}
.hj-link:hover {
text-decoration:underline;
}
.hj-form-wrap {
background:white;
padding:30px;
border-radius:16px;
box-shadow:0 2px 12px rgba(0,0,0,.05);
}
.hj-form-title {
font-size:22px;
margin-bottom:20px;
text-align:center;
color:#2e231c;
}
.hj-form label {
display:block;
margin-bottom:6px;
font-size:15px;
color:#4a4038;
}
.hj-form input,
.hj-form textarea {
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:10px;
font-size:15px;
background:#fafafa;
}
.hj-btn {
width:100%;
padding:14px;
background:#2e231c;
color:white;
border:none;
border-radius:12px;
font-size:16px;
cursor:pointer;
transition:0.3s;
}
.hj-btn:hover {
background:#a88663;
}
@media(max-width:600px){
.hj-card { width:100%; }
}