
        /* --- CSS VARIABLES & RESET --- */
:root {
    --primary-navy: #1e3a8a;
    --secondary-blue: #3b82f6;
    --accent-gold: #facc15;
    --accent-gold-light: #fde68a;
    --bg-light: #eff6ff;
    --bg-white: #ffffff;
    --text-dark: #1f2937;
    --text-gray: #4b5563;
    --success: #10b981;
    --shadow: 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;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Manrope', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.7;
            overflow-x: hidden;
        }

        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;
        }

        .section-padding {
            padding: 80px 0;
        }

        .text-center { text-align: center; }
        
        .section-title {
            font-size: 2.5rem;
            color: var(--primary-navy);
            margin-bottom: 1rem;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .section-subtitle {
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto 3rem auto;
            font-size: 1.1rem;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--accent-gold);
            color: white;
            box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
        }

        .btn-primary:hover {
            background-color: #b45309;
            transform: translateY(-2px);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid white;
            color: white;
        }

        .btn-outline:hover {
            background-color: white;
            color: var(--primary-navy);
        }

        /* --- HEADER --- */
        header {
            background-color: var(--bg-white);
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            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: 800;
            color: var(--primary-navy);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo span { color: var(--accent-gold); }

        .nav-menu {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-link {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 0.95rem;
        }

        .nav-link:hover { color: var(--accent-gold); }

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-navy);
        }

        /* --- HERO SECTION --- */
        .hero {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8)), url('../img/hero.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 140px 0;
            position: relative;
        }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 700px;
        }

        .hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }

        /* --- ABOUT PREVIEW --- */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-img img {
            border-radius: var(--radius);
            box-shadow: 20px 20px 0 var(--accent-gold-light);
        }

        .stat-row {
            display: flex;
            gap: 40px;
            margin-top: 30px;
            border-top: 1px solid #e2e8f0;
            padding-top: 20px;
        }
        
        .stat h3 { font-size: 2rem; color: var(--accent-gold); }
        .stat p { font-size: 0.9rem; color: var(--text-gray); }

        /* --- WHY CHOOSE US --- */
        .why-us { background-color: var(--bg-white); }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 30px;
        }

        .feature-card {
            padding: 30px;
            background: var(--bg-light);
            border-radius: var(--radius);
            transition: var(--transition);
        }

        .feature-card:hover { transform: translateY(-5px); background: white; box-shadow: var(--shadow); }

        .f-icon {
            font-size: 2rem;
            color: var(--secondary-blue);
            margin-bottom: 20px;
        }

        /* --- SERVICES SECTION --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--accent-gold);
        }

        .s-header {
            background: var(--primary-navy);
            color: white;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .s-header i { font-size: 1.5rem; color: var(--accent-gold); }
        .s-header h3 { font-size: 1.2rem; }

        .s-body {
            padding: 25px;
        }

        .s-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            font-size: 0.95rem;
            color: var(--text-gray);
        }

        .s-list li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--success);
        }

        /* --- TESTIMONIALS --- */
        .testimonials { background-color: var(--primary-navy); color: white; text-align: center; }
        .testimonials .section-title { color: white; }
        
        .testimonial-box {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(5px);
            max-width: 800px;
            margin: 0 auto;
            padding: 50px;
            border-radius: var(--radius);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .t-text { font-size: 1.5rem; font-style: italic; margin-bottom: 20px; }
        .t-author { font-weight: 700; color: var(--accent-gold); }

        /* --- FAQ --- */
        .faq-container { max-width: 800px; margin: 0 auto; }
        
        details {
            background: white;
            margin-bottom: 15px;
            border-radius: var(--radius);
            border: 1px solid #e2e8f0;
            overflow: hidden;
        }

        summary {
            padding: 20px;
            cursor: pointer;
            font-weight: 600;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        summary::-webkit-details-marker { display: none; }
        summary::after { content: '+'; font-size: 1.5rem; color: var(--accent-gold); }
        details[open] summary::after { content: '-'; }
        details[open] summary { border-bottom: 1px solid #f1f5f9; }
        
        .faq-content { padding: 20px; color: var(--text-gray); background: #fafafa; }

        /* --- CONTACT & NEWSLETTER --- */
        .contact-wrap {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 40px;
            background: white;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .form-group { margin-bottom: 20px; }
        .form-label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #cbd5e1;
            border-radius: 6px;
            font-family: inherit;
            transition: var(--transition);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
        }

        .checkbox-group { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--text-gray); }
        
        .newsletter-box {
            background: var(--bg-light);
            padding: 30px;
            border-radius: var(--radius);
        }

        .success-msg {
            display: none;
            background: #d1fae5;
            color: #065f46;
            padding: 15px;
            border-radius: 6px;
            margin-top: 15px;
            text-align: center;
            font-weight: 600;
            animation: fadeIn 0.5s;
        }

        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        /* --- FOOTER --- */
        footer { background: var(--primary-navy); color: #cbd5e1; padding: 60px 0 20px; }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .footer-logo { font-size: 1.5rem; font-weight: 800; color: white; margin-bottom: 15px; display: block; }
        .footer-col h4 { color: white; margin-bottom: 20px; font-weight: 600; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a:hover { color: var(--accent-gold); }
        
        .contact-info li { display: flex; gap: 10px; margin-bottom: 15px; }
        
        .socials { display: flex; gap: 15px; margin-top: 20px; }
        .socials a {
            width: 35px; height: 35px;
            background: rgba(255,255,255,0.1);
            display: flex; align-items: center; justify-content: center;
            border-radius: 50%; transition: var(--transition);
        }
        .socials a:hover { background: var(--accent-gold); color: white; }

        .legal-row { text-align: center; font-size: 0.9rem; }
        .legal-links { margin-top: 10px; display: flex; justify-content: center; gap: 20px; }
        .legal-links button { background: none; border: none; color: #94a3b8; cursor: pointer; font-size: 0.9rem; text-decoration: underline; }

        /* --- MODALS --- */
        dialog {
            margin: auto;
            padding: 0;
            border: none;
            border-radius: var(--radius);
            max-width: 600px;
            width: 90%;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        dialog::backdrop { background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(2px); }
        
        .modal-header {
            background: var(--primary-navy);
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modal-body { padding: 30px; max-height: 70vh; overflow-y: auto; color: var(--text-dark); }
        .close-modal { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .nav-menu {
                position: fixed; top: 70px; left: -100%; width: 100%; height: calc(100vh - 70px);
                background: white; flex-direction: column; padding: 40px;
                transition: 0.3s;
            }
            .nav-menu.active { left: 0; }
            .mobile-toggle { display: block; }
            .about-grid, .contact-wrap { grid-template-columns: 1fr; }
            .hero-btns { flex-direction: column; }
            .stat-row { flex-wrap: wrap; gap: 20px; }
        }
   