
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-orange: #F8A922;
            --primary-red: #9C1414;
            --text-dark: #1a1a1a;
            --text-light: #ffffff;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            overflow: hidden;
            background: #0a0a0a;
        }

        .hero-carousel {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
        }

        .hero-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
            display: flex;
            align-items: center;
        }

        .hero-slide.hero-active {
            opacity: 1;
            visibility: visible;
            z-index: 1;
        }

        .hero-slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            filter: brightness(0.3) blur(2px);
            transform: scale(1);
            transition: transform 20s ease-out;
        }

        .hero-active .hero-slide-bg {
            transform: scale(1.15);
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(156, 20, 20, 0.97) 0%, 
                rgba(156, 20, 20, 0.85) 40%,
                rgba(248, 169, 34, 0.4) 70%,
                rgba(248, 169, 34, 0.2) 100%);
            z-index: 1;
        }

        /* Animated Background Particles */
        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
            pointer-events: none;
        }

        .hero-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-orange);
            border-radius: 50%;
            opacity: 0.6;
            animation: hero-particle-float 15s infinite ease-in-out;
        }

        @keyframes hero-particle-float {
            0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
        }

        .hero-content-wrapper {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 40px;
            display: grid;
            grid-template-columns: 55% 45%;
            gap: 80px;
            align-items: center;
        }

        .hero-text-content {
            opacity: 0;
            transform: translateX(-80px);
        }

        .hero-active .hero-text-content {
            animation: hero-slide-in-left 1s ease-out 0.3s forwards;
        }

        @keyframes hero-slide-in-left {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--primary-orange), #d4941c);
            color: var(--text-dark);
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            box-shadow: 0 8px 25px rgba(248, 169, 34, 0.4);
            position: relative;
            overflow: hidden;
        }

        .hero-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: hero-badge-shine 3s infinite;
        }

        @keyframes hero-badge-shine {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }

        .hero-badge i {
            font-size: 16px;
            animation: hero-icon-pulse 2s ease-in-out infinite;
        }

        @keyframes hero-icon-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .hero-title {
            font-size: 68px;
            font-weight: 900;
            color: var(--text-light);
            line-height: 1.15;
            margin-bottom: 30px;
            text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.7);
            letter-spacing: -1px;
        }

        .hero-title-highlight {
            color: var(--primary-orange);
            display: block;
            position: relative;
            text-shadow: 0 0 30px rgba(248, 169, 34, 0.5);
            background: linear-gradient(135deg, var(--primary-orange), #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 19px;
            color: rgba(255, 255, 255, 0.92);
            line-height: 1.9;
            margin-bottom: 40px;
            max-width: 580px;
            font-weight: 400;
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin-bottom: 45px;
        }

        .hero-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-light);
            font-size: 15px;
            font-weight: 500;
            padding: 12px 18px;
            background: rgba(248, 169, 34, 0.1);
            border-radius: 12px;
            border: 1px solid rgba(248, 169, 34, 0.3);
            transition: all 0.3s ease;
        }

        .hero-feature-item:hover {
            background: rgba(248, 169, 34, 0.2);
            transform: translateX(5px);
        }

        .hero-feature-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--primary-orange), #d4941c);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--text-dark);
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(248, 169, 34, 0.3);
        }

        .hero-cta-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .hero-btn {
            padding: 18px 45px;
            font-size: 16px;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            position: relative;
            overflow: hidden;
            min-width: 200px;
        }

        .hero-btn::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;
        }

        .hero-btn:hover::before {
            width: 400px;
            height: 400px;
        }

        .hero-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50px;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .hero-btn:hover::after {
            transform: translateX(100%);
        }

        .hero-btn i {
            position: relative;
            z-index: 1;
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .hero-btn:hover i {
            animation: hero-icon-bounce 0.6s ease;
        }

        @keyframes hero-icon-bounce {
            0%, 100% { transform: translateY(0); }
            25% { transform: translateY(-5px); }
            75% { transform: translateY(-3px); }
        }

        .hero-btn span {
            position: relative;
            z-index: 1;
        }

        .hero-btn-primary {
            background: linear-gradient(135deg, var(--primary-orange), #d4941c);
            color: var(--text-dark);
            box-shadow: 0 10px 30px rgba(248, 169, 34, 0.5);
            animation: hero-btn-pulse 2s ease-in-out infinite;
        }

        @keyframes hero-btn-pulse {
            0%, 100% {
                box-shadow: 0 10px 30px rgba(248, 169, 34, 0.5);
                transform: translateY(0);
            }
            50% {
                box-shadow: 0 12px 35px rgba(248, 169, 34, 0.6);
                transform: translateY(-2px);
            }
        }

        .hero-btn-primary:hover {
            transform: translateY(-6px) scale(1.05);
            box-shadow: 0 18px 50px rgba(248, 169, 34, 0.8);
            animation: none;
        }

        .hero-btn-primary:active {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 8px 20px rgba(248, 169, 34, 0.6);
        }

        .hero-btn-primary .hero-btn-shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s ease;
        }

        .hero-btn-primary:hover .hero-btn-shine {
            left: 100%;
        }

        .hero-btn-secondary {
            background: transparent;
            color: var(--text-light);
            border: 2px solid var(--text-light);
            position: relative;
        }

        .hero-btn-secondary::before {
            background: rgba(255, 255, 255, 0.1);
        }

        .hero-btn-secondary .hero-btn-fill {
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--text-light);
            border-radius: 50px;
            transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 0;
        }

        .hero-btn-secondary:hover .hero-btn-fill {
            width: 100%;
        }

        .hero-btn-secondary:hover {
            color: var(--primary-red);
            border-color: var(--text-light);
            transform: translateY(-6px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
        }

        .hero-btn-secondary:active {
            transform: translateY(-2px) scale(1.02);
        }

        .hero-btn-secondary i,
        .hero-btn-secondary span {
            position: relative;
            z-index: 1;
        }

        .hero-image-content {
            position: relative;
            height: 600px;
            opacity: 0;
            transform: translateX(80px);
        }

        .hero-active .hero-image-content {
            animation: hero-slide-in-right 1s ease-out 0.5s forwards;
        }

        @keyframes hero-slide-in-right {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-image-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hero-main-image {
            position: absolute;
            right: 10%;
            top: 50%;
            transform: translateY(-50%);
            width: 420px;
            height: 420px;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            overflow: hidden;
            border: 5px solid var(--primary-orange);
            box-shadow: 
                0 30px 80px rgba(248, 169, 34, 0.4),
                0 0 60px rgba(248, 169, 34, 0.3),
                inset 0 0 30px rgba(248, 169, 34, 0.2);
            animation: hero-morph 8s ease-in-out infinite;
            z-index: 3;
        }

        @keyframes hero-morph {
            0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
            25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
            50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
            75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
        }

        .hero-main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .hero-main-image:hover img {
            transform: scale(1.1);
        }

        .hero-glow-circle {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.4;
            animation: hero-glow-pulse 4s ease-in-out infinite;
        }

        @keyframes hero-glow-pulse {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.1); }
        }

        .hero-glow-1 {
            width: 400px;
            height: 400px;
            background: var(--primary-orange);
            top: 10%;
            right: 5%;
        }

        .hero-glow-2 {
            width: 300px;
            height: 300px;
            background: var(--primary-red);
            bottom: 10%;
            right: 20%;
            animation-delay: 2s;
        }

        .hero-floating-icon {
            position: absolute;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(248, 169, 34, 0.15), rgba(248, 169, 34, 0.05));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: var(--primary-orange);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(248, 169, 34, 0.3);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            animation: hero-float-icon 6s ease-in-out infinite;
        }

        @keyframes hero-float-icon {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(10deg); }
        }

        .hero-icon-1 {
            top: 15%;
            right: 0;
            animation-delay: 0s;
        }

        .hero-icon-2 {
            bottom: 15%;
            right: 5%;
            animation-delay: 2s;
        }

        .hero-icon-3 {
            top: 50%;
            left: -5%;
            animation-delay: 1s;
        }

        .hero-navigation {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            gap: 12px;
            background: rgba(0, 0, 0, 0.4);
            padding: 12px 20px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
        }

        .hero-nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            position: relative;
        }

        .hero-nav-dot::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            border-radius: 50%;
            background: var(--primary-orange);
            transition: all 0.4s ease;
        }

        .hero-nav-dot:hover {
            background: rgba(255, 255, 255, 0.7);
            transform: scale(1.2);
        }

        .hero-nav-dot.hero-active {
            background: var(--primary-orange);
            width: 40px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(248, 169, 34, 0.6);
        }

        .hero-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
            background: linear-gradient(135deg, var(--primary-orange), #d4941c);
            color: var(--text-dark);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            font-size: 24px;
            font-weight: bold;
            box-shadow: 0 10px 30px rgba(248, 169, 34, 0.4);
            border: 3px solid rgba(255, 255, 255, 0.2);
        }

        .hero-arrow:hover {
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 15px 40px rgba(248, 169, 34, 0.6);
        }

        .hero-arrow-left {
            left: 40px;
        }

        .hero-arrow-right {
            right: 40px;
        }

        /* Responsive Design */
        @media (max-width: 1400px) {
            .hero-content-wrapper {
                max-width: 1200px;
                grid-template-columns: 58% 42%;
                gap: 60px;
            }

            .hero-title {
                font-size: 58px;
            }

            .hero-main-image {
                width: 380px;
                height: 380px;
            }
        }

        @media (max-width: 1200px) {
            .hero-content-wrapper {
                grid-template-columns: 60% 40%;
                gap: 40px;
                padding: 60px 30px;
            }

            .hero-title {
                font-size: 52px;
            }

            .hero-main-image {
                width: 340px;
                height: 340px;
            }

            .hero-floating-icon {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }
        }

        @media (max-width: 968px) {
            .hero-section {
                min-height: 100vh;
            }

            .hero-carousel {
                height: 100vh;
                min-height: 100vh;
            }

            .hero-slide {
                position: absolute;
                height: 100vh;
                min-height: 100vh;
            }

            .hero-content-wrapper {
                grid-template-columns: 1fr;
                gap: 25px;
                text-align: center;
                padding: 80px 25px 100px;
                min-height: 100vh;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                padding-top: 60px;
            }

            .hero-text-content,
            .hero-image-content {
                transform: none;
                opacity: 1;
            }

            .hero-active .hero-text-content,
            .hero-active .hero-image-content {
                animation: none;
            }

            .hero-text-content {
                order: 2;
            }

            .hero-image-content {
                order: 1;
                height: 280px;
                display: flex;
                justify-content: center;
                align-items: center;
                margin: 0 auto 10px;
            }

            .hero-main-image {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                width: 260px;
                height: 260px;
                margin: 0 auto;
            }

            .hero-floating-icon {
                display: none;
            }

            .hero-glow-circle {
                opacity: 0.2;
            }

            .hero-features {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-feature-item {
                justify-content: center;
            }

            .hero-cta-buttons {
                justify-content: center;
            }

            .hero-title {
                font-size: 36px;
                margin-bottom: 20px;
            }

            .hero-description {
                margin-left: auto;
                margin-right: auto;
                font-size: 16px;
                margin-bottom: 25px;
            }

            .hero-badge {
                margin-bottom: 18px;
            }

            .hero-arrow {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .hero-arrow-left {
                left: 20px;
            }

            .hero-arrow-right {
                right: 20px;
            }
        }

        @media (max-width: 640px) {
            .hero-section {
                min-height: 100vh;
            }

            .hero-carousel {
                min-height: 100vh;
                height: 100vh;
            }

            .hero-slide {
                min-height: 100vh;
                height: 100vh;
            }

            .hero-content-wrapper {
                padding: 60px 20px 90px;
                min-height: 100vh;
                gap: 20px;
                padding-top: 50px;
            }

            .hero-title {
                font-size: 30px;
                margin-bottom: 16px;
                line-height: 1.2;
            }

            .hero-description {
                font-size: 15px;
                margin-bottom: 25px;
                line-height: 1.65;
            }

            .hero-main-image {
                width: 240px;
                height: 240px;
            }

            .hero-image-content {
                height: 260px;
                margin-bottom: 5px;
                margin-top: 285px;
            }

            .hero-btn {
                padding: 16px 30px;
                font-size: 14px;
                min-width: 100%;
                gap: 10px;
            }

            .hero-btn i {
                font-size: 16px;
            }

            .hero-cta-buttons {
                flex-direction: column;
                width: 100%;
                gap: 15px;
            }

            .hero-btn {
                width: 100%;
                justify-content: center;
            }

            .hero-arrow {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .hero-arrow-left {
                left: 15px;
            }

            .hero-arrow-right {
                right: 15px;
            }

            .hero-navigation {
                bottom: 30px;
                padding: 10px 15px;
            }

            .hero-nav-dot {
                width: 10px;
                height: 10px;
            }

            .hero-nav-dot.hero-active {
                width: 30px;
            }

            .hero-badge {
                font-size: 11px;
                padding: 8px 16px;
                gap: 8px;
            }

            .hero-feature-item {
                font-size: 14px;
                padding: 10px 14px;
            }

            .hero-feature-icon {
                width: 34px;
                height: 34px;
                font-size: 16px;
            }

            .hero-features {
                gap: 15px;
                margin-bottom: 35px;
            }
        }

        @media (max-width: 480px) {
            .hero-content-wrapper {
                margin-top: -170px;
                padding: 50px 18px 80px;
                min-height: 100vh;
                padding-top: 40px;
            }

            .hero-title {
                font-size: 28px;
                line-height: 1.2;
            }

            .hero-badge {
                font-size: 10px;
                padding: 7px 14px;
                margin-bottom: 15px;
            }

            .hero-main-image {
                width: 200px;
                height: 200px;
            }

            .hero-image-content {
                height: 220px;
                margin-top: 215px;
            }

            .hero-description {
                font-size: 14px;
                line-height: 1.6;
                margin-bottom: 20px;
            }

            .hero-feature-item {
                font-size: 13px;
                padding: 9px 12px;
            }

            .hero-feature-icon {
                width: 32px;
                height: 32px;
                font-size: 15px;
            }

            .hero-features {
                margin-bottom: 25px;
            }

            .hero-btn {
                padding: 15px 25px;
                font-size: 13px;
                letter-spacing: 0.5px;
            }

            .hero-btn i {
                font-size: 15px;
            }

            .hero-arrow {
                margin-top: 124px;
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .hero-navigation {
                bottom: 20px;
                padding: 8px 12px;
                gap: 8px;
            }

            .hero-nav-dot {
                width: 8px;
                height: 8px;
            }

            .hero-nav-dot.hero-active {
                width: 24px;
            }
        }

        @media (max-width: 360px) {
            .hero-content-wrapper {
                padding: 40px 15px 70px;
                min-height: 100vh;
                padding-top: 35px;
            }

            .hero-title {
                font-size: 24px;
            }

            .hero-description {
                font-size: 13px;
            }

            .hero-main-image {
                width: 180px;
                height: 180px;
            }

            .hero-image-content {
                height: 200px;
            }

            .hero-btn {
                padding: 14px 20px;
                font-size: 12px;
                gap: 8px;
            }

            .hero-cta-buttons {
                gap: 12px;
            }

            .hero-arrow {
                width: 38px;
                height: 38px;
                font-size: 14px;
            }
        }
        