/* ====================================
   Hero Slider - Ultra Modern Design
   Next-Generation Hero Section
   ==================================== */

:root {
    --hero-primary: #10b366;
    --hero-secondary: #25a2e2;
    --hero-accent: #e0368e;
    --hero-dark: #1a1a2e;
    --hero-light: #ffffff;
    --hero-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Main Ultra Modern Container */
.hero-ultra-modern {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

/* Hero Slide Ultra */
.hero-slide-ultra {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dynamic Gradient Overlay */
.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.gradient-layer {
    position: absolute;
    inset: 0;
    opacity: 0.85;
    mix-blend-mode: multiply;
}

.layer-1 {
    /* background: linear-gradient(135deg, rgba(16, 179, 102, 0.9) 0%, rgba(37, 162, 226, 0.8) 100%); */
}

.layer-2 {
    /* background: radial-gradient(circle at 30% 50%, rgba(255, 107, 107, 0.4), transparent 70%); */
    animation: gradient-pulse 8s ease-in-out infinite;
}

.layer-3 {
    /* background: radial-gradient(circle at 70% 50%, rgba(255, 165, 0, 0.3), transparent 60%); */
    animation: gradient-pulse 10s ease-in-out infinite reverse;
}

@keyframes gradient-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Animated Background Effects */
.hero-bg-effects {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--hero-primary), transparent 70%);
    top: -100px;
    right: 10%;
    animation: float-orb 20s ease-in-out infinite;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--hero-accent), transparent 70%);
    bottom: -80px;
    left: 15%;
    animation: float-orb 18s ease-in-out infinite 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ffa500, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-orb 22s ease-in-out infinite 3s;
}

.orb-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #ff1744, transparent 70%);
    top: 30%;
    right: 20%;
    animation: float-orb 16s ease-in-out infinite 7s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translate(50px, -50px) scale(1.2);
        opacity: 0.5;
    }
    66% {
        transform: translate(-30px, 40px) scale(0.9);
        opacity: 0.4;
    }
}

/* Geometric Patterns */
.geometric-patterns {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.geo-shape {
    position: absolute;
    opacity: 0.1;
    border: 2px solid white;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid white;
    top: 15%;
    left: 10%;
    animation: rotate-geo 30s linear infinite;
}

.circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    top: 60%;
    right: 15%;
    animation: float-geo 20s ease-in-out infinite;
}

.square {
    width: 80px;
    height: 80px;
    top: 25%;
    right: 25%;
    animation: rotate-geo 25s linear infinite reverse;
}

.hexagon {
    width: 100px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: white;
    border: none;
    animation: float-geo 18s ease-in-out infinite 3s;
}

@keyframes rotate-geo {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float-geo {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Grid Pattern Overlay */
.grid-pattern-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Content Container */
.hero-content-ultra {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 60px 30px;
}

/* Premium Badge */
.hero-premium-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 40px;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    inset: -50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 255, 255, 0.3) 60deg,
        transparent 120deg
    );
    animation: badge-glow-rotate 3s linear infinite;
}

@keyframes badge-glow-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.badge-icon {
    position: relative;
    z-index: 1;
    color: #ffd700;
    font-size: 16px;
    animation: badge-icon-pulse 2s ease-in-out infinite;
}

@keyframes badge-icon-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.badge-label {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: badge-shine 3s ease-in-out infinite;
}

@keyframes badge-shine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

/* Main Heading Ultra */
.hero-heading-ultra {
    font-size: 82px;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin: 0 0 30px 0;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    letter-spacing: -2px;
}

.heading-line {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.heading-underline {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    height: 6px;
    position: relative;
}

.underline-gradient {
    width: 180px;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--hero-primary) 20%,
        var(--hero-accent) 50%,
        var(--hero-primary) 80%,
        transparent 100%
    );
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(16, 179, 102, 0.5);
    animation: underline-pulse 2s ease-in-out infinite;
}

@keyframes underline-pulse {
    0%, 100% {
        transform: scaleX(1);
        opacity: 1;
    }
    50% {
        transform: scaleX(1.1);
        opacity: 0.8;
    }
}

/* Enhanced Subtitle */
.hero-subtitle-ultra {
    margin-bottom: 50px;
}

.subtitle-text {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin: 0 auto 25px;
    max-width: 750px;
    font-weight: 400;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.subtitle-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.deco-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.deco-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    animation: deco-dot-pulse 2s ease-in-out infinite;
}

@keyframes deco-dot-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.6;
    }
}

/* Advanced CTA Section */
.hero-cta-ultra {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 17px;
    overflow: hidden;
    transition: var(--hero-transition);
    border: 2px solid transparent;
}

.btn-bg-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, white, #f8f9fa);
    z-index: 0;
    transition: var(--hero-transition);
}

.cta-btn-primary:hover .btn-bg-effect {
    background: linear-gradient(135deg, #f8f9fa, white);
    transform: scale(1.05);
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--hero-primary);
}

.btn-text {
    font-weight: 700;
}

.btn-arrow {
    display: flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cta-btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

[dir="rtl"] .cta-btn-primary:hover .btn-arrow {
    transform: translateX(-5px);
}

.btn-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--hero-primary);
    border-radius: 50%;
    opacity: 0;
}

.cta-btn-primary:hover .particle-dot {
    animation: particle-explode 0.8s ease-out forwards;
}

.particle-dot:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle-dot:nth-child(2) {
    top: 20%;
    right: 20%;
    animation-delay: 0.1s;
}

.particle-dot:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 0.2s;
}

.particle-dot:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 0.3s;
}

@keyframes particle-explode {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx, 30px), var(--ty, -30px)) scale(0);
    }
}

.cta-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(16, 179, 102, 0.3);
}

/* Outline Button */
.cta-btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 600;
    font-size: 17px;
    overflow: hidden;
    transition: var(--hero-transition);
}

.outline-bg {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    z-index: 0;
    transition: var(--hero-transition);
}

.cta-btn-outline:hover .outline-bg {
    background: rgba(255, 255, 255, 0.15);
}

.outline-border {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 60px;
    transition: var(--hero-transition);
}

.cta-btn-outline:hover .outline-border {
    border-color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.outline-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.outline-icon {
    display: flex;
    align-items: center;
    font-size: 18px;
    transition: var(--hero-transition);
}

.cta-btn-outline:hover .outline-icon {
    transform: scale(1.2) rotate(15deg);
}

.cta-btn-outline:hover {
    transform: translateY(-4px);
}

/* Stats Quick View */
.hero-stats-quick {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 70px;
    padding: 25px 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--hero-primary), var(--hero-accent));
    border-radius: 12px;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(16, 179, 102, 0.3);
}

.stat-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Modern Scroll Guide */
.scroll-guide-ultra {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.scroll-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-circle {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% {
        transform: scale(1);
        border-color: rgba(255, 255, 255, 0.5);
    }
    50% {
        transform: scale(1.1);
        border-color: rgba(255, 255, 255, 0.8);
    }
}

.scroll-arrow {
    color: white;
    font-size: 18px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

.scroll-hint {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Floating Social Links */
.hero-social-float {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link-float {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255 0 0 / 53%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: var(--hero-transition);
    position: relative;
}

.social-link-float::before {
    content: attr(title);
    position: absolute;
    right: 120%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--hero-transition);
    pointer-events: none;
}

.social-link-float:hover::before {
    opacity: 1;
    visibility: visible;
    right: 110%;
}

.social-link-float:hover {
    background: linear-gradient(135deg, var(--hero-primary), var(--hero-accent));
    border-color: var(--hero-primary);
    transform: translateX(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(16, 179, 102, 0.4);
}

.social-connector {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(255, 255, 255, 0.3) 20%, 
        rgba(255, 255, 255, 0.3) 80%, 
        transparent
    );
    z-index: -1;
}

/* Animated Wave Bottom */
.hero-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.hero-wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.hero-wave-bottom svg path {
    fill: #ffffff;
}


/* Responsive Design */
@media (max-width: 1399px) {
    .hero-heading-ultra {
        font-size: 72px;
    }
    
    .hero-social-float {
        right: 30px;
    }
}

@media (max-width: 1199px) {
    .hero-heading-ultra {
        font-size: 64px;
    }

    .subtitle-text {
        font-size: 20px;
    }

    .hero-stats-quick {
        gap: 20px;
        padding: 20px 30px;
    }

    .stat-number {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .hero-ultra-modern {
        min-height: 600px;
    }

    .hero-heading-ultra {
        font-size: 52px;
    }

    .subtitle-text {
        font-size: 18px;
        max-width: 600px;
    }

    .cta-btn-primary,
    .cta-btn-outline {
        padding: 16px 32px;
        font-size: 16px;
    }

    .hero-social-float {
        display: none;
    }

    .geometric-patterns {
        opacity: 0.5;
    }

    .hero-stats-quick {
        gap: 15px;
        padding: 20px;
    }

    .stat-divider:last-of-type {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-ultra-modern {
        min-height: 100vh;
    }

    .hero-content-ultra {
        padding: 40px 20px;
    }

    .hero-premium-badge {
        padding: 12px 24px;
        margin-bottom: 30px;
    }

    .badge-label {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .hero-heading-ultra {
        font-size: 40px;
        margin-bottom: 25px;
    }

    .heading-underline {
        margin-top: 15px;
    }

    .underline-gradient {
        width: 140px;
        height: 5px;
    }

    .subtitle-text {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .hero-cta-ultra {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 50px;
    }

    .cta-btn-primary,
    .cta-btn-outline {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hero-stats-quick {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
        max-width: 320px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        width: 100%;
        justify-content: center;
    }

    .geometric-patterns,
    .floating-orb {
        display: none;
    }

    .scroll-guide-ultra {
        display: none;
    }

    .hero-wave-bottom svg {
        height: 60px;
    }
}

@media (max-width: 575px) {
    .hero-ultra-modern {
        min-height: 100vh;
    }

    .hero-content-ultra {
        padding: 30px 15px;
    }

    .hero-premium-badge {
        padding: 10px 20px;
        margin-bottom: 25px;
        gap: 10px;
    }

    .badge-icon {
        font-size: 14px;
    }

    .badge-label {
        font-size: 11px;
    }

    .hero-heading-ultra {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .underline-gradient {
        width: 120px;
        height: 4px;
    }

    .subtitle-text {
        font-size: 15px;
    }

    .subtitle-decoration {
        gap: 10px;
    }

    .deco-line {
        width: 40px;
    }

    .cta-btn-primary,
    .cta-btn-outline {
        padding: 14px 28px;
        font-size: 15px;
    }

    .hero-stats-quick {
        padding: 20px 15px;
        max-width: 290px;
    }

    .stat-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 12px;
    }

    .hero-wave-bottom svg {
        height: 50px;
    }
}

/* RTL Support */
[dir="rtl"] .hero-social-float {
    right: auto;
    left: 40px;
}

[dir="rtl"] .social-link-float::before {
    right: auto;
    left: 120%;
}

[dir="rtl"] .social-link-float:hover::before {
    left: 110%;
    right: auto;
}

[dir="rtl"] .social-link-float:hover {
    transform: translateX(5px) scale(1.1);
}

[dir="rtl"] .stat-info {
    align-items: flex-end;
    text-align: right;
}

/* Dark Background Variant */
@media (prefers-color-scheme: dark) {
    .hero-ultra-modern {
        background: linear-gradient(135deg, #0a0a0f 0%, #121218 100%);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero-gradient-overlay {
        opacity: 0.95;
    }

    .hero-premium-badge,
    .hero-stats-quick {
        border-width: 2px;
    }

    .cta-btn-primary,
    .cta-btn-outline {
        border: 3px solid white;
    }
}

/* Print Styles */
@media print {
    .hero-ultra-modern {
        height: auto;
        min-height: auto;
        page-break-inside: avoid;
    }

    .hero-bg-effects,
    .geometric-patterns,
    .grid-pattern-overlay,
    .hero-social-float,
    .scroll-guide-ultra,
    .hero-wave-bottom {
        display: none !important;
    }

    .hero-gradient-overlay {
        opacity: 0.6;
    }

    .hero-cta-ultra {
        display: none;
    }
}

/* Performance Optimizations */
.hero-ultra-modern {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.floating-orb,
.geo-shape {
    will-change: transform;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Animations */
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hover States Enhancement */
@media (hover: hover) {
    .cta-btn-primary:hover {
        box-shadow: 0 20px 50px rgba(16, 179, 102, 0.4);
    }

    .cta-btn-outline:hover {
        box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    }

    .stat-item:hover .stat-icon {
        transform: scale(1.1) rotate(5deg);
    }
}

/* Focus States for Accessibility */
.cta-btn-primary:focus,
.cta-btn-outline:focus,
.social-link-float:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
}

/* Loading State */
.hero-ultra-modern.loading {
    pointer-events: none;
    opacity: 0.7;
}

.hero-ultra-modern.loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Parallax Effect Support */
@supports (background-attachment: fixed) {
    .hero-slide-ultra {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    .hero-slide-ultra {
        background-attachment: scroll;
    }
}
