/* ===================================
   Hero Section - Redesigned
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a2540 0%, #1a5f7a 50%, #2d8ba8 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Animated Particles Background */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 139, 168, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(200, 90, 84, 0.1) 0%, transparent 50%);
    animation: particlesMove 20s ease-in-out infinite;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../image_test/default.jpg') center/cover;
    opacity: 0.05;
    z-index: 0;
}

/* Badge */
.hero-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.badge-text {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

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

/* Main Title */
.hero-main-title {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.hero-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.subtitle-icon {
    font-size: 1.8rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-highlight {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.title-main {
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Questions Grid */
.hero-questions-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.question-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: var(--spacing-md);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.question-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.question-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.question-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.question-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.question-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Video Section */
.hero-video-section {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
}

.video-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.video-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.video-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
}

.video-container {
    position: relative;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.video-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
}

/* Transformation Section */
.hero-transformation {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto var(--spacing-xl);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xxl);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.transformation-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.quote-mark {
    font-size: 6rem;
    color: var(--secondary-color);
    opacity: 0.3;
    line-height: 0;
    margin-bottom: var(--spacing-sm);
}

.transformation-intro {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.transformation-main {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.6;
}

.transformation-main strong {
    color: var(--secondary-color);
    font-weight: 800;
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.transformation-item {
    background: rgba(255, 255, 255, 0.08);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.transformation-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

.transform-before,
.transform-after {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.transform-icon {
    font-size: 2rem;
}

.transform-text {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
}

.transform-before .transform-text {
    color: rgba(255, 255, 255, 0.6);
}

.transform-after .transform-text {
    color: var(--secondary-color);
}

.transform-arrow {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

/* CTA Section */
.hero-cta {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.cta-button-hero {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #0a2540;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button-hero::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.5s ease;
}

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

.cta-button-hero:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 60px rgba(212, 175, 55, 0.6);
}

.cta-icon {
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

.cta-text {
    position: relative;
    z-index: 1;
}

.cta-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.pulse-animation {
    animation: pulseButton 2s ease-in-out infinite;
}

@keyframes pulseButton {
    0%, 100% { box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 10px 60px rgba(212, 175, 55, 0.6); }
}

.cta-subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-top: var(--spacing-sm);
    font-weight: 500;
}

/* Stats Bar */
.hero-stats {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 5px;
}

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

.stat-divider {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 1;
    animation: floatUpDown 2s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
    transform: rotate(45deg);
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(10px); }
}

.scroll-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Animation Classes */
.animate-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive Design
   =================================== */

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 968px) {
    .hero-questions-grid {
        grid-template-columns: 1fr;
    }
    
    .transformation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .video-title {
        font-size: 1.4rem;
    }
    
    .transformation-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-transformation {
        padding: var(--spacing-md);
    }
    
    .cta-button-hero {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .question-card {
        padding: var(--spacing-sm);
    }
    
    .question-icon {
        font-size: 2rem;
    }
    
    .question-text {
        font-size: 1rem;
    }
    
    .transformation-intro,
    .transformation-main {
        font-size: 1rem;
    }
    
    .quote-mark {
        font-size: 4rem;
    }
    
    .cta-button-hero {
        padding: 15px 30px;
        font-size: 1rem;
        gap: 10px;
    }
    
    .hero-stats {
        flex-direction: column;
        padding: var(--spacing-md);
    }
    
    .stat-divider {
        width: 40px;
        height: 2px;
    }
}
