/*
Theme Name: A1 Credit Solutions
Theme URI: https://a1creditsolutions.com
Author: A1 Credit Team
Author URI: https://a1creditsolutions.com
Description: Professional credit repair theme – Better credit for a better life.
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: a1-credit-solutions
*/

:root {
    --clr-primary: #0a2e1f;
    --clr-primary-light: #0e3d29;
    --clr-accent: #2ecc71;
    --clr-accent-hover: #27ae60;
    --clr-accent-soft: #d5f5e3;
    --clr-pastel: #a8e6cf;
    --clr-bg-dark: #061a10;
    --clr-bg-card: #0a2e1f;
    --clr-bg-elevated: #0f3d2a;
    --clr-text: #ffffff;
    --clr-text-light: #d5f5e3;
    --clr-border: #1e6b3e;
    --clr-success: #2ecc71;
    --clr-gradient: linear-gradient(135deg, #061a10 0%, #0a2e1f 100%);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.5);
    --shadow-xl: 0 30px 60px rgba(0,0,0,0.6);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    background: var(--clr-bg-dark);
}
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--clr-text);
    background: var(--clr-bg-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; transition:var(--transition-base); }
ul { list-style:none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); }

.section-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--clr-accent);
    margin-bottom: 0.5rem;
}
.section-title { margin-bottom: 1rem; }
.section-desc { font-size: 1rem; color: var(--clr-text-light); max-width: 680px; margin: 0 auto; }

.container { width:100%; max-width:1240px; margin:0 auto; padding:0 24px; }
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn-primary {
    background: var(--clr-accent);
    color: var(--clr-primary);
    border-color: var(--clr-accent);
}
.btn-primary:hover {
    background: var(--clr-accent-hover);
    border-color: var(--clr-accent-hover);
    box-shadow: 0 8px 24px rgba(46,204,113,0.4);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: #fff;
    border-color: var(--clr-accent);
}
.btn-outline:hover {
    background: var(--clr-accent);
    color: var(--clr-primary);
    border-color: var(--clr-accent);
}

.btn:active, button:active { animation: vibrate 0.08s linear; }
@keyframes vibrate {
    0% { transform: translate(0); }
    25% { transform: translate(-1px, 1px); }
    50% { transform: translate(1px, -1px); }
    75% { transform: translate(-1px, -1px); }
    100% { transform: translate(1px, 1px); }
}

/* ---------- HEADER ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(6,26,16,0.92);
    backdrop-filter: blur(12px);
    padding: 12px 0 6px 0;
    transition: background 0.4s, box-shadow 0.4s;
}
.site-header.scrolled {
    background: rgba(6,26,16,0.97);
    box-shadow: var(--shadow-lg);
    padding: 8px 0 4px 0;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1240px; margin: 0 auto; padding: 0 24px; flex-wrap: wrap;
}
.site-branding .logo-text {
    font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
    color: #fff; letter-spacing: -0.5px; white-space: nowrap;
}
.site-branding .logo-text span { color: var(--clr-accent); }

/* Navigation */
.main-navigation ul { display: flex; gap: 28px; align-items: center; }
.main-navigation a {
    color: rgba(255,255,255,0.9); font-weight: 500; font-size: 0.95rem;
    position: relative; padding: 6px 0;
}
.main-navigation a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--clr-accent); transition: width 0.3s;
}
.main-navigation a:hover::after, .main-navigation a.active::after { width: 100%; }
.nav-cta {
    background: var(--clr-accent) !important; padding: 10px 24px !important;
    border-radius: 50px !important;
    color: var(--clr-primary) !important;
}
.nav-cta::after { display: none; }

.main-navigation .menu-icon { display: none; }

/* Mobile menu */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: #fff; margin: 6px 0; transition: 0.3s; }
.menu-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 999;
    opacity: 0; visibility: hidden; transition: 0.3s;
}
.menu-overlay.active { opacity: 1; visibility: visible; }

@media (max-width: 992px) {
    .menu-toggle { display: block; }
    .main-navigation ul {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: var(--clr-bg-dark); flex-direction: column;
        padding: 24px 24px 32px; gap: 14px; transition: right 0.4s ease;
        z-index: 1001; overflow-y: auto; border-left: 2px solid var(--clr-accent);
    }
    .main-navigation ul.open { right: 0; }
    .menu-close {
        display: block; color: #fff; font-size: 1.8rem; align-self: flex-end;
        cursor: pointer; margin-bottom: 20px; background: none; border: none;
    }
    .menu-phone {
        margin-top: auto; padding-top: 20px;
        border-top: 1px solid var(--clr-border); font-size: 1.1rem; color: var(--clr-accent);
    }
    .main-navigation a { font-size: 1.1rem; }
    .main-navigation .menu-icon { display: inline; margin-right: 8px; width: 20px; text-align: center; }
}

@media (max-width: 768px) {
    .menu-close {
        display: flex; justify-content: center; align-items: center;
        width: 45px; height: 45px; margin: 10px auto;
        border-radius: 999px; background: rgba(255,255,255,0.08);
        border: 1px solid var(--clr-border); font-size: 24px;
        color: #fff; cursor: pointer; transition: 0.3s ease;
    }
    .menu-close:hover { background: var(--clr-accent); color: #000; transform: scale(1.05); }
    .menu-phone { margin-top: 15px; display: block; }
    .nav-cta { margin-top: 10px; display: inline-block; }
}

/* ---------- HERO ---------- */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    background: var(--clr-gradient); overflow: hidden; padding-top: 120px;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    opacity: 0.05; background: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?q=80&w=2011') center/cover no-repeat;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero .container {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-content { color: #fff; }
.hero-badge {
    display: inline-block; background: rgba(46,204,113,0.15);
    border: 1px solid rgba(46,204,113,0.4); color: var(--clr-accent);
    padding: 8px 20px; border-radius: 50px; font-weight: 600;
    font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 24px;
}
.hero-content h1 { color: var(--clr-accent); margin-bottom: 20px; }
.hero-content h1 span { color: #fff; }
.hero-content p { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-stats {
    display: flex; justify-content: space-between; gap: 40px; margin-top: 48px;
    flex-wrap: nowrap;
}
.hero-stat { text-align: center; flex: 1; }
.hero-stat h3 { font-size: 2rem; color: var(--clr-accent); }
.hero-stat p { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.hero-visual { position: relative; }
.hero-visual img {
    border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
    border: 3px solid rgba(255,255,255,0.1);
}

@media (max-width: 992px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; gap: 20px; }
    .hero-stat h3 { font-size: 1.5rem; }
    .hero-visual { max-width: 400px; margin: 0 auto; }
}

/* ---------- CREDIT SCORE CARD ---------- */
.credit-score-section {
    background: var(--clr-gradient);
    padding: 60px 0;
}
.credit-score-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.score-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--clr-accent);
    font-family: var(--font-heading);
}
.score-label {
    font-size: 1rem;
    color: var(--clr-text-light);
}
.score-range {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 0 40px;
}
.score-improvement {
    background: var(--clr-success);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    margin-top: 20px;
    color: var(--clr-primary);
    font-weight: bold;
}

/* ---------- ABOUT SECTION ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-image-wrapper {
    position: relative;
}
.about-image-wrapper img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: auto;
    box-shadow: var(--shadow-lg);
}
.about-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--clr-accent);
    color: var(--clr-primary);
    border-radius: var(--radius-md);
    padding: 20px 25px;
    text-align: center;
    font-weight: bold;
}
.about-experience .number {
    font-size: 2rem;
    font-weight: 800;
}
.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}
.about-feature {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.about-feature i {
    color: var(--clr-accent);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-features {
        justify-content: center;
    }
}

/* ---------- COUNTER SECTION ---------- */
.counter-section {
    background: var(--clr-gradient);
    padding: 70px 0;
}
.counters-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.counter-item {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    min-width: 200px;
    text-align: center;
    flex: 1;
}
.counter-icon i {
    font-size: 2.5rem;
    color: var(--clr-accent);
    margin-bottom: 15px;
}
.counter-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--clr-accent);
    font-weight: 700;
}
.counter-label {
    color: var(--clr-text-light);
    margin-top: 10px;
}

@media (max-width: 480px) {
    .counter-item { flex: 1 1 45%; min-width: 45%; }
    .counters-grid { gap: 16px; }
}

/* ---------- SERVICES SECTION (Items We Remove) ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-accent);
    box-shadow: var(--shadow-lg);
}
.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(46,204,113,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.service-icon i {
    font-size: 2rem;
    color: var(--clr-accent);
}
.service-card h3 {
    margin-bottom: 15px;
}
.service-card p {
    color: var(--clr-text-light);
    margin-bottom: 20px;
}
.service-link {
    color: var(--clr-accent);
    font-weight: 600;
}
.service-link:hover {
    text-decoration: underline;
}

/* ---------- PROCESS SECTION ---------- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}
.process-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}
.process-card:hover {
    transform: translateY(-4px);
    border-color: var(--clr-accent);
}
.process-number {
    width: 60px;
    height: 60px;
    background: var(--clr-accent);
    color: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}
.process-card h3 {
    margin-bottom: 15px;
}
.process-card p {
    color: var(--clr-text-light);
}

/* ---------- WHY CHOOSE US ---------- */
.whyus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.whyus-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
}
.whyus-card i {
    font-size: 3rem;
    color: var(--clr-accent);
    margin-bottom: 20px;
}
.whyus-card h3 {
    margin-bottom: 15px;
}
.whyus-card p {
    color: var(--clr-text-light);
}

/* ---------- SERVICE AREAS ---------- */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.area-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
}
.area-card h4 {
    color: var(--clr-accent);
    margin-bottom: 15px;
}
.area-capsules {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.capsule {
    background: var(--clr-bg-elevated);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid var(--clr-border);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
    padding: 80px 0;
}
.testimonial-slider {
    overflow: hidden;
    padding: 20px 0;
}
.testimonial-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
}
.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid var(--clr-accent);
}
.testimonial-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.testimonial-stars {
    color: #f1c40f;
    margin-bottom: 15px;
}
.testimonial-text {
    color: var(--clr-text-light);
    font-style: italic;
}

/* ---------- CONTACT SECTION ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
}
.contact-info-card,
.contact-form {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 30px;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: 0.3s;
}
.contact-info-item:hover {
    background: rgba(46,204,113,0.1);
    transform: translateX(5px);
}
.contact-info-item i {
    width: 40px;
    height: 40px;
    background: rgba(46,204,113,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    font-size: 1.2rem;
}
.contact-info-item strong {
    display: block;
    color: var(--clr-accent);
}
.contact-info-item span {
    color: var(--clr-text-light);
    font-size: 0.9rem;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--clr-text-light);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--clr-bg-dark);
    border: 1px solid var(--clr-border);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-body);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-accent);
}
.success-message {
    display: none;
    background: var(--clr-success);
    color: var(--clr-primary);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    background: var(--clr-gradient);
    padding: 80px 0;
    text-align: center;
}
.cta-section h2 {
    margin-bottom: 20px;
}
.cta-section p {
    color: var(--clr-text-light);
    max-width: 500px;
    margin: 0 auto 30px;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: #051408;
    padding: 60px 0 0;
    color: var(--clr-text-light);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h4 {
    margin-bottom: 20px;
    color: var(--clr-accent);
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a:hover {
    color: var(--clr-accent);
}
.footer-bottom {
    text-align: center;
    padding: 24px 0;
}

/* ---------- ANIMATIONS ---------- */
.btn-primary {
    animation: softPulse 2.5s infinite;
}
@keyframes softPulse {
    0% { transform: scale(1); box-shadow: 0 8px 24px rgba(46,204,113,0.25); }
    50% { transform: scale(1.03); box-shadow: 0 12px 30px rgba(46,204,113,0.45); }
    100% { transform: scale(1); box-shadow: 0 8px 24px rgba(46,204,113,0.25); }
}



.main-navigation ul { 
    display: flex; 
    gap: 28px; 
    align-items: center;
    flex-wrap: nowrap; /* THIS FIXES IT - prevents wrapping */
}

/* Desktop menu - prevent wrapping */
@media (min-width: 993px) {
    .main-navigation ul {
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
    }
    .main-navigation li {
        display: inline-block !important;
        white-space: nowrap !important;
    }
    .main-navigation a {
        white-space: nowrap !important;
    }
    .header-inner {
        flex-wrap: nowrap !important;
    }
}

/* Desktop header - stack logo and menu */
@media (min-width: 993px) {
    .header-inner {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .site-branding {
        width: 100%;
        text-align: center;
    }
    
    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Keep same font size for Developed by ShanZaib.com on all devices */
.developer-credit,
.developer-credit a,
.menu-phone span,
.menu-phone span a,
.footer-bottom p:last-child,
.footer-bottom p:last-child a,
span[style*="font-size:10px"],
span[style*="font-size:10px"] a {
    font-size: 10px !important;
    font-family: inherit !important;
}

.footer-bottom p:last-child {
    font-size: 10px !important;
}

.footer-bottom p:last-child a {
    font-size: 10px !important;
    text-decoration: underline;
}

/* Hide developer credit from mobile menu */
.menu-phone span {
    display: none;
}


/* Split "Better Credit Better Life" into 2 lines */
.hero-content h1 span {
    display: block;
    line-height: 1.2;
}



/* Reduce top padding on mobile only */
@media (max-width: 768px) {
    .hero {
        padding-top: 80px !important;
    }
}





/* Mobile menu adjustments - without affecting CTA button */
@media (max-width: 768px) {
    /* Bring phone number up */
    .menu-phone {
        margin-top: 30px !important;
        padding-top: 10px !important;
    }
    
    /* Reduce gap between menu items - EXCEPT CTA */
    .main-navigation ul {
        gap: 20px !important;
    }
    
    /* Reduce padding on menu links - EXCLUDING nav-cta */
    .main-navigation a:not(.nav-cta) {
        padding: 20px 0 !important;
    }
}



/* Fix mobile menu close button visibility */
.menu-close {
    display: flex !important;
}



/* Dim the hero paragraph text */
.hero-content p {
    opacity: 0.85;
}



/* Reduce opacity of hero image */
.hero-visual img {
    opacity: 0.75;
}










/* About feature capsule colors: Blue, Pink, Purple, Yellow, Purple */
.about-feature:nth-child(1){border-color:#6bb6ff;color:#6bb6ff} /* Blue */
.about-feature:nth-child(2){border-color:#ff8fc7;color:#ff8fc7} /* Pink */
.about-feature:nth-child(3){border-color:#b892ff;color:#b892ff} /* Purple */
.about-feature:nth-child(4){border-color:#e6d36f;color:#e6d36f} /* Yellow */
.about-feature:nth-child(5){border-color:#b892ff;color:#b892ff} /* Purple */

/* Tick icon colors match each feature */
.about-feature:nth-child(1) i{color:#6bb6ff}
.about-feature:nth-child(2) i{color:#ff8fc7}
.about-feature:nth-child(3) i{color:#b892ff}
.about-feature:nth-child(4) i{color:#e6d36f}
.about-feature:nth-child(5) i{color:#b892ff}



/* Counter section soft colors (low contrast, updated: green instead of pink) */

/* 1. Blue - Negative Items Removed */
.counter-item:nth-child(1) .counter-icon,
.counter-item:nth-child(1) .counter-number,
.counter-item:nth-child(1) i{color:#8ec5ff}

/* 2. Green - Satisfied Clients */
.counter-item:nth-child(2) .counter-icon,
.counter-item:nth-child(2) .counter-number,
.counter-item:nth-child(2) i{color:#7ee8a6}

/* 3. Purple - Avg Points Increase */
.counter-item:nth-child(3) .counter-icon,
.counter-item:nth-child(3) .counter-number,
.counter-item:nth-child(3) i{color:#c7a6ff}

/* 4. Yellow - Credit Bureaus */
.counter-item:nth-child(4) .counter-icon,
.counter-item:nth-child(4) .counter-number,
.counter-item:nth-child(4) i{color:#f2e6a2}



/* Service cards psychological soft colors (low contrast with dark theme) */

/* 1. Collections - Trust Blue */
.service-card:nth-child(1) .service-icon,
.service-card:nth-child(1) h3,
.service-card:nth-child(1) i{color:#8ec5ff}

/* 2. Late Payments - Stability Green */
.service-card:nth-child(2) .service-icon,
.service-card:nth-child(2) h3,
.service-card:nth-child(2) i{color:#7ee8a6}

/* 3. Foreclosures - Calm Orange (warning but soft) */
.service-card:nth-child(3) .service-icon,
.service-card:nth-child(3) h3,
.service-card:nth-child(3) i{color:#ffc48a}

/* 4. Charge-offs - Soft Red (loss/risk) */
.service-card:nth-child(4) .service-icon,
.service-card:nth-child(4) h3,
.service-card:nth-child(4) i{color:#ff9aa2}

/* 5. Bankruptcy - Deep Purple (reset/rebuild) */
.service-card:nth-child(5) .service-icon,
.service-card:nth-child(5) h3,
.service-card:nth-child(5) i{color:#c7a6ff}

/* 6. Judgments - Soft Indigo (legal authority) */
.service-card:nth-child(6) .service-icon,
.service-card:nth-child(6) h3,
.service-card:nth-child(6) i{color:#aab6ff}

/* 7. Repossessions - Muted Teal (recovery) */
.service-card:nth-child(7) .service-icon,
.service-card:nth-child(7) h3,
.service-card:nth-child(7) i{color:#7fd6c2}

/* 8. Tax Liens - Soft Gold (financial burden) */
.service-card:nth-child(8) .service-icon,
.service-card:nth-child(8) h3,
.service-card:nth-child(8) i{color:#f2e6a2}

/* 9. Inquiries - Light Blue Gray (neutral impact) */
.service-card:nth-child(9) .service-icon,
.service-card:nth-child(9) h3,
.service-card:nth-child(9) i{color:#b8c7d9}




/* hide checkbox */
.toggle-box{
  display:none;
}

/* layout */
.area-capsules{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
}

/* hidden extra states */
.more-states{
  display:none;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
  margin-top:8px;
}

/* show on toggle */
.toggle-box:checked ~ .area-capsules .more-states{
  display:flex;
}

/* button style */
.view-more-btn{
  display:block;
  margin:12px auto 0;
  text-align:center;
  background:#0a2e1f;
  color:#d5f5e3;
  border:1px solid #1e6b3e;
  padding:6px 14px;
  border-radius:20px;
  cursor:pointer;
}

/* button text */
.view-more-btn::after{
  content:"View more";
}

/* toggle text */
.toggle-box:checked ~ .view-more-btn::after{
  content:"View less";
}


/* reduce button width/padding only */
.view-more-btn{padding:4px 10px;font-size:13px}

/* shrink button width horizontally */
.view-more-btn{
  display:inline-block;
  padding:4px 10px;
  font-size:13px;
  width:auto;
  min-width:unset;
  max-width:max-content;
}





/* Main area headings (Northwest, Midwest, etc.) */
.area-card h4{
  color:#d5f5e3;
  border-left:3px solid #2ecc71;
  padding-left:8px;
}

/* Capsules base style */
.capsule{
  border:1px solid #1e6b3e;
  color:#d5f5e3;
}

/* Region-based capsule colors */

/* Northeast - Blue */
.area-card:nth-child(1) .capsule{
  border-color:#8ec5ff;
  color:#8ec5ff;
}

/* Midwest - Green */
.area-card:nth-child(2) .capsule{
  border-color:#7ee8a6;
  color:#7ee8a6;
}

/* South - Purple */
.area-card:nth-child(3) .capsule{
  border-color:#c7a6ff;
  color:#c7a6ff;
}

/* Southwest - Yellow */
.area-card:nth-child(4) .capsule{
  border-color:#f2e6a2;
  color:#f2e6a2;
}

/* West - Teal */
.area-card:nth-child(5) .capsule{
  border-color:#7fd6c2;
  color:#7fd6c2;
}


/* Force original contact card dimensions on mobile */
@media (max-width: 768px) {
    .contact-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    .contact-info-card, 
    .contact-form {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 22px !important;
        box-sizing: border-box !important;
    }
}






