/* ===== Hero Section Style 1 ===== */

        .hero1-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 0 6rem;
            background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
            overflow: hidden;
        }

        .dark .hero1-section {
            background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
        }

        /* Background Pattern */
        .hero1-bg-pattern {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(var(--color-primary-200) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.3;
        }

        .dark .hero1-bg-pattern {
            background-image: radial-gradient(var(--color-primary-800) 1px, transparent 1px);
            opacity: 0.15;
        }

        /* Gradient Overlay */
        .hero1-gradient-overlay {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at top right, var(--color-primary-100) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, var(--color-secondary-100) 0%, transparent 50%);
            opacity: 0.6;
        }

        .dark .hero1-gradient-overlay {
            background: radial-gradient(ellipse at top right, var(--color-primary-900) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, var(--color-secondary-900) 0%, transparent 50%);
            opacity: 0.3;
        }

        /* Content Wrapper */
        .hero1-content-wrapper {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .hero1-content-wrapper {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }
        }

        /* Center Content */
        .hero1-center-content {
            text-align: center;
        }

        @media (min-width: 1024px) {
            .hero1-center-content {
                text-align: left;
            }
        }

        /* Badge */
        .hero1-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--color-primary-50);
            border: 1px solid var(--color-primary-200);
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--color-primary-700);
            margin-bottom: 1.5rem;
        }

        .dark .hero1-badge {
            background: var(--color-primary-900);
            border-color: var(--color-primary-700);
            color: var(--color-primary-300);
        }

        .hero1-badge-dot {
            width: 0.5rem;
            height: 0.5rem;
            background: var(--color-primary-500);
            border-radius: 50%;
            animation: pulse-soft 2s ease-in-out infinite;
        }

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

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

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

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

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

        .hero1-title-highlight {
            display: block;
            background: linear-gradient(135deg, var(--color-primary-600), var(--color-secondary-500));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        @media (min-width: 1024px) {
            .hero1-description {
                margin-left: 0;
                margin-right: auto;
            }
        }

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

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

        @media (min-width: 1024px) {
            .hero1-cta-group {
                justify-content: flex-start;
            }
        }

        .hero1-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--color-primary-600), var(--color-primary-700));
            color: white;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 0.75rem;
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
            transition: all 0.3s ease;
        }

        .hero1-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
        }

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

        .hero1-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 1.5rem;
            background: white;
            color: var(--color-gray-700);
            font-weight: 600;
            font-size: 1rem;
            border-radius: 0.75rem;
            border: 2px solid var(--color-gray-200);
            transition: all 0.3s ease;
        }

        .hero1-btn-secondary:hover {
            border-color: var(--color-primary-400);
            color: var(--color-primary-600);
        }

        .dark .hero1-btn-secondary {
            background: var(--color-bg-tertiary);
            color: var(--color-text-primary);
            border-color: var(--color-border);
        }

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

        /* Inline Stats */
        .hero1-inline-stats {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        .hero1-inline-stat-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .hero1-inline-stat-icon {
            width: 1.5rem;
            flex-shrink: 0;
            color: var(--color-primary-500);
        }

        .hero1-inline-stat-text {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.5rem;
        }

        .hero1-inline-stat-value {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.125rem;
            color: var(--color-primary-600);
        }

        .hero1-inline-stat-label {
            font-size: 1.125rem;
            color: var(--color-gray-600);
        }

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

        .dark .hero1-inline-stat-value {
            color: var(--color-primary-400);
        }

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

        /* Image Section */
        .hero1-image-section {
            display: none;
        }

        @media (min-width: 1024px) {
            .hero1-image-section {
                display: block;
            }
        }

        .hero1-image-container {
            position: relative;
            padding: 2rem;
        }

        .hero1-main-image {
            position: relative;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .hero1-main-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 4/3;
        }

        /* Floating Cards */
        .hero1-float-card {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem;
            background: white;
            border-radius: 1rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
        }

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

        .hero1-float-card-1 {
            bottom: 2rem;
            left: -1rem;
        }

        .hero1-float-card-2 {
            top: 2rem;
            right: -1rem;
        }

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

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

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

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

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

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

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

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

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

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

        /* Decorative Circles */
        .hero1-deco-circle {
            position: absolute;
            border-radius: 50%;
            border: 2px dashed var(--color-primary-300);
            opacity: 0.5;
        }

        .dark .hero1-deco-circle {
            border-color: var(--color-primary-700);
            opacity: 0.3;
        }

        .hero1-deco-circle-1 {
            width: 300px;
            height: 300px;
            top: -50px;
            right: -100px;
            animation: spin-slow 30s linear infinite;
        }

        .hero1-deco-circle-2 {
            width: 200px;
            height: 200px;
            bottom: -50px;
            left: -50px;
            animation: spin-slow 25s linear infinite reverse;
        }

        /* Bottom Curve */
        .hero1-bottom-curve {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            line-height: 0;
        }

        .hero1-bottom-curve svg {
            width: 100%;
            height: 60px;
        }

        @media (min-width: 768px) {
            .hero1-bottom-curve svg {
                height: 80px;
            }
        }

        .hero1-curve-fill {
            fill: white;
        }

        .dark .hero1-curve-fill {
            fill: var(--color-bg-primary);
        }

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

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

        [dir="rtl"] .hero1-deco-circle-1 {
            right: auto;
            left: -100px;
        }

        [dir="rtl"] .hero1-deco-circle-2 {
            left: auto;
            right: -50px;
        }