
        :root {
            --primary-blue: #0A0A0A;
            --secondary-blue: #1F1F1F;
            --accent-gold: #39FF14;
            --light-gray: #EDEDED;
            --text-dark: #333333;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            color: var(--text-dark);
            line-height: 1.6;
        }

        /* Header Styles */
        .top-bar {
            background: var(--primary-blue);
            color: white;
            padding: 8px 0;
            font-size: 0.9rem;
        }

        .main-header {
            background: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-blue);
            font-family: 'Times New Roman', serif;
        }

        .nav-link {
            color: var(--text-dark);
            font-weight: 500;
            margin: 0 1rem;
            transition: color 0.3s;
            text-transform: uppercase;
            font-size: 0.95rem;
        }

        .nav-link:hover {
            color: var(--secondary-blue);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0,0.8), rgba(0, 0, 0,0.8)), url('../img/hero.jpg') center/cover;
            color: white;
            padding: 150px 0 100px;
            text-align: center;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
            letter-spacing: 2px;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .btn-primary-custom {
            background: var(--secondary-blue);
            color: white;
            padding: 12px 35px;
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
        }

        .btn-primary-custom:hover {
            background: var(--primary-blue);
            transform: translateY(-2px);
        }

        .btn-outline-custom {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 12px 35px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
        }

        .btn-outline-custom:hover {
            background: white;
            color: var(--primary-blue);
        }

        /* Section Styles */
        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent-gold);
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 3rem;
            font-style: italic;
        }

        /* About Section */
        .about-content {
            background: white;
            padding: 40px;
            border-left: 4px solid var(--accent-gold);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .stats-box {
            text-align: center;
            padding: 30px;
            background: var(--light-gray);
            border-radius: 5px;
            transition: transform 0.3s;
        }

        .stats-box:hover {
            transform: translateY(-5px);
        }

        .stats-number {
            font-size: 2.5rem;
            color: var(--secondary-blue);
            font-weight: bold;
        }

        /* Services Grid */
        .service-category {
            margin-bottom: 50px;
        }

        .category-title {
            color: var(--primary-blue);
            font-size: 1.8rem;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-gold);
        }

        .service-item {
            background: white;
            padding: 25px;
            margin-bottom: 20px;
            border: 1px solid #e0e0e0;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .service-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: var(--secondary-blue);
            transform: translateX(-100%);
            transition: transform 0.3s;
        }

        .service-item:hover::before {
            transform: translateX(0);
        }

        .service-item:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transform: translateX(5px);
        }

        .service-icon {
            color: var(--accent-gold);
            font-size: 2rem;
            margin-bottom: 15px;
        }

        /* Why Choose Us */
        .feature-item {
            text-align: center;
            padding: 30px;
            background: white;
            border: 1px solid #e0e0e0;
            transition: all 0.3s;
        }

        .feature-item:hover {
            background: var(--primary-blue);
            color: white;
        }

        .feature-item:hover .feature-icon {
            color: var(--accent-gold);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--secondary-blue);
            margin-bottom: 20px;
            transition: color 0.3s;
        }

        /* Testimonials */
        .testimonial-block {
            background: white;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid #e0e0e0;
            position: relative;
        }

        .quote-icon {
            font-size: 3rem;
            color: var(--accent-gold);
            opacity: 0.3;
            position: absolute;
            top: 20px;
            right: 20px;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #555;
        }

        .client-info {
            display: flex;
            align-items: center;
        }

        .client-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            border: 3px solid var(--accent-gold);
        }

        /* FAQ */
        .faq-item {
            background: white;
            margin-bottom: 15px;
            border: 1px solid #e0e0e0;
        }

        .faq-question {
            padding: 20px;
            background: var(--primary-blue);
            color: white;
            cursor: pointer;
            transition: background 0.3s;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question:hover {
            background: var(--secondary-blue);
        }

        .faq-answer {
            padding: 20px;
            display: none;
            background: var(--light-gray);
        }

        .faq-answer.active {
            display: block;
        }

        /* Contact Form */
        .contact-wrapper {
            background: white;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .form-control, .form-select {
            border: 1px solid #ccc;
            border-radius: 0;
            padding: 12px;
            font-size: 1rem;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--secondary-blue);
            box-shadow: none;
        }

        /* Footer */
        footer {
            background: var(--primary-blue);
            color: white;
            padding: 50px 0 20px;
        }

        .footer-title {
            color: var(--accent-gold);
            font-size: 1.3rem;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        /* Popup Styles */
        .modal-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 2000;
        }

        .modal-content-custom {
            background: white;
            margin: 50px auto;
            padding: 40px;
            max-width: 600px;
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2rem;
            cursor: pointer;
            color: #999;
        }

        /* Success Message */
        .alert-success-custom {
            background: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 5px;
            margin-top: 20px;
            display: none;
            border-left: 4px solid #28a745;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }