/* =====================================================================
   NEW MODERN HERO STYLES
   ===================================================================== */
.hero-wrapper {
    padding: 60px 0 80px;
    position: relative;
    z-index: 1;
}

.hero-modern-card {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

/* Decorative Blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.6;
    animation: floatBlob 10s infinite ease-in-out alternate;
}

.hero-blob-1 {
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.3), rgba(248, 187, 208, 0.2));
}

.hero-blob-2 {
    bottom: -100px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(248, 187, 208, 0.3), rgba(255, 128, 171, 0.2));
    animation-delay: 2s;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 30px) scale(1.1); }
}

.hero-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
    align-items: center;
}

/* Text Section */
.hero-text-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-top-badge {
    background: rgba(233, 30, 99, 0.1);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.hero-title-modern {
    font-size: 3.5rem;
    line-height: 1.1;
    font-family: var(--font-serif);
    color: var(--text-color);
    margin-bottom: 25px;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-color), #ff80ab);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-desc-modern {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 90%;
}

/* Action Buttons */
.hero-actions-modern {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-modern-primary {
    background: linear-gradient(135deg, var(--accent-color), #ff4081);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(233, 30, 99, 0.4);
}

.btn-modern-secondary {
    background: var(--bg-color);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 13px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-modern-secondary:hover {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.2);
}

/* Payment Badges */
.hero-payments {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--input-bg);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    border: 1px solid var(--input-border);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

/* Image Section */
.hero-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-wrapper-glass {
    position: relative;
    width: 100%;
    max-width: 450px;
    border-radius: 50%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: floatImage 6s ease-in-out infinite;
}

.hero-logo-float {
    width: 100%;
    height: auto;
    border-radius: 50%;
    display: block;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

@keyframes floatImage {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: var(--card-bg);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.8);
    z-index: 10;
}

.badge-1 {
    top: 10%;
    left: -5%;
    animation: floatImage 5s ease-in-out infinite alternate;
}
.badge-1 i { color: #E91E63; }

.badge-2 {
    bottom: 10%;
    right: -5%;
    animation: floatImage 7s ease-in-out infinite alternate-reverse;
}
.badge-2 i { color: #4CAF50; }

/* Responsive */
@media (max-width: 992px) {
    .hero-title-modern {
        font-size: 2.8rem;
    }
    .hero-modern-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .hero-grid-modern {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-text-section {
        align-items: center;
        order: 2;
    }
    
    .hero-image-section {
        order: 1;
    }
    
    .hero-desc-modern {
        max-width: 100%;
    }
    
    .hero-actions-modern {
        justify-content: center;
    }
    
    .hero-payments {
        justify-content: center;
    }
    
    .floating-badge {
        display: none; /* Hide on small screens to avoid overflow */
    }
}

@media (max-width: 480px) {
    .hero-title-modern {
        font-size: 2.2rem;
    }
    .btn-modern-primary, .btn-modern-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Dark mode adjustments */
[data-theme="dark"] .hero-modern-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .image-wrapper-glass {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}