* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --key-gold: #FFB800;
            --lock-silver: #C0C0C0;
            --deep-navy: #0D1B2A;
            --steel-blue: #1B263B;
            --bright-cyan: #00D9FF;
            --white: #FFFFFF;
            --light-gray: #E0E1DD;
            --dark-gray: #415A77;
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background: var(--deep-navy);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Lock-themed decorative elements */
        .lock-decoration {
            position: absolute;
            opacity: 0.05;
            pointer-events: none;
        }

        .key-decoration {
            position: absolute;
            opacity: 0.03;
            pointer-events: none;
            transform: rotate(-15deg);
        }

        /* Header */
        .header {
            background: rgba(13, 27, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 3px solid var(--key-gold);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 217, 255, 0.2);
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .logo:hover {
            opacity: 0.8;
            transform: scale(1.02);
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--key-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 0 20px rgba(255, 184, 0, 0.5);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 184, 0, 0.5); }
            50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(255, 184, 0, 0.8); }
        }

        .logo-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(135deg, var(--key-gold) 0%, var(--bright-cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav {
            display: flex;
            gap: 35px;
            align-items: center;
        }

        .nav a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--key-gold);
            transition: width 0.3s ease;
        }

        .nav a:hover {
            color: var(--key-gold);
        }

        .nav a:hover::before {
            width: 100%;
        }

        .phone-cta {
            background: var(--key-gold);
            color: var(--deep-navy);
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
        }

        .phone-cta:hover {
            background: var(--bright-cyan);
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(0, 217, 255, 0.5);
        }

        /* Hero */
        .hero {
            padding: 140px 40px 100px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--deep-navy) 0%, var(--steel-blue) 100%);
        }

        .hero::before {
            content: '🔐';
            position: absolute;
            top: -10%;
            right: -5%;
            font-size: 50vw;
            opacity: 0.03;
            transform: rotate(15deg);
        }

        .hero-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            animation: fadeInLeft 1s ease;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 184, 0, 0.15);
            border: 2px solid var(--key-gold);
            color: var(--key-gold);
            padding: 10px 24px;
            border-radius: 30px;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 2px;
            margin-bottom: 30px;
        }

        .hero-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(3rem, 7vw, 6rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: -2px;
        }

        .hero-title .gradient {
            background: linear-gradient(135deg, var(--key-gold) 0%, var(--bright-cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

        .hero-description {
            font-size: 1.3rem;
            line-height: 1.8;
            color: var(--light-gray);
            margin-bottom: 40px;
            max-width: 550px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .btn {
            padding: 18px 40px;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border-radius: 5px;
            font-family: 'Rajdhani', sans-serif;
        }

        .btn-primary {
            background: var(--key-gold);
            color: var(--deep-navy);
            box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
        }

        .btn-primary:hover {
            background: var(--bright-cyan);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 217, 255, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 3px solid var(--bright-cyan);
        }

        .btn-secondary:hover {
            background: var(--bright-cyan);
            color: var(--deep-navy);
        }

        .hero-features {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 184, 0, 0.2);
            border: 2px solid var(--key-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .feature-text {
            font-weight: 600;
            font-size: 1rem;
        }

        /* Lock Visual */
        .lock-visual {
            position: relative;
            animation: fadeInRight 1s ease;
        }

        .lock-container {
            position: relative;
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
        }

        .lock-body {
            width: 280px;
            height: 320px;
            background: linear-gradient(135deg, var(--lock-silver) 0%, #8A8A8A 100%);
            border-radius: 40px 40px 20px 20px;
            margin: 0 auto;
            position: relative;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.5),
                inset 0 -10px 30px rgba(0, 0, 0, 0.3),
                inset 0 10px 30px rgba(255, 255, 255, 0.2);
            border: 3px solid rgba(255, 255, 255, 0.3);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .lock-shackle {
            width: 140px;
            height: 120px;
            border: 30px solid var(--key-gold);
            border-bottom: none;
            border-radius: 70px 70px 0 0;
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 
                0 -10px 30px rgba(255, 184, 0, 0.4),
                inset 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .lock-keyhole {
            width: 50px;
            height: 80px;
            background: var(--deep-navy);
            border-radius: 50% 50% 0 0 / 60% 60% 0 0;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -30%);
            box-shadow: 
                inset 0 5px 15px rgba(0, 0, 0, 0.8),
                0 0 20px rgba(0, 217, 255, 0.6);
        }

        .lock-keyhole::after {
            content: '';
            width: 20px;
            height: 60px;
            background: var(--deep-navy);
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            clip-path: polygon(30% 0, 70% 0, 100% 100%, 0% 100%);
        }

        .lock-shine {
            position: absolute;
            top: 20%;
            left: 10%;
            width: 60%;
            height: 40%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
            border-radius: 50%;
            pointer-events: none;
        }

        /* Services */
        .services {
            padding: 100px 40px;
            background: var(--steel-blue);
            position: relative;
        }

        .section-header {
            max-width: 800px;
            margin: 0 auto 70px;
            text-align: center;
        }

        .section-label {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--key-gold);
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .section-description {
            font-size: 1.2rem;
            color: var(--light-gray);
            line-height: 1.8;
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--deep-navy);
            padding: 45px 35px;
            border: 2px solid rgba(255, 184, 0, 0.3);
            border-radius: 15px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, var(--key-gold) 0%, var(--bright-cyan) 100%);
            border-radius: 15px;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 184, 0, 0.3);
        }

        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            filter: grayscale(0.3);
        }

        .service-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: -0.5px;
        }

        .service-description {
            color: var(--light-gray);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .service-list {
            list-style: none;
        }

        .service-list li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            color: var(--light-gray);
            font-size: 1rem;
        }

        .service-list li::before {
            content: '🔑';
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }

        /* Trust Signals / Social Proof */
        .trust-section {
            padding: 80px 40px;
            background: var(--deep-navy);
            border-top: 3px solid var(--key-gold);
            border-bottom: 3px solid var(--key-gold);
        }

        .trust-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .trust-item {
            padding: 30px 20px;
            background: rgba(255, 184, 0, 0.05);
            border: 2px solid rgba(255, 184, 0, 0.2);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .trust-item:hover {
            background: rgba(255, 184, 0, 0.1);
            border-color: var(--key-gold);
            transform: translateY(-5px);
        }

        .trust-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .trust-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--key-gold);
        }

        .trust-text {
            color: var(--light-gray);
            font-size: 1rem;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 40px;
            background: var(--steel-blue);
        }

        .faq-container {
            max-width: 900px;
            margin: 60px auto 0;
        }

        .faq-item {
            background: var(--deep-navy);
            border: 2px solid rgba(255, 184, 0, 0.3);
            border-radius: 10px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--key-gold);
        }

        .faq-question {
            padding: 25px 30px;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(255, 184, 0, 0.05);
            color: var(--key-gold);
        }

        .faq-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 30px;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 30px 25px;
        }

        .faq-answer p {
            color: var(--light-gray);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* Service Areas */
        .service-areas {
            padding: 100px 40px;
            background: var(--deep-navy);
        }

        .areas-grid {
            max-width: 1200px;
            margin: 60px auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .area-column {
            background: var(--steel-blue);
            padding: 35px 30px;
            border-radius: 15px;
            border: 2px solid rgba(255, 184, 0, 0.2);
            transition: all 0.3s ease;
        }

        .area-column:hover {
            border-color: var(--key-gold);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 184, 0, 0.2);
        }

        .area-column h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            color: var(--key-gold);
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(255, 184, 0, 0.3);
        }

        .area-column ul {
            list-style: none;
        }

        .area-column li {
            padding: 10px 0;
            padding-left: 25px;
            position: relative;
            color: var(--light-gray);
            font-size: 1.05rem;
        }

        .area-column li::before {
            content: '📍';
            position: absolute;
            left: 0;
        }

        /* Contact */
        .contact {
            padding: 100px 40px;
            background: var(--deep-navy);
        }

        .contact-grid {
            max-width: 1200px;
            margin: 60px auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .contact-card {
            background: var(--steel-blue);
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid rgba(255, 184, 0, 0.3);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            border-color: var(--key-gold);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(255, 184, 0, 0.3);
        }

        .contact-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .contact-label {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--key-gold);
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        .contact-value {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--white);
        }

        .contact-value a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-value a:hover {
            color: var(--bright-cyan);
        }

        /* Footer */
        .footer {
            background: rgba(13, 27, 42, 0.95);
            padding: 70px 40px 40px;
            border-top: 3px solid var(--key-gold);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--key-gold) 0%, var(--bright-cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-text {
            color: var(--light-gray);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 2px solid rgba(255, 255, 255, 0.1);
            color: var(--light-gray);
            font-size: 0.95rem;
        }

        /* Animations */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 10px;
        }

        .mobile-menu-toggle span {
            width: 30px;
            height: 3px;
            background: var(--key-gold);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .lock-visual {
                order: -1;
            }

            .nav {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 120px 20px 80px;
            }

            .services,
            .faq-section,
            .service-areas,
            .testimonials,
            .contact,
            .trust-section {
                padding: 80px 20px;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .trust-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .hero-features {
                flex-direction: column;
                gap: 20px;
            }
        }