/* assets/css/about.css */

/* About Hero */
.about-hero {
    padding: 12rem 4rem 4rem;
    background: linear-gradient(135deg, #0A0F1E 0%, #1A1F2E 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-title span {
    color: #D4AF37;
    position: relative;
    display: inline-block;
}

.about-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(212, 175, 55, 0.2);
    z-index: -1;
}

.about-intro {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    border-left: 4px solid #D4AF37;
    padding-left: 2rem;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Content Sections */
.content-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #D4AF37;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #D4AF37;
}

.section-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Philosophy Grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
}

.philosophy-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.philosophy-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #D4AF37;
}

.philosophy-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Timeline */
.timeline {
    margin: 4rem 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #D4AF37, rgba(212, 175, 55, 0.2));
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    min-width: 100px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
    position: relative;
}

.timeline-year::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D4AF37;
    box-shadow: 0 0 20px #D4AF37;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.7);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem 0;
    text-align: center;
}

.stat-block {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-block-number {
    font-size: 3rem;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-block-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    padding: 3rem;
    margin: 4rem 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.testimonial {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: #D4AF37;
    font-weight: 600;
}

.testimonial-location {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 1rem 2rem;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .content-section {
        padding: 0 1rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .testimonials {
        padding: 2rem 1rem;
    }
}