/* استایل‌های پارالاکس */
.parallax-hero {
    position: relative;
    height: 100vh;
    background-image: url('../images/cta-bg-parallax.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.parallax-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.parallax-cta {
    position: relative;
    height: 60vh;
    background-image: url('../images/cta-bg-parallax.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.parallax-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(78, 115, 223, 0.7);
}

.cta-content {
    position: relative;
    z-index: 1;
}

/* استایل‌های صفحه تماس */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/contact-bg-pattern.png') center/cover;
    opacity: 0.1;
}

.contact-icon {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

/* انیمیشن‌ها */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeIn { animation-name: fadeIn; }
.slideInUp { animation-name: slideInUp; }

/* کارت‌های اطلاعات تماس */
.contact-info-card {
    transition: all 0.3s ease;
    background: white;
    border: 1px solid #eee;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.03);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-primary-light {
    background-color: rgba(78, 115, 223, 0.1);
}

/* فرم تماس */
.rounded-4 {
    border-radius: 1rem !important;
}

.form-floating label {
    right: auto !important;
    left: 0;
}

/* دکمه ارسال */
.btn-spinner .spinner-border {
    display: inline-block !important;
}

.btn-spinner .submit-text {
    display: none;
}

/* نقشه */
.map-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}