/* Modern Hero Section Styles - 2025 Design */

.modern-hero-section {
    position: relative;
    min-height: auto;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    overflow: hidden;
    padding: 30px 0;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.1;
}

.hero-bg-elements::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.3"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.4"/><circle cx="40" cy="80" r="1.5" fill="white" opacity="0.2"/></svg>');
    background-size: 100px 100px;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    color: white;
}

.hero-badge {
    display: inline-block;
}

.badge-text {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: white;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(45deg, #ffd700, #ffb347);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 480px;
}

.hero-buttons .btn {
    border-radius: 50px;
    font-weight: 600;
    text-transform: none;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    border: none;
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.4);
}

.hero-buttons .btn-outline-primary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline-primary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    margin-top: 1.5rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 3;
}

.visual-container {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-visual {
    position: relative;
    width: 300px;
    height: 300px;
}

.visual-grid {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
}

.grid-item {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.grid-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.grid-item span {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Clean Visual Design */
.clean-visual {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-svg {
    width: 100%;
    height: 100%;
    max-width: 400px;
}

/* Soft animations */
.bg-glow {
    animation: soft-pulse 4s ease-in-out infinite;
}

.center-circle {
    animation: gentle-breathe 3s ease-in-out infinite;
}

.orbit-1, .orbit-2, .orbit-3, .orbit-4 {
    animation: orbit-pulse 4s ease-in-out infinite;
}

.orbit-1 { animation-delay: 0s; }
.orbit-2 { animation-delay: 0.5s; }
.orbit-3 { animation-delay: 1s; }
.orbit-4 { animation-delay: 1.5s; }

.connect-line {
    animation: line-fade 3s ease-in-out infinite alternate;
}

/* Feature Icons */
.feature-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.icon-item {
    position: absolute;
    text-align: center;
    animation: gentle-float 3s ease-in-out infinite;
}

.icon-circle {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    margin: 0 auto 5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.icon-item span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.icon-item:nth-child(2) { animation-delay: 0.5s; }
.icon-item:nth-child(3) { animation-delay: 1s; }
.icon-item:nth-child(4) { animation-delay: 1.5s; }

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

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

@keyframes soft-pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes gentle-breathe {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

@keyframes orbit-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

@keyframes line-fade {
    0% { opacity: 0.1; }
    100% { opacity: 0.3; }
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .clean-visual {
        height: 250px;
    }
    
    .icon-circle {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .icon-item span {
        font-size: 9px;
    }
}

@media (max-width: 768px) {
    .modern-hero-section {
        min-height: auto;
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center !important;
    }
    
    .hero-stats {
        margin-top: 2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .clean-visual {
        height: 200px;
        margin-top: 2rem;
    }
    
    .icon-circle {
        width: 25px;
        height: 25px;
        font-size: 10px;
    }
    
    .icon-item span {
        font-size: 8px;
    }
}