/* RESET & VARIABLES */
:root {
    --bg-cream: #F8F7F0;
    --brand-green: #4CCB58;
    --text-black: #050505;
    --text-grey: #333333;
    --border-grey: #D8D6C8;
    --meta-grey: #666666;
    --font-serif: 'Domine', serif;
    --font-sans: 'Inter', sans-serif;
    --header-height: 60px;
    --section-spacing: 60px;
    --action-bg-1: #F0F5F8; /* Light Blue-Gray for reporting */
    --action-bg-2: #FFF;    /* Pure White for tracking */
    --action-border: #C0C0C0; /* Darker border for emphasis */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-black);
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.7;
}

/* GLOBAL IMAGE STYLES - UNIFORMITY */
img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MAIN CONTENT SPACING (NEW) */
main {
    margin-top: 10px; /* Small space below the fixed header */
}

/* HEADER */
header {
    background-color: #000;
    color: #fff;
    padding: 0 20px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* RESPONSIVE LOGO */
.logo {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 1002;
    position: relative;
    color: #fff;
}

.header-actions {
    display: flex;
    gap: 15px;
    font-size: 1.2rem;
    z-index: 1002;
    position: relative;
}

.icon-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 5px;
}

/* SEARCH OVERLAY */
.search-overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    padding: 20px;
    z-index: 999;
    backdrop-filter: blur(5px);
}

.search-overlay.active {
    display: block;
}

.search-bar-container {
    background-color: #E8F5E9;
    border-radius: 2px;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.search-input-icon {
    color: #333;
    font-size: 1.2rem;
    margin-right: 15px;
}

.search-bar-container input {
    border: none;
    background: none;
    width: 100%;
    font-size: 1rem;
    font-family: var(--font-sans);
    color: #333;
    outline: none;
}

/* MENU DROPDOWN */
.menu-dropdown {
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: 100%;
    max-width: 320px;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-cream);
    color: var(--text-black);
    padding: 30px 25px;
    display: none;
    flex-direction: column;
    z-index: 998;
    overflow-y: auto;
    border-left: 1px solid var(--border-grey);
}

.menu-dropdown.active {
    display: flex;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.nav-item {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-item.has-arrow i {
    font-size: 1.1rem;
}

.nav-secondary {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid var(--border-grey);
    margin-bottom: auto;
}

.nav-secondary a {
    font-size: 0.95rem;
    font-weight: 400;
}

.nav-footer {
    margin-top: 30px;
}

.nav-footer .label {
    font-size: 0.85rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

/* HERO SECTION */
.hero {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        height: 550px;
    }
}

.hero-card {
    flex: 1;
    width: 100%;
}

.green-card {
    background-color: var(--brand-green);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top-left-radius: 40px;
}

@media (min-width: 768px) {
    .green-card {
        padding: 60px 50px;
    }
}

.green-card h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.1;
}

.green-card p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
}

.image-card {
    height: 300px;
}

@media (min-width: 768px) {
    .image-card {
        height: auto;
    }
}

/* BANNER */
.banner {
    padding: var(--section-spacing) 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.banner h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: 1.3;
}

.banner a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* WHO WE ARE / ACTION BLOCKS */
.who-we-are {
    padding: 0 20px var(--section-spacing);
    max-width: 1200px;
    margin: 0 auto;
}

.section-intro {
    margin-bottom: 50px;
}

.section-intro h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.section-intro p {
    font-size: 1.05rem;
    color: var(--text-grey);
    max-width: 700px;
    line-height: 1.6;
}

/* Content Rows - Base Style */
.content-row {
    background-color: #F2F0E6; /* Default light cream */
    border: 1px solid #EAEAEA;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.content-row:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* DEDICATED ACTION STYLING */
.action-report {
    background-color: var(--action-bg-1); /* Light Blue-Gray */
    border-left: 5px solid var(--brand-green);
    border: 1px solid var(--action-border);
}

.action-track {
    background-color: var(--action-bg-2); /* Pure White */
    border-right: 5px solid var(--text-black);
    border: 1px solid var(--action-border);
}

.bg-cream-card {
    background-color: #F2F0E6; /* Retain original styling for others */
}


@media (min-width: 768px) {
    .content-row {
        flex-direction: row;
        align-items: stretch;
        height: 300px;
    }
    .content-row .text-block, .content-row .image-block {
        flex: 1;
    }
    .reverse-mobile {
        flex-direction: row-reverse;
    }
}

.text-block {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .text-block {
         padding: 60px 50px;
    }
}

.text-block h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}

.separator {
    width: 100%;
    height: 1px;
    background-color: #DDD;
    margin-bottom: 25px;
}

.text-block p {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--text-grey);
}

.small-link {
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
}

.image-block {
    height: 250px;
}

@media (min-width: 768px) {
    .image-block {
        height: auto;
    }
}

/* OUR THINKING - SLIDER & GRID */
.our-thinking {
    padding: var(--section-spacing) 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 30px;
}

/* Slider Styles (Mobile First) */
.cards-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.cards-slider::-webkit-scrollbar {
    display: none;
}

.card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #eee;
}

/* Grid Styles (Desktop) */
@media (min-width: 900px) {
    .cards-slider {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        overflow-x: visible;
        padding-bottom: 0;
    }
    .card {
        flex: none;
        width: auto;
    }
}

.card-image {
    height: 180px;
    width: 100%;
}

.card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.card-body h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--text-black);
}

.excerpt, .sub-meta {
    font-size: 0.9rem;
    color: var(--meta-grey);
    margin-bottom: 20px;
    line-height: 1.5;
}

.arrow {
    font-size: 1.2rem;
    align-self: flex-start;
    margin-top: auto;
}

.view-more-link {
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 4px;
    display: block;
    margin-top: 30px;
    font-weight: 600;
}

/* NEWS & BLOGS */
.news-blogs-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    padding: var(--section-spacing) 20px 100px;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--border-grey);
}

@media (min-width: 768px) {
    .news-blogs-container {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.column-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.news-item {
    padding: 25px 0;
}

.news-item .date {
    display: block;
    font-size: 0.8rem;
    color: var(--meta-grey);
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-item .headline {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.4;
    color: var(--text-black);
    display: block;
}

.divider {
    height: 1px;
    background-color: var(--border-grey);
    width: 100%;
}

.read-more-btn {
    display: inline-block;
    margin-top: 30px;
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
}

/* FOOTER */
footer {
    background-color: #000;
    color: #fff;
    padding: 80px 20px 40px;
}

.footer-links {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
}

@media (min-width: 768px) {
    .footer-links ul {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-links a {
    font-size: 0.9rem;
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.follow-us {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.follow-us i {
    font-size: 1.5rem;
}

.big-logo {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: clamp(3rem, 8vw, 5rem);
    letter-spacing: 2px;
    margin-bottom: 30px;
    line-height: 1;
}

.footer-meta {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 25px;
}

.g-translate {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #333;
    padding: 6px 12px;
    border-radius: 2px;
    font-size: 0.85rem;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
}

.back-to-top {
    color: #fff;
    font-size: 0.85rem;
    margin-top: 30px;
    display: inline-block;
    cursor: pointer;
}
/* --- Additional Styles for New Pages (Add to style.css) --- */

/* Page Hero Adjustments */
.page-hero {
    padding: 60px 30px;
    height: auto !important; /* Override hero height for smaller page banners */
}
.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}
.page-hero p {
    font-size: 1.05rem;
}

/* General Content Section */
.content-section {
    padding: var(--section-spacing) 20px;
}
.max-width-800 {
    max-width: 800px;
    margin: 0 auto;
}
.max-width-1000 {
    max-width: 1000px;
    margin: 0 auto;
}
.intro-text {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 40px;
}
.green-icon {
    color: var(--brand-green);
    font-size: 1.5rem;
    margin-right: 10px;
    vertical-align: middle;
}
.small-banner {
    background-color: var(--text-black);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}
.small-banner h2 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}


/* --- Step Guide (Report Fraud) --- */
.step-guide {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}
.step-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-grey);
}
.step-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-green);
    margin-bottom: 15px;
}
.step-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 10px;
}
.detail-note {
    font-size: 0.9rem;
    color: var(--meta-grey);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed var(--border-grey);
}
.final-step {
    background-color: var(--action-bg-1);
    border-left: 5px solid var(--text-black);
}

.action-box {
    text-align: center;
    padding: 40px;
    background-color: #E8F5E9;
    border: 2px dashed var(--brand-green);
    border-radius: 8px;
}
.action-box h3 {
    font-family: var(--font-serif);
    margin-bottom: 15px;
}

/* --- Form Styles (Track Case / Find Lawyer) --- */
.search-form-container, .search-filters-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-grey);
    margin-bottom: 50px;
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--text-black);
}
.form-group label i {
    font-size: 1.1rem;
    color: var(--brand-green);
    margin-right: 5px;
}
input[type="text"], input[type="email"], select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-sans);
    outline: none;
    transition: border-color 0.2s;
}
input[type="text"]:focus, input[type="email"]:focus, select:focus {
    border-color: var(--brand-green);
}
.primary-button {
    display: inline-block;
    background-color: var(--brand-green);
    color: var(--text-black);
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.primary-button-inverted {
    display: inline-block;
    background-color: var(--text-black);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.primary-button:hover {
    opacity: 0.8;
}
.primary-button-inverted:hover {
    opacity: 0.8;
}

.forgotten-link {
    display: block;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-grey);
}

.info-block {
    margin-top: 40px;
    padding: 30px;
    background-color: #F8F8F8;
    border-radius: 8px;
}
.info-block h3 {
    font-family: var(--font-serif);
    margin-bottom: 15px;
}
.info-block ul {
    list-style: none;
    padding-left: 0;
}
.info-block li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-grey);
}
.info-block li i {
    color: var(--text-black);
    font-size: 1.1rem;
    margin-right: 8px;
}


/* --- Lawyer Grid (Find Lawyer) --- */
.lawyer-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.lawyer-card {
    background-color: #fff;
    border: 1px solid var(--border-grey);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
}
.lawyer-card img {
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
}
.lawyer-card h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 5px;
}
.lawyer-card .title {
    font-size: 0.95rem;
    color: var(--brand-green);
    font-weight: 600;
    margin-bottom: 15px;
}
.lawyer-card .focus {
    font-size: 0.9rem;
    color: var(--text-grey);
    margin-bottom: 15px;
}
.lawyer-card .focus i {
    color: var(--text-black);
    margin-right: 5px;
}
/* --- PREVIOUS VARIABLES & RESET (Keep your existing top section) --- */
:root {
    --bg-cream: #F8F7F0;
    --brand-green: #4CCB58;
    --text-black: #050505;
    --text-grey: #333333;
    --border-grey: #D8D6C8;
    --meta-grey: #666666;
    --font-serif: 'Domine', serif;
    --font-sans: 'Inter', sans-serif;
    --header-height: 60px;
    --section-spacing: 60px;
}

/* --- ADD/UPDATE THESE SECTIONS --- */

/* Main Content Spacing */
main {
    margin-top: 10px;
}

/* External Link Styling (For linking to zltd.uk) */
.external-link-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-green);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.external-link-small:hover {
    border-bottom-color: var(--brand-green);
    opacity: 0.8;
}

/* Revert Content Rows to Uniform Professional Look */
.content-row {
    background-color: #F2F0E6; /* Consistent cream card background */
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    border: none; /* Removed the "alert" style borders */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
    .content-row {
        flex-direction: row;
        align-items: stretch;
        height: 350px; /* Slightly taller for better image display */
    }
    .content-row .text-block, .content-row .image-block {
        flex: 1;
    }
    .reverse-mobile {
        flex-direction: row-reverse;
    }
}

.text-block {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .text-block {
         padding: 60px 50px;
    }
}

/* Images */
.image-block img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}