/* ================================================
   RecoverFunds UK - Main Stylesheet
   ================================================ */

:root {
    --navy: #0a1628;
    --navy-mid: #12274a;
    --navy-light: #1a3a6b;
    --gold: #c9a227;
    --gold-light: #e8c05a;
    --gold-pale: #f5e6b8;
    --white: #ffffff;
    --off-white: #f7f8fc;
    --light-grey: #eef0f6;
    --grey: #8a94a6;
    --dark-grey: #4a5568;
    --text: #1a202c;
    --text-muted: #6b7280;
    --green: #059669;
    --red: #dc2626;
    --shadow-sm: 0 2px 8px rgba(10,22,40,0.08);
    --shadow-md: 0 8px 30px rgba(10,22,40,0.12);
    --shadow-lg: 0 20px 60px rgba(10,22,40,0.18);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --font-head: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}
a { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 30px; border-radius: 50px; font-family: var(--font-body);
    font-size: 15px; font-weight: 600; cursor: pointer; border: none;
    text-decoration: none; transition: var(--transition); white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,39,0.35); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: var(--white); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.btn-lg { padding: 18px 42px; font-size: 17px; }
.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--off-white); color: var(--navy); }

/* ---- TOP BAR ---- */
.topbar {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    padding: 8px 0;
    position: relative;
    z-index: 1001;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a { color: rgba(255,255,255,0.75); }
.topbar a:hover { color: var(--gold); }
.topbar i { margin-right: 5px; color: var(--gold); }
.text-gold { color: var(--gold) !important; }

/* ---- NAVBAR ---- */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--light-grey);
    position: sticky; top: 0; z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
    width: 44px; height: 44px; background: var(--navy); border-radius: 10px;
    display: grid; place-items: center; color: var(--gold); font-size: 22px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.logo-sub { font-size: 11px; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    display: block; padding: 10px 14px; font-size: 14px; font-weight: 500;
    color: var(--navy); border-radius: 6px; transition: var(--transition);
}
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--gold); background: rgba(201,162,39,0.07); }
.nav-cta { background: var(--gold); color: var(--navy) !important; padding: 10px 22px !important; border-radius: 50px !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; box-shadow: 0 4px 16px rgba(201,162,39,0.3); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); transition: var(--transition); border-radius: 2px; }

/* ---- MOBILE CLOSE BUTTON ---- */
.nav-close {
    display: none;
    position: absolute;
    top: 18px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1001;
}
.nav-close:hover { background: rgba(201,162,39,0.2); color: var(--gold); border-color: var(--gold); }

/* ---- TOPBAR WALLET BUTTON ---- */
.topbar-wallet-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(201,162,39,0.15);
    border: 1px solid rgba(201,162,39,0.4);
    color: var(--gold) !important;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}
.topbar-wallet-btn:hover { background: var(--gold); color: var(--navy) !important; }
.topbar-wallet-btn i { margin-right: 0; color: inherit !important; }

/* ---- NAV WALLET BUTTON ---- */
.btn-wallet-nav {
    background: transparent !important;
    border: 2px solid var(--gold) !important;
    color: var(--gold) !important;
}
.btn-wallet-nav:hover {
    background: var(--gold) !important;
    color: var(--navy) !important;
}

/* ---- DROPDOWN / MEGA MENU ---- */
.dropdown-menu {
    display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    background: var(--white); border: 1px solid var(--light-grey); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); min-width: 600px; padding: 24px; z-index: 999;
}
.mega-menu { min-width: 800px; grid-template-columns: 1fr 1fr 1fr auto; gap: 24px; }
.dropdown-menu.open { display: grid; }
.mega-col h4 { font-family: var(--font-body); font-size: 11px; font-weight: 700; color: var(--grey); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.mega-col a { display: block; padding: 5px 0; font-size: 13px; color: var(--dark-grey); border-bottom: none; }
.mega-col a:hover { color: var(--gold); padding-left: 4px; }
.mega-cta { background: var(--navy); border-radius: 10px; padding: 20px; color: var(--white); display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.mega-cta h4 { font-family: var(--font-head); color: var(--white); font-size: 1.1rem; }
.mega-cta p { font-size: 12px; color: rgba(255,255,255,0.7); }
.view-all-services-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 4px; font-weight: 600; transition: var(--transition); }
.view-all-services-link:hover { color: var(--gold); }
/* ---- Services trigger button (looks like a nav link) ---- */
.nav-dropdown-btn {
    background: none; border: none; cursor: pointer; font-family: var(--font-body);
    display: flex; align-items: center; gap: 4px; padding: 10px 14px;
    font-size: 14px; font-weight: 500; color: var(--navy); border-radius: 6px;
    transition: var(--transition); white-space: nowrap;
}
.nav-dropdown-btn:hover, .nav-dropdown-btn.active { color: var(--gold); background: rgba(201,162,39,0.07); }
.nav-dropdown-btn .dropdown-arrow { transition: transform 0.25s ease; }
/* Smooth fade/slide */
.dropdown-menu { display: grid !important; opacity: 0; transform: translateY(8px); pointer-events: none; transition: opacity 0.18s ease, transform 0.18s ease; }
.dropdown-menu.open { opacity: 1; transform: translateY(0); pointer-events: all; }

/* ---- BREADCRUMB ---- */
.breadcrumb-bar { background: var(--light-grey); padding: 12px 0; font-size: 13px; color: var(--grey); }
.breadcrumb-bar .container { display: flex; align-items: center; gap: 8px; }
.breadcrumb-bar a { color: var(--grey); }
.breadcrumb-bar a:hover { color: var(--gold); }
.breadcrumb-bar i { font-size: 10px; }

/* ============================================================
   HOMEPAGE HERO
   ============================================================ */
.hero {
    background: var(--navy);
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 80px 0;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: 
        radial-gradient(ellipse 60% 60% at 70% 50%, rgba(201,162,39,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(26,58,107,0.6) 0%, transparent 60%);
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; position: relative; z-index: 1;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,162,39,0.15); border: 1px solid rgba(201,162,39,0.3);
    color: var(--gold); padding: 6px 16px; border-radius: 50px;
    font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero-sub { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 13px; }
.trust-item i { color: var(--gold); }
.hero-form-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 36px; box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--gold);
}
.hero-form-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.hero-form-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--dark-grey); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--light-grey);
    border-radius: var(--radius); font-family: var(--font-body); font-size: 14px;
    color: var(--text); transition: var(--transition); background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group .full { grid-column: 1 / -1; }
.form-submit { width: 100%; padding: 16px; font-size: 16px; font-weight: 700; }
.form-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 10px; }

/* ---- AS SEEN IN / REGULATORS ---- */
.seen-in { padding: 40px 0; background: var(--light-grey); border-top: 1px solid rgba(0,0,0,0.05); }
.seen-in .container { text-align: center; }
.seen-in p { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--grey); margin-bottom: 20px; }
.seen-in-logos { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.seen-in-logos span {
    font-family: var(--font-head); font-size: 1.2rem; font-weight: 700;
    color: var(--grey); opacity: 0.6; letter-spacing: 1px;
}

/* ---- STATS SECTION ---- */
.stats-section { background: var(--gold); padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card { text-align: center; }
.stat-card .stat-num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; color: var(--navy); display: block; }
.stat-card .stat-label { font-size: 14px; color: rgba(10,22,40,0.7); font-weight: 500; }

/* ---- HOW IT WORKS ---- */
.how-it-works { background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .pre-title { font-size: 12px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 10px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 600px; margin: 0 auto; color: var(--text-muted); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 36px 30px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--light-grey);
    position: relative; transition: var(--transition);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.step-num {
    width: 50px; height: 50px; background: var(--navy); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--gold);
    margin-bottom: 20px;
}
.step-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.step-card p { color: var(--text-muted); font-size: 14px; }
.step-connector {
    position: absolute; right: -30px; top: 50%; transform: translateY(-50%);
    color: var(--gold); font-size: 20px; z-index: 1;
}

/* ---- SERVICES GRID ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: var(--white); border: 1px solid var(--light-grey); border-radius: var(--radius-lg);
    padding: 32px 28px; transition: var(--transition); cursor: pointer;
    text-decoration: none; display: block; color: var(--text);
}
.service-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-4px); color: var(--text); }
.service-icon {
    width: 56px; height: 56px; background: rgba(201,162,39,0.1); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--gold); margin-bottom: 18px;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.service-card .read-more { font-size: 13px; color: var(--gold); font-weight: 600; display: flex; align-items: center; gap: 6px; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--navy); color: var(--white); }
.testimonials-section .section-header h2 { color: var(--white); }
.testimonials-section .section-header p { color: rgba(255,255,255,0.65); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg); padding: 32px; transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(201,162,39,0.3); }
.t-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }
.t-text { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--navy); flex-shrink: 0; }
.t-name { font-weight: 600; color: var(--white); font-size: 14px; }
.t-meta { font-size: 12px; color: rgba(255,255,255,0.5); }
.t-recovered { font-size: 12px; color: var(--gold); font-weight: 600; }

/* ---- ABOUT / WHY US ---- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-img { position: relative; }
.why-img-card {
    background: var(--navy); border-radius: var(--radius-lg); padding: 40px;
    color: var(--white); position: relative; overflow: hidden;
}
.why-img-card::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 200px; height: 200px; background: var(--gold); opacity: 0.08;
    border-radius: 50%;
}
.why-img-card .big-stat { font-family: var(--font-head); font-size: 4rem; font-weight: 800; color: var(--gold); }
.why-img-card p { color: rgba(255,255,255,0.7); }
.why-features { display: flex; flex-direction: column; gap: 20px; }
.why-feature { display: flex; gap: 16px; }
.why-feature-icon {
    width: 44px; height: 44px; background: rgba(201,162,39,0.1);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 18px; flex-shrink: 0;
}
.why-feature-text h4 { font-size: 1rem; margin-bottom: 4px; }
.why-feature-text p { font-size: 13px; color: var(--text-muted); }

/* ---- FREE SERVICE BANNER ---- */
.free-banner {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: var(--white); padding: 60px 0; text-align: center;
    position: relative; overflow: hidden;
}
.free-banner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(201,162,39,0.1) 0%, transparent 70%);
}
.free-banner .container { position: relative; z-index: 1; }
.free-banner h2 { color: var(--white); margin-bottom: 16px; }
.free-banner p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 30px; }
.free-badge-row { display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; margin-bottom: 30px; }
.badge-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.8); }
.badge-item i { color: var(--gold); font-size: 18px; }

/* ---- BLOG GRID ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
    background: var(--white); border: 1px solid var(--light-grey);
    border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--gold); }
.blog-img { height: 180px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); position: relative; display: flex; align-items: center; justify-content: center; }
.blog-img i { font-size: 48px; color: rgba(201,162,39,0.4); }
.blog-category { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 4px; text-transform: uppercase; }
.blog-body { padding: 24px; }
.blog-date { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.blog-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-body p { font-size: 13px; color: var(--text-muted); }
.blog-footer { padding: 0 24px 20px; display: flex; justify-content: space-between; align-items: center; }
.blog-read { color: var(--gold); font-size: 13px; font-weight: 600; }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--light-grey); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; background: var(--white); border: none; cursor: pointer;
    font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--navy);
    text-align: left; transition: var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-question.active { background: var(--navy); color: var(--white); }
.faq-question .faq-icon { color: var(--gold); font-size: 12px; transition: var(--transition); flex-shrink: 0; }
.faq-question.active .faq-icon { transform: rotate(180deg); }
.faq-answer { display: none; padding: 20px 24px; background: var(--off-white); border-top: 1px solid var(--light-grey); font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.faq-answer.open { display: block; }

/* ---- REGULATORY SECTION ---- */
.regulatory-section { background: var(--off-white); }
.regulatory-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.reg-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 32px;
    border: 1px solid var(--light-grey); text-align: center; transition: var(--transition);
}
.reg-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.reg-card-icon { font-size: 40px; color: var(--gold); margin-bottom: 16px; }
.reg-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.reg-card p { font-size: 13px; color: var(--text-muted); }
.reg-card a { font-size: 12px; color: var(--gold); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; margin-top: 10px; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 70px 0; text-align: center; color: var(--white); position: relative;
}
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: var(--white); clip-path: ellipse(55% 100% at 50% 100%); }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.contact-info-card {
    display: flex; gap: 16px; padding: 20px; background: var(--off-white);
    border-radius: var(--radius); border: 1px solid var(--light-grey);
}
.contact-info-card i { font-size: 24px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-info-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: 14px; color: var(--text-muted); }
.contact-form-card { background: var(--white); border: 1px solid var(--light-grey); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.contact-form-card h3 { margin-bottom: 8px; }
.contact-form-card .sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }

/* ---- DASHBOARD ---- */
.dashboard-layout { display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - 120px); }
.dashboard-sidebar { background: var(--navy); color: var(--white); padding: 0; }
.sidebar-head { padding: 28px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.sidebar-user-name { font-family: var(--font-head); font-size: 1.1rem; color: var(--white); }
.sidebar-user-meta { font-size: 12px; color: rgba(255,255,255,0.5); }
.sidebar-nav { padding: 16px 0; }
.sidebar-nav a {
    display: flex; align-items: center; gap: 12px; padding: 13px 24px;
    color: rgba(255,255,255,0.65); font-size: 14px; transition: var(--transition);
}
.sidebar-nav a:hover, .sidebar-nav a.active {
    background: rgba(255,255,255,0.08); color: var(--white); border-right: 3px solid var(--gold);
}
.sidebar-nav a i { width: 18px; color: var(--gold); font-size: 15px; }
.sidebar-nav .nav-section { padding: 16px 24px 8px; font-size: 10px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 1.5px; }
.dashboard-main { background: var(--off-white); padding: 36px; }
.dashboard-header { margin-bottom: 32px; }
.dashboard-header h2 { font-size: 1.6rem; }
.dashboard-header p { color: var(--text-muted); font-size: 14px; }
.dash-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.dash-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 24px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--light-grey);
}
.dash-card-icon { font-size: 28px; margin-bottom: 12px; }
.dash-card-val { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--navy); }
.dash-card-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.cases-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.cases-table th { background: var(--navy); color: var(--white); padding: 14px 20px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; text-align: left; }
.cases-table td { padding: 14px 20px; border-bottom: 1px solid var(--light-grey); font-size: 14px; }
.cases-table tr:last-child td { border-bottom: none; }
.cases-table tr:hover td { background: var(--off-white); }
.status-badge {
    display: inline-block; padding: 4px 12px; border-radius: 50px;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
}
.status-submitted { background: #dbeafe; color: #1e40af; }
.status-investigating { background: #fef3c7; color: #92400e; }
.status-under_review { background: #e0e7ff; color: #3730a3; }
.status-action_plan { background: #d1fae5; color: #065f46; }
.status-resolved { background: #dcfce7; color: #166534; }
.status-closed { background: var(--light-grey); color: var(--grey); }

/* ---- ADMIN LAYOUT ---- */
.admin-layout { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; }
.admin-sidebar { background: #0f1923; color: var(--white); }
.admin-sidebar-head { background: var(--navy); padding: 24px 20px; display: flex; align-items: center; gap: 10px; }
.admin-sidebar-head .logo-mark { background: var(--gold); color: var(--navy); }
.admin-nav a { display: flex; align-items: center; gap: 10px; padding: 12px 20px; color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--transition); border-left: 3px solid transparent; }
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,0.06); color: var(--white); border-left-color: var(--gold); }
.admin-nav a i { width: 16px; color: var(--gold); }
.admin-nav .nav-sep { height: 1px; background: rgba(255,255,255,0.05); margin: 8px 0; }
.admin-main { background: #f1f3f9; }
.admin-topbar { background: var(--white); padding: 16px 28px; display: flex; align-items: center; justify-content: space-between; box-shadow: var(--shadow-sm); border-bottom: 1px solid var(--light-grey); }
.admin-content { padding: 28px; }
.admin-page-title { font-size: 1.5rem; margin-bottom: 24px; }
.admin-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--light-grey); margin-bottom: 24px; }
.admin-card-head { padding: 18px 24px; border-bottom: 1px solid var(--light-grey); display: flex; align-items: center; justify-content: space-between; }
.admin-card-head h3 { font-size: 1rem; }
.admin-card-body { padding: 24px; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px; }
.admin-stat-card { background: var(--white); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm); border: 1px solid var(--light-grey); display: flex; align-items: center; gap: 18px; }
.admin-stat-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.admin-stat-icon.navy { background: rgba(10,22,40,0.08); color: var(--navy); }
.admin-stat-icon.gold { background: rgba(201,162,39,0.1); color: var(--gold); }
.admin-stat-icon.green { background: rgba(5,150,105,0.08); color: var(--green); }
.admin-stat-icon.red { background: rgba(220,38,38,0.08); color: var(--red); }
.admin-stat-val { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--navy); line-height: 1; }
.admin-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ---- AUTH PAGES ---- */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 40px 20px; }
.auth-card { background: var(--white); border-radius: var(--radius-lg); padding: 48px 40px; width: 100%; max-width: 500px; box-shadow: var(--shadow-lg); }
.auth-logo { text-align: center; margin-bottom: 32px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.auth-card h2 { font-size: 1.6rem; text-align: center; margin-bottom: 8px; }
.auth-card .auth-sub { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 28px; }
.auth-footer { text-align: center; font-size: 14px; color: var(--text-muted); margin-top: 20px; }
.auth-footer a { color: var(--gold); font-weight: 600; }
.alert { padding: 12px 18px; border-radius: var(--radius); margin-bottom: 18px; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.alert-danger { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.alert-warning { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.alert-info { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }

/* ---- COOKIE BANNER ---- */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy); color: var(--white); padding: 16px 0; z-index: 9999; box-shadow: 0 -4px 20px rgba(0,0,0,0.3); }
.cookie-inner { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.cookie-inner p { font-size: 13px; color: rgba(255,255,255,0.8); }
.cookie-inner a { color: var(--gold); }

/* ---- FOOTER ---- */
.regulatory-strip { background: var(--navy-mid); padding: 28px 0; }
.reg-badges { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.reg-badge { display: flex; align-items: center; gap: 14px; color: var(--white); }
.reg-badge i { font-size: 24px; color: var(--gold); }
.reg-badge strong { display: block; font-size: 13px; }
.reg-badge span { display: block; font-size: 11px; color: rgba(255,255,255,0.5); }
.site-footer { background: var(--navy); color: var(--white); }
.footer-main { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo i { font-size: 30px; color: var(--gold); }
.footer-col h4 { font-family: var(--font-body); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 14px; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 12px; }
.free-badge { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gold-light) !important; }
.footer-socials { display: flex; gap: 12px; margin-top: 18px; }
.footer-socials a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 16px; transition: var(--transition); }
.footer-socials a:hover { background: var(--gold); color: var(--navy); }
.footer-contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 18px; }
.footer-contact-item { display: flex; gap: 12px; }
.footer-contact-item i { color: var(--gold); margin-top: 2px; font-size: 16px; flex-shrink: 0; }
.footer-contact-item strong { display: block; font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.footer-contact-item span, .footer-contact-item a { font-size: 13px; color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--gold); }
.companies-house-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gold); background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.2); padding: 8px 14px; border-radius: 6px; margin-top: 8px; }
.companies-house-link:hover { background: rgba(201,162,39,0.2); color: var(--gold); }
.footer-stats { background: var(--gold); padding: 24px 0; }
.footer-stats .container { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.footer-stats .stat-item { text-align: center; }
.footer-stats .stat-item strong { display: block; font-family: var(--font-head); font-size: 1.6rem; color: var(--navy); }
.footer-stats .stat-item span { font-size: 12px; color: rgba(10,22,40,0.65); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 24px 0; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); text-align: center; margin-bottom: 8px; }
.footer-bottom .disclaimer { font-size: 11px; max-width: 900px; margin: 0 auto; line-height: 1.7; }
.footer-bottom a { color: var(--gold); }

/* ---- FLOATING & BACK TO TOP ---- */
.floating-cta { position: fixed; bottom: 24px; right: 24px; z-index: 998; }
.floating-btn { display: flex; align-items: center; gap: 10px; background: var(--gold); color: var(--navy); padding: 14px 22px; border-radius: 50px; font-weight: 700; font-size: 14px; box-shadow: 0 8px 30px rgba(201,162,39,0.4); transition: var(--transition); }
.floating-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,162,39,0.5); color: var(--navy); }
.back-to-top { position: fixed; bottom: 24px; left: 24px; z-index: 998; width: 44px; height: 44px; background: var(--navy); color: var(--white); border: none; border-radius: 50%; cursor: pointer; display: none; align-items: center; justify-content: center; font-size: 16px; transition: var(--transition); }
.back-to-top:hover { background: var(--gold); color: var(--navy); }
.back-to-top.visible { display: flex; }

/* ---- UTILITIES ---- */
.text-center { text-align: center; }
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-16 { gap: 16px; }
.divider { height: 1px; background: var(--light-grey); margin: 40px 0; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.badge-gold { background: rgba(201,162,39,0.15); color: var(--gold); }
.badge-navy { background: var(--navy); color: var(--white); }
.tag { display: inline-block; padding: 5px 12px; background: var(--light-grey); color: var(--dark-grey); border-radius: 4px; font-size: 12px; }
table.admin-table { width: 100%; border-collapse: collapse; }
table.admin-table th { background: var(--off-white); padding: 12px 16px; text-align: left; font-size: 12px; font-weight: 700; color: var(--dark-grey); border-bottom: 2px solid var(--light-grey); }
table.admin-table td { padding: 12px 16px; border-bottom: 1px solid var(--light-grey); font-size: 13px; vertical-align: middle; }
table.admin-table tr:hover td { background: var(--off-white); }
.action-btn { padding: 5px 12px; border-radius: 4px; font-size: 12px; cursor: pointer; border: none; font-weight: 600; }
.action-edit { background: rgba(26,58,107,0.1); color: var(--navy-light); }
.action-delete { background: rgba(220,38,38,0.1); color: var(--red); }
.action-view { background: rgba(201,162,39,0.1); color: var(--gold); }
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 20px; }
.pagination a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 6px; border: 1px solid var(--light-grey); font-size: 14px; color: var(--navy); transition: var(--transition); }
.pagination a.active, .pagination a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .hero-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero { min-height: auto; padding: 60px 0; }
    .steps-grid, .services-grid, .testimonials-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid, .dash-cards, .admin-stats { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .dashboard-layout { grid-template-columns: 1fr; }
    .admin-layout { grid-template-columns: 1fr; }
    .mega-menu { min-width: 500px; grid-template-columns: 1fr 1fr; }
    .regulatory-cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {

/* ===== TOPBAR ===== */
.topbar {
    padding: 10px 0;
    z-index: 1001;
}

.topbar .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Hide old left section */
.topbar-left {
    display: none;
}

/* ===== ROW 1: FCA + SECURE ===== */
.topbar-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    width: 100%;
}

.topbar-info span {
    font-size: 13px;
    white-space: nowrap;
}

/* ===== ROW 2: TRANSLATOR ===== */
.topbar-translate {
    width: 100%;
    display: flex;
    justify-content: center;
}

#google_translate_element select {
    width: 90%;
    max-width: 220px;
    text-align: center;
}

/* ===== ROW 3: ACTIONS ===== */
.topbar-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    flex-wrap: nowrap;
}

.topbar-actions a {
    font-size: 13px;
    white-space: nowrap;
}

/* ===== NAV FIX ===== */
.nav-toggle { display: flex; }
.nav-close { display: flex; }

.nav-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 999;
    flex-direction: column;
    padding: 100px 0 30px;
    overflow-y: auto;
}

.nav-menu.open {
    display: flex;
}

/* ===== MENU ITEMS ===== */
.nav-menu > li {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-menu > li > a {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    padding: 15px 28px;
    display: block;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--gold);
    background: rgba(255,255,255,0.04);
}

/* CTA */
.nav-cta {
    margin: 20px 28px 0 !important;
    border-radius: 50px !important;
    text-align: center;
}

/* DROPDOWN */
.nav-dropdown-btn {
    color: rgba(255,255,255,0.85) !important;
    font-size: 17px;
    padding: 15px 28px;
    width: 100%;
    justify-content: space-between;
}

/* MEGA MENU */
.nav-menu .dropdown-menu {
    position: static !important;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(0,0,0,0.2) !important;
    width: 100% !important;
    transition: opacity 0.2s ease, max-height 0.3s ease !important;
    display: block !important;
}

.nav-menu .dropdown-menu.open {
    opacity: 1;
    max-height: 900px;
}

.nav-menu .mega-menu {
    grid-template-columns: 1fr 1fr !important;
    padding: 16px 20px !important;
    display: grid !important;
}

/* GENERAL FIXES */
.steps-grid,
.services-grid,
.testimonials-grid,
.blog-grid,
.stats-grid,
.dash-cards,
.admin-stats {
    grid-template-columns: 1fr;
}

.footer-grid,
.form-row {
    grid-template-columns: 1fr;
}

.hero-actions {
    flex-direction: column;
}

.auth-card {
    padding: 32px 24px;
}

}
