/* ===== Hero Section Style 3 - Full Background Image ===== */

        .hero3-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero3-bg-image {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero3-bg-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero3-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg,
                    rgba(15, 23, 42, 0.85) 0%,
                    rgba(30, 41, 59, 0.75) 50%,
                    rgba(15, 23, 42, 0.85) 100%);
            z-index: 1;
        }

        .hero3-container {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 6rem 1rem 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
        }

        @media (min-width: 640px) {
            .hero3-container {
                padding: 6rem 1.5rem 0;
            }
        }

        @media (min-width: 1024px) {
            .hero3-container {
                padding: 6rem 2rem 0;
            }
        }

        .hero3-content {
            max-width: 900px;
            text-align: center;
            padding: 2rem 0;
        }

        /* Badge */
        .hero3-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
            color: white;
            margin-bottom: 2rem;
        }

        .hero3-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--color-primary-400);
            border-radius: 50%;
            animation: pulse-soft 2s ease-in-out infinite;
        }

        /* Title */
        .hero3-title {
            font-family: var(--font-heading);
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.1;
            color: white;
            margin-bottom: 1rem;
        }

        @media (min-width: 640px) {
            .hero3-title {
                font-size: 4rem;
            }
        }

        @media (min-width: 1024px) {
            .hero3-title {
                font-size: 5rem;
            }
        }

        .hero3-subtitle {
            display: block;
            color: var(--color-primary-400);
        }

        /* Description */
        .hero3-description {
            font-size: 1.25rem;
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto 2.5rem;
        }

        /* CTA Group */
        .hero3-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 4rem;
        }

        .hero3-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.25rem 2.5rem;
            background: var(--color-primary-500);
            color: white;
            font-weight: 700;
            font-size: 1.125rem;
            border-radius: 0.75rem;
            transition: all 0.3s ease;
        }

        .hero3-btn-primary:hover {
            background: var(--color-primary-400);
            transform: scale(1.05);
        }

        .hero3-btn-primary svg,
        .hero3-btn-secondary svg {
            color: inherit;
            flex-shrink: 0;
        }

        .hero3-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.25rem 2.5rem;
            background: transparent;
            color: white;
            font-weight: 700;
            font-size: 1.125rem;
            border-radius: 0.75rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .hero3-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* Stats */
        .hero3-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .hero3-stats {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .hero3-stat-item {
            text-align: center;
        }

        .hero3-stat-icon {
            display: flex;
            justify-content: center;
            margin-bottom: 0.5rem;
            color: var(--color-primary-400);
        }

        .hero3-stat-value {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 0.5rem;
        }

        .hero3-stat-label {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* Floating Cards */
        .hero3-float-left {
            position: absolute;
            left: 2rem;
            bottom: 15%;
            z-index: 3;
            display: none;
        }

        @media (min-width: 1280px) {
            .hero3-float-left {
                display: block;
            }
        }

        .hero3-float-right {
            position: absolute;
            right: 2rem;
            top: 20%;
            z-index: 3;
            display: none;
        }

        @media (min-width: 1280px) {
            .hero3-float-right {
                display: block;
            }
        }

        .hero3-float-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.5rem;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 1rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .hero3-float-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .hero3-float-icon svg {
            color: white;
        }

        .hero3-float-icon.green {
            background: linear-gradient(135deg, var(--color-success-500, #10b981), var(--color-success-600, #059669));
        }

        .hero3-float-icon.blue {
            background: linear-gradient(135deg, var(--color-primary-500), var(--color-primary-600));
        }

        .dark .hero3-float-icon.green {
            background: linear-gradient(135deg, var(--color-success-400, #34d399), var(--color-success-500, #10b981));
        }

        .dark .hero3-float-icon.blue {
            background: linear-gradient(135deg, var(--color-primary-400), var(--color-primary-500));
        }

        .hero3-float-title {
            font-weight: 700;
            font-size: 0.875rem;
            color: var(--color-gray-900);
        }

        .hero3-float-subtitle {
            font-size: 0.75rem;
            color: var(--color-gray-500);
        }

        /* Scroll Indicator */
        .hero3-scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .hero3-scroll-mouse {
            width: 24px;
            height: 40px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            position: relative;
        }

        .hero3-scroll-wheel {
            width: 4px;
            height: 8px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 2px;
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            animation: scroll-wheel 2s ease-in-out infinite;
        }

        @keyframes scroll-wheel {

            0%,
            100% {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }

            50% {
                opacity: 0.3;
                transform: translateX(-50%) translateY(10px);
            }
        }

        /* RTL Support */
        [dir="rtl"] .hero3-float-left {
            left: auto;
            right: 2rem;
        }

        [dir="rtl"] .hero3-float-right {
            right: auto;
            left: 2rem;
        }