 :root {
            /* Colors */
            --primary-black: #111111;
            --dark-grey: #1A1A1A;
            --gold-primary: #FFD700;
            --gold-dark: #B8860B;
            --text-light: #FFFFFF;
            --text-grey: #A0A0A0;
            --border-dark: #2A2A2A;

            /* Spacing */
            --section-padding: 5rem 1rem;
            --container-padding: 0 1rem;

            /* Radius */
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;

            /* Transitions */
            --transition: all 0.3s ease;
        }

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            font-size: 16px;
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--primary-black);
            color: var(--text-light);
            overflow-x: hidden;
        }

        /* Utility Classes */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: var(--container-padding);
        }

        .section {
            padding: var(--section-padding);
            position: relative;
        }

        .text-center {
            text-align: center;
        }

        .text-left {
            text-align: left;
        }

        .text-gold {
            color: var(--gold-primary);
        }

        .text-grey {
            color: var(--text-grey);
        }

        .mb-1 { margin-bottom: 0.5rem; }
        .mb-2 { margin-bottom: 1rem; }
        .mb-3 { margin-bottom: 1.5rem; }
        .mb-4 { margin-bottom: 2rem; }
        .mb-5 { margin-bottom: 3rem; }

        .mt-1 { margin-top: 0.5rem; }
        .mt-2 { margin-top: 1rem; }
        .mt-3 { margin-top: 1.5rem; }
        .mt-4 { margin-top: 2rem; }
        .mt-5 { margin-top: 3rem; }

        .me-2 { margin-right: 0.5rem; }
        .me-3 { margin-right: 1rem; }
        .ms-2 { margin-left: 0.5rem; }

        .d-flex {
            display: flex;
        }

        .flex-column {
            flex-direction: column;
        }

        .flex-wrap {
            flex-wrap: wrap;
        }

        .align-items-center {
            align-items: center;
        }

        .align-items-start {
            align-items: flex-start;
        }

        .justify-content-center {
            justify-content: center;
        }

        .justify-content-between {
            justify-content: space-between;
        }

        .justify-content-start {
            justify-content: flex-start;
        }

        .w-100 {
            width: 100%;
        }

        .position-relative {
            position: relative;
        }

        .position-absolute {
            position: absolute;
        }

        .z-1 { z-index: 1; }
        .z-2 { z-index: 2; }

        .overflow-hidden {
            overflow: hidden;
        }

        /* Grid System */
        .grid {
            display: grid;
            gap: 2rem;
        }

        .grid-2 {
            grid-template-columns: 1fr;
        }

        .grid-3 {
            grid-template-columns: 1fr;
        }

        /* Premium Enhancements */
        .premium-gold-gradient {
            background: linear-gradient(135deg, #FFD700 0%, #D4AF37 25%, #B8860B 50%, #966919 75%, #654321 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        .gold-shimmer {
            position: relative;
            overflow: hidden;
        }

        .gold-shimmer::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to right,
                transparent 0%,
                rgba(255, 215, 0, 0.1) 50%,
                transparent 100%
            );
            transform: rotate(30deg);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) rotate(30deg); }
            100% { transform: translateX(100%) rotate(30deg); }
        }

        .particles-container {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }

        .glow-effect {
            position: relative;
        }

        .glow-effect::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(45deg, #FFD700, #B8860B, #FFD700);
            border-radius: var(--radius-md);
            z-index: -1;
            filter: blur(8px);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .glow-effect:hover::before {
            opacity: 0.5;
        }

        .floating-animation {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .gradient-border {
            position: relative;
            background: var(--dark-grey);
            padding: 2px;
            border-radius: var(--radius-lg);
        }

        .gradient-border::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(45deg, #FFD700, #B8860B, #FFD700);
            border-radius: calc(var(--radius-lg) + 2px);
            z-index: -1;
        }

        .typewriter-text {
            display: inline-block;
            overflow: hidden;
            border-right: 3px solid var(--gold-primary);
            white-space: nowrap;
            margin: 0 auto;
            letter-spacing: 0.1em;
            animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
        }

        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: var(--gold-primary); }
        }

        .hover-3d {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        @media (hover: hover) {
            .hover-3d:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
            }
        }

        .counter {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gold-primary);
            display: block;
            line-height: 1;
        }

        .counter::after {
            content: '+';
            color: var(--gold-dark);
        }

        /* Button Styles */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            border-radius: var(--radius-md);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            font-size: 1rem;
            gap: 0.5rem;
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--gold-primary), var(--gold-dark));
            color: var(--primary-black);
        }

        .btn-secondary {
            background: transparent;
            color: var(--gold-primary);
            border: 2px solid var(--gold-primary);
        }

        .badge {
            background: linear-gradient(45deg, #FFD700, #B8860B);
            color: var(--primary-black);
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            font-size: 0.875rem;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(17, 17, 17, 0.95), rgba(17, 17, 17, 0.95)),
                        url('https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&auto=format&fit=crop&w=1770&q=80');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section h1 {
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .section-subtitle {
            font-size: 1rem;
            color: var(--text-grey);
            line-height: 1.6;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Service Cards */
        .service-card {
            background: linear-gradient(135deg, #1A1A1A, #111111);
            border-radius: var(--radius-lg);
            padding: 2rem 1.5rem;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .service-number {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 3.5rem;
            font-weight: 800;
            color: rgba(255, 215, 0, 0.05);
            line-height: 1;
        }

        .card-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            display: inline-flex;
            padding: 1rem;
            background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(184,134,11,0.05));
            border-radius: 12px;
        }

        .card-title {
            font-size: 1.4rem;
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        .card-text {
            color: var(--text-grey);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        /* Progress Bars */
        .progress-container {
            height: 8px;
            background-color: var(--border-dark);
            border-radius: 4px;
            overflow: hidden;
            position: relative;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #FFD700, #B8860B);
            border-radius: 4px;
            transition: width 2s ease-in-out;
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            z-index: 2;
            transition: opacity 0.3s ease;
        }

        .mouse {
            width: 26px;
            height: 40px;
            border: 2px solid var(--gold-primary);
            border-radius: 13px;
            margin: 0 auto;
            position: relative;
        }

        .wheel {
            width: 3px;
            height: 8px;
            background: var(--gold-primary);
            border-radius: 2px;
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            animation: scroll 2s infinite;
        }

        @keyframes scroll {
            0% { transform: translateX(-50%) translateY(0); opacity: 1; }
            100% { transform: translateX(-50%) translateY(15px); opacity: 0; }
        }

        /* Clients Section */
        .client-logo {
            background: linear-gradient(135deg, #1A1A1A, #111111);
            padding: 1.5rem 2rem;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-dark);
            transition: var(--transition);
            text-align: center;
        }

        /* Mobile First Breakpoints */
        @media (min-width: 640px) {
            :root {
                --container-padding: 0 2rem;
            }

            .grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-section h1 {
                font-size: 3rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .counter {
                font-size: 3rem;
            }
        }

        @media (min-width: 768px) {
            :root {
                --section-padding: 6rem 2rem;
            }

            .grid-2 {
                grid-template-columns: repeat(2, 1fr);
            }

            .grid-3 {
                grid-template-columns: repeat(3, 1fr);
            }

            .hero-section h1 {
                font-size: 3.5rem;
            }

            .btn {
                width: auto;
            }

            .d-md-flex {
                display: flex !important;
            }

            .flex-md-row {
                flex-direction: row !important;
            }
        }

        @media (min-width: 1024px) {
            :root {
                --section-padding: 8rem 2rem;
            }

            .hero-section h1 {
                font-size: 4rem;
            }

            .section-title {
                font-size: 3rem;
            }
        }

        @media (min-width: 1280px) {
            .container {
                padding: 0;
            }
        }

        /* Safe Area Support */
        @supports (padding: max(0)) {
            .section {
                padding-left: max(1rem, env(safe-area-inset-left));
                padding-right: max(1rem, env(safe-area-inset-right));
            }

            .hero-section {
                padding-left: max(1rem, env(safe-area-inset-left));
                padding-right: max(1rem, env(safe-area-inset-right));
            }
        }

        /* Touch Device Optimizations */
        @media (hover: none) and (pointer: coarse) {
            .glow-effect::before {
                display: none;
            }

            .btn:active {
                transform: scale(0.98);
            }
        }

        /* Performance Optimizations */
        .particles-container,
        .floating-animation,
        .gold-shimmer::after {
            will-change: transform;
        }

        /* Print Styles */
        @media print {
            .hero-section,
            .section {
                background: white !important;
                color: black !important;
            }

            .btn,
            .badge {
                display: none !important;
            }
        }