
        /* --- CSS VARIABLES & RESET --- */
        :root {
            --primary-blue: #0f2b46;
            --secondary-blue: #1a3b5d;
            --accent-gold: #d4af37;
            --accent-gold-hover: #b5952f;
            --text-light: #f4f4f4;
            --text-dark: #333333;
            --text-grey: #666666;
            --bg-light: #ffffff;
            --bg-off-white: #f9f9f9;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
            --shadow-hover: 0 10px 25px rgba(0,0,0,0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-blue);
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        /* --- UTILITIES --- */
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--accent-gold);
            color: var(--primary-blue);
            font-weight: 600;
            border-radius: 4px;
            transition: var(--transition);
            border: 2px solid var(--accent-gold);
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .btn:hover {
            background-color: transparent;
            color: var(--accent-gold);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--text-light);
            color: var(--text-light);
        }

        .btn-outline:hover {
            background-color: var(--text-light);
            color: var(--primary-blue);
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--accent-gold);
        }

        /* --- ANIMATIONS --- */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- HEADER --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background-color: var(--bg-light);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        header.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 10px 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-blue);
        }

        .logo span { color: var(--accent-gold); }

        .nav-menu {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-link {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--primary-blue);
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-gold);
            transition: var(--transition);
        }

        .nav-link:hover::after { width: 100%; }

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* --- HERO SECTION --- */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(15, 43, 70, 0.85), rgba(15, 43, 70, 0.8)), url('../images/hero.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-light);
            padding-top: 80px;
        }

        .hero-content {
            max-width: 800px;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        /* --- ABOUT PREVIEW --- */
        .about-preview {
            background-color: var(--bg-light);
        }

        .about-grid {
            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-grey);
            margin-bottom: 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            background: var(--bg-off-white);
            border-radius: 8px;
            border-bottom: 3px solid var(--accent-gold);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-blue);
            font-family: 'Playfair Display', serif;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-grey);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* --- WHY CHOOSE US --- */
        .why-us {
            background-color: var(--bg-off-white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: var(--bg-light);
            padding: 40px 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }

        .feature-card h4 {
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        /* --- SERVICES --- */
        .services {
            background-color: var(--bg-light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--bg-light);
            border: 1px solid #eee;
            padding: 30px;
            border-radius: 8px;
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background-color: var(--primary-blue);
            z-index: -1;
            transition: var(--transition);
            border-radius: 8px;
        }

        .service-card:hover::before { height: 100%; }

        .service-card:hover { color: var(--text-light); }
        .service-card:hover h4, .service-card:hover p { color: var(--text-light); }
        .service-card:hover .service-icon { color: var(--accent-gold); }

        .service-icon {
            font-size: 2rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .service-card h4 {
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .service-card p {
            font-size: 0.9rem;
            color: var(--text-grey);
            transition: var(--transition);
        }

        /* --- TESTIMONIALS --- */
        .testimonials {
            background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
            color: var(--text-light);
            text-align: center;
        }

        .testimonials .section-title h2 { color: var(--text-light); }
        
        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            min-height: 300px;
        }

        .testimonial-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            padding: 20px;
        }

        .testimonial-slide.active {
            opacity: 1;
            position: relative;
        }

        .client-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
            border: 3px solid var(--accent-gold);
            object-fit: cover;
        }

        .quote {
            font-style: italic;
            font-size: 1.1rem;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .client-name {
            font-weight: 700;
            color: var(--accent-gold);
        }

        /* --- FAQ --- */
        .faq {
            background-color: var(--bg-off-white);
        }

        .accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-item {
            background: var(--bg-light);
            margin-bottom: 15px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            overflow: hidden;
        }

        .accordion-header {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary-blue);
            transition: var(--transition);
        }

        .accordion-header:hover { background-color: #f0f0f0; }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 20px;
            background-color: var(--bg-light);
        }

        .accordion-content p {
            padding: 20px 0;
            color: var(--text-grey);
        }

        .accordion-item.active .accordion-content {
            max-height: 200px; /* Adjust based on content */
        }

        .accordion-item.active .accordion-header i {
            transform: rotate(180deg);
        }

        .accordion-header i { transition: var(--transition); }

        /* --- CONTACT & NEWSLETTER --- */
        .contact-section {
            background-color: var(--bg-light);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .form-box {
            background: var(--bg-off-white);
            padding: 40px;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }

        .form-box h3 {
            margin-bottom: 25px;
            font-size: 1.5rem;
        }

        .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 #ddd;
            border-radius: 4px;
            font-family: inherit;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--accent-gold);
            outline: none;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background-color: var(--primary-blue);
            color: var(--text-light);
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .submit-btn:hover {
            background-color: var(--accent-gold);
            color: var(--primary-blue);
        }

        .form-message {
            margin-top: 15px;
            padding: 10px;
            background-color: #d4edda;
            color: #155724;
            border-radius: 4px;
            text-align: center;
            display: none;
            animation: fadeIn 0.5s;
        }

        /* --- FOOTER --- */
        footer {
            background-color: var(--primary-blue);
            color: var(--text-light);
            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(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #ccc;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .footer-col ul li a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons 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);
        }

        .social-icons a:hover {
            background: var(--accent-gold);
            color: var(--primary-blue);
        }

        .footer-bottom {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.85rem;
            color: #aaa;
        }

        /* --- MODALS --- */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .modal-overlay.open {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background: var(--bg-light);
            padding: 40px;
            border-radius: 8px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.3s ease-out;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-grey);
        }

        /* --- ANIMATION KEYFRAMES --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.8rem; }
            .about-grid, .contact-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .mobile-toggle { display: block; }
            .nav-menu {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 70%;
                height: calc(100vh - 80px);
                background: var(--bg-light);
                flex-direction: column;
                padding: 40px;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                transition: var(--transition);
            }
            .nav-menu.active { right: 0; }
            .hero h1 { font-size: 2.2rem; }
            .hero-btns { flex-direction: column; }
            .stats-grid { grid-template-columns: 1fr; }
        }
    