/* ============================================
   صفحة اتصل بنا - تنسيقات خاصة
   ============================================ */

.contact-page {
    padding: 60px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
}

/* معلومات التواصل */
.contact-info-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info-section > p {
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-method-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-method-card:hover {
    border-color: var(--secondary-color);
    transform: translateX(-5px);
    box-shadow: var(--shadow-sm);
}

.contact-method-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-method-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-method-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-method-info a {
    color: var(--primary-color);
    font-weight: 600;
}

/* أوقات العمل */
.working-hours {
    background: var(--light-bg);
    border-radius: var(--radius-md);
    padding: 25px;
    border: 1px solid var(--border-color);
}

.working-hours h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.working-hours h4 i {
    color: var(--primary-color);
}

.working-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.working-hours ul li:last-child {
    border-bottom: none;
}

.working-hours .day {
    font-weight: 600;
    color: var(--text-dark);
}

.working-hours .time {
    color: var(--text-light);
}

.working-hours .time.active {
    color: var(--secondary-color);
    font-weight: 600;
}

/* نموذج الاتصال */
.contact-form-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-form-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-form-section > p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.form-group-contact {
    margin-bottom: 22px;
}

.form-group-contact label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group-contact input,
.form-group-contact textarea,
.form-group-contact select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--light-bg);
}

.form-group-contact input:focus,
.form-group-contact textarea:focus,
.form-group-contact select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
    background: var(--white);
}

.form-group-contact textarea {
    resize: vertical;
    min-height: 140px;
}

.form-row-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
}

/* خريطة */
.map-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--text-muted);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* قنوات التواصل */
.channels-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.channel-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.channel-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--white);
}

.channel-icon.phone {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.channel-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.channel-icon.email {
    background: linear-gradient(135deg, #0288D1, #01579B);
}

.channel-icon.location {
    background: linear-gradient(135deg, #1565C0, #0D47A1);
}

.channel-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.channel-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .contact-form-section {
        padding: 25px;
    }

    .form-row-contact {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-method-card {
        padding: 18px;
    }

    .contact-method-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .map-container {
        height: 300px;
    }

    .channels-grid {
        grid-template-columns: 1fr;
    }
}
