/* --- 1. Variables & Reset --- */
:root {
    /* Brand Colors */
    --primary: #0f172a;      /* Navy / Slate 900 */
    --secondary: #334155;    /* Slate 700 */
    --accent: #10b981;       /* Emerald Green (Trust/Action) */
    --accent-hover: #059669;
    --light: #f8fafc;        /* Slate 50 */
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-light: #64748b;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --radius: 8px;
    
    /* Typography */
    --font-main: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- 2. Utility Classes --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.bg-light { background-color: var(--light); }
.bg-dark { background-color: var(--primary); color: var(--white); }
.text-white { color: var(--white); }

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* --- 3. Header --- */
.site-header {
    height: var(--header-height);
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

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

.main-nav ul { display: flex; gap: 30px; }
.main-nav a { font-weight: 500; color: var(--secondary); }
.main-nav a:hover { color: var(--accent); }

.mobile-toggle { display: none; font-size: 1.5rem; cursor: pointer; }

/* --- 4. Hero Section --- */
.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), 
                url('images/heroes/professional-cleaners.png');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.highlight { color: var(--accent); }

.hero-sub {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cbd5e1; /* Light grey */
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.trust-signals {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.9rem;
    color: #94a3b8;
}

.trust-signals i { color: var(--accent); margin-right: 5px; }

/* --- 5. Value Prop Section --- */
.value-prop { padding: 80px 0; }

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px;
}

.icon-large {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.value-card h3 { margin-bottom: 15px; color: var(--primary); }
.value-card p { color: var(--text-light); }

/* --- 6. Services Section --- */
.services { padding: 80px 0; }

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border: 1px solid #e2e8f0;
}

.service-card:hover { transform: translateY(-5px); }

/* Placeholder colored blocks for images - replace with real img tags if needed */
.card-image {
    height: 200px;
    background-color: #cbd5e1;
}

.office-img { background: url('images/cards/office-commercial.png') center/cover; }
.tenancy-img { background: url('images/cards/end-of-tenancy.png') center/cover; }
.build-img { background: url('images/cards/construction.png') center/cover; }

.card-content { padding: 30px; }
.card-content h3 { margin-bottom: 10px; color: var(--primary); }
.card-content p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 20px; }

.check-list li {
    font-size: 0.95rem; /* Slightly larger for readability */
    margin-bottom: 15px; /* Increased space between list items */
    color: var(--secondary);
    display: flex;
    align-items: flex-start; /* CHANGE: Aligns icon to top, not center */
    line-height: 1.5;
}

.check-list li strong {
    color: var(--primary);
}

.check-list li::before {
    content: "\f00c"; /* FontAwesome check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent);
    margin-right: 15px;
    flex-shrink: 0; /* CHANGE: Prevents icon squishing on small screens */
    margin-top: 3px; /* CHANGE: Pushes icon down slightly to align with first line of text */
}

.text-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent);
    font-weight: 600;
}

/* --- 7. Process Section --- */
.process { padding: 80px 0; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step { position: relative; }

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: #e2e8f0; /* Very light slate */
    line-height: 1;
    margin-bottom: 10px;
}

.step h3 { font-size: 1.25rem; color: var(--primary); margin-bottom: 10px; }

/* --- 8. Locations Section --- */
.locations { padding: 80px 0; }

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.loc-text h2 { color: var(--white); margin-bottom: 20px; font-size: 2.2rem; }
.loc-text p { color: #94a3b8; margin-bottom: 30px; font-size: 1.1rem; }

.location-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.location-list i { color: var(--accent); margin-right: 10px; }

.map-visual {
    background: #1e293b;
    height: 300px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #475569;
}

.map-visual i { font-size: 3rem; margin-bottom: 10px; }

/* --- 9. CTA Strip --- */
.cta-strip {
    background: var(--accent);
    padding: 60px 0;
    color: var(--white);
}

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

.cta-text h2 { font-size: 2rem; }
.cta-action .btn {
    background: var(--white);
    color: var(--accent);
    border: none;
}

/* --- 10. Footer --- */
footer {
    background: var(--primary);
    color: #94a3b8;
    padding: 60px 0 20px;
    border-top: 1px solid #1e293b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--white); }

.copyright {
    text-align: center;
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
}

/* --- 11. Responsive Media Queries --- */
@media (max-width: 768px) {
    .header-flex { position: relative; }
    .mobile-toggle { display: block; }
    .header-cta { display: none; }
    
    /* Mobile Navigation */
    .main-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav > ul > li {
        border-bottom: 1px solid #e2e8f0;
    }
    
    .main-nav > ul > li:last-child {
        border-bottom: none;
    }
    
    .main-nav > ul > li > a {
        display: block;
        padding: 15px 0;
        text-align: left;
    }
    
    /* Mobile Dropdowns - hidden by default */
    .main-nav .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        padding: 0;
        display: none;
        border-radius: 0;
        margin: 0 -20px;
        padding: 10px 30px;
    }
    
    .main-nav li.dropdown-open > .dropdown {
        display: block;
    }
    
    .main-nav .dropdown a {
        padding: 10px 0;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .main-nav .dropdown a:last-child {
        border-bottom: none;
    }
    
    .hero { 
        height: auto; 
        min-height: 100vh;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .hero h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
    
    .trust-signals {
        flex-direction: column;
        gap: 15px;
    }
    
    .steps-grid { grid-template-columns: 1fr; }
    .split-layout { grid-template-columns: 1fr; }
    
    .cta-flex { flex-direction: column; text-align: center; gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
/* Add to style.css */
.target-text {
    font-size: 0.85rem;
    color: #64748b; /* Slate 500 */
    margin-bottom: 10px;
    font-weight: 500;
}
/* Add to style.css for the Qualification Section */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.fit-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
}

.fit-card.good { border-top: 4px solid var(--accent); }
.fit-card.bad { border-top: 4px solid #ef4444; } /* Red for 'Not a fit' */

.cross-list li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--secondary);
    display: flex;
    align-items: flex-start;
}

.cross-list li::before {
    content: "\f00d"; /* FontAwesome X mark */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ef4444; /* Red */
    margin-right: 15px;
    margin-top: 3px;
}

@media (max-width: 768px) {
    .comparison-grid { grid-template-columns: 1fr; }
}
/* Add to style.css Utilities */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Force 2 columns on desktop for the 4-card layout */
@media (min-width: 1024px) {
    .grid-2-desktop {
        grid-template-columns: 1fr 1fr;
    }
}
/* --- Pricing Page Specifics --- */
.price-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Highlight for the 'Medium' card */
.price-card.popular {
    border: 2px solid var(--accent);
    background: #f0fdf4; /* Very light green tint */
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-title {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.price-amount {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 5px;
}

.price-period {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 25px;
    display: block;
}

.price-desc {
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 25px;
    min-height: 60px; /* Aligns buttons */
}

.price-features {
    text-align: left;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
}

.price-features li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--secondary);
    display: flex;
    align-items: center;
}

.price-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent);
    margin-right: 10px;
}
/* --- Form Styling --- */
.form-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
    margin-top: 30px;
}

.form-section-title:first-child { margin-top: 0; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group { margin-bottom: 20px; }
.form-group.full-width { grid-column: span 2; }

label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px; /* Matches layout */
    font-size: 1rem;
    font-family: var(--font-main);
    background: #f8fafc;
    transition: 0.2s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

textarea { resize: vertical; min-height: 120px; }

/* Checkboxes & Radios */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--secondary);
    cursor: pointer;
}

.checkbox-item input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
}

/* The "Golden Rule" Checkbox */
.golden-rule {
    background: #f0fdf4; /* Light green bg */
    border: 1px solid #bbf7d0;
    padding: 15px;
    border-radius: 6px;
    margin-top: 30px;
}

.golden-rule label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 700;
    color: #166534; /* Dark Green */
    cursor: pointer;
    line-height: 1.4;
}

.golden-rule input {
    margin-top: 4px; /* Align with top line of text */
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: auto; }
    .form-container { padding: 25px; }
}
/* --- Locations Hub Specifics --- */
.location-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.1);
}

.loc-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.loc-title i { color: var(--accent); font-size: 1.1rem; }

.loc-desc {
    color: var(--secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.loc-link {
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-top: auto; /* Pushes link to bottom */
}
/* --- Case Study Cards --- */
.case-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--accent);
}

.case-tag {
    display: inline-block;
    background: #f1f5f9;
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    align-self: flex-start;
}

.case-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.case-meta {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.case-desc {
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 20px;
    flex-grow: 1; /* Pushes button to bottom */
}

.case-link {
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.case-link:hover { gap: 12px; }
/* --- Legal Page Styles --- */
.legal-content {
    color: var(--secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.legal-content h2 {
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
}

.legal-content h3 {
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.legal-content p, .legal-content ul {
    margin-bottom: 20px;
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    font-size: 0.9rem;
    border: 1px solid #e2e8f0;
}

.cookie-table th {
    background: #f1f5f9;
    color: var(--primary);
    font-weight: 700;
    text-align: left;
    padding: 12px 15px;
    border-bottom: 2px solid #e2e8f0;
}

.cookie-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e2e8f0;
    color: var(--secondary);
}

.cookie-table tr:last-child td { border-bottom: none; }

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    color: var(--primary);
    padding: 1.25rem 2rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    border-top: 3px solid var(--accent);
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    color: var(--secondary);
}

.cookie-banner a {
    color: var(--accent);
    font-weight: 500;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
}

.cookie-banner .btn-accept {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.cookie-banner .btn-accept:hover {
    background: #0d9668;
}

.cookie-banner .btn-settings {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.cookie-banner .btn-settings:hover {
    background: var(--primary);
    color: var(--white);
}

@media (max-width: 600px) {
    .cookie-banner {
        padding: 1rem;
    }
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Navigation Dropdowns */
.main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
}

.main-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav > ul > li > a:hover {
    color: var(--accent);
}

.main-nav > ul > li > a .fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.main-nav li:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1000;
    padding: 10px 0;
}

.main-nav li:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 10px 20px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
}

.dropdown a:hover {
    background: var(--light);
    color: var(--accent);
}

.dropdown .dropdown-header {
    padding: 10px 20px 5px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary);
    pointer-events: none;
}

.dropdown hr {
    margin: 8px 20px;
    border: none;
    border-top: 1px solid var(--border);
}

/* Mobile dropdown styles defined above in main responsive section */
