/* ============================================
   PREMIUM HERO SECTION STYLES
   ============================================ */

/* Hero Section Enhancement */
header.section.overflow_hidden.is-inverse {
    position: relative;
    overflow: hidden;
}

/* Hero Title Enhancement */
.heading_h1 {
    position: relative;
    background: linear-gradient(135deg,
            #fff 0%,
            rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Hero Image Container */
.image-ratio_3x2 {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    animation: scaleIn 0.8s ease-out 0.4s both;
}

.image-ratio_3x2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.image-ratio_3x2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center,
            rgba(255, 77, 0, 0.1) 0%,
            transparent 70%);
    z-index: 1;
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.image-ratio_3x2:hover::after {
    opacity: 1;
}

.image-ratio_3x2 img {
    transition: transform var(--transition-slow);
}

.image-ratio_3x2:hover img {
    transform: scale(1.05);
}

/* Hero Buttons Enhancement */
.button-group.is-align-center {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.button.on-accent-primary {
    background: linear-gradient(135deg,
            var(--premium-primary) 0%,
            var(--premium-primary-hover) 100%);
    box-shadow: 0 4px 20px rgba(255, 77, 0, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.button.on-accent-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.button.on-accent-primary:hover::before {
    width: 300px;
    height: 300px;
}

.button.on-accent-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 77, 0, 0.4);
}

.button.is-secondary.on-inverse {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(var(--blur-sm));
    -webkit-backdrop-filter: blur(var(--blur-sm));
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.button.is-secondary.on-inverse:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Hero Intro Animation Container */
.ix_hero-intro-down-scale-3d {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive Hero */
@media (max-width: 991px) {
    .heading_h1 {
        font-size: clamp(2.5rem, 8vw, 5.65rem);
    }

    .image-ratio_3x2 {
        border-radius: var(--radius-xl);
    }
}

@media (max-width: 479px) {
    .heading_h1 {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
        /* Slightly smaller for better fit */
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .button-group.is-align-center {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        /* Better gap */
    }

    .button {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        /* Optimized padding */
    }

    .image-ratio_3x2 {
        border-radius: var(--radius-lg);
        /* Smaller radius for mobile */
        margin-bottom: 1.5rem;
    }
}