
        /* --- CSS VARIABLES & RESET --- */
        :root {
            --primary: #0f172a; /* Navy Blue */
            --secondary: #1e40af; /* Royal Blue */
            --accent: #10b981; /* Emerald Green */
            --gold: #d4af37; /* Gold Accent */
            --light: #f8fafc;
            --dark: #0f172a;
            --text-gray: #64748b;
            --white: #ffffff;
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --radius: 8px;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            background-color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            color: var(--primary);
            line-height: 1.2;
        }

        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        /* --- UTILITIES --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--gold);
            color: var(--primary);
        }

        .btn-primary:hover {
            background-color: #b5942d;
            transform: translateY(-2px);
        }

        .btn-outline {
            border-color: var(--white);
            color: var(--white);
            background: transparent;
        }

        .btn-outline:hover {
            background-color: var(--white);
            color: var(--primary);
        }

        .btn-secondary {
            background-color: var(--secondary);
            color: var(--white);
        }

        .btn-secondary:hover {
            background-color: #1e3a8a;
            transform: translateY(-2px);
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .section-title p {
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        /* --- HEADER --- */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo i { color: var(--gold); }

        .nav-menu {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-link {
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--dark);
            position: relative;
        }

        .nav-link:hover { color: var(--gold); }

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* --- HERO SECTION --- */
        .hero {
            background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.9)), url('../images/hero.webp');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 120px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--white);
        }

        .hero p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 40px;
            color: #cbd5e1;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        /* --- ABOUT PREVIEW --- */
        .about-preview {
            background-color: var(--white);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .about-text p {
            color: var(--text-gray);
            margin-bottom: 25px;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }

        .feature-item i { color: var(--accent); }

        /* --- WHY CHOOSE US --- */
        .why-us {
            background-color: #f1f5f9;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: var(--white);
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-top: 4px solid var(--gold);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--accent);
            font-size: 1.5rem;
        }

        .feature-card h4 { margin-bottom: 10px; }
        .feature-card p { color: var(--text-gray); font-size: 0.9rem; }

        /* --- SERVICES --- */
        .services { background-color: var(--white); }

        .service-category {
            margin-bottom: 60px;
        }

        .category-title {
            font-size: 1.5rem;
            color: var(--secondary);
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--gold);
            display: inline-block;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }

        .service-card {
            background: var(--light);
            padding: 25px;
            border-radius: var(--radius);
            border: 1px solid #e2e8f0;
            transition: var(--transition);
        }

        .service-card:hover {
            border-color: var(--gold);
            background: var(--white);
            box-shadow: var(--shadow);
        }

        .service-card i {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .service-card h4 { font-size: 1.1rem; margin-bottom: 10px; }
        .service-card p { font-size: 0.85rem; color: var(--text-gray); margin-bottom: 15px; }
        
        .service-cta {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .service-cta:hover { gap: 10px; }

        /* --- TESTIMONIALS --- */
        .testimonials { background-color: #f8fafc; }

        .testimonial-slider {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: var(--white);
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            position: relative;
        }

        .stars { color: var(--gold); margin-bottom: 15px; }
        
        .quote {
            font-style: italic;
            color: var(--text-gray);
            margin-bottom: 20px;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .client-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #ddd;
            object-fit: cover;
        }

        .client-details h5 { font-size: 1rem; }
        .client-details span { font-size: 0.85rem; color: var(--text-gray); }

        /* --- FAQ --- */
        .faq-section { background-color: var(--white); }

        .accordion-item {
            border-bottom: 1px solid #e2e8f0;
            margin-bottom: 10px;
        }

        .accordion-header {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            background: var(--light);
            border-radius: var(--radius);
            transition: var(--transition);
        }

        .accordion-header:hover { background: #e2e8f0; }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 20px;
            background: var(--white);
        }

        .accordion-content p {
            padding: 20px 0;
            color: var(--text-gray);
        }

        .accordion-icon { transition: transform 0.3s; }
        .active .accordion-icon { transform: rotate(180deg); }

        /* --- CONTACT & NEWSLETTER --- */
        .contact-section { background: linear-gradient(to right, var(--primary), var(--secondary)); color: var(--white); }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .form-box {
            background: var(--white);
            padding: 40px;
            border-radius: var(--radius);
            color: var(--dark);
        }

        .form-box h3 { color: var(--primary); margin-bottom: 20px; }

        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.9rem; }
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #cbd5e1;
            border-radius: var(--radius);
            font-family: inherit;
        }
        .form-control:focus { outline: 2px solid var(--secondary); border-color: transparent; }

        .checkbox-group { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
        
        .success-msg {
            display: none;
            background: #d1fae5;
            color: #065f46;
            padding: 15px;
            border-radius: var(--radius);
            margin-top: 15px;
            text-align: center;
            font-weight: 600;
        }

        /* --- FOOTER --- */
        footer {
            background-color: var(--primary);
            color: #cbd5e1;
            padding-top: 60px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 { color: var(--white); margin-bottom: 20px; font-size: 1.2rem; }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col ul li a:hover { color: var(--gold); }
        
        .contact-info p { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
        .contact-info i { color: var(--gold); }

        .social-links { display: flex; gap: 15px; margin-top: 20px; }
        .social-links a {
            width: 35px; height: 35px;
            background: rgba(255,255,255,0.1);
            display: flex; align-items: center; justify-content: center;
            border-radius: 50%;
        }
        .social-links a:hover { background: var(--gold); color: var(--primary); }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 20px 0;
            text-align: center;
            font-size: 0.9rem;
        }

        .legal-links {
            margin-top: 10px;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .legal-links a { text-decoration: underline; cursor: pointer; }

        /* --- MODALS --- */
        .modal-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .modal-overlay.open { display: flex; opacity: 1; }

        .modal-content {
            background: var(--white);
            padding: 40px;
            border-radius: var(--radius);
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 15px; right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-gray);
        }

        .modal-content h3 { margin-bottom: 15px; color: var(--primary); }
        .modal-content p { margin-bottom: 15px; color: var(--text-gray); }

        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.5rem; }
            .about-content, .contact-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px; left: 0; width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--shadow);
                transform: translateY(-150%);
                transition: var(--transition);
            }
            .nav-menu.active { transform: translateY(0); }
            .mobile-toggle { display: block; }
            .hero-btns { flex-direction: column; }
            .hero-btns .btn { width: 100%; }
        }
    