/* About page styles */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #059669;
}

/* Navbar overrides */
.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 2px;
}
.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(102, 126, 234, 0.1);
}
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(102, 126, 234, 0.15);
    font-weight: 600;
}
.navbar { z-index: 1030; }
.dropdown-menu {
    z-index: 1031 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.1);
}
.dropdown-item { transition: all 0.2s ease; }
.dropdown-item:hover {
    background-color: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
}

/* Hero — compact */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 2.5rem 0 2rem;
    text-align: center;
}
.about-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.about-hero__sub {
    font-size: 1rem;
    opacity: 0.92;
    max-width: 600px;
    margin: 0 auto;
}

/* Main content */
.about-main {
    background: #f8fafc;
    padding: 2.5rem 0 3rem;
}
.about-main .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section titles */
.about-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.3rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about-section-sub {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0 0 1.5rem;
}

/* Mission card */
.about-mission {
    background: #fff;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #f0f1f3;
    margin-bottom: 2rem;
}
.about-mission p {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.7;
    margin: 0 0 0.75rem;
}
.about-mission p:last-child { margin-bottom: 0; }

/* Feature grid */
.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.about-feature-card {
    background: #fff;
    border: 1px solid #f0f1f3;
    border-radius: 14px;
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.2s;
}
.about-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102,126,234,0.12);
}
.about-feature-card:hover::before { opacity: 1; }
.about-feature-card i {
    font-size: 1.5rem;
    color: #4f46e5;
    margin-bottom: 0.75rem;
    display: block;
}
.about-feature-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.35rem;
}
.about-feature-card p {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Two-column row */
.about-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.about-col-card {
    background: #fff;
    border: 1px solid #f0f1f3;
    border-radius: 14px;
    padding: 1.75rem;
}
.about-col-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}
.about-col-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.about-col-card ul li {
    font-size: 0.92rem;
    color: #374151;
    padding: 0.4rem 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}
.about-col-card ul li:last-child { border-bottom: none; }
.about-col-card ul li i {
    color: #059669;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Trust strip */
.about-trust-strip {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    margin-bottom: 2.5rem;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}
.about-trust-item {
    text-align: center;
}
.about-trust-item .trust-number {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}
.about-trust-item .trust-label {
    font-size: 0.82rem;
    color: #6b7280;
}

/* CTA banner */
.about-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
}
.about-cta h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.about-cta p {
    font-size: 0.95rem;
    opacity: 0.92;
    margin-bottom: 1.25rem;
}
.about-cta .btn {
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
}
.about-cta .btn-light {
    background: rgba(255,255,255,0.95);
    color: #4f46e5;
    border: none;
}
.about-cta .btn-light:hover {
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.about-cta .btn-outline-light {
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    background: transparent;
}
.about-cta .btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .about-hero { padding: 2rem 0 1.5rem; }
    .about-hero h1 { font-size: 1.6rem; }
    .about-features { grid-template-columns: 1fr; }
    .about-two-col { grid-template-columns: 1fr; }
    .about-trust-strip { gap: 1.5rem; }
}
