@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
    --bab-cash-primary: #10b981;
    --bab-cash-primary-dark: #059669;
    --bab-cash-secondary: #0f172a;
    --bab-cash-accent: #f59e0b;
    --bab-cash-bg: #f8fafc;
    --bab-cash-white: #ffffff;
    --bab-cash-text: #1e293b;
    --bab-cash-text-muted: #64748b;
    --cairo-font: 'Cairo', sans-serif;
}

body {
    font-family: var(--cairo-font);
    background-color: var(--bab-cash-bg);
    color: var(--bab-cash-text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .hero-title, .section-title, .hero-title-new {
    font-family: var(--cairo-font) !important;
    font-weight: 800;
}

/* Nano Banana Design System */

.premium-card {
    background: var(--bab-cash-white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.2);
    border-color: var(--bab-cash-primary);
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 0;
    background: var(--bab-cash-primary);
    transition: height 0.3s ease;
    z-index: -1;
}

.premium-card:hover::before {
    height: 100%;
}

.btn-bab-cash {
    background: linear-gradient(135deg, var(--bab-cash-primary), var(--bab-cash-primary-dark)) !important;
    color: white !important;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-bab-cash:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4);
}

/* Modern Hero Section */
.hero-section-new {
    padding: 120px 0 140px;
    background: var(--bab-cash-bg);
    background-image: 
        radial-gradient(circle at top right, rgba(16, 185, 129, 0.15), transparent), 
        radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.08), transparent);
    position: relative;
    z-index: 10;
}

.hero-title-new {
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--bab-cash-secondary) !important;
    display: block !important;
    visibility: visible !important;
}

.hero-subtitle-new {
    font-size: 1.3rem;
    color: var(--bab-cash-text-muted);
    margin-bottom: 2.5rem;
    max-width: 95%;
    line-height: 1.6;
}

.hero-image-container {
    position: relative;
    z-index: 1;
}

.hero-image-container::after {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
    top: -20%;
    left: -20%;
    z-index: -1;
}

.section-divider-modern {
    width: 100px;
    height: 6px;
    background: var(--bab-cash-primary);
    border-radius: 3px;
    margin: 1rem auto 2.5rem;
}

/* Feature Icons */
.feature-icon-new {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--bab-cash-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-card:hover .feature-icon-new {
    background: var(--bab-cash-primary);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title-new {
        font-size: 2.8rem;
        text-align: center;
    }
    .hero-subtitle-new {
        text-align: center;
        max-width: 100%;
    }
    .hero-section-new .d-flex {
        justify-content: center;
    }
}
