﻿/* ===== استایل صفحه تماس با ما ===== */
.contact-info-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
}

    .contact-info-wrapper .contact-icon {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .contact-info-wrapper .contact-icon i {
            font-size: 22px;
        }

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
}

    .contact-info-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .contact-info-item .info-text {
        flex: 1;
    }

        .contact-info-item .info-text h6 {
            font-size: 15px;
            font-weight: 600;
            color: #393737;
            margin-bottom: 2px;
        }

        .contact-info-item .info-text p,
        .contact-info-item .info-text a {
            font-size: 15px;
            color: #888787;
            margin-bottom: 0;
            transition: color 0.3s ease;
        }

            .contact-info-item .info-text a:hover {
                color: #91D089;
            }

        .contact-info-item .info-text .small-note {
            font-size: 13px;
            color: #aaa;
        }

/* ===== نقشه بزرگ ===== */
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    min-height: 450px;
    background: #f7f7f7;
}

    .map-wrapper iframe {
        width: 100%;
        height: 100%;
        min-height: 450px;
        border: 0;
        display: block;
    }

/* ===== ساعت کاری ===== */
.business-hours-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 35px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
}

    .business-hours-card .hour-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid #f5f5f5;
    }

        .business-hours-card .hour-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .business-hours-card .hour-item .day {
            color: #393737;
            font-weight: 500;
            font-size: 15px;
        }

        .business-hours-card .hour-item .time {
            color: #888787;
            font-size: 15px;
        }

            .business-hours-card .hour-item .time.closed {
                color: #FF6B6B;
                font-weight: 600;
            }

            .business-hours-card .hour-item .time i {
                margin-left: 6px;
                font-size: 14px;
            }

            .business-hours-card .hour-item .time.active {
                color: #91D089;
                font-weight: 600;
            }

/* ===== شبکه‌های اجتماعی ===== */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

    .social-links a {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #fff;
        transition: all 0.3s ease;
        text-decoration: none;
    }

        .social-links a:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

    .social-links .whatsapp {
        background: #25D366;
    }

    .social-links .instagram {
        background: #E1306C;
    }

    .social-links .telegram {
        background: #0088cc;
    }

    .social-links .email {
        background: #ea4335;
    }

/* ===== ریسپانسیو ===== */
@media (max-width: 992px) {
    .map-wrapper {
        min-height: 350px;
    }

        .map-wrapper iframe {
            min-height: 350px;
        }

    .contact-info-wrapper {
        padding: 30px 25px;
    }

    .business-hours-card {
        padding: 25px 25px;
    }
}

@media (max-width: 576px) {
    .map-wrapper {
        min-height: 280px;
    }

        .map-wrapper iframe {
            min-height: 280px;
        }

    .contact-info-wrapper {
        padding: 20px 18px;
    }

    .business-hours-card {
        padding: 20px 18px;
    }

    .contact-info-item .info-text p,
    .contact-info-item .info-text a {
        font-size: 14px;
    }

    .business-hours-card .hour-item .day,
    .business-hours-card .hour-item .time {
        font-size: 14px;
    }

    .social-links a {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }
}
