/* About Us page styles */

.about-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary-text-color, #555);
}
.about-intro a {
    color: var(--ghost-accent-color, #f87d25);
    font-weight: 600;
}

/* Section titles */
.about-section-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    color: var(--primary-foreground-color, #222);
}

/* Why Choose NashFix — cards grid */
.about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 3rem;
}
.about-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    background: var(--background-color, #fff);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    border-top: 4px solid var(--ghost-accent-color, #f87d25);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.about-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.about-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(248, 125, 37, 0.1);
    border-radius: 50%;
    margin-bottom: 16px;
}
.about-card-icon i {
    font-size: 1.4rem;
    color: var(--ghost-accent-color, #f87d25);
}
.about-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--primary-foreground-color, #222);
}
.about-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--secondary-text-color, #555);
    margin: 0;
}

/* Credentials section */
.about-credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 3rem;
}
.about-credential {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--background-color, #fff);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    border-left: 4px solid var(--ghost-accent-color, #f87d25);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.about-credential:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.about-credential-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(248, 125, 37, 0.1);
    border-radius: 10px;
}
.about-credential-icon i {
    font-size: 1.2rem;
    color: var(--ghost-accent-color, #f87d25);
}
.about-credential-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--primary-foreground-color, #222);
}
.about-credential-text p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--secondary-text-color, #555);
    margin: 0;
}

/* CTA section */
.about-cta {
    max-width: 1000px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 40px 32px;
    background: linear-gradient(135deg, #f87d25 0%, #e6701e 100%);
    border-radius: 16px;
    color: #fff;
}
.about-cta-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}
.about-cta-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.95;
}
.about-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.2s;
}
.about-cta-btn:hover {
    transform: scale(1.05);
}
.about-cta-btn.primary {
    background: #fff;
    color: #f87d25;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.about-cta-btn.secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}
.about-cta-btn.secondary:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
}
.about-cta-btn i {
    font-size: 1.1rem;
}

/* Service areas */
.about-areas {
    max-width: 1000px;
    margin: 0 auto 2rem;
    text-align: center;
}
.about-areas-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    color: var(--primary-foreground-color, #222);
}
.about-areas-list {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--secondary-text-color, #555);
}

/* Responsive */
@media (max-width: 768px) {
    .about-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0;
    }
    .about-card {
        padding: 24px 20px;
    }
    .about-credentials {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0;
    }
    .about-credential {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
        border-left: 1px solid rgba(0,0,0,0.06);
        border-top: 4px solid var(--ghost-accent-color, #f87d25);
    }
    .about-credential-icon {
        border-radius: 50%;
    }
    .about-cta {
        padding: 32px 20px;
    }
    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .about-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- DARK THEME --- */
[data-theme="dark"] .about-card {
    background-color: #2a2a2a;
    border-color: #4B5563;
    border-top-color: var(--ghost-accent-color, #f87d25);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.4);
}
[data-theme="dark"] .about-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
[data-theme="dark"] .about-card-icon {
    background: rgba(248, 125, 37, 0.15);
}
[data-theme="dark"] .about-card h3 {
    color: #F9FAFB;
}
[data-theme="dark"] .about-card p {
    color: #9CA3AF;
}
[data-theme="dark"] .about-credential {
    background-color: #2a2a2a;
    border-color: #4B5563;
    border-left-color: var(--ghost-accent-color, #f87d25);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.4);
}
[data-theme="dark"] .about-credential:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
[data-theme="dark"] .about-credential-icon {
    background: rgba(248, 125, 37, 0.15);
}
[data-theme="dark"] .about-credential-text h4 {
    color: #F9FAFB;
}
[data-theme="dark"] .about-credential-text p {
    color: #9CA3AF;
}
[data-theme="dark"] .about-section-title {
    color: #F9FAFB;
}
[data-theme="dark"] .about-intro {
    color: #9CA3AF;
}
[data-theme="dark"] .about-areas-title {
    color: #F9FAFB;
}
[data-theme="dark"] .about-areas-list {
    color: #9CA3AF;
}
@media (max-width: 768px) {
    [data-theme="dark"] .about-credential {
        border-left-color: #4B5563;
        border-top-color: var(--ghost-accent-color, #f87d25);
    }
}
