/**
 * Hero Section - Aiero Complete Styling
 * Date: October 2, 2025
 */

/* Hero Icons Grid 2x2 - Aiero Style */
.mm-hero__icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 32px;
    padding: 40px;
    max-width: 500px;
}

.mm-hero__icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(91, 81, 255, 0.2));
    transition: transform 0.3s ease;
}

.mm-hero__icon:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Floating Animation - Aiero */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.mm-float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Eyebrow Badge - Aiero Purple */
.mm-hero__eyebrow,
.mm-eyebrow {
    background: rgba(91, 81, 255, 0.1) !important;
    color: #5B51FF !important;
    border: 1px solid rgba(91, 81, 255, 0.2);
}

/* CTA Buttons - Aiero Style */
.mm-hero__ctas .btn-primary {
    background: linear-gradient(135deg, #5B51FF 0%, #00D4FF 100%) !important;
    box-shadow: 0 8px 24px rgba(91, 81, 255, 0.3) !important;
    border: none !important;
    padding: 16px 48px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
}

.mm-hero__ctas .btn-primary:hover {
    box-shadow: 0 12px 32px rgba(91, 81, 255, 0.4) !important;
    transform: translateY(-2px) !important;
}

/* Stats Cards - Aiero Glassmorphic */
.mm-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.mm-hero__stat {
    padding: 24px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 16px !important;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}

.mm-hero__stat h4 {
    font-family: 'Archivo', sans-serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #5B51FF !important;
    margin: 0 0 8px 0 !important;
}

.mm-hero__stat span {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    color: #6B7280 !important;
    display: block;
    line-height: 1.4;
}

/* Hero Visual - Right Side */
.mm-hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

/* Responsive */
@media (max-width: 960px) {
    .mm-hero__icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 24px;
        max-width: 400px;
    }
    
    .mm-hero__icon {
        width: 80px;
        height: 80px;
    }
    
    .mm-hero__stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .mm-hero__icons {
        gap: 16px;
        padding: 16px;
    }
    
    .mm-hero__icon {
        width: 60px;
        height: 60px;
    }
}

/* Hero Image Classes - Desktop Base Styles */
.hero-doctor-main {
    width: 280px !important;
    height: 280px !important;
    max-width: 280px !important;
    max-height: 280px !important;
    object-fit: contain;
}

.hero-floating-icon-large {
    width: 70px !important;
    height: 70px !important;
    object-fit: contain;
}

.hero-floating-icon-small {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain;
}


