/* ==========================================================================
   RECLAIMFUNDZ DESIGN SYSTEM
   ========================================================================== */

:root {
    --primary: #0B1F3A;
    --secondary: #00A86B;
    --background: #FFFFFF;
    --accent: #F3F4F6;
    --text: #1F2937;
    --text-light: #6B7280;
    --border: #E5E7EB;

    --shadow-sm: 0 2px 10px rgba(0,0,0,.05);
    --shadow-md: 0 8px 30px rgba(0,0,0,.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,.12);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;

    --container: 1280px;

    --transition: all .3s ease;
}

/* ==========================================================================
   RESET
   ========================================================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ==========================================================================
   GLOBAL
   ========================================================================== */

.container {
    width: 90%;
    max-width: var(--container);
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 2.35rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-heading p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background: var(--secondary);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: #fff;
    color: var(--primary);
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 2000;
    background: var(--primary);
    color: #fff;
    padding: 12px 18px;
    border-radius: 0 0 8px 8px;
}

.skip-link:focus {
    left: 16px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.navbar {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -.02em;
    white-space: nowrap;
}

.logo:hover {
    color: var(--secondary);
}

.nav-panel {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu,
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu a,
.nav-actions a {
    color: var(--text);
    font-weight: 500;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease;
}

.nav-menu a:hover,
.nav-actions a:hover {
    color: var(--secondary);
}

.nav-menu a {
    padding: 8px 0;
}

.nav-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--primary);
}

.mobile-toggle:focus-visible,
.nav-menu a:focus-visible,
.nav-actions a:focus-visible,
.logo:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f7fafc 100%
        );
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(0,168,107,.1);
    color: var(--secondary);
    padding: 10px 18px;
    border-radius: 999px;
    margin-bottom: 25px;
    font-weight: 600;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 20px;
}

.hero p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-image img {
    border-radius: 24px;
  /*  box-shadow: var(--shadow-lg);*/
    width: 100%;
    height: 100%;
    max-height: 500px;
   /* object-fit: cover;*/
}

.hero-image-mobile {
    display: none;
}

.hero-image-mobile img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
}

.hero-trust div {
    display: flex;
    align-items: center;
    gap: 10px;

    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;

    padding: 15px;
}

.hero-trust i {
    color: var(--secondary);
}

/* ==========================================================================
   FEATURED LOGOS
   ========================================================================== */

.featured {
    background: var(--accent);
}

.section-label {
    text-align: center;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.featured-logos img {
    max-height: 40px;
    opacity: .7;
    transition: var(--transition);
}

.featured-logos img:hover {
    opacity: 1;
}

/* ==========================================================================
   STATS
   ========================================================================== */

.stats {
    background: var(--primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    color: #fff;
}

.stat-card h3 {
    color: var(--secondary);
    font-size: 3rem;
    margin-bottom: 10px;
}

/* ==========================================================================
   CARDS
   ========================================================================== */

.steps-grid,
.scam-grid,
.benefits-grid {
    display: grid;
    gap: 30px;
}

.steps-grid {
    grid-template-columns: repeat(3,1fr);
}

.scam-grid {
    grid-template-columns: repeat(4,1fr);
}

.benefits-grid {
    grid-template-columns: repeat(4,1fr);
}

.step-card,
.scam-card,
.benefit-card,
.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
}

.step-card:hover,
.scam-card:hover,
.benefit-card:hover,
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.step-card span {
    color: var(--secondary);
    font-size: 2rem;
    font-weight: 800;
}

.scam-card {
    text-align: center;
    font-weight: 600;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */

.about {
    background: var(--accent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.about-content h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

/* Hide all testimonial cards by default; JS will show groups of 3 */
.testimonial-card {
    display: none;
}

.testimonial-card.active {
    display: block;
}

.stars {
    color: #f59e0b;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
    background: var(--accent);
}

.faq-list {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 22px;
    text-align: left;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

.faq-answer {
    display: none;
    padding: 0 22px 22px;
    color: var(--text-light);
}

/* ==========================================================================
   NEWS SLIDER
   ========================================================================== */

.news-section {
    background: #071529;
    color: #fff;
    padding: 80px 0;
}

.news-section .section-heading h2,
.news-section .section-heading p {
    color: #fff;
}

.news-slider-wrapper {
    position: relative;
    margin-top: 40px;
}

.news-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.news-slider::-webkit-scrollbar {
    display: none;
}

.news-slide {
    background: #fff;
    color: #0B1F3A;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,.12);
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.news-slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-slide-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.news-slide-meta {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .72rem;
    color: var(--secondary);
    font-weight: 700;
}

.news-slide-title {
    font-size: 1.3rem;
    line-height: 1.25;
    margin: 0;
}

.news-slide-desc {
    color: #475569;
    line-height: 1.75;
    flex: 1;
}

.news-slide-link {
    color: var(--secondary);
    font-weight: 700;
    text-decoration: none;
}

.news-slider-nav {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 12px;
}

.news-slider-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.16);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.news-slider-nav button:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,.26);
}

.news-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.news-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    border: none;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.news-slider-dot.active {
    background: #fff;
    transform: scale(1.1);
}
@media (max-width: 1100px) {
    .news-slider-nav {
        position: static;
        justify-content: center;
        margin-top: 18px;
    }
}

@media (max-width: 680px) {
    .news-slider {
        gap: 18px;
    }
}

/* Responsive slide widths: 3 on large, 2 on medium, 1 on small */
@media (min-width: 1200px) {
    .news-slide {
        flex: 0 0 calc((100% - 48px) / 3);
        max-width: calc((100% - 48px) / 3);
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .news-slide {
        flex: 0 0 calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 899px) {
    .news-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ==========================================================================
   CTA
   ========================================================================== */

.cta {
    background: var(--primary);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: #071529;
    color: rgba(255,255,255,.8);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer h3,
.footer h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer a {
    color: rgba(255,255,255,.8);
}

.footer a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: .7s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1100px) {

    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .benefits-grid,
    .scam-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 768px) {

    section {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .navbar {
        min-height: 80px;
    }

    .nav-panel {
        display: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        z-index: 1000;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 18px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 20px;
        box-shadow: 0 20px 45px rgba(11,31,58,.14);
    }

    .nav-panel.active {
        display: flex !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu,
    .nav-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .nav-menu a,
    .nav-actions a {
        width: 100%;
        padding: 12px 14px;
        border-radius: 12px;
    }

    .nav-menu a:hover,
    .nav-actions a:hover {
        background: rgba(0,168,107,.08);
    }

    .mobile-toggle {
        display: inline-flex;
    }

    .stats-grid,
    .scam-grid,
    .benefits-grid,
    .testimonial-slider,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-trust {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Show mobile hero image and hide desktop image on small screens */
@media (max-width: 768px) {
    .hero-image {
        display: none;
    }

    .hero-image-mobile {
        display: block;
    }

    .hero-grid {
        gap: 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}

/* ==================================================
   CLAIM WIZARD
================================================== */

.claim-wizard {
    padding: 100px 0;
    background: #f8fafc;
}

.wizard-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.wizard-header h1 {
    font-size: 3rem;
    color: #0B1F3A;
    margin-bottom: 15px;
}

.wizard-header p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ==================================================
   PROGRESS BAR
================================================== */

.progress-wrapper {
    max-width: 1000px;
    margin: 0 auto 50px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    position: relative;
}

.progress-steps .step {
    text-align: center;
    flex: 1;
    position: relative;
}

.progress-steps .step span {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-weight: 700;
    transition: 0.3s ease;
}

.progress-steps .step p {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

.progress-steps .step.active span {
    background: #00A86B;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 168, 107, 0.25);
}

.progress-steps .step.active p {
    color: #0B1F3A;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 50px;
    overflow: hidden;
}

.progress-fill {
    width: 20%;
    height: 100%;
    background: linear-gradient(
        90deg,
        #00A86B,
        #00c57d
    );
    transition: width 0.4s ease;
}

/* ==================================================
   FORM
================================================== */

#claimWizard {
    max-width: 1000px;
    margin: 0 auto;
}

.form-step {
    display: none;
    animation: fadeSlide 0.35s ease;
}

.form-step.active {
    display: block;
}

.card {
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    box-shadow:
        0 10px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #edf2f7;
}

.card h2 {
    margin-bottom: 25px;
    color: #0B1F3A;
    font-size: 1.8rem;
}

.card p {
    color: #64748b;
    line-height: 1.8;
}

/* ==================================================
   FORM GRID
================================================== */

.form-grid {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(280px, 1fr)
    );
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0B1F3A;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #dbe3ec;
    border-radius: 12px;
    background: #ffffff;
    font-size: 1rem;
    transition: 0.3s ease;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #00A86B;
    box-shadow:
        0 0 0 4px rgba(
            0,
            168,
            107,
            0.1
        );
    outline: none;
}

/* ==================================================
   QUESTIONS
================================================== */

.question-group {
    margin-bottom: 35px;
}

.question-group > label {
    display: block;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0B1F3A;
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-group label {
    background: #f8fafc;
    border: 1px solid #dbe3ec;
    border-radius: 12px;
    padding: 15px 20px;
    cursor: pointer;
    transition: 0.3s ease;
}

.radio-group label:hover {
    border-color: #00A86B;
}

.radio-group input {
    margin-right: 8px;
}

/* ==================================================
   EVIDENCE
================================================== */

.evidence-checklist {
    margin-top: 30px;
    display: grid;
    gap: 15px;
}

.evidence-checklist label {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 15px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
}

.evidence-checklist label:hover {
    border-color: #00A86B;
}

.evidence-checklist input {
    margin-right: 10px;
}

/* ==================================================
   REVIEW
================================================== */

#reviewData {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
}

/* ==================================================
   AUTH PAGE
================================================== */

.auth-page {
    background: linear-gradient(180deg, #f7fafc 0%, #eff6ff 45%, #ffffff 100%);
    min-height: calc(100vh - 90px);
    padding: 60px 0 100px;
}

.auth-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.auth-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.auth-card-header {
    padding: 40px 40px 30px;
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.12), rgba(11, 31, 58, 0.04));
}

.auth-card-header .eyebrow {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    background: rgba(0, 168, 107, 0.12);
    color: #057a4e;
}

.auth-card-header h1 {
    font-size: 2.55rem;
    line-height: 1.05;
    margin-bottom: 16px;
    color: var(--primary);
}

.auth-intro {
    max-width: 680px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.9;
}

.auth-form {
    padding: 32px 40px 40px;
    display: grid;
    gap: 24px;
}

.auth-form-grid {
    grid-template-columns: 1fr 1fr;
}

.auth-form .form-group {
    margin: 0;
}

.auth-form input,
.auth-form textarea,
.auth-form select {
    min-height: 56px;
    border-radius: 16px;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.auth-form label {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 500;
    color: var(--text-light);
}

.checkbox-group input {
    margin: 4px 0 0;
    width: auto;
}

.btn-block {
    width: 100%;
    padding: 18px 22px;
    border-radius: 14px;
    font-size: 1rem;
}

.auth-card-footer {
    padding: 0 40px 40px;
    display: grid;
    gap: 12px;
    justify-items: center;
    text-align: center;
    color: var(--text-light);
}

.auth-card-footer a {
    color: var(--secondary);
    text-decoration: underline;
}

.alert {
    border-left: 4px solid #f87171;
    background: #fff1f2;
    color: #991b1b;
    padding: 16px 20px;
    border-radius: 14px;
}

@media (max-width: 820px) {
    .auth-card {
        border-radius: 24px;
    }

    .auth-card-header,
    .auth-form,
    .auth-card-footer {
        padding-left: 28px;
        padding-right: 28px;
    }

    .auth-form-grid {
        grid-template-columns: 1fr;
    }
}

.review-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.review-row:last-child {
    border-bottom: none;
}

.review-label {
    font-weight: 600;
    color: #0B1F3A;
}

.review-value {
    color: #475569;
    text-align: right;
}

/* ==================================================
   BUTTONS
================================================== */

.wizard-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 20px;
}

#submitBtn {
    display: none;
}

.btn-primary,
.btn-outline {
    min-width: 160px;
}

/* ==================================================
   FILE INPUT
================================================== */

input[type="file"] {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border: 2px dashed #cbd5e1;
}

input[type="file"]:hover {
    border-color: #00A86B;
}

/* ==================================================
   ANIMATIONS
================================================== */

@keyframes fadeSlide {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 768px) {

    .claim-wizard {
        padding: 70px 0;
    }

    .wizard-header h1 {
        font-size: 2.2rem;
    }

    .card {
        padding: 25px;
    }

    .progress-steps {
        gap: 10px;
    }

    .progress-steps .step p {
        font-size: 0.75rem;
    }

    .progress-steps .step span {
        width: 40px;
        height: 40px;
    }

    .wizard-buttons {
        flex-direction: column;
    }

    .wizard-buttons button,
    .wizard-buttons a {
        width: 100%;
    }

    .review-row {
        flex-direction: column;
    }

    .review-value {
        text-align: left;
    }

}

.thank-you-page {
    padding: 100px 0 60px;
}

.thank-you-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.success-icon {
    font-size: 70px;
    color: #00A86B;
    margin-bottom: 20px;
}

.lead {
    font-size: 18px;
    color: #666;
}

.claim-reference-box {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fc;
    border-radius: 15px;
}

.reference-number {
    font-size: 32px;
    font-weight: 800;
    color: #0B1F3A;
    margin: 15px 0;
    letter-spacing: 2px;
}

.qualification-status {
    margin-top: 40px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 15px;
    background: #0B1F3A;
    color: #fff;
}

.status-approved {
    background: #00A86B;
    color: #fff;
}

.status-pending {
    background: #F3F4F6;
    color: #0B1F3A;
}

.status-unread {
    background: rgba(0, 168, 107, 0.08);
    border-left: 4px solid #00A86B;
}

.portal-info,
.support-section,
.next-steps {
    padding: 80px 0;
}

/* ==========================================================================
   CLIENT DASHBOARD
   ========================================================================== */

.client-shell {
    min-height: 100vh;
    background: #F7F8FA;
}

.client-topbar {
    background: #fff;
    border-bottom: 1px solid #E5E7EB;
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.client-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
}

.client-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #0B1F3A;
    font-weight: 700;
    text-decoration: none;
}

.client-brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #00A86B;
    color: #fff;
    font-size: 1rem;
}

.client-brand-title {
    font-size: 1.1rem;
}

.client-topbar-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: #F3F4F6;
    color: #0B1F3A;
    font-size: 0.95rem;
}

.client-topbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sidebar-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--border);
    font-size: 1.1rem;
    color: var(--primary);
    cursor: pointer;
}

.topbar-icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #F3F4F6;
    color: #0B1F3A;
    text-decoration: none;
}

.notification-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #00A86B;
    color: #fff;
    font-size: 0.75rem;
    display: grid;
    place-items: center;
    padding: 0 6px;
}

.topbar-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #0B1F3A;
    color: #fff;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    padding: 30px 0 80px;
}

.dashboard-sidebar {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(11, 31, 58, 0.06);
    padding: 32px;
    min-height: calc(100vh - 120px);
}

.sidebar-brand h2 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #0B1F3A;
}

.sidebar-brand p {
    color: #475569;
    line-height: 1.7;
}

.sidebar-nav {
    margin-top: 34px;
}

.sidebar-nav ul {
    display: grid;
    gap: 10px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 16px;
    color: #0B1F3A;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.25s ease, color 0.25s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: rgba(0, 168, 107, 0.12);
    color: #0B1F3A;
}

.sidebar-nav i {
    width: 26px;
    text-align: center;
}

.dashboard-content {
    background: transparent;
}

.dashboard-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.dashboard-header h1 {
    margin-bottom: 12px;
    color: #0B1F3A;
    font-size: 2.3rem;
}

.dashboard-header p {
    color: #64748B;
    max-width: 640px;
}

.dashboard-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dashboard-card,
.dashboard-widget,
.dashboard-section,
.notification-card,
.claim-details-grid,
.profile-summary {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(11, 31, 58, 0.05);
}

.dashboard-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 28px;
    align-items: center;
}

.dashboard-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(0, 168, 107, 0.12);
    color: #00A86B;
    font-size: 1.2rem;
}

.dashboard-card h3 {
    font-size: 2rem;
    margin-bottom: 6px;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.dashboard-card p {
    color: #64748B;
}

.dashboard-grid {
    display: grid;
    gap: 24px;
}

/* two-column content + sidebar within dashboard pages */
.dashboard-grid {
    grid-template-columns: 1fr 360px;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.dashboard-table th,
.dashboard-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: middle;
}

.dashboard-table th {
    font-weight: 700;
    color: var(--text-light);
    white-space: nowrap;
}

.btn-sm {
    padding: 8px 10px;
    font-size: 0.9rem;
}

.dashboard-widget {
    padding: 28px;
}

.dashboard-widget h2,
.notification-list h2 {
    margin-bottom: 20px;
    color: #0B1F3A;
}

.info-grid,
.filter-grid,
.claim-details-grid {
    display: grid;
    gap: 18px;
}

.info-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-item {
    display: grid;
    gap: 10px;
}

.info-item label {
    color: #475569;
    font-weight: 700;
}

.info-item p {
    color: #0B1F3A;
    font-size: 0.98rem;
}

.filter-form,
.form-grid,
.form-group,
.password-wrapper,
.notification-list,
.notification-card,
.details-table {
    width: 100%;
}

.filter-form .form-grid,
.form-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.filter-form label,
.form-group label {
    color: #0B1F3A;
    font-weight: 600;
}

.filter-form input,
.filter-form select,
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    background: #F8FAFC;
    font-size: 0.98rem;
    color: #0B1F3A;
}

.filter-form button,
.btn-primary,
.btn-outline {
    border-radius: 16px;
}

.btn-primary {
    background: #00A86B;
    color: #fff;
    border: none;
}

.btn-outline {
    background: transparent;
    color: #0B1F3A;
    border: 1px solid #0B1F3A;
}

.notification-list {
    display: grid;
    gap: 16px;
}

.notification-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    padding: 22px;
    align-items: center;
}

.notification-card.notification-unread {
    background: rgba(0, 168, 107, 0.08);
}

.notification-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #edf7f1;
    color: #00A86B;
    font-size: 1.2rem;
}

.notification-content h3 {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #0B1F3A;
}

.notification-content p {
    line-height: 1.7;
    color: #475569;
}

.notification-content small {
    color: #94a3b8;
}

.notification-actions a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 14px;
    background: #0B1F3A;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.client-footer {
    background: #0B1F3A;
    color: #fff;
    padding: 28px 0;
    margin-top: 40px;
}

.client-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.client-footer a {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 1100px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        min-height: auto;
    }

    .sidebar-toggle {
        display: inline-flex;
    }

    /* mobile sidebar behavior */
    .dashboard-overlay {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.45);
        z-index: 1100;
    }

    .dashboard-sidebar {
        position: fixed;
        left: 0;
        top: 72px;
        bottom: 0;
        width: 300px;
        transform: translateX(-120%);
        transition: transform .28s ease;
        z-index: 1200;
        margin: 16px;
        border-radius: 12px;
    }

    .client-shell.sidebar-open .dashboard-sidebar {
        transform: translateX(0);
    }

    .client-shell.sidebar-open .dashboard-overlay {
        display: block;
    }

    .client-shell.sidebar-open .dashboard-layout {
        padding-left: 0;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .client-topbar-inner,
    .client-footer-inner,
    .dashboard-header,
    .dashboard-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .sidebar-nav a {
        font-size: 0.95rem;
    }

    .dashboard-card {
        grid-template-columns: 1fr;
    }

    .notification-card {
        grid-template-columns: 1fr;
    }
}

.portal-card,
.support-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    text-align: center;
}

.portal-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.support-details {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.support-details div {
    font-weight: 600;
}

.support-details i {
    color: #00A86B;
    margin-right: 8px;
}

.honeypot {
    display: none !important;
}

.review-box {
    background: #f8fafc;
    border: 1px solid #dbe3ec;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.review-box p {
    margin-bottom: 10px;
}

/*==================================================
ABOUT PAGE
==================================================*/

.page-hero{
    padding:110px 0 90px;
    background:linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color:#fff;
    text-align:center;
}

.page-hero.about-hero {
    background-image:
        linear-gradient(135deg, rgba(11,31,58,.92) 0%, rgba(0,168,107,.82) 100%),
        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero.services-hero {
    background-image:
        linear-gradient(135deg, rgba(11,31,58,.90) 0%, rgba(9,70,117,.82) 100%),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero.scam-types-hero {
    background-image:
        linear-gradient(135deg, rgba(11,31,58,.92) 0%, rgba(0,168,107,.76) 100%),
        url('https://images.unsplash.com/photo-1516321497487-e288fb19713f?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero.faq-hero {
    background-image:
        linear-gradient(135deg, rgba(11,31,58,.94) 0%, rgba(0,127,90,.78) 100%),
        url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero.contact-hero {
    background-image:
        linear-gradient(135deg, rgba(11,31,58,.94) 0%, rgba(0,168,107,.78) 100%),
        url('https://images.unsplash.com/photo-1517841905240-472988babdf9?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero.resources-hero {
    background-image:
        linear-gradient(135deg, rgba(11,31,58,.94) 0%, rgba(0,168,107,.74) 100%),
        url('https://images.unsplash.com/photo-1455390582262-044cdead277a?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero .hero-content{
    max-width:850px;
    margin:0 auto;
}

.page-hero h1{
    font-size:3.2rem;
    margin:20px 0;
    line-height:1.2;
    color:#fff;
}

.page-hero p{
    font-size:1.1rem;
    opacity:.95;
    line-height:1.8;
    margin-bottom:40px;
    color:rgba(255,255,255,.9);
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/*==================================================
GENERAL SECTIONS
==================================================*/

.about-section,
.values-section,
.mission-section,
.why-us-section,
.process-section,
.statistics-section,
.cta-section{
    padding:90px 0;
}

.section-heading{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}

.section-heading h2,
.section-content h2{
    font-size:2.4rem;
    margin:15px 0;
    color:var(--primary);
}

.section-heading p{
    color:var(--text-light);
    line-height:1.8;
}

.section-tag{
    display:inline-block;
    background:rgba(0,168,107,.12);
    color:var(--primary);
    padding:8px 18px;
    border-radius:50px;
    font-weight:600;
    font-size:.9rem;
}

/*==================================================
TWO COLUMN
==================================================*/

.section-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.section-image img{
    width:100%;
    border-radius:20px;
    display:block;
    box-shadow:0 25px 60px rgba(11,31,58,.15);
}

.section-content p{
    margin-bottom:20px;
    line-height:1.9;
    color:var(--text-light);
}

/*==================================================
MISSION
==================================================*/

.mission-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.mission-card{
    background:var(--background);
    border:1px solid var(--accent);
    border-radius:20px;
    padding:40px;
    text-align:center;
    box-shadow:0 15px 40px rgba(11,31,58,.08);
    transition:.3s;
}

.mission-card:hover{
    transform:translateY(-8px);
}

.mission-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:var(--secondary);
    color:var(--background);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:1.6rem;
    margin:0 auto 25px;
}

.mission-card h3,
.value-card h3,
.stat-box h3,
.process-card h3,
.stat-card h3{
    margin-bottom:18px;
    color:var(--primary);
}

.mission-card p{
    color:var(--text-light);
    line-height:1.7;
}

/*==================================================
VALUES
==================================================*/

.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.value-card{
    background:var(--background);
    border:1px solid var(--accent);
    padding:35px;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(11,31,58,.08);
    transition:.3s;
}

.value-card:hover{
    transform:translateY(-8px);
}

.value-icon{
    width:65px;
    height:65px;
    background:var(--secondary);
    color:var(--background);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:1.4rem;
    margin-bottom:25px;
}

.value-card p{
    color:var(--text-light);
    line-height:1.8;
}

/*==================================================
WHY US
==================================================*/

.feature-list{
    margin-top:30px;
    list-style:none;
    padding:0;
}

.feature-list li{
    display:flex;
    align-items:center;
    margin-bottom:18px;
    color:var(--text);
}

.feature-list i{
    color:var(--secondary);
    margin-right:15px;
    font-size:1rem;
}

.stats-card{
    display:grid;
    gap:25px;
}

.stat-box{
    background:var(--background);
    border:1px solid var(--accent);
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(11,31,58,.08);
}

.stat-box p{
    color:var(--text-light);
    line-height:1.7;
}

/*==================================================
PROCESS
==================================================*/

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.process-card{
    background:var(--background);
    border:1px solid var(--accent);
    border-radius:18px;
    padding:40px 30px;
    box-shadow:0 12px 35px rgba(11,31,58,.08);
    position:relative;
    transition:.3s;
}

.process-card:hover{
    transform:translateY(-8px);
}

.process-number{
    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--secondary);
    color:var(--background);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.2rem;
    font-weight:700;
    margin-bottom:25px;
}

.process-card p{
    color:var(--text-light);
    line-height:1.8;
}

/*==================================================
STATISTICS
==================================================*/

.statistics-section{
    background:var(--accent);
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-card{
    background:var(--background);
    border:1px solid var(--accent);
    border-radius:18px;
    padding:35px;
    text-align:center;
    box-shadow:0 12px 35px rgba(11,31,58,.08);
}

.stat-icon{
    width:70px;
    height:70px;
    background:var(--secondary);
    color:var(--background);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 25px;
    font-size:1.5rem;
}

.stat-card p{
    color:var(--text-light);
    line-height:1.8;
}

/*==================================================
CTA
==================================================*/

.cta-card{
    background:linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color:#fff;
    border-radius:24px;
    padding:70px;
    text-align:center;
}

.cta-card h2{
    font-size:2.5rem;
    margin:20px 0;
}

.cta-card p{
    max-width:700px;
    margin:0 auto 40px;
    opacity:.95;
    line-height:1.9;
    color:rgba(255,255,255,.95);
}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:1200px){

    .values-grid,
    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:992px){

    .section-grid,
    .mission-grid{
        grid-template-columns:1fr;
    }

    .section-content{
        text-align:center;
    }

    .feature-list{
        display:inline-block;
        text-align:left;
    }

}

@media (max-width:768px){

    .page-hero{
        padding:80px 0;
    }

    .page-hero h1{
        font-size:2.3rem;
    }

    .section-heading h2{
        font-size:2rem;
    }

    .values-grid,
    .stats-grid,
    .process-grid{
        grid-template-columns:1fr;
    }

    .cta-card{
        padding:50px 30px;
    }

    .cta-card h2{
        font-size:2rem;
    }

}

/* ==========================================================
   FAQ PAGE
   Reclaimfundz
========================================================== */

/* ==========================================================
   HERO
========================================================== */

.page-hero{

    background:
    linear-gradient(
        135deg,
        #0B1F3A,
        #173962
    );

    color:#fff;

    padding:120px 0 90px;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.page-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(
        circle at top right,
        rgba(255,255,255,.08),
        transparent 45%
    );

}

.page-hero .container{

    position:relative;

    z-index:2;

}

.page-hero h1{

    font-size:3.3rem;

    margin:20px 0;

    font-weight:700;

    line-height:1.15;

}

.page-hero p{

    max-width:760px;

    margin:0 auto;

    font-size:1.15rem;

    line-height:1.8;

    color:rgba(255,255,255,.9);

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(12px);

    font-size:.9rem;

    letter-spacing:.08em;

    text-transform:uppercase;

    font-weight:600;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:45px;

    flex-wrap:wrap;

}

/* ==========================================================
   SEARCH SECTION
========================================================== */

.faq-search-section{

    padding:80px 0;

    background:var(--background);

}

.faq-search{

    max-width:900px;

    margin:auto;

    text-align:center;

}

.faq-search h2{

    color:var(--primary);

    font-size:2.2rem;

    margin-bottom:12px;

}

.faq-search p{

    color:var(--text-light);

    margin-bottom:40px;

    line-height:1.7;

}

.search-wrapper{

    display:flex;

    gap:15px;

    align-items:center;

    justify-content:center;

    background:#fff;

    padding:18px;

    border-radius:18px;

    box-shadow:var(--shadow-md);

    border:1px solid var(--border);

}

.faq-search-input{

    flex:1;

    min-width:0;

    border:none;

    outline:none;

    font-size:1rem;

    padding:16px;

    background:transparent;

}

.faq-search-input::placeholder{

    color:#A0A8B3;

}

.search-button{

    border:none;

    cursor:pointer;

    background:var(--secondary);

    color:#fff;

    padding:16px 32px;

    border-radius:12px;

    font-weight:600;

    transition:var(--transition);

}

.search-button:hover{

    transform:translateY(-2px);

    box-shadow:var(--shadow-sm);

    background:#00915d;

}

/* ==========================================================
   CATEGORY SECTION
========================================================== */

.faq-categories{

    padding:90px 0;

    background:var(--light);

}

.section-heading{

    text-align:center;

    margin-bottom:55px;

}

.section-heading h2{

    font-size:2.5rem;

    color:var(--primary);

    margin:20px 0;

}

.section-heading p{

    color:var(--text-light);

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

.category-grid{

    display:grid;

    grid-template-columns:
    repeat(
        auto-fit,
        minmax(170px,1fr)
    );

    gap:18px;

}

.category-btn{

    background:#fff;

    border:2px solid var(--border);

    border-radius:14px;

    padding:18px;

    cursor:pointer;

    font-weight:600;

    color:var(--primary);

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.category-btn:hover{

    transform:translateY(-4px);

    border-color:var(--secondary);

}

.category-btn.active{

    background:var(--secondary);

    color:#fff;

    border-color:var(--secondary);

    box-shadow:0 15px 35px rgba(0,168,107,.25);

}

/* ==========================================================
   FAQ CONTENT
========================================================== */

.faq-content{

    padding:90px 0;

    background:var(--background);

}

.faq-category{

    margin-bottom:80px;

}

.faq-category:last-child{

    margin-bottom:0;

}

/* ==========================================================
   FAQ LIST
========================================================== */

.faq-list{

    max-width:900px;

    margin:50px auto 0;

    display:flex;

    flex-direction:column;

    gap:18px;

}

/* ==========================================================
   FAQ CARD
========================================================== */

.faq-item{

    background:#fff;

    border:1px solid var(--border);

    border-radius:16px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:all .35s ease;

}

.faq-item:hover{

    transform:translateY(-4px);

    box-shadow:var(--shadow-md);

    border-color:rgba(0,168,107,.25);

}

.faq-item.active{

    border-color:var(--secondary);

    box-shadow:0 20px 45px rgba(0,168,107,.15);

}

/* ==========================================================
   QUESTION BUTTON
========================================================== */

.faq-question{

    width:100%;

    border:none;

    background:transparent;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:25px;

    padding:28px 32px;

    text-align:left;

    transition:var(--transition);

}

.faq-question:hover{

    background:#FAFBFC;

}

.faq-question span:first-child{

    color:var(--primary);

    font-size:1.08rem;

    font-weight:600;

    line-height:1.5;

}

/* ==========================================================
   PLUS ICON
========================================================== */

.faq-icon{

    width:38px;

    height:38px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    background:var(--light);

    color:var(--secondary);

    font-size:1.4rem;

    font-weight:700;

    transition:all .35s ease;

}

.faq-item.active .faq-icon{

    background:var(--secondary);

    color:#fff;

    transform:rotate(45deg);

}

/* ==========================================================
   ANSWER PANEL
========================================================== */

.faq-answer{

    max-height:0;

    overflow:hidden;

    opacity:0;

    transition:

        max-height .45s ease,

        opacity .3s ease,

        padding .35s ease;

    padding:0 32px;

}

.faq-item.active .faq-answer{

    opacity:1;

    max-height:700px;

    padding:0 32px 30px;

}

.faq-answer p{

    color:var(--text);

    line-height:1.9;

    font-size:1rem;

}

.faq-answer ul{

    margin-top:18px;

    margin-left:22px;

}

.faq-answer li{

    margin-bottom:10px;

    line-height:1.8;

    color:var(--text);

}

/* ==========================================================
   LINKS INSIDE ANSWERS
========================================================== */

.faq-answer a{

    color:var(--secondary);

    text-decoration:none;

    font-weight:600;

    transition:var(--transition);

}

.faq-answer a:hover{

    color:var(--primary);

}

/* ==========================================================
   HIGHLIGHT MATCH
========================================================== */

mark{

    background:#DFF8EE;

    color:var(--primary);

    padding:2px 4px;

    border-radius:4px;

}

/* ==========================================================
   SEARCH RESULT STATE
========================================================== */

.faq-item.hidden{

    display:none;

}

.faq-category.hidden{

    display:none;

}

/* ==========================================================
   CATEGORY ANIMATION
========================================================== */

.faq-category{

    animation:fadeUp .6s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ==========================================================
   ACCORDION ANIMATION
========================================================== */

.faq-item{

    animation:cardFade .45s ease;

}

@keyframes cardFade{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ==========================================================
   FOCUS STATES
========================================================== */

.faq-question:focus-visible{

    outline:3px solid rgba(0,168,107,.35);

    outline-offset:3px;

    border-radius:12px;

}

.category-btn:focus-visible{

    outline:3px solid rgba(0,168,107,.35);

    outline-offset:3px;

}

.search-button:focus-visible{

    outline:3px solid rgba(0,168,107,.35);

    outline-offset:3px;

}

.faq-search-input:focus{

    color:var(--primary);

}
/* ==========================================================
   STILL NEED HELP CTA
========================================================== */

.faq-cta{

    padding:110px 0;

    background:linear-gradient(
        135deg,
        #0B1F3A,
        #173962
    );

    position:relative;

    overflow:hidden;

}

.faq-cta::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(
            circle at top right,
            rgba(255,255,255,.08),
            transparent 45%
        );

}

.faq-cta .container{

    position:relative;

    z-index:2;

}

.cta-card{

    max-width:900px;

    margin:auto;

    text-align:center;

    color:#fff;

    padding:70px 60px;

    border-radius:24px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    box-shadow:var(--shadow-lg);

}

.cta-card h2{

    font-size:2.7rem;

    margin:25px 0 20px;

    line-height:1.2;

}

.cta-card p{

    max-width:700px;

    margin:0 auto 40px;

    font-size:1.08rem;

    line-height:1.9;

    color:rgba(255,255,255,.90);

}

/* ==========================================================
   BUTTONS
========================================================== */

.btn-primary,
.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    text-decoration:none;

    font-weight:600;

    padding:16px 34px;

    border-radius:12px;

    transition:all .3s ease;

    cursor:pointer;

}

.btn-primary{

    background:var(--secondary);

    color:#fff;

    border:2px solid var(--secondary);

}

.btn-primary:hover{

    background:#00915d;

    border-color:#00915d;

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(0,168,107,.30);

}

.btn-outline{

    background:transparent;

    color:#fff;

    border:2px solid rgba(255,255,255,.25);

}

.btn-outline:hover{

    background:#fff;

    color:var(--primary);

    border-color:#fff;

    transform:translateY(-3px);

}

/* ==========================================================
   CONTAINER
========================================================== */

.container{

    width:min(1200px,92%);

    margin:auto;

}

/* ==========================================================
   SECTION SPACING
========================================================== */

section{

    scroll-margin-top:110px;

}

.section-heading{

    animation:fadeHeading .8s ease;

}

@keyframes fadeHeading{

    from{

        opacity:0;

        transform:translateY(25px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ==========================================================
   CUSTOM SCROLLBAR
========================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#EDF2F6;

}

::-webkit-scrollbar-thumb{

    background:var(--secondary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#00915d;

}

/* ==========================================================
   SELECTION
========================================================== */

::selection{

    background:var(--secondary);

    color:#fff;

}

/* ==========================================================
   UTILITIES
========================================================== */

.text-center{

    text-align:center;

}

.hidden{

    display:none !important;

}

.visible{

    display:block !important;

}

.mt-1{

    margin-top:1rem;

}

.mt-2{

    margin-top:2rem;

}

.mt-3{

    margin-top:3rem;

}

.mb-1{

    margin-bottom:1rem;

}

.mb-2{

    margin-bottom:2rem;

}

.mb-3{

    margin-bottom:3rem;

}

/* ==========================================================
   CARD TRANSITIONS
========================================================== */

.category-btn,
.faq-item,
.btn-primary,
.btn-outline,
.search-button{

    will-change:transform;

}

/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce){

    *{

        animation:none !important;

        transition:none !important;

        scroll-behavior:auto !important;

    }

}
/* ==========================================================
   LARGE DESKTOP
========================================================== */

@media (min-width: 1400px){

    .container{

        max-width:1320px;

    }

    .page-hero h1{

        font-size:4rem;

    }

    .cta-card{

        max-width:1000px;

    }

}

/* ==========================================================
   LAPTOP
========================================================== */

@media (max-width: 1200px){

    .page-hero{

        padding:100px 0 80px;

    }

    .page-hero h1{

        font-size:3rem;

    }

    .section-heading h2{

        font-size:2.2rem;

    }

    .cta-card h2{

        font-size:2.3rem;

    }

}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 992px){

    .page-hero{

        padding:90px 0 70px;

    }

    .page-hero h1{

        font-size:2.6rem;

    }

    .page-hero p{

        font-size:1.05rem;

    }

    .hero-buttons{

        gap:16px;

    }

    .search-wrapper{

        flex-direction:column;

        align-items:stretch;

    }

    .faq-search-input{

        width:100%;

    }

    .search-button{

        width:100%;

    }

    .category-grid{

        grid-template-columns:
        repeat(2,1fr);

    }

    .faq-question{

        padding:24px;

    }

    .faq-answer{

        padding:0 24px;

    }

    .faq-item.active .faq-answer{

        padding:0 24px 24px;

    }

    .cta-card{

        padding:55px 40px;

    }

}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width:768px){

    section{

        padding-left:0;

        padding-right:0;

    }

    .page-hero{

        padding:80px 0 60px;

    }

    .page-hero h1{

        font-size:2.2rem;

    }

    .page-hero p{

        font-size:1rem;

    }

    .hero-buttons{

        flex-direction:column;

        width:100%;

    }

    .btn-primary,
    .btn-outline{

        width:100%;

    }

    .faq-search-section{

        padding:60px 0;

    }

    .faq-search h2{

        font-size:1.9rem;

    }

    .section-heading h2{

        font-size:2rem;

    }

    .category-grid{

        grid-template-columns:1fr;

    }

    .category-btn{

        width:100%;

    }

    .faq-question{

        padding:20px;

        gap:18px;

    }

    .faq-question span:first-child{

        font-size:1rem;

    }

    .faq-icon{

        width:34px;

        height:34px;

        font-size:1.2rem;

    }

    .faq-answer{

        padding:0 20px;

    }

    .faq-item.active .faq-answer{

        padding:0 20px 20px;

    }

    .faq-answer p{

        font-size:.96rem;

    }

    .cta-card{

        padding:45px 28px;

        border-radius:20px;

    }

    .cta-card h2{

        font-size:2rem;

    }

    .cta-card p{

        font-size:1rem;

    }

}

/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width:480px){

    .container{

        width:94%;

    }

    .hero-badge{

        font-size:.75rem;

        padding:8px 16px;

    }

    .page-hero h1{

        font-size:1.9rem;

    }

    .section-heading h2{

        font-size:1.8rem;

    }

    .faq-search{

        text-align:left;

    }

    .faq-search h2{

        font-size:1.6rem;

    }

    .search-wrapper{

        padding:14px;

        border-radius:14px;

    }

    .faq-search-input{

        padding:14px;

        font-size:.95rem;

    }

    .search-button{

        padding:14px;

    }

    .faq-question{

        padding:18px;

    }

    .faq-answer{

        padding:0 18px;

    }

    .faq-item.active .faq-answer{

        padding:0 18px 18px;

    }

    .cta-card{

        padding:36px 22px;

    }

    .cta-card h2{

        font-size:1.75rem;

    }

}

/* ==========================================================
   PRINT
========================================================== */

@media print{

    .page-hero{

        background:#fff !important;

        color:#000 !important;

    }

    .hero-buttons,

    .faq-search-section,

    .faq-categories,

    .faq-cta,

    .search-button{

        display:none !important;

    }

    .faq-item{

        page-break-inside:avoid;

        border:1px solid #ccc;

        box-shadow:none;

        margin-bottom:20px;

    }

    .faq-answer{

        display:block !important;

        max-height:none !important;

        opacity:1 !important;

        padding:20px !important;

    }

}

/* ==========================================================
   DARK MODE PREPARATION
========================================================== */

@media (prefers-color-scheme: dark){

    body.light-mode .faq-item{

        background:#fff;

    }

}

/* ==========================================================
   SMOOTH SCROLL
========================================================== */

html{

    scroll-behavior:smooth;

}

/* ==========================================================
   FINAL POLISH
========================================================== */

.faq-item,
.category-btn,
.search-button,
.btn-primary,
.btn-outline{

    transition:

        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        box-shadow .3s ease,
        transform .3s ease;

}

.faq-question{

    -webkit-tap-highlight-color:transparent;

}

button{

    font-family:inherit;

}

input{

    font-family:inherit;

}

a{

    transition:.3s ease;

}

img{

    max-width:100%;

    height:auto;

    display:block;

}

/* ==========================================================
   CONTACT PAGE
   Reclaimfundz
========================================================== */

/* ==========================================================
   HERO
========================================================== */

.page-hero{

    position:relative;

    overflow:hidden;

    padding:100px 0 80px;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        #173962
    );

    color:#fff;

    text-align:center;

}

.page-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(
        circle at top right,
        rgba(255,255,255,.08),
        transparent 45%
    );

}

.page-hero .container{

    position:relative;

    z-index:2;

}

.hero-badge,
.section-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(10px);

    text-transform:uppercase;

    letter-spacing:.08em;

    font-size:.85rem;

    font-weight:600;

}

.section-badge{
    background:rgba(0,168,107,.12);
    border-color:rgba(0,168,107,.20);
    color:var(--secondary);
}

.page-hero h1{

    margin:25px 0;

    font-size:3.4rem;

    font-weight:700;

    line-height:1.15;

}

.page-hero p{

    max-width:760px;

    margin:auto;

    color:rgba(255,255,255,.9);

    line-height:1.8;

    font-size:1.08rem;

}

/* ==========================================================
   SECTION DEFAULTS
========================================================== */

section{

    position:relative;

}

.page-hero .hero-content {
    max-width: 760px;
    margin: 0 auto;
}

.container{

    width:min(1200px,92%);

    margin:auto;

}

.section-heading{

    text-align:center;

    margin-bottom:60px;

}

.section-heading h2{

    margin:18px 0;

    font-size:2.6rem;

    color:var(--primary);

}

.section-heading p{

    max-width:720px;

    margin:auto;

    color:var(--text-light);

    line-height:1.8;

}

/* ==========================================================
   CONTENT CARDS & PAGE SECTIONS
========================================================== */

.intro-section,
.services-section,
.red-flags-section,
.action-section,
.warning-signs,
.assessment-banner{
    padding:100px 0;
    background:var(--background);
}

.intro-grid,
.services-grid,
.flags-grid,
.warning-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
    gap:30px;
}

.intro-card,
.service-card,
.flag-card,
.warning-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:32px 28px;
    box-shadow:none;
    transition:var(--transition);
}

.intro-card:hover,
.service-card:hover,
.flag-card:hover,
.warning-card:hover{
    transform:translateY(-4px);
    border-color:var(--secondary);
    box-shadow:none;
}

.intro-icon,
.service-icon,
.warning-icon{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    margin-bottom:20px;
    background:rgba(0,168,107,.12);
    color:var(--secondary);
    font-size:1.45rem;
}

.intro-card h3,
.service-card h3,
.flag-card h3,
.warning-card h3{
    margin-bottom:12px;
    color:var(--primary);
    font-size:1.2rem;
}

.intro-card p,
.service-card p,
.flag-card p,
.warning-card p{
    color:var(--text-light);
    line-height:1.8;
}

.service-card ul{
    margin-top:18px;
    display:grid;
    gap:8px;
}

.service-card li{
    color:var(--text);
    line-height:1.7;
}

.service-card a{
    display:inline-flex;
    margin-top:20px;
    color:var(--secondary);
    font-weight:600;
}

.service-card a:hover{
    color:var(--primary);
}

.scam-detail-section{
    padding:100px 0;
    background:var(--background);
}

.scam-detail-section.alt{
    background:var(--accent);
}

.scam-detail-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:50px;
    align-items:start;
}

.scam-content,
.info-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:36px;
    box-shadow:none;
}

.scam-content h2{
    margin:18px 0 20px;
    color:var(--primary);
    font-size:2.15rem;
}

.scam-content h3{
    margin:24px 0 12px;
    color:var(--primary);
}

.scam-content p,
.scam-content li{
    color:var(--text-light);
    line-height:1.8;
}

.scam-content ul{
    padding-left:20px;
    display:grid;
    gap:10px;
}

.info-card{
    background:linear-gradient(135deg, rgba(11,31,58,.98), rgba(23,57,98,.95));
    color:#fff;
}

.info-card h3{
    margin-bottom:14px;
    color:#fff;
}

.info-card p{
    color:rgba(255,255,255,.9);
}

.action-section{
    background:var(--accent);
}

.timeline{
    display:grid;
    gap:20px;
    max-width:900px;
    margin:0 auto;
}

.timeline-item{
    display:grid;
    grid-template-columns:80px 1fr;
    gap:24px;
    align-items:start;
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    padding:24px 28px;
    box-shadow:none;
}

.timeline-number{
    width:56px;
    height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--secondary);
    color:#fff;
    font-weight:700;
}

.timeline-item h3{
    margin-bottom:10px;
    color:var(--primary);
}

.timeline-item p{
    color:var(--text-light);
    line-height:1.8;
}

.assessment-banner{
    background:linear-gradient(135deg, var(--primary), #173962);
}

.assessment-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.16);
    border-radius:24px;
    padding:44px 48px;
    backdrop-filter:blur(10px);
    color:#fff;
}

.assessment-content h2{
    margin:16px 0 10px;
    font-size:2.2rem;
}

.assessment-content p{
    max-width:700px;
    color:rgba(255,255,255,.9);
}

.assessment-buttons,
.cta-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.cta-section{
    padding:70px 0 100px;
}

.cta-box{
    background:linear-gradient(135deg, var(--primary), #173962);
    border-radius:24px;
    padding:48px;
    color:#fff;
    text-align:center;
    box-shadow:none;
}

.cta-box h2{
    margin:16px 0 12px;
    font-size:2.3rem;
}

.cta-box p{
    max-width:720px;
    margin:0 auto 30px;
    color:rgba(255,255,255,.9);
    line-height:1.8;
}

/* ==========================================================
   CONTACT OVERVIEW
========================================================== */

.contact-overview{

    padding:100px 0;

    background:var(--background);

}

.contact-cards{

    display:grid;

    grid-template-columns:
    repeat(
        auto-fit,
        minmax(250px,1fr)
    );

    gap:30px;

}

.contact-card{

    background:#fff;

    padding:32px 28px;

    border-radius:18px;

    text-align:center;

    border:1px solid var(--border);

    box-shadow:none;

    transition:var(--transition);

}

.contact-card:hover{

    transform:translateY(-4px);

    border-color:var(--secondary);

    box-shadow:none;

}

.contact-icon{

    width:75px;

    height:75px;

    margin:auto auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(
        135deg,
        rgba(0,168,107,.12),
        rgba(11,31,58,.08)
    );

    color:var(--secondary);

    font-size:1.7rem;

}

.contact-card h3{

    margin-bottom:16px;

    color:var(--primary);

    font-size:1.35rem;

}

.contact-card p{

    color:var(--text-light);

    line-height:1.8;

    margin-bottom:20px;

}

.contact-card a{

    color:var(--secondary);

    text-decoration:none;

    font-weight:600;

    transition:var(--transition);

}

.contact-card a:hover{

    color:var(--primary);

}

.contact-card span{

    display:inline-block;

    color:var(--secondary);

    font-weight:600;

}

/* ==========================================================
   OFFICE HOURS
========================================================== */

.office-hours{

    padding:100px 0;

    background:var(--light);

}

.office-grid{

    display:grid;

    grid-template-columns:
        2fr
        1fr;

    gap:50px;

    align-items:start;

}

.office-content{

    background:#fff;

    border-radius:20px;

    padding:50px;

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

}

.office-content h2{

    margin:22px 0;

    color:var(--primary);

    font-size:2.3rem;

}

.office-content p{

    color:var(--text-light);

    line-height:1.9;

    margin-bottom:35px;

}

.hours-list{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.hour-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 22px;

    border-radius:12px;

    background:var(--light);

    transition:var(--transition);

}

.hour-item:hover{

    background:#fff;

    transform:translateX(6px);

    box-shadow:var(--shadow-sm);

}

.hour-item span{

    color:var(--text);

    font-weight:500;

}

.hour-item strong{

    color:var(--secondary);

}

.office-card{

    background:
    linear-gradient(
        135deg,
        #0B1F3A,
        #173962
    );

    color:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:var(--shadow-lg);

}

.office-card h3{

    margin:22px 0;

    font-size:1.8rem;

}

.office-card ul{

    margin:30px 0 0;

    padding-left:20px;

}

.office-card li{

    margin-bottom:18px;

    line-height:1.8;

    color:rgba(255,255,255,.92);

}

/* ==========================================================
   CONTACT FORM SECTION
========================================================== */

.contact-form-section{

    padding:100px 0;

    background:var(--background);

}

.contact-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:50px;

    align-items:start;

}

.contact-form-wrapper{

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:50px;

    box-shadow:var(--shadow-sm);

}

/* ==========================================================
   ALERTS
========================================================== */

.alert{

    padding:18px 22px;

    border-radius:12px;

    margin-bottom:30px;

    font-weight:500;

    line-height:1.6;

}

.alert-success{

    background:#E9F9F2;

    color:#0E6B49;

    border:1px solid rgba(0,168,107,.20);

}

.alert-error{

    background:#FFF2F2;

    color:#B42318;

    border:1px solid rgba(180,35,24,.20);

}

/* ==========================================================
   FORM
========================================================== */

.contact-form{

    margin-top:10px;

}

.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.form-group{

    margin-bottom:25px;

}

.form-group label{

    display:block;

    margin-bottom:10px;

    color:var(--primary);

    font-weight:600;

}

.form-group input,

.form-group select,

.form-group textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid var(--border);

    border-radius:12px;

    background:#fff;

    color:var(--text);

    font-size:1rem;

    transition:var(--transition);

    font-family:inherit;

}

.form-group textarea{

    resize:vertical;

    min-height:180px;

}

.form-group input::placeholder,

.form-group textarea::placeholder{

    color:#9CA3AF;

}

.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus{

    outline:none;

    border-color:var(--secondary);

    box-shadow:0 0 0 4px rgba(0,168,107,.12);

}

/* ==========================================================
   CHECKBOX
========================================================== */

.checkbox-group{

    margin:10px 0 35px;

}

.checkbox-group label{

    display:flex;

    align-items:flex-start;

    gap:14px;

    line-height:1.7;

    cursor:pointer;

    color:var(--text-light);

    font-weight:400;

}

.checkbox-group input{

    width:18px;

    height:18px;

    margin-top:4px;

    accent-color:var(--secondary);

}

/* ==========================================================
   BUTTONS
========================================================== */

.btn-primary,
.btn-secondary,
.btn-outline{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    cursor:pointer;

    font-weight:600;

    border-radius:12px;

    padding:16px 34px;

    transition:var(--transition);

}

.btn-primary{

    border:2px solid var(--secondary);

    background:var(--secondary);

    color:#fff;

}

.btn-primary:hover{

    background:#00915D;

    border-color:#00915D;

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(0,168,107,.25);

}

.btn-secondary{
    border:2px solid #fff;
    background:#fff;
    color:var(--primary);
}

.btn-secondary:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(11,31,58,.14);
}

.btn-outline{

    background:transparent;

    color:var(--primary);

    border:2px solid var(--primary);

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

/* ==========================================================
   SIDEBAR
========================================================== */

.contact-sidebar{

    display:flex;

    flex-direction:column;

    gap:30px;

}

.sidebar-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:35px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.sidebar-card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-md);

}

.sidebar-card h3{

    margin:20px 0;

    color:var(--primary);

    font-size:1.5rem;

}

.sidebar-card p{

    color:var(--text-light);

    line-height:1.8;

}

.sidebar-card ul{

    margin-top:25px;

    padding-left:20px;

}

.sidebar-card li{

    margin-bottom:14px;

    color:var(--text);

    line-height:1.7;

}

/* ==========================================================
   EMERGENCY CARD
========================================================== */

.emergency-card{

    background:
        linear-gradient(
            135deg,
            #FFF9F2,
            #FFFFFF
        );

    border-left:5px solid var(--secondary);

}

.emergency-card h3{

    color:var(--primary);

}

.emergency-card li{

    position:relative;

}

.emergency-card li::marker{

    color:var(--secondary);

}

/* ==========================================================
   EXISTING CLIENT CARD
========================================================== */

.sidebar-card .btn-outline{

    margin-top:25px;

    width:100%;

}
/* ==========================================================
   OFFICE LOCATION
========================================================== */

.office-location{

    padding:100px 0;

    background:var(--light);

}

.location-grid{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:50px;

    align-items:center;

}

.location-content{

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:50px;

    box-shadow:var(--shadow-sm);

}

.location-content h2{

    margin:22px 0;

    font-size:2.3rem;

    color:var(--primary);

}

.location-content p{

    color:var(--text-light);

    line-height:1.9;

}

.location-details{

    margin-top:40px;

    display:flex;

    flex-direction:column;

    gap:25px;

}

.location-item{

    display:flex;

    align-items:flex-start;

    gap:20px;

}

.location-icon{

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(0,168,107,.10);

    color:var(--secondary);

    font-size:1.35rem;

    flex-shrink:0;

}

.location-item h4{

    margin-bottom:8px;

    color:var(--primary);

    font-size:1.1rem;

}

.location-item p{

    margin:0;

    color:var(--text-light);

    line-height:1.7;

}

/* ==========================================================
   MAP PLACEHOLDER
========================================================== */

.map-placeholder{

    height:100%;

}

.map-card{

    background:
        linear-gradient(
            135deg,
            #0B1F3A,
            #173962
        );

    border-radius:20px;

    color:#fff;

    min-height:520px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:50px;

    box-shadow:var(--shadow-lg);

    transition:var(--transition);

}

.map-card:hover{

    transform:translateY(-8px);

}

.map-card i{

    font-size:4rem;

    margin-bottom:25px;

    color:#00A86B;

}

.map-card h3{

    font-size:2rem;

    margin-bottom:20px;

}

.map-card p{

    max-width:350px;

    color:rgba(255,255,255,.9);

    line-height:1.8;

}

/* ==========================================================
   CONTACT STATS
========================================================== */

.contact-stats{

    padding:90px 0;

    background:#fff;

}

.stats-grid{

    display:grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(240px,1fr)
        );

    gap:30px;

}

.stat-card{

    background:var(--light);

    padding:40px 30px;

    border-radius:18px;

    text-align:center;

    transition:var(--transition);

    border:1px solid transparent;

}

.stat-card:hover{

    transform:translateY(-8px);

    background:#fff;

    border-color:var(--secondary);

    box-shadow:var(--shadow-md);

}

.stat-card h3{

    color:var(--secondary);

    font-size:1.5rem;

    margin-bottom:15px;

}

.stat-card p{

    color:var(--text-light);

    line-height:1.8;

}

/* ==========================================================
   CALL TO ACTION
========================================================== */

.contact-cta{

    padding:110px 0;

    background:
        linear-gradient(
            135deg,
            #0B1F3A,
            #173962
        );

    position:relative;

    overflow:hidden;

}

.contact-cta::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(
            circle at top right,
            rgba(255,255,255,.08),
            transparent 45%
        );

}

.contact-cta .container{

    position:relative;

    z-index:2;

}

.cta-card{

    max-width:900px;

    margin:auto;

    text-align:center;

    padding:70px 60px;

    border-radius:24px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    color:#fff;

    box-shadow:var(--shadow-lg);

}

.cta-card h2{

    margin:25px 0;

    font-size:2.7rem;
    color:var(--primary);

}

.cta-card p{

    max-width:700px;

    margin:0 auto 40px;

    color:var(--text);

    line-height:1.9;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.contact-cta .btn-outline{

    color:#fff;

    border-color:rgba(255,255,255,.30);

}

.contact-cta .btn-outline:hover{

    background:#fff;

    color:var(--primary);

}

/* ==========================================================
   ANIMATIONS
========================================================== */

.contact-card,
.sidebar-card,
.stat-card,
.location-content,
.office-content,
.map-card{

    animation:fadeUp .7s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ==========================================================
   LINKS
========================================================== */

a{

    transition:var(--transition);

}

a:hover{

    text-decoration:none;

}

/* ==========================================================
   ICONS
========================================================== */

.contact-icon,
.location-icon{

    transition:var(--transition);

}

.contact-card:hover .contact-icon,

.location-item:hover .location-icon{

    transform:scale(1.08);

    background:var(--secondary);

    color:#fff;

}

/* ==========================================================
   LARGE DESKTOP
========================================================== */

@media (min-width:1400px){

    .container{

        max-width:1320px;

    }

    .page-hero h1{

        font-size:4rem;

    }

    .cta-card{

        max-width:1000px;

    }

}

/* ==========================================================
   LAPTOP
========================================================== */

@media (max-width:1200px){

    .page-hero{

        padding:110px 0 85px;

    }

    .page-hero h1{

        font-size:3rem;

    }

    .section-heading h2{

        font-size:2.3rem;

    }

    .office-grid,

    .contact-grid,

    .location-grid{

        gap:40px;

    }

}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width:992px){

    .office-grid,

    .contact-grid,

    .location-grid{

        grid-template-columns:1fr;

    }

    .contact-cards{

        grid-template-columns:repeat(2,1fr);

    }

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .form-grid{

        grid-template-columns:1fr;

    }

    .page-hero h1{

        font-size:2.6rem;

    }

    .office-content,

    .contact-form-wrapper,

    .location-content{

        padding:40px;

    }

    .map-card{

        min-height:400px;

    }

    .cta-card{

        padding:55px 40px;

    }

}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width:768px){

    section{

        padding-left:0;

        padding-right:0;

    }

    .page-hero{

        padding:80px 0 60px;

    }

    .page-hero h1{

        font-size:2.2rem;

    }

    .page-hero p{

        font-size:1rem;

    }

    .section-heading{

        margin-bottom:45px;

    }

    .section-heading h2{

        font-size:2rem;

    }

    .contact-cards,

    .stats-grid{

        grid-template-columns:1fr;

    }

    .office-content,

    .office-card,

    .contact-form-wrapper,

    .sidebar-card,

    .location-content{

        padding:30px;

    }

    .hour-item{

        flex-direction:column;

        align-items:flex-start;

        gap:8px;

    }

    .checkbox-group label{

        flex-direction:row;

        align-items:flex-start;

    }

    .btn-primary,

    .btn-outline{

        width:100%;

    }

    .cta-buttons{

        flex-direction:column;

        align-items:stretch;

    }

    .cta-card{

        padding:45px 28px;

    }

    .cta-card h2{

        font-size:2rem;

    }

    .map-card{

        min-height:320px;

        padding:35px;

    }

}

/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width:480px){

    .container{

        width:94%;

    }

    .hero-badge{

        font-size:.75rem;

        padding:8px 16px;

    }

    .page-hero h1{

        font-size:1.9rem;

    }

    .section-heading h2{

        font-size:1.75rem;

    }

    .contact-card,

    .office-content,

    .office-card,

    .contact-form-wrapper,

    .sidebar-card,

    .location-content{

        padding:24px;

    }

    .contact-icon,

    .location-icon{

        width:55px;

        height:55px;

        font-size:1.2rem;

    }

    .contact-card h3,

    .sidebar-card h3{

        font-size:1.3rem;

    }

    .cta-card{

        padding:35px 22px;

    }

    .cta-card h2{

        font-size:1.7rem;

    }

    .map-card h3{

        font-size:1.5rem;

    }

}

/* ==========================================================
   ACCESSIBILITY
========================================================== */

button:focus-visible,

input:focus-visible,

textarea:focus-visible,

select:focus-visible,

a:focus-visible{

    outline:3px solid rgba(0,168,107,.35);

    outline-offset:3px;

    border-radius:8px;

}

/* ==========================================================
   CUSTOM SCROLLBAR
========================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#EEF2F5;

}

::-webkit-scrollbar-thumb{

    background:var(--secondary);

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:#00915D;

}

/* ==========================================================
   SELECTION
========================================================== */

::selection{

    background:var(--secondary);

    color:#fff;

}

/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion:reduce){

    *{

        animation:none !important;

        transition:none !important;

        scroll-behavior:auto !important;

    }

}

/* ==========================================================
   PRINT
========================================================== */

@media print{

    .page-hero,

    .contact-cta,

    .btn-primary,

    .btn-outline{

        display:none !important;

    }

    body{

        background:#fff;

        color:#000;

    }

    .contact-card,

    .sidebar-card,

    .office-content,

    .location-content{

        box-shadow:none;

        border:1px solid #ccc;

    }

}

/* ==========================================================
   DARK MODE PREPARATION
========================================================== */

@media (prefers-color-scheme:dark){

    body.light-mode .contact-card,

    body.light-mode .office-content,

    body.light-mode .sidebar-card,

    body.light-mode .location-content{

        background:#fff;

    }

}

/* ==========================================================
   FINAL POLISH
========================================================== */

html{

    scroll-behavior:smooth;

}

img{

    display:block;

    max-width:100%;

    height:auto;

}

button,

input,

textarea,

select{

    font-family:inherit;

}

button{

    -webkit-tap-highlight-color:transparent;

}

.contact-card,

.office-card,

.sidebar-card,

.stat-card,

.location-content,

.office-content,

.map-card,

.btn-primary,

.btn-outline{

    will-change:transform;

}

.contact-card,

.office-card,

.sidebar-card,

.stat-card,

.location-content,

.office-content,

.map-card{

    transition:

        transform .3s ease,

        box-shadow .3s ease,

        border-color .3s ease,

        background .3s ease;

}

@media (max-width: 480px) {
    .client-brand-title { display: none; }
    .topbar-profile-link span { display: none; }
    .client-topbar-tag { display: none; }
}