/* استایل‌های صفحه تماس با ما */
.contact-section {
    background: transparent;
    padding: 48px 20px;
    position: relative;
    overflow: hidden;
    min-height: calc(167vh - 200px);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* هدر صفحه تماس */
.contact-header {
    padding: 40px 48px;
    text-align: center;
    margin-bottom: 48px;
}

.contact-main-title {
    font-size: 42px;
    font-weight: 900;
    color: #B8A788;
    margin-bottom: 24px;
    letter-spacing: -0.6px;
    text-shadow: 0 4px 20px rgba(184, 167, 136, 0.4);
    animation: titleGlow 3s ease-in-out infinite;
}

.contact-intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #E6E7E8;
    margin: 0;
    opacity: 0.9;
}

/* گرید اطلاعات تماس */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.contact-info-card {
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    box-shadow: 
        0 24px 70px rgba(184, 167, 136, 0.6),
        0 0 0 0.6px rgba(184, 167, 136, 0.6),
        inset 0 0.6px 2px rgba(230, 231, 232, 0.4);
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(230, 231, 232, 0.25) 0%, rgba(184, 167, 136, 0.2) 100%);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border-radius: 20px;
    border: 2px solid rgba(184, 167, 136, 0.5);
    color: #B8A788;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 24px rgba(184, 167, 136, 0.4),
        inset 0 2px 4px rgba(230, 231, 232, 0.3);
}

.contact-info-card:hover .contact-icon-wrapper {
    background: linear-gradient(135deg, rgba(230, 231, 232, 0.35) 0%, rgba(184, 167, 136, 0.3) 100%);
    border-color: rgba(184, 167, 136, 0.7);
    color: #E6E7E8;
    box-shadow: 
        0 12px 32px rgba(184, 167, 136, 0.5),
        inset 0 2px 6px rgba(230, 231, 232, 0.4);
}

.contact-icon {
    width: 40px;
    height: 40px;
}

.contact-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #B8A788;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.contact-info-card:hover .contact-card-title {
    color: #E6E7E8;
}

/* شماره‌های تماس */
.contact-phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.contact-phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #E6E7E8;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 20px;
    background: rgba(230, 231, 232, 0.1);
    border: 2px solid rgba(184, 167, 136, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-phone-link:hover {
    background: rgba(184, 167, 136, 0.2);
    border-color: rgba(184, 167, 136, 0.6);
    color: #B8A788;
    box-shadow: 0 4px 14px rgba(184, 167, 136, 0.4);
}

.phone-icon-small {
    width: 20px;
    height: 20px;
    color: #B8A788;
}

.contact-phone-link:hover .phone-icon-small {
    color: #E6E7E8;
}

/* ایمیل */
.contact-email-link {
    display: inline-block;
    color: #E6E7E8;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 24px;
    background: rgba(230, 231, 232, 0.1);
    border: 2px solid rgba(184, 167, 136, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-email-link:hover {
    background: rgba(184, 167, 136, 0.2);
    border-color: rgba(184, 167, 136, 0.6);
    color: #B8A788;
    box-shadow: 0 4px 14px rgba(184, 167, 136, 0.4);
}

/* شبکه‌های اجتماعی */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #E6E7E8;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 20px;
    background: rgba(230, 231, 232, 0.1);
    border: 2px solid rgba(184, 167, 136, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(184, 167, 136, 0.2);
    border-color: rgba(184, 167, 136, 0.6);
    color: #B8A788;
    box-shadow: 0 4px 14px rgba(184, 167, 136, 0.4);
}

.social-icon {
    width: 20px;
    height: 20px;
    color: #B8A788;
}

.social-link:hover .social-icon {
    color: #E6E7E8;
}

/* بخش آدرس‌ها */
.address-section {
    margin-bottom: 48px;
}

.address-section-title {
    font-size: 36px;
    font-weight: 900;
    color: #B8A788;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: -0.6px;
    text-shadow: 0 4px 20px rgba(184, 167, 136, 0.4);
    animation: titleGlow 3s ease-in-out infinite;
}

.address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.address-card {
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.address-card:hover {
    box-shadow: 
        0 24px 70px rgba(184, 167, 136, 0.6),
        0 0 0 0.6px rgba(184, 167, 136, 0.6),
        inset 0 0.6px 2px rgba(230, 231, 232, 0.4);
}

.address-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(230, 231, 232, 0.25) 0%, rgba(184, 167, 136, 0.2) 100%);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border-radius: 16px;
    border: 2px solid rgba(184, 167, 136, 0.5);
    color: #B8A788;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 24px rgba(184, 167, 136, 0.4),
        inset 0 2px 4px rgba(230, 231, 232, 0.3);
}

.address-card:hover .address-icon-wrapper {
    background: linear-gradient(135deg, rgba(230, 231, 232, 0.35) 0%, rgba(184, 167, 136, 0.3) 100%);
    border-color: rgba(184, 167, 136, 0.7);
    color: #E6E7E8;
    box-shadow: 
        0 12px 32px rgba(184, 167, 136, 0.5),
        inset 0 2px 6px rgba(230, 231, 232, 0.4);
}

.address-icon {
    width: 36px;
    height: 36px;
}

.address-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #B8A788;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.address-card:hover .address-card-title {
    color: #E6E7E8;
}

.address-text {
    font-size: 16px;
    line-height: 1.8;
    color: #E6E7E8;
    margin: 0;
    opacity: 0.9;
}

/* پیام‌های موفقیت/خطا */
.contact-message {
    padding: 20px 24px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.success-message {
    border-left: 4px solid #B8A788;
}

.error-message {
    border-left: 4px solid #e74c3c;
}

.message-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #B8A788;
}

.error-message .message-icon {
    color: #e74c3c;
}

.contact-message p {
    margin: 0;
    font-size: 16px;
    color: #E6E7E8;
    font-weight: 500;
}

/* فرم تماس */
.contact-form-section {
    margin-top: 48px;
}

.contact-form-wrapper {
    padding: 48px 40px;
    max-width: 480px;
    margin: 0 auto;
}

.contact-form-title {
    font-size: 32px;
    font-weight: 900;
    color: #B8A788;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: -0.6px;
    text-shadow: 0 4px 20px rgba(184, 167, 136, 0.4);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 16px;
    font-weight: 600;
    color: #B8A788;
    text-align: right;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(230, 231, 232, 0.1);
    border: 2px solid rgba(184, 167, 136, 0.3);
    border-radius: 12px;
    color: #E6E7E8;
    font-size: 16px;
    font-family: 'Vazirmatn', 'Vazir', 'Tahoma', 'Arial', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background: rgba(230, 231, 232, 0.15);
    border-color: rgba(184, 167, 136, 0.6);
    box-shadow: 0 0 0 4px rgba(184, 167, 136, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(230, 231, 232, 0.5);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, rgba(184, 167, 136, 0.3) 0%, rgba(184, 167, 136, 0.2) 100%);
    border: 2px solid rgba(184, 167, 136, 0.5);
    border-radius: 12px;
    color: #B8A788;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Vazirmatn', 'Vazir', 'Tahoma', 'Arial', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 14px rgba(184, 167, 136, 0.4);
    margin-top: 8px;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, rgba(184, 167, 136, 0.4) 0%, rgba(184, 167, 136, 0.3) 100%);
    border-color: rgba(184, 167, 136, 0.7);
    color: #E6E7E8;
    box-shadow: 0 6px 20px rgba(184, 167, 136, 0.6);
}

.form-submit-btn:active {
    transform: scale(0.98);
}

.submit-icon {
    width: 20px;
    height: 20px;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .contact-section {
        padding: 32px 14px;
    }
    
    .contact-header {
        padding: 32px 24px;
        margin-bottom: 32px;
    }
    
    .contact-main-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .contact-intro-text {
        font-size: 14px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 32px;
    }
    
    .contact-info-card {
        padding: 24px 20px;
    }
    
    .contact-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 16px;
    }
    
    .contact-icon {
        width: 36px;
        height: 36px;
    }
    
    .contact-card-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .contact-phone-link,
    .contact-email-link,
    .social-link {
        font-size: 16px;
        padding: 10px 16px;
    }
    
    .address-section-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .address-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .address-card {
        padding: 24px 20px;
    }
    
    .address-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .address-icon {
        width: 30px;
        height: 30px;
    }
    
    .address-card-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .address-text {
        font-size: 14px;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .contact-form-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .form-label {
        font-size: 14px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .form-submit-btn {
        padding: 14px 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 24px 12px;
    }
    
    .contact-header {
        padding: 24px 20px;
        margin-bottom: 24px;
    }
    
    .contact-main-title {
        font-size: 24px;
    }
    
    .contact-intro-text {
        font-size: 12px;
    }
    
    .contact-info-grid {
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .contact-info-card {
        padding: 20px 16px;
    }
    
    .contact-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .contact-icon {
        width: 30px;
        height: 30px;
    }
    
    .contact-card-title {
        font-size: 16px;
    }
    
    .contact-phone-link,
    .contact-email-link,
    .social-link {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .address-section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .address-grid {
        gap: 16px;
    }
    
    .address-card {
        padding: 20px 16px;
    }
    
    .address-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .address-icon {
        width: 24px;
        height: 24px;
    }
    
    .address-card-title {
        font-size: 16px;
    }
    
    .address-text {
        font-size: 12px;
    }
    
    .contact-form-wrapper {
        padding: 24px 20px;
    }
    
    .contact-form-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .contact-form {
        gap: 16px;
    }
    
    .form-label {
        font-size: 12px;
    }
    
    .form-input,
    .form-textarea {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .form-textarea {
        min-height: 100px;
    }
    
    .form-submit-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

