/* Enhanced Hero Section Styles for HanuPayout */

/* Hero Container Styles */
.hero {
    position: relative;
    padding: 80px 0 120px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1128, #1c2e4a);
}

.hero-flex-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Hero Content Styles */
.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-badge i {
    margin-right: 8px;
    color: #4CAF50;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.text-gradient {
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

/* Feature Pills */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.feature-pill {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.9rem;
    color: #fff;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

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

.feature-pill i {
    margin-right: 8px;
    color: #4CAF50;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    color: white;
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(33, 150, 243, 0.4);
}

.hero-btn-primary:hover i {
    transform: translateX(4px);
}

.hero-btn-video {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-btn-video i {
    margin-right: 8px;
    color: #FF5252;
}

.hero-btn-video:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    align-items: center;
}

.trust-rating {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stars {
    color: #FFD700;
    letter-spacing: 2px;
}

.trust-rating span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Image Styles */
.hero-image {
    flex: 1;
    position: relative;
    z-index: 2;
}

/* Dashboard Preview */
.dashboard-preview {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.dashboard-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(33, 150, 243, 0.05));
    z-index: -1;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dashboard-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.dashboard-logo span {
    color: #4CAF50;
}

.dashboard-user {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.dashboard-balance {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.balance-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.balance-amount {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.balance-trend {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.balance-trend.positive {
    color: #4CAF50;
}

.balance-trend.negative {
    color: #F44336;
}

/* Transaction List */
.transaction-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.transaction-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.transaction-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.transaction-item.success .transaction-icon {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.transaction-item.pending .transaction-icon {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
}

.transaction-details {
    flex: 1;
}

.transaction-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.transaction-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.transaction-amount {
    font-weight: 600;
    font-size: 1rem;
}

.transaction-item.success .transaction-amount {
    color: #4CAF50;
}

.transaction-item.pending .transaction-amount {
    color: #FFC107;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 12px;
}

.action-button {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-button i {
    font-size: 1.2rem;
    color: #4CAF50;
}

.action-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Notification Toast */
.notification-toast {
    position: absolute;
    top: 20px;
    right: -20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.5s forwards, fadeOut 0.5s 5s forwards;
    z-index: 10;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.notification-icon.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.notification-message {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.notification-close {
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 4px;
}

.notification-close:hover {
    color: white;
}

/* Wave Divider */
.hero-shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-shape-divider .shape-fill {
    fill: #FFFFFF;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-flex-container {
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-features, .hero-buttons, .hero-trust {
        justify-content: center;
    }
    
    .dashboard-preview {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 100px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .quick-actions {
        flex-wrap: wrap;
    }
    
    .action-button {
        min-width: 30%;
    }
}

@media (max-width: 576px) {
    .hero-badge {
        font-size: 0.8rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-pill {
        width: 100%;
        justify-content: center;
    }
}
