:root {
    --primary: #1a1d44;    /* Deep Navy */
    --secondary: #e86f1b;  /* Burnt Orange Accent */
    --dark: #121430;       /* Rich Navy Black */
    --text: #2c3e50;       /* Soft Slate for Reading */
    --slate: #64748b;      /* UI Accents/Dividers */
    --bg-light: #f5efe7;   /* Premium Cream Background */
    --white: #ffffff;      /* Clean White */
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
}

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background-color: var(--bg-light); 
    color: var(--text); 
    line-height: 1.6; 
}

.container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0 1.5rem; 
}

/* --- Navigation --- */
nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 2rem 0; 
}

.logo { 
    font-family: 'Outfit', sans-serif; 
    font-size: 1.4rem; 
    font-weight: 800;
    letter-spacing: -1px; 
    color: var(--dark); 
}

.logo span { 
    color: var(--secondary); 
    margin: 0 2px;
}

.nav-links a { 
    text-decoration: none; 
    color: var(--slate); 
    font-weight: 600; 
    margin-left: 2rem; 
    transition: 0.3s; 
}

.nav-links a:hover { 
    color: var(--secondary); 
}

.menu-toggle {
    display: none; /* Hidden on Desktop */
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--primary);
    transition: 0.3s;
    border-radius: 2px;
}


/* --- Hero Section --- */
.hero { 
    padding: 100px 0 120px; 
    text-align: center; 
}

.hero h1 { 
    font-family: 'Outfit', sans-serif; 
    font-size: clamp(2.8rem, 8vw, 4.8rem); 
    line-height: 1; 
    letter-spacing: -3px; 
    margin-bottom: 1.5rem; 
    color: var(--primary);
}

.hero h1 span { 
    color: var(--secondary); 
}

.hero p { 
    font-size: 1.3rem; 
    color: var(--slate); 
    max-width: 700px; 
    margin: 0 auto 2.5rem; 
}

/* --- Buttons --- */
.cta-btn {
    display: inline-block;
    background: var(--dark);
    color: var(--white);
    padding: 1.2rem 2.8rem;
    border-radius: 8px; /* Professional semi-square edges */
    font-weight: 700;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(18, 20, 48, 0.1);
}

.cta-btn:hover { 
    transform: translateY(-5px); 
    background: var(--secondary); 
    box-shadow: 0 15px 30px rgba(232, 111, 27, 0.2);
}

/* --- Services Grid --- */
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 2rem; 
    margin: 60px 0; 
}

.card { 
    background: var(--white); 
    border: 1px solid rgba(0,0,0,0.05); 
    padding: 3rem 2.5rem; 
    border-radius: 20px; 
    transition: 0.4s; 
}

.card:hover { 
    border-color: var(--secondary); 
    transform: translateY(-10px);
}

.card h3 { 
    font-family: 'Outfit', sans-serif; 
    font-size: 1.8rem; 
    margin-bottom: 1rem; 
    color: var(--primary); 
}

.card-list { 
    list-style: none; 
    margin-top: 1.5rem; 
}

.card-list li { 
    margin-bottom: 0.8rem; 
    font-weight: 500; 
    display: flex; 
    align-items: center; 
    color: var(--text); 
}

.card-list li::before { 
    content: '→'; 
    color: var(--secondary); 
    margin-right: 12px; 
    font-weight: 800; 
}

.icon-box { 
    font-size: 2.5rem; 
    margin-bottom: 1rem; 
    display: block; 
}

/* --- Pre-Footer --- */
.pre-footer { 
    background: var(--primary); 
    padding: 80px 0; 
    border-radius: 60px 60px 0 0; 
    text-align: center; 
    color: var(--white); 
}

.pre-footer h2 { 
    font-family: 'Outfit', sans-serif; 
    font-size: 3rem; 
    margin-bottom: 2rem; 
    letter-spacing: -2px; 
}

/* --- Footer --- */
footer { 
    background: var(--dark); 
    color: var(--white); 
    padding: 80px 0 40px; 
}

.footer-grid { 
    display: flex; 
    justify-content: space-between; 
    flex-wrap: wrap; 
    gap: 3rem; 
}

.footer-logo { 
    font-family: 'Outfit', sans-serif; 
    font-size: 2rem; 
    margin-bottom: 1rem; 
}

.footer-logo span { color: var(--secondary); }

.footer-info p { 
    color: #94a3b8; 
    max-width: 320px; 
}

.footer-links h4 { 
    margin-bottom: 1.5rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-size: 0.8rem; 
    color: var(--secondary); 
}

.footer-links ul { 
    list-style: none; 
}

.footer-links ul li { 
    margin-bottom: 0.8rem; 
}

.footer-links ul li a { 
    color: #f1f5f9; 
    text-decoration: none; 
    transition: 0.3s; 
}

.footer-links ul li a:hover { 
    color: var(--secondary); 
}

.bottom-bar { 
    border-top: 1px solid rgba(255,255,255,0.1); 
    margin-top: 60px; 
    padding-top: 30px; 
    text-align: center; 
    color: var(--slate); 
    font-size: 0.85rem; 
}

@media (max-width: 768px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-grid { flex-direction: column; text-align: center; }
    .footer-info p { margin: 0 auto; }

/* --- Mobile Menu Logic --- */
    .menu-toggle {
        display: flex; /* Show the hamburger */
    }

    .nav-links {
        position: fixed;
        right: -100%; /* Hidden by default */
        top: 0;
        width: 100%; /* Full width looks cleaner on mobile */
        height: 100vh;
        background: var(--white);
        display: flex; /* Force flexbox */
        flex-direction: column; /* Stack vertically */
        justify-content: center;
        align-items: center;
        gap: 2.5rem; /* Space between links */
        transition: 0.4s ease-in-out;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0; /* Slide in */
    }

    /* Fix the text styling in the mobile menu */
    .nav-links a {
        margin: 0;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary);
    }

    /* Fix that "Let's Talk" button scaling */
    .nav-links .cta-btn {
        padding: 1rem 2.5rem !important; /* Force smaller padding */
        font-size: 1.1rem !important;
        width: auto;
        text-align: center;
    }

    /* Keep the logo visible or handle its z-index */
    .logo {
        z-index: 1001;
    }
}

    

    .nav-links.active {
        right: 0; /* Slide in */
    }

    .nav-links a {
        margin: 0;
        font-size: 1.2rem;
    }

    /* Animation for the Hamburger to X */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background-color: var(--secondary);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background-color: var(--secondary);
    }
