.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    direction: rtl;
    color: #ffffff;
    background: url('https://danativara.com/wp-content/uploads/Water-dance.jpg') center/cover no-repeat;
    background-color: #001133;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.45), rgba(0,50,100,0.25));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    background-color: #001133;
    max-width: 900px;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-slogan, .hero-text {
    font-size: 1.4rem;
    line-height: 1.8;
    margin: 20px auto;
    max-width: 900px;
    color: #ffffff;
    opacity: 0.95;
}

.hero-logo {
    max-width: 100px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    font-size: 1rem;
    color: #ffffff;
    z-index: 1;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 25px;
    margin: 15px auto 0;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(10px); }
    60% { transform: translateX(-50%) translateY(5px); }
}

.contact-info-section {
    width: 100%;
    padding: 100px 20px;
    background: #001133; /* رنگ تیره مثل بخش اطلاعات تماس */
}

.contact-info-section .elementor-container {
    max-width: 1200px;
    margin: 0 auto;
}