/* Smart Banner Pro Styles */
.smart-banner-container {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
    margin: 0 0 40px 0;
}

/* Background and Effects */
.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    z-index: 0;
}

.animated-bg {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3), transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2), transparent 50%);
    animation: bgAnimation 20s ease infinite;
}

@keyframes bgAnimation {
    0%, 100% { transform: rotate(0deg) scale(1); }
    33% { transform: rotate(120deg) scale(1.1); }
    66% { transform: rotate(240deg) scale(1); }
}

.particle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Content Wrapper */
.banner-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
}

.banner-main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Text Section */
.banner-text-section {
    animation: slideInLeft 1s ease-out;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    color: white;
    font-size: 14px;
    animation: fadeInDown 0.8s ease-out;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.banner-title {
    margin: 0 0 20px 0;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title-line-1 {
    display: block;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 10px;
}

.title-line-2 {
    display: block;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
}

.gradient-text {
    background: linear-gradient(90deg, #00ff88, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.banner-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 40px 0;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.highlight-number {
    color: #00ff88;
    font-weight: 700;
    font-size: 1.4rem;
}

/* Smart Features */
.smart-features {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.feature-icon-wrapper {
    position: relative;
}

.feature-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 12px;
}

.feature-content h4 {
    margin: 0;
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.feature-content p {
    margin: 2px 0 0 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* CTA Section */
.cta-section {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.smart-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background: linear-gradient(90deg, #00ff88, #00d4ff);
    color: #0a0a0a;
}

.primary-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.smart-btn:hover .btn-icon {
    transform: translateX(5px);
}

[dir="rtl"] .smart-btn:hover .btn-icon {
    transform: translateX(-5px);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    animation: fadeInUp 1s ease-out 1s both;
    flex-wrap: wrap;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.indicator-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
}

/* Visual Section */
.banner-visual-section {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.visual-container {
    position: relative;
    height: 500px;
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 15%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.card-content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.card-icon {
    font-size: 1.5rem;
}

.card-text {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Main Visual */
.main-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.visual-circle {
    width: 250px;
    height: 250px;
    position: relative;
}

.circle-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 212, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 30px rgba(0, 255, 136, 0.5); }
    50% { box-shadow: 0 0 60px rgba(0, 212, 255, 0.8); }
}

.logo-letter {
    font-size: 6rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

/* Orbits */
.orbit-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.orbit-1 {
    width: 300px;
    height: 300px;
    top: -25px;
    left: -25px;
    animation: rotate 20s linear infinite;
}

.orbit-2 {
    width: 350px;
    height: 350px;
    top: -50px;
    left: -50px;
    animation: rotate 30s linear infinite reverse;
}

.orbit-3 {
    width: 400px;
    height: 400px;
    top: -75px;
    left: -75px;
    animation: rotate 40s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Stats Container */
.stats-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #00ff88;
    margin-bottom: 5px;
}

.stat-number.static-text {
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Offers Ticker */
.offers-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    padding: 0 50px;
    color: white;
    font-weight: 500;
    font-size: 1rem;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RTL Support */
[dir="rtl"] .banner-main-content {
    direction: rtl;
}

[dir="rtl"] .cta-section,
[dir="rtl"] .trust-indicators,
[dir="rtl"] .smart-features {
    flex-direction: row-reverse;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .banner-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .banner-visual-section {
        height: 400px;
    }
    
    .visual-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .banner-content-wrapper {
        padding: 60px 0 40px;
    }
    
    .title-line-1 {
        font-size: 1.5rem;
    }
    
    .title-line-2 {
        font-size: 3rem;
    }
    
    .banner-description {
        font-size: 1.1rem;
    }
    
    .smart-features {
        flex-direction: column;
    }
    
    .cta-section {
        flex-direction: column;
    }
    
    .smart-btn {
        width: 100%;
        justify-content: center;
    }
    
    .trust-indicators {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .visual-circle {
        width: 180px;
        height: 180px;
    }
    
    .logo-letter {
        font-size: 4rem;
    }
    
    .floating-cards {
        display: none;
    }
    
    .stats-container {
        padding: 15px 20px;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .ticker-item {
        padding: 0 30px;
        font-size: 0.9rem;
    }
}