
        /* --- CSS VARIABLES & RESET --- */
        :root {
            --primary-dark: #0f172a; /* Deep Navy */
            --primary-light: #1e293b; /* Lighter Navy */
            --accent-green: #10b981; /* Growth Green */
            --accent-gold: #f59e0b; /* Wealth Gold */
            --text-dark: #334155;
            --text-light: #94a3b8;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
            --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
            --radius: 8px;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Outfit', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }
        
        button, input, select, textarea { font-family: inherit; }

        /* --- UTILITIES --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding { padding: 80px 0; }
        .bg-light { background-color: var(--bg-light); }
        .text-center { text-align: center; }
        
        .section-header {
            margin-bottom: 50px;
            text-align: center;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }

        .section-header p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--accent-green);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: #059669;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-outline {
            border-color: var(--white);
            color: var(--white);
            background: transparent;
        }

        .btn-outline:hover {
            background-color: var(--white);
            color: var(--primary-dark);
        }

        .btn-dark {
            background-color: var(--primary-dark);
            color: var(--white);
        }
        
        .btn-dark:hover {
            background-color: var(--primary-light);
        }

        /* --- HEADER --- */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo i { color: var(--accent-gold); }

        .nav-menu {
            display: flex;
            gap: 30px;
        }

        .nav-menu a {
            font-weight: 500;
            color: var(--text-dark);
            transition: var(--transition);
        }

        .nav-menu a:hover { color: var(--accent-green); }

        .nav-contact {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .top-phone {
            display: flex;
            flex-direction: column;
            font-size: 0.85rem;
            color: var(--text-dark);
        }
        
        .top-phone span { font-weight: 600; color: var(--primary-dark); }

        .mobile-toggle { display: none; font-size: 1.5rem; cursor: pointer; }

        /* --- HERO --- */
        .hero {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.8)), url('../img/hero.jpg') center/cover;
            color: var(--white);
            padding: 120px 0;
            position: relative;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }

        .hero-text {
            flex: 1;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #cbd5e1;
        }

        .hero-image {
            flex: 1;
            display: none; /* Hidden on small mobile, shown on desktop */
        }

        .hero-image img {
            border-radius: 20px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
            border: 4px solid rgba(255,255,255,0.1);
        }

        /* --- ABOUT PREVIEW --- */
        .about-preview {
            background: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 2rem;
            color: var(--primary-dark);
            margin-bottom: 20px;
        }

        .about-text p {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 30px;
        }

        /* --- WHY CHOOSE US --- */
        .why-us {
            background-color: var(--bg-light);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            text-align: center;
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: rgba(16, 185, 129, 0.1);
            color: var(--accent-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 20px;
        }

        .feature-card h4 { margin-bottom: 15px; font-size: 1.25rem; }

        /* --- SERVICES --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 30px;
        }

        .service-category {
            background: var(--white);
            border: 1px solid #e2e8f0;
            border-radius: var(--radius);
            padding: 30px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .service-category:hover {
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-lg);
        }

        .service-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-dark);
            transition: var(--transition);
        }
        
        .service-category:hover::before {
            background: var(--accent-gold);
        }

        .cat-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .cat-header i {
            font-size: 2rem;
            color: var(--primary-dark);
        }

        .cat-header h3 { font-size: 1.5rem; }

        .service-list li {
            padding: 8px 0;
            border-bottom: 1px solid #f1f5f9;
            color: var(--text-dark);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .service-list li i {
            color: var(--accent-green);
            font-size: 0.8rem;
        }

        /* --- TESTIMONIALS --- */
        .testimonials {
            background: var(--primary-dark);
            color: var(--white);
        }

        .testimonials .section-header h2 { color: var(--white); }
        .testimonials .section-header p { color: #cbd5e1; }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: var(--radius);
            backdrop-filter: blur(10px);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #e2e8f0;
        }

        .client-name {
            font-weight: 700;
            color: var(--accent-gold);
        }

        /* --- FAQ --- */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border-radius: var(--radius);
            margin-bottom: 15px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary-dark);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 20px;
            color: var(--text-dark);
        }
        
        .faq-item.active .faq-answer {
            max-height: 200px;
            padding-bottom: 20px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* --- CONTACT & NEWSLETTER WRAPPER --- */
        .contact-newsletter-wrapper {
            background-color: var(--bg-light);
        }

        .grid-split {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 50px;
        }

        /* Forms */
        .form-card {
            background: var(--white);
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
        }

        .form-group { margin-bottom: 20px; }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--primary-dark);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #cbd5e1;
            border-radius: var(--radius);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-dark);
            box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        /* --- FOOTER --- */
        footer {
            background-color: var(--primary-dark);
            color: #cbd5e1;
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 40px;
        }

        .footer-col h4 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-col ul li { margin-bottom: 12px; }
        
        .footer-col ul li a:hover { color: var(--accent-gold); padding-left: 5px; }

        .social-icons a {
            display: inline-flex;
            width: 35px;
            height: 35px;
            background: rgba(255,255,255,0.1);
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 10px;
            transition: var(--transition);
        }

        .social-icons a:hover {
            background: var(--accent-gold);
            color: var(--white);
        }

        .copyright {
            text-align: center;
            font-size: 0.9rem;
        }
        
        .legal-links a {
            margin: 0 10px;
            cursor: pointer;
        }
        .legal-links a:hover { text-decoration: underline; }

        /* --- MODALS --- */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.6);
            backdrop-filter: blur(4px);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal.show {
            opacity: 1;
        }

        .modal-content {
            background-color: var(--white);
            margin: 10% auto;
            padding: 40px;
            border-radius: var(--radius);
            width: 90%;
            max-width: 600px;
            position: relative;
            transform: translateY(-20px);
            transition: transform 0.3s ease;
            max-height: 80vh;
            overflow-y: auto;
        }

        .modal.show .modal-content {
            transform: translateY(0);
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            cursor: pointer;
            color: var(--text-dark);
        }

        /* --- TOAST NOTIFICATION --- */
        #toast {
            visibility: hidden;
            min-width: 250px;
            background-color: var(--primary-dark);
            color: #fff;
            text-align: center;
            border-radius: var(--radius);
            padding: 16px;
            position: fixed;
            z-index: 3000;
            left: 50%;
            bottom: 30px;
            transform: translateX(-50%);
            box-shadow: var(--shadow-lg);
            border-left: 5px solid var(--accent-green);
        }

        #toast.show {
            visibility: visible;
            animation: fadein 0.5s, fadeout 0.5s 2.5s;
        }

        @keyframes fadein {
            from {bottom: 0; opacity: 0;}
            to {bottom: 30px; opacity: 1;}
        }
        @keyframes fadeout {
            from {bottom: 30px; opacity: 1;}
            to {bottom: 0; opacity: 0;}
        }

        /* --- MEDIA QUERIES --- */
        @media (min-width: 992px) {
            .hero-image { display: block; }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--white);
                padding: 20px;
                box-shadow: var(--shadow-md);
                text-align: center;
            }
            
            .nav-menu.active { display: flex; }
            
            .nav-contact { display: none; } /* Simplify header on mobile */
            .mobile-toggle { display: block; }
            
            .hero-content { flex-direction: column; text-align: center; }
            
            .about-grid, .grid-split { grid-template-columns: 1fr; }
        }
   