/* Professional Football Hero Section - Orange Theme */
.professional-hero {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8f65 25%, #ff4500 50%, #e74c3c 75%, #c0392b 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.professional-hero .floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 215, 0, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.1), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: floatParticles 20s linear infinite;
    opacity: 0.6;
}

.professional-hero .gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.professional-hero .gradient-orbs::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: orb1 15s ease-in-out infinite;
}

.professional-hero .gradient-orbs::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: orb2 12s ease-in-out infinite reverse;
}

/* Hero Container */
.professional-hero .hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Content */
.professional-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

/* Hero Text */
.professional-hero .hero-text {
    animation: slideInLeft 1s ease-out;
}

.professional-hero .hero-main-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.professional-hero .gradient-text {
    background: linear-gradient(45deg, #fff 0%, #ffeb3b 50%, #fff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.professional-hero .hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

/* Hero Actions */
.professional-hero .hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.professional-hero .hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.professional-hero .hero-btn.primary {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    color: #ff6b35;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.professional-hero .hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
}

.professional-hero .hero-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.professional-hero .hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

/* Hero Visual */
.professional-hero .hero-visual {
    animation: slideInRight 1s ease-out;
    position: relative;
}

.professional-hero .football-stadium {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 1;
    perspective: 1000px;
}

.professional-hero .stadium-field {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 20px;
    position: relative;
    transform: rotateX(20deg) rotateY(-10deg);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    animation: fieldRotate 8s ease-in-out infinite;
}

.professional-hero .field-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.8) 50%, transparent 51%),
        linear-gradient(0deg, transparent 75%, rgba(255, 255, 255, 0.6) 76%, rgba(255, 255, 255, 0.6) 100%),
        linear-gradient(0deg, transparent 0%, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 25%, transparent 26%),
        linear-gradient(0deg, transparent 85%, rgba(255, 255, 255, 0.8) 86%, rgba(255, 255, 255, 0.8) 100%),
        linear-gradient(0deg, transparent 0%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 15%, transparent 16%);
    border-radius: 20px;
}

.professional-hero .center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.professional-hero .center-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.professional-hero .floating-ball {
    position: absolute;
    top: 20%;
    right: 20%;
    font-size: 3rem;
    color: white;
    animation: ballFloat 4s ease-in-out infinite;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.professional-hero .stats-overlay {
    position: absolute;
    top: -20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 4;
}

.professional-hero .stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    min-width: 80px;
    animation: statPulse 3s ease-in-out infinite;
}

.professional-hero .stat-item:nth-child(2) {
    animation-delay: 0.5s;
}

.professional-hero .stat-item:nth-child(3) {
    animation-delay: 1s;
}

.professional-hero .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.professional-hero .stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

/* Scroll Indicator */
.professional-hero .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    animation: bounce 2s infinite;
    z-index: 3;
}

.professional-hero .scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.professional-hero .scroll-indicator span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Keyframe Animations */
@keyframes floatParticles {
    0% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(-5px) translateX(-5px); }
    75% { transform: translateY(-15px) translateX(10px); }
    100% { transform: translateY(0px) translateX(0px); }
}

@keyframes orb1 {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-20px) scale(1.1); opacity: 0.5; }
}

@keyframes orb2 {
    0%, 100% { transform: translateX(0px) scale(1); opacity: 0.2; }
    50% { transform: translateX(30px) scale(0.9); opacity: 0.4; }
}

@keyframes slideInLeft {
    0% { 
        opacity: 0; 
        transform: translateX(-100px);
    }
    100% { 
        opacity: 1; 
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% { 
        opacity: 0; 
        transform: translateX(100px);
    }
    100% { 
        opacity: 1; 
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0%, 100% { background-position: -200% center; }
    50% { background-position: 200% center; }
}

@keyframes fieldRotate {
    0%, 100% { transform: rotateX(20deg) rotateY(-10deg) scale(1); }
    50% { transform: rotateX(25deg) rotateY(-5deg) scale(1.02); }
}

@keyframes ballFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(90deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    75% { transform: translateY(-20px) rotate(270deg); }
}

@keyframes statPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .professional-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .professional-hero .hero-main-title {
        font-size: 2.5rem;
    }
    
    .professional-hero .hero-description {
        font-size: 1.1rem;
    }
    
    .professional-hero .hero-actions {
        justify-content: center;
    }
    
    .professional-hero .hero-btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .professional-hero .football-stadium {
        max-width: 350px;
    }
    
    .professional-hero .stats-overlay {
        position: relative;
        top: 0;
        right: 0;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .professional-hero .hero-container {
        padding: 0 1rem;
    }
    
    .professional-hero .hero-main-title {
        font-size: 2rem;
    }
    
    .professional-hero .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .professional-hero .hero-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .professional-hero .stats-overlay {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .professional-hero .stat-item {
        min-width: 60px;
        padding: 0.75rem;
    }
    
    .professional-hero .stat-number {
        font-size: 1.2rem;
    }
    
    .professional-hero .stat-label {
        font-size: 0.7rem;
    }
}