/* About Page - Premium Design */

.page-hero {
    padding: var(--space-xxxl) 0 var(--space-xl);
    background: var(--white);
    border-bottom: 1px solid var(--gray-medium);
}

.page-hero h1 {
    font-size: var(--font-size-hero);
    color: var(--black);
    margin-bottom: var(--space-md);
    text-align: center;
}

.page-hero p {
    font-size: var(--font-size-xl);
    color: var(--gray-darker);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.content-section {
    padding: var(--space-xxxl) 0;
}

.content-section:nth-child(even) {
    background: var(--gray-light);
}

.section-image {
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-content h3 {
    font-size: var(--font-size-xl);
    color: var(--black);
    margin-bottom: var(--space-md);
    font-weight: 700;
}

.section-content p {
    font-size: var(--font-size-base);
    color: var(--gray-darker);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.value-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition-base);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -12px;
    bottom: 0;
    width: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.value-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.value-card h4 {
    font-size: var(--font-size-lg);
    color: var(--black);
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.value-card p {
    font-size: var(--font-size-base);
    color: var(--gray-dark);
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xxxl);
}

.section-header h2 {
    font-size: var(--font-size-xxl);
    color: var(--black);
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
    padding-bottom: var(--space-md);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.section-header p {
    font-size: var(--font-size-md);
    color: var(--gray-dark);
    max-width: 700px;
    margin: 0 auto;
}

/* RTL Support */
[dir="rtl"] .section-content {
    text-align: right;
}

[dir="rtl"] .value-card {
    text-align: right;
}

[dir="rtl"] .value-card::before {
    left: auto;
    right: -12px;
}

[dir="rtl"] .value-card:hover {
    transform: translateX(-8px);
}

@media (max-width: 768px) {
    .page-hero {
        padding: var(--space-xl) 0;
    }
    
    .section-image {
        height: 300px;
        margin-bottom: var(--space-lg);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}
