/* --- VARIABLES & GLOBAL STYLES (UPDATED PALETTE) --- */
:root {
    --primary-color: #d90429; /* A strong red for buttons */
    --primary-hover: #b3001b; /* A darker red for hover */
    --dark-color: #1c2321;    /* The new dark background */
    --text-color: #edf2f4;    /* The new primary text colour (off-white) */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-secondary: 'DM Sans', sans-serif;
}

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

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-color); /* Set default text to white */
    background-color: var(--dark-color); /* Set default background to dark */
}

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

h1, h2, h3, .logo {
    font-family: var(--font-primary);
    font-weight: 700;
}

h1 { font-size: 3rem; margin-bottom: 1rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.section-title { margin-bottom: 2rem; }
.text-center { text-align: center; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

/* --- HEADER & NAVIGATION --- */
.site-header {
    background: var(--dark-color); /* Use main dark background */
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333; /* Add a subtle separator */
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    color: var(--text-color);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn):hover {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700; /* Bolder font for buttons */
    transition: background-color 0.3s ease;
}

.btn:hover {
    background: var(--primary-hover);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
}


/* --- SECTIONS --- */
section {
    padding: 60px 0;
}

/* All sections now inherit the body background. We remove specific background overrides. */
.hero, .about-section, .services-section, .proof-section, .contact-us-section {
    background: inherit;
}

.hero .subtitle {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.about-content p {
    margin-bottom: 1rem;
}
.about-image img {
    border-radius: 10px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05); /* Subtle dark card background */
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333; /* Subtle border */
    text-align: center;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Proof Section (Testimonial) */
.testimonial-static {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.3rem;
    font-style: italic;
    border-left: 3px solid var(--primary-color);
    padding-left: 2rem;
}

.testimonial-static cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 1rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color); /* Red background */
    color: #fff;
}
.cta-section h2 {
    color: #fff;
}
.cta-section .btn {
    background-color: #fff; /* White button */
    color: var(--primary-color); /* Red text */
    font-weight: 700;
}
.cta-section .btn:hover {
    background-color: #eee;
}

/* Footer */
.site-footer-bottom {
    background: var(--dark-color);
    color: #aaa; /* Lighter grey for footer text */
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #333;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 2rem; }

    /* --- MOBILE NAVIGATION --- */
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 75px;
        left: 0;
        background: var(--dark-color);
        padding: 20px 0;
        border-bottom: 1px solid #333;
    }
    
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
        text-align: center;
        margin-left: 0;
    }

    .hamburger {
        display: block;
    }

    /* --- MOBILE LAYOUTS --- */
    .about-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }
    
    .testimonial-static {
        padding-left: 1rem;
        text-align: left;
    }
}
