/* ======================================
   About Hero
   ====================================== */
.about-hero {
    min-height: 80vh;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 50%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%23d4a574" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.about-hero-label {
    color: var(--gold-primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.about-hero-subtitle {
    color: var(--gold-primary);
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.about-hero-image {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.about-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-hero-badges {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.about-hero-badges .badge {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.4);
    white-space: nowrap;
}

/* ======================================
   Philosophy
   ====================================== */
.philosophy {
    padding: 80px 0;
    background: var(--white);
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-quote {
    position: relative;
    margin-bottom: 40px;
}

.philosophy-quote i {
    font-size: 3rem;
    color: var(--gold-primary);
    opacity: 0.3;
    margin-bottom: 20px;
}

.philosophy-quote h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-primary);
    line-height: 1.6;
    margin-bottom: 0;
}

.philosophy-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

/* ======================================
   Timeline
   ====================================== */
.timeline-section {
    padding: var(--section-padding);
    background: var(--gray-light);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold-primary), var(--gold-dark));
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    padding-right: 50px;
    padding-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    padding-left: 50px;
    padding-right: 0;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px var(--gray-light), 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.timeline-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold-primary);
    font-family: var(--font-serif);
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.timeline-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 10px;
}

.timeline-subtitle {
    color: var(--gold-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ======================================
   Achievements
   ====================================== */
.achievements {
    padding: var(--section-padding);
    background: var(--white);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.achievement-card {
    background: var(--gray-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
    border-top: 4px solid var(--gold-primary);
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-primary);
}

.achievement-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 15px;
}

.achievement-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ======================================
   Core Values
   ====================================== */
.core-values {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-dark));
    color: var(--white);
}

.core-values .section-title,
.core-values .section-subtitle {
    color: var(--white);
}

.core-values .section-subtitle {
    color: var(--gold-primary);
}

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

.value-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px 30px;
    border-radius: 15px;
    border-left: 4px solid var(--gold-primary);
    transition: var(--transition-smooth);
}

.value-block:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.value-block h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-block h3 i {
    color: var(--gold-primary);
}

.value-block p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

/* ======================================
   Responsive Design
   ====================================== */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-hero-badges {
        position: static;
        transform: none;
        margin-top: 20px;
    }
    
    .philosophy-quote h2 {
        font-size: 1.5rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
    }
    
    .timeline-marker {
        left: 30px;
        width: 60px;
        height: 60px;
    }
    
    .timeline-number {
        font-size: 1.2rem;
    }
    
    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        text-align: left;
        padding: 25px;
        margin-left: 100px;
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .timeline-title {
        font-size: 1.2rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .values-content {
        grid-template-columns: 1fr;
    }
}
