/* ===== Hero Section Style 5 - Asymmetric Layout ===== */

        .hero5-section {
            position: relative;
            min-height: 100vh;
            background: var(--color-bg-primary);
            overflow: hidden;
        }

        .dark .hero5-section {
            background: var(--color-bg-primary);
        }

        /* Background Shapes */
        .hero5-bg-shape {
            position: absolute;
            z-index: 0;
        }

        .hero5-bg-shape-1 {
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: linear-gradient(180deg, var(--color-primary-50) 0%, var(--color-primary-100) 100%);
            clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
        }

        .dark .hero5-bg-shape-1 {
            background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
        }

        .hero5-bg-shape-2 {
            bottom: 0;
            left: 0;
            width: 200px;
            height: 200px;
            background: var(--color-secondary-100);
            border-radius: 50%;
            transform: translate(-50%, 50%);
        }

        .dark .hero5-bg-shape-2 {
            background: var(--color-secondary-900);
            opacity: 0.3;
        }

        /* Container */
        .hero5-container {
            position: relative;
            z-index: 1;
            max-width: 1280px;
            margin: 0 auto;
            padding: 8rem 2rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .hero5-container {
                grid-template-columns: 1fr 1.2fr;
                padding: 6rem 4rem;
                min-height: 100vh;
            }
        }

        /* Content */
        .hero5-content {
            order: 2;
        }

        @media (min-width: 1024px) {
            .hero5-content {
                order: 1;
            }
        }

        /* Badge */
        .hero5-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: white;
            border: 1px solid var(--color-gray-200);
            border-radius: 0.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--color-gray-700);
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .dark .hero5-badge {
            background: var(--color-card-bg);
            border-color: var(--color-border);
            color: var(--color-text-secondary);
        }

        .hero5-badge-star {
            color: #f59e0b;
        }

        /* Title */
        .hero5-title {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.15;
            color: var(--color-gray-900);
            margin-bottom: 1.5rem;
        }

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

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

        .dark .hero5-title {
            color: var(--color-text-primary);
        }

        .hero5-title-line {
            display: block;
        }

        .hero5-title-highlight {
            position: relative;
            color: var(--color-primary-600);
        }

        .hero5-title-highlight::after {
            content: '';
            position: absolute;
            bottom: 0.1em;
            left: 0;
            right: 0;
            height: 0.3em;
            background: var(--color-primary-200);
            z-index: -1;
        }

        .dark .hero5-title-highlight {
            color: var(--color-primary-400);
        }

        .dark .hero5-title-highlight::after {
            background: var(--color-primary-900);
        }

        /* Description */
        .hero5-description {
            font-size: 1.125rem;
            line-height: 1.75;
            color: var(--color-gray-600);
            margin-bottom: 2rem;
            max-width: 480px;
        }

        .dark .hero5-description {
            color: var(--color-text-tertiary);
        }

        /* CTA Group */
        .hero5-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .hero5-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.75rem;
            background: var(--color-primary-600);
            color: white;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
        }

        .hero5-btn-primary:hover {
            background: var(--color-primary-700);
            transform: translateX(4px);
        }

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

        .hero5-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 1.75rem;
            background: transparent;
            color: var(--color-gray-700);
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .hero5-btn-secondary:hover {
            color: var(--color-primary-600);
        }

        .dark .hero5-btn-secondary {
            color: var(--color-text-secondary);
        }

        .dark .hero5-btn-secondary:hover {
            color: var(--color-primary-400);
        }

        /* Stats Row */
        .hero5-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .hero5-stat-item {
            display: flex;
            flex-direction: column;
        }

        .hero5-stat-icon {
            color: var(--color-primary-500);
            margin-bottom: 0.25rem;
        }

        .dark .hero5-stat-icon {
            color: var(--color-primary-400);
        }

        .hero5-stat-value {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-gray-900);
        }

        .dark .hero5-stat-value {
            color: var(--color-text-primary);
        }

        .hero5-stat-label {
            font-size: 0.875rem;
            color: var(--color-gray-500);
        }

        .dark .hero5-stat-label {
            color: var(--color-text-tertiary);
        }

        /* Image Section */
        .hero5-image-section {
            position: relative;
            order: 1;
        }

        @media (min-width: 1024px) {
            .hero5-image-section {
                order: 2;
            }
        }

        .hero5-image-stack {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }

        .hero5-image-main {
            position: relative;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .dark .hero5-image-main {
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        }

        .hero5-image-main img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Floating Elements */
        .hero5-float-badge {
            position: absolute;
            top: -1rem;
            right: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            background: white;
            border-radius: 0.75rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        @media (min-width: 640px) {
            .hero5-float-badge {
                top: 1rem;
                right: -2rem;
            }
        }

        .dark .hero5-float-badge {
            background: var(--color-card-bg);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .hero5-float-badge-icon {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 0.5rem;
            background: var(--color-primary-100);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary-600);
        }

        .dark .hero5-float-badge-icon {
            background: var(--color-primary-900);
            color: var(--color-primary-400);
        }

        .hero5-float-badge-text {
            font-weight: 700;
            font-size: 0.875rem;
            color: var(--color-gray-900);
        }

        .dark .hero5-float-badge-text {
            color: var(--color-text-primary);
        }

        .hero5-float-badge-sub {
            font-size: 0.75rem;
            color: var(--color-gray-500);
        }

        .dark .hero5-float-badge-sub {
            color: var(--color-text-tertiary);
        }

        .hero5-float-card {
            position: absolute;
            bottom: -1rem;
            left: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.25rem;
            background: white;
            border-radius: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        @media (min-width: 640px) {
            .hero5-float-card {
                bottom: 2rem;
                left: -2rem;
            }
        }

        .dark .hero5-float-card {
            background: var(--color-card-bg);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .hero5-float-card-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-success-500, #10b981), var(--color-success-600, #059669));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .hero5-float-card-icon svg {
            color: white;
        }

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

        .hero5-float-card-title {
            font-weight: 700;
            font-size: 0.9375rem;
            color: var(--color-gray-900);
        }

        .dark .hero5-float-card-title {
            color: var(--color-text-primary);
        }

        .hero5-float-card-subtitle {
            font-size: 0.8125rem;
            color: var(--color-gray-500);
        }

        .dark .hero5-float-card-subtitle {
            color: var(--color-text-tertiary);
        }

        /* Decorative Ring */
        .hero5-deco-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            border: 2px dashed var(--color-primary-200);
            border-radius: 50%;
            opacity: 0.5;
            z-index: -1;
        }

        .dark .hero5-deco-ring {
            border-color: var(--color-primary-800);
            opacity: 0.3;
        }

        /* RTL Support */
        [dir="rtl"] .hero5-bg-shape-1 {
            right: auto;
            left: 0;
            clip-path: polygon(0 0, 70% 0, 100% 100%, 0 100%);
        }

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

        [dir="rtl"] .hero5-float-badge {
            right: auto;
            left: 1rem;
        }

        @media (min-width: 640px) {
            [dir="rtl"] .hero5-float-badge {
                left: -2rem;
                right: auto;
            }
        }

        [dir="rtl"] .hero5-float-card {
            left: auto;
            right: 1rem;
        }

        @media (min-width: 640px) {
            [dir="rtl"] .hero5-float-card {
                right: -2rem;
                left: auto;
            }
        }