/* About Us Page Specific Styles */

.about-hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--ivory-bg);
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(6, 70, 53, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(212, 173, 96, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-hero h1 {
    font-size: 5.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

.about-hero .subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 2rem;
    display: block;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.about-intro {
    padding: 100px 0;
    background: white;
}

.team-section {
    padding: 120px 0;
    background: var(--ivory-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.team-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    transition: transform 0.4s ease;
}

.team-card:hover {
    transform: translateY(-15px);
}

.team-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.team-info {
    padding: 40px;
}

.team-info h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.team-role {
    color: var(--gold-muted);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.iso-section {
    padding: 100px 0;
    background: var(--emerald-deep);
    color: var(--ivory-bg);
    text-align: center;
}

.iso-section h2 {
    color: var(--ivory-bg);
}

.iso-badge {
    font-size: 4rem;
    margin-bottom: 20px;
}

.ethical-code-section {
    padding: 120px 0;
    background: white;
}

.ethical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ethical-item {
    padding: 40px;
    background: var(--ivory-bg);
    border-radius: 20px;
    border-left: 4px solid var(--gold-muted);
    transition: all 0.3s ease;
}

.ethical-item:hover {
    background: white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.ethical-number {
    font-family: var(--serif-header);
    font-size: 2.5rem;
    color: var(--gold-muted);
    opacity: 0.5;
    margin-bottom: 15px;
    display: block;
}

.ethical-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .about-hero h1 {
        font-size: 3.5rem;
    }
}
