:root {
            --bg-dark: #0f1115;
            --bg-darker: #08090a;
            --bg-card: #181b21;
            --primary: #ffe949;
            --secondary: #5cb9ff;
            --text-main: #f0f2f5;
            --text-muted: #a0a5b1;
            --border-color: rgba(255, 233, 73, 0.1);
        }

        html {
            scroll-behavior: smooth;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Utility */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-padding {
            padding: 100px 0;
        }

        .text-center {
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title span {
            color: var(--primary);
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--bg-darker);
            box-shadow: 0 0 15px rgba(255, 233, 73, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 25px rgba(255, 233, 73, 0.5);
            background-color: #fff280;
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--text-main);
            border: 2px solid var(--secondary);
        }

        .btn-secondary:hover {
            background-color: var(--secondary);
            color: var(--bg-darker);
            transform: translateY(-2px);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(8, 9, 10, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--primary);
            box-shadow: 0 0 10px rgba(255, 233, 73, 0.3);
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: 1px;
        }
        
        .logo-text span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }
        
        .phone-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--secondary);
            font-weight: 800;
            font-size: 1.1rem;
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--primary);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(8, 9, 10, 0.8), rgba(22, 26, 34, 0.8)), url('hero.jpg') center/cover no-repeat;
            padding-top: 80px;
            overflow: hidden;
        }

        /* Spark Animation */
        .spark {
            position: absolute;
            width: 2px;
            height: 50px;
            background: var(--primary);
            box-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary);
            opacity: 0;
            animation: sparkAnim 4s infinite linear;
        }

        .spark:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; height: 30px; }
        .spark:nth-child(2) { top: 60%; left: 80%; animation-delay: 1.5s; height: 60px; }
        .spark:nth-child(3) { top: 80%; left: 30%; animation-delay: 3s; height: 40px; }
        
        @keyframes sparkAnim {
            0% { transform: translateY(-100px) scaleY(1); opacity: 0; }
            50% { opacity: 1; box-shadow: 0 0 30px var(--primary); }
            100% { transform: translateY(100vh) scaleY(2); opacity: 0; }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
        }

        .hero-subtitle {
            color: var(--secondary);
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }
        
        .hero h1 span {
            color: var(--primary);
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            max-width: 600px;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .trust-badges-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 600;
        }

        .trust-badges-inline span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Services Section */
        .services {
            background-color: var(--bg-dark);
            position: relative;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background-color: var(--bg-card);
            padding: 40px 30px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            border-color: rgba(92, 185, 255, 0.3);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #fff;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Trust Section */
        .trust-section {
            background: linear-gradient(rgba(8, 9, 10, 0.9), rgba(8, 9, 10, 0.9)), url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+PHBhdGggZD0iTTAgMGg0MHY0MEgweiIgZmlsbD0ibm9uZSIvPPHBhdGggZD0iTTIwIDIwbDIwIDIwTTAgMjBsMjAgMjAiIHN0cm9rZT0iIzIyMiIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9zdmc+');
            border-top: 1px solid #222;
            border-bottom: 1px solid #222;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .trust-item h4 {
            font-size: 3rem;
            color: var(--primary);
            font-weight: 800;
            margin-bottom: 10px;
            line-height: 1;
        }
        
        .trust-item h4.blue {
            color: var(--secondary);
        }

        .trust-item p {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-main);
        }

        /* Testimonials */
        .testimonials {
            background-color: var(--bg-darker);
        }

        .testi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .testi-card {
            background-color: var(--bg-card);
            padding: 40px 30px;
            border-radius: 8px;
            border-left: 4px solid var(--secondary);
            position: relative;
        }

        .stars {
            color: var(--primary);
            font-size: 1.2rem;
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .testi-text {
            font-style: italic;
            color: var(--text-muted);
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .testi-author {
            font-weight: 800;
            color: #fff;
        }

        /* About Section */
        .about {
            background-color: var(--bg-dark);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-top: 50px;
        }

        .about-text p {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .about-image {
            position: relative;
            height: 400px;
            background-color: var(--bg-card);
            border-radius: 8px;
            border: 1px solid #333;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .about-image::after {
            content: '⚡';
            font-size: 8rem;
            opacity: 0.05;
            position: absolute;
        }

        .about-image-inner {
            text-align: center;
            z-index: 2;
        }

        .about-image-inner h3 {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 10px;
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, #111 0%, #1a1f2b 100%);
            border-top: 1px solid var(--border-color);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            margin-top: 50px;
        }

        .contact-info {
            padding: 40px;
            background-color: var(--bg-darker);
            border-radius: 8px;
            border: 1px solid #222;
        }

        .info-item {
            margin-bottom: 30px;
        }

        .info-item h4 {
            color: var(--secondary);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .info-item p, .info-item a {
            color: #fff;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .contact-form {
            background-color: var(--bg-card);
            padding: 50px;
            border-radius: 8px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            border: 1px solid var(--border-color);
        }
        
        .contact-form-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: #fff;
        }
        
        .urgency-text {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 600;
        }

        .form-control {
            width: 100%;
            padding: 15px;
            background-color: var(--bg-dark);
            border: 1px solid #333;
            border-radius: 4px;
            color: #fff;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
        }

        textarea.form-control {
            height: 120px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            font-size: 1.1rem;
            padding: 18px;
        }

        .success-message {
            display: none;
            text-align: center;
            padding: 40px 20px;
        }

        .success-message h3 {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 15px;
        }

        /* Footer */
        footer {
            background-color: var(--bg-darker);
            padding: 60px 0 30px;
            border-top: 1px solid #222;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand h2 {
            font-size: 1.8rem;
            color: #fff;
            margin-bottom: 15px;
        }
        
        .footer-brand h2 span {
            color: var(--primary);
        }

        .footer-brand p {
            color: var(--text-muted);
            max-width: 300px;
        }

        .footer-links h4 {
            color: var(--secondary);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--text-muted);
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #222;
            color: #666;
            font-size: 0.9rem;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 { font-size: 3rem; }
            .about-content, .contact-container { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .nav-links, .phone-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(8, 9, 10, 0.98);
                padding: 20px;
                border-bottom: 1px solid #222;
            }
            .phone-nav {
                display: none;
                padding-top: 0;
                border-bottom: none;
            }
            
            .nav-links.active, .phone-nav.active {
                display: flex;
            }

            .hamburger { display: block; }
            .hero h1 { font-size: 2.5rem; }
            .hero-btns { flex-direction: column; }
            .btn { width: 100%; text-align: center; }
            .footer-grid { grid-template-columns: 1fr; }
            .contact-form { padding: 30px 20px; }
            .logo-text { font-size: 1.2rem; }
        }
