:root {
            --navy: #001F3F;
            --navy-light: #003057;
            --gold: #D4AF37;
            --gold-dark: #B8941F;
            --white: #FFFFFF;
            --off-white: #FAFAFA;
            --light-gray: #F5F5F5;
            --medium-gray: #E0E0E0;
            --dark-gray: #666666;
            --text-dark: #2C2C2C;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--navy);
    cursor: pointer;
}

/* Mobile menu box */
.mobile-menu {
    display: none;
    flex-direction: column;
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    border-bottom: 1px solid var(--medium-gray);
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
}

.mobile-menu a:hover {
    background: var(--light-gray);
}

/* CTA button row */
.mobile-cta-item a {
    background: var(--gold);
    color: var(--navy);
    text-align: center;
    font-weight: 600;
}


.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn svg {
    color: var(--navy);
}

/* Mobile only */
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
    .header-cta, .logo-tagline{display: none!important;}
}

/* Smooth scroll for whole site */
html {
    scroll-behavior: smooth;
}

        /* Header - Corporate & Professional */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--white);
            z-index: 1000;
            border-bottom: 1px solid var(--medium-gray);
            box-shadow: var(--shadow-sm);
        }
        
        .header-top {
            background: var(--navy);
            padding: 0.5rem 0;
            font-size: 0.85rem;
        }
        
        .header-top-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .header-info {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        
        .header-info-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .header-info-item svg {
            width: 14px;
            height: 14px;
        }
        
        .header-main {
            padding: 1rem 0;
        }
        
        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        
        .logo {
            font-family: 'IBM Plex Serif', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--navy);
            text-decoration: none;
            letter-spacing: -0.3px;
        }
        
        .logo-tagline {
            font-size: 0.75rem;
            color: var(--dark-gray);
            font-weight: 500;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            border-left: 2px solid var(--gold);
            padding-left: 1rem;
        }
        
        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        
        nav a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
            letter-spacing: 0.2px;
        }
        
        nav a:hover {
            color: var(--navy);
        }
        
        .header-cta {
            display: flex;
            gap: 1rem;
            align-items: center;
        }
        
        .btn-header {
            padding: 0.65rem 1.75rem;
            background: var(--gold);
            color: var(--navy);
            border: none;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            letter-spacing: 0.3px;
        }
        
        .btn-header:hover {
            background: var(--gold-dark);
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }
        
        .phone-link {
            color: var(--navy);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.65rem 1.25rem;
            border: 1.5px solid var(--navy);
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .phone-link:hover {
            background: var(--navy);
            color: var(--white);
        }
        
        /* Hero - Corporate & Clean */
        .hero {
            margin-top: 115px;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            padding: 5rem 3rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="800" height="600" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(212,175,55,0.08)" stroke-width="1"/></pattern></defs><rect width="800" height="600" fill="url(%23grid)"/></svg>');
            opacity: 0.4;
        }
        
        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .hero-left h1 {
            font-family: 'IBM Plex Serif', serif;
            font-size: 3.25rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }
        
        .hero-left h1 .highlight {
            color: var(--gold);
        }
        
        .hero-left p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }
        
        .hero-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
            margin-bottom: 2.5rem;
        }
        
        .hero-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: rgba(255, 255, 255, 0.95);
            font-size: 0.95rem;
        }
        
        .hero-feature svg {
            width: 20px;
            height: 20px;
            color: var(--gold);
            flex-shrink: 0;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .btn-primary {
            padding: 1.15rem 2.5rem;
            background: var(--gold);
            color: var(--navy);
            border: none;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 0.3px;
        }
        
        .btn-primary:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
        }
        
        .btn-secondary {
            padding: 1.15rem 2.5rem;
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            border-radius: 4px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-secondary:hover {
            background: var(--white);
            color: var(--navy);
        }
        
        .hero-right {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
        }
        
        .pricing-card h3 {
            font-family: 'IBM Plex Serif', serif;
            font-size: 1.5rem;
            color: var(--navy);
            margin-bottom: 1rem;
        }
        
        .price-tag {
            font-size: 3rem;
            font-weight: 700;
            color: var(--gold);
            font-family: 'IBM Plex Serif', serif;
            margin-bottom: 0.5rem;
        }
        
        .price-tag span {
            font-size: 1.25rem;
            color: var(--dark-gray);
            font-weight: 400;
        }
        
        .pricing-details {
            color: var(--dark-gray);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .pricing-features li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--light-gray);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.95rem;
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        .pricing-features svg {
            width: 18px;
            height: 18px;
            color: var(--gold);
            flex-shrink: 0;
        }
        
        /* Trust Bar */
        .trust-bar {
            background: var(--off-white);
            padding: 2.5rem 3rem;
            border-bottom: 1px solid var(--medium-gray);
        }
        
        .trust-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 3rem;
        }
        
        .trust-stat {
            text-align: center;
        }
        
        .trust-number {
            font-family: 'IBM Plex Serif', serif;
            font-size: 2.75rem;
            font-weight: 700;
            color: var(--navy);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        .trust-label {
            color: var(--dark-gray);
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Services Section */
        .services {
            padding: 6rem 3rem;
            background: var(--white);
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .section-eyebrow {
            color: var(--gold);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.75rem;
        }
        
        .section-title {
            font-family: 'IBM Plex Serif', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }
        
        .section-description {
            color: var(--dark-gray);
            font-size: 1.05rem;
            line-height: 1.7;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .service-card {
            background: var(--white);
            border: 1px solid var(--medium-gray);
            border-radius: 6px;
            padding: 2.5rem;
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            border-color: var(--gold);
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.75rem;
        }
        
        .service-card:hover .service-icon {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
        }
        
        .service-card h3 {
            font-family: 'IBM Plex Serif', serif;
            font-size: 1.4rem;
            color: var(--navy);
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .service-card p {
            color: var(--dark-gray);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .service-link {
            color: var(--navy);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
        }
        
        .service-link:hover {
            color: var(--gold);
        }
        
        /* Why Choose Us */
        .why-choose {
            padding: 6rem 3rem;
            background: var(--light-gray);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .feature-item {
            display: flex;
            gap: 1.25rem;
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--gold);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.5rem;
        }
        
        .feature-content h4 {
            font-family: 'IBM Plex Serif', serif;
            font-size: 1.15rem;
            color: var(--navy);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        .feature-content p {
            color: var(--dark-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* How It Works */
        .how-it-works {
            padding: 6rem 3rem;
            background: var(--white);
        }
        
        .steps-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            position: relative;
        }
        
        .steps-container::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 12.5%;
            right: 12.5%;
            height: 2px;
            background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 33%, var(--gold) 66%, var(--gold) 100%);
            z-index: 0;
        }
        
        .step {
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: var(--white);
            border: 3px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-family: 'IBM Plex Serif', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--navy);
            position: relative;
        }
        
        .step h4 {
            font-family: 'IBM Plex Serif', serif;
            font-size: 1.2rem;
            color: var(--navy);
            margin-bottom: 0.75rem;
            font-weight: 600;
        }
        
        .step p {
            color: var(--dark-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 6rem 3rem;
            background: var(--off-white);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .testimonial {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 6px;
            border-left: 4px solid var(--gold);
            box-shadow: var(--shadow-sm);
        }
        
        .testimonial-rating {
            color: var(--gold);
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }
        
        .testimonial-text {
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-weight: 700;
            font-size: 1.25rem;
        }
        
        .author-info h5 {
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 0.25rem;
        }
        
        .author-info p {
            color: var(--dark-gray);
            font-size: 0.9rem;
        }
        
                /* ================= CONTACT FORM ================= */

.contact {
    background: #f9fafb;
    padding: 70px 20px;
    text-align: center;
}

.contact-form {
    max-width: 800px;
    margin: auto;
    margin-top: 40px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

.contact-form textarea {
    resize: none;
    margin-bottom: 20px;
}

.submit-btn {
    background: #ff6b00;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #e65c00;
}
.container2 {
    background-color: #fdf5fd;
}
        /* CTA Section */
        .cta-section {
            padding: 5rem 3rem;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            text-align: center;
            color: var(--white);
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-family: 'IBM Plex Serif', serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .cta-content p {
            font-size: 1.15rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }
        
        /* Footer */
        footer {
            background: var(--navy);
            color: rgba(255, 255, 255, 0.85);
            /* color: var(--text-dark); */
            padding: 4rem 3rem 2rem;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-section h4 {
            color: var(--gold);
            margin-bottom: 1.5rem;
            font-family: 'IBM Plex Serif', serif;
            font-size: 1.15rem;
            font-weight: 600;
        }
        
        .footer-section p {
            line-height: 1.7;
            font-size: 0.95rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.75rem;
        }
        
        .footer-section a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }
        
        .footer-section a:hover {
            color: var(--gold);
        }
        
        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
     .footer-bottom p {
    color: #ffffff;
    margin: 0;
    font-size: 14px;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}
.footer-bottom a:hover {
    text-decoration: underline;
    opacity: 0.8;
}
/* Full width hero pricing button */
.btn-full {
    width: 100%;
    text-align: center;
}

/* Footer spacing */
.footer-office-info {
    margin-top: 1rem;
}

/* Footer bottom links */
.footer-link {
    color: inherit;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}


        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
            }
            
            .hero-right {
                max-width: 500px;
                margin: 0 auto;
            }
            
            .steps-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .steps-container::before {
                display: none;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .header-top {
                display: none;
            }
            
            nav {
                display: none;
            }
            
            .hero {
                padding: 3rem 2rem;
            }
            
            .hero-left h1 {
                font-size: 2.25rem;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .steps-container {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }