/* Hero Section Styles - Modern Design */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding-top: 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
    color: white;
    margin-top: -80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 30px;
    font-size: 0.9em;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.badge-icon {
    font-size: 1.2em;
}

.hero-title {
    margin: 0;
    line-height: 1.1;
}

.title-main {
    display: block;
    font-size: 4em;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.1); }
}

.title-sub {
    display: block;
    font-size: 1.5em;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    letter-spacing: 2px;
}

.hero-description {
    margin: 40px 0 50px 0;
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.8em;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.4;
    flex-wrap: wrap;
}

.tagline-icon {
    font-size: 1.2em;
    animation: bounce 2s ease-in-out infinite;
}

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

.tagline-text {
    color: rgba(255, 255, 255, 0.9);
}

.tagline-highlight {
    color: #ffd700;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0 60px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.feature-icon {
    font-size: 1.8em;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: rotate(10deg);
}

.feature-content h3 {
    margin: 0 0 8px 0;
    color: white;
    font-size: 1.2em;
    font-weight: 600;
}

.feature-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9em;
    line-height: 1.4;
}

.hero-cta {
    display: flex;
    justify-content: center;
    margin: 30px 0 0 0;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 25px 50px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.5em;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 300px;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.hero-button:hover::before {
    left: 100%;
}

.hero-button:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.hero-button:active {
    transform: translateY(-1px) scale(1.02);
}

.button-icon {
    font-size: 1.4em;
    animation: rocket 2s ease-in-out infinite;
}

@keyframes rocket {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
}

.button-arrow {
    font-size: 1.4em;
    transition: transform 0.3s ease;
}

.hero-button:hover .button-arrow {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding: 30px 15px;
    }
    
    .hero-content {
        margin-top: -20px;
    }
    
    .title-main {
        font-size: 3.5em;
    }
    
    .title-sub {
        font-size: 1.2em;
    }
    
    .hero-tagline {
        font-size: 1.4em;
        flex-direction: column;
        gap: 8px;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0 50px 0;
    }
    
    .feature-item {
        padding: 25px 15px;
    }
    
    .hero-button {
        font-size: 1.3em;
        padding: 22px 45px;
        min-width: 280px;
    }
    
    .hero-badge {
        font-size: 0.8em;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        margin-top: -10px;
    }
    
    .title-main {
        font-size: 2.8em;
    }
    
    .hero-tagline {
        font-size: 1.2em;
    }
    
    .hero-subtitle {
        font-size: 1em;
    }
    
    .feature-item {
        padding: 20px 10px;
    }
    
    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon {
        font-size: 1.5em;
    }
}
