.cp-contact-page {
    background: #f4f7f6;
    padding: 20px 0;
}

.cp-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.cp-wrapper {
    display: flex;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

/* بخش اطلاعات تماس */
.cp-info-section {
    flex: 1;
    background: #2271b1; /* آبی وردپرسی */
    color: #fff;
    padding: 50px;
}

.cp-info-header h2 { font-size: 28px; margin-bottom: 10px; }
.cp-info-header p { font-size: 15px; opacity: 0.8; margin-bottom: 40px; }

.cp-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.cp-icon {
    background: rgba(255,255,255,0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
}

.cp-text h4 { margin: 0; font-size: 16px; }
.cp-text p { margin: 5px 0 0; font-size: 14px; opacity: 0.9; }

.cp-social-links { display: flex; gap: 15px; margin-top: 15px; }
.cp-social-links a { color: #fff; font-size: 13px; text-decoration: underline; }

/* بخش فرم */
.cp-form-section {
    flex: 1.5;
    padding: 50px;
}

/* مطمئن شدن از اینکه همه المان‌ها باکس‌مدل یکسانی دارند */
.cp-form-section *, 
.cp-form-section *::before, 
.cp-form-section *::after {
    box-sizing: border-box;
}

.cp-input-group input, 
.cp-input-group textarea {
margin:0 0 20px 0;
    width: 100%; /* عرض کامل */
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background: #f9f9f9;
    font-family: inherit;
    font-size: 14px;
    display: block; /* برای جلوگیری از رفتارهای غیرمنتظره */
}

.cp-submit-btn {
    width: 100%; /* حالا دقیقاً با اینپوت‌ها هم‌عرض می‌شود */
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 15px; /* پدینگ عمودی برای ارتفاع مناسب */
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
font-family: Vazir, Tahoma, "DejaVu Sans", helvetica, arial, freesans, sans-serif;
    font-size: 16px;
    transition: 0.3s;
    display: block;
    margin-top: 10px;
}

.cp-submit-btn:hover {
    background: #1a5a8e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 113, 177, 0.2);
}
/* ریسپانسیو */
@media (max-width: 900px) {
    .cp-wrapper { flex-direction: column; }
    .cp-info-section, .cp-form-section { padding: 30px; }
}