/* About Page - Modern Dark Theme */

.about-page {
    padding: var(--space-xl) 0 var(--space-3xl);
}

/* Story Section */
.story-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin-bottom: var(--space-xl);
    border: 1px solid var(--color-border);
}

.story-content h2 {
    margin-bottom: var(--space-lg);
}

.story-content h2 .accent-text {
    color: var(--color-primary);
}

.story-content p {
    margin-bottom: var(--space-md);
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.story-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(40px);
}

.about-logo {
    max-width: 280px;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 30px rgba(220, 38, 38, 0.3));
}

/* Values Section */
.values-section {
    margin-bottom: var(--space-xl);
}

.values-section h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.value-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #991b1b 100%);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.value-icon svg {
    fill: white;
}

.value-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.value-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Service Area Section */
.service-area-section {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    border: 1px solid var(--color-border);
    text-align: center;
}

.service-area-section h2 {
    margin-bottom: var(--space-xs);
}

.service-intro {
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: var(--space-sm);
}

.area-item {
    padding: var(--space-sm) var(--space-md);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.area-item:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* Team Section */
.team-section {
    margin-bottom: var(--space-xl);
}

.team-section h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.team-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-fast);
}

.team-card:hover {
    border-color: var(--color-primary);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--color-bg-elevated);
    border: 3px solid var(--color-primary);
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.team-card h3 {
    margin-bottom: var(--space-xs);
}

.team-role {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.team-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, #991b1b 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-cta h2 {
    color: white;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.about-cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.about-cta .btn-chrome {
    background: white;
    color: var(--color-primary);
}

.about-cta .btn-chrome:hover {
    background: rgba(255, 255, 255, 0.9);
}

.about-cta .btn-outline {
    border-color: white;
    color: white;
}

.about-cta .btn-outline:hover {
    background: white;
    color: var(--color-primary);
}

/* Stats Grid */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.stat-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.stat-label {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .story-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .story-image {
        order: -1;
    }

    .about-logo {
        max-width: 200px;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-section {
        grid-template-columns: 1fr;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .about-cta-buttons .btn {
        width: 100%;
    }
}
