/*
   contact.css
   استایل اختصاصی صفحه تماس با ما
*/

/* صفحه اصلی */
.contact-page {
    padding: 60px 0 100px;
    background: linear-gradient(135deg, #F5EFE6 0%, #FFFFFF 100%);
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    color: #32127A;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-subtitle {
    color: #666;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* بخش اطلاعات تماس */
.contact-info-section {
    margin-bottom: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* عنوان بخش‌ها */
.section-title {
    color: #32127A;
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    font-size: 26px;
}

.section-description {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

/* جزئیات تماس */
.contact-details {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #F9F7F2;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-item:hover {
    background: white;
    border-color: #D99058;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(217, 144, 88, 0.15);
}

.contact-icon {
    background: #00A693;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-content h3 {
    color: #32127A;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-content p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.contact-content a {
    color: #00A693;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-content a:hover {
    color: #D99058;
    text-decoration: underline;
}

/* شبکه‌های اجتماعی در تماس */
.social-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.social-link.instagram {
    background: rgba(225, 48, 108, 0.1);
    color: #E1306C;
    border-color: #E1306C;
}

.social-link.telegram {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
    border-color: #0088cc;
}

.social-link.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border-color: #25D366;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* بخش نقشه */
.map-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.map-header {
    margin-bottom: 30px;
}

.map-container {
    position: relative;
}

.map-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #E1306C;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 rgba(225, 48, 108, 0.4);
    z-index: 10;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(225, 48, 108, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(225, 48, 108, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(225, 48, 108, 0);
    }
}

/* لینک‌های نقشه */
.map-links {
    background: #F9F7F2;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.map-links h3 {
    color: #32127A;
    margin-bottom: 20px;
    font-size: 18px;
}

.map-apps {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.map-app-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid transparent;
    flex: 1;
    min-width: 120px;
    justify-content: center;
}

.map-app-link.google-maps {
    border-color: #4285F4;
    color: #4285F4;
}

.map-app-link.neshan {
    border-color: #FF6B35;
    color: #FF6B35;
}

.map-app-link.balad {
    border-color: #00A693;
    color: #00A693;
}

.map-app-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.map-app-link i {
    font-size: 20px;
}

/* راهنمای دسترسی */
.access-guide {
    background: #E8F4F3;
    padding: 25px;
    border-radius: 15px;
    border-right: 5px solid #00A693;
}

.access-guide h4 {
    color: #32127A;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
}

.access-guide ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.access-guide li {
    padding: 8px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.access-guide li:before {
    content: "•";
    color: #00A693;
    font-size: 20px;
}

/* بخش فرم تماس */
.contact-form-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-notice {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #FFF3CD;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #FFEEBA;
}

.notice-icon {
    background: #FFC107;
    color: #856404;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.notice-content h4 {
    color: #856404;
    margin-bottom: 10px;
    font-size: 18px;
}

.notice-content p {
    color: #856404;
    margin: 0;
    line-height: 1.7;
}

/* استایل‌های فوتر */
.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}




.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 40px 0 30px;
}

.footer-extra {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 10px;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .contact-page {
        padding: 40px 0 60px;
    }
   
    .page-title {
        font-size: 28px;
    }
   
    .page-subtitle {
        font-size: 16px;
    }
   
    .contact-details,
    .map-section,
    .contact-form-section {
        padding: 25px;
    }
   
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
   
    .contact-icon {
        margin: 0 auto 15px;
    }
   
    .map-apps {
        flex-direction: column;
    }
   
    .map-app-link {
        width: 100%;
        justify-content: center;
    }
   
    .form-notice {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 24px;
    }
   
    .section-title {
        font-size: 20px;
    }
   
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
   
    .map-marker {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
   
    .trust-badges {
        justify-content: center;
    }
}

