/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* Hero Section for About Page */
.about-hero {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0ea 100%);
    border-radius: 48px;
    margin-bottom: 60px;
    overflow: hidden;
}

.about-hero-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
    padding: 64px;
}

.about-hero-content {
    flex: 1;
}

.about-hero-badge {
    background: rgba(199, 161, 122, 0.15);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #c7a17a;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: #1a1e24;
}

.about-hero-content p {
    font-size: 1.1rem;
    color: #5a5855;
    line-height: 1.6;
    max-width: 550px;
}

.about-hero-image {
    flex: 1;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.2);
}

.about-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-hero-image:hover img {
    transform: scale(1.02);
}

/* Mission & Vision Cards */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.mission-card, .vision-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 48px 40px;
    text-align: center;
    border: 1px solid #f0ece8;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 35px -15px rgba(0, 0, 0, 0.08);
    border-color: #e6d9cf;
}

.mission-icon, .vision-icon {
    font-size: 3rem;
    color: #c7a17a;
    margin-bottom: 24px;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1e24;
}

.mission-card p, .vision-card p {
    color: #6c6a67;
    line-height: 1.6;
    font-size: 1rem;
}

/* Timeline Section */
.timeline-section {
    background: #faf8f5;
    border-radius: 48px;
    padding: 64px;
    margin-bottom: 80px;
}

.timeline-title {
    text-align: center;
    margin-bottom: 56px;
}

.timeline-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.timeline-title p {
    color: #6c6a67;
    max-width: 600px;
    margin: 0 auto;
}

.timeline-grid {
    display: flex;
    flex-direction: column;
    position: relative;
}

.timeline-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #e0d5c9, #c7a17a, #e0d5c9);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 48px;
    position: relative;
}

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

.timeline-year {
    flex: 0.8;
    text-align: right;
    font-size: 2.5rem;
    font-weight: 800;
    color: #c7a17a;
    letter-spacing: -1px;
}

.timeline-item:nth-child(even) .timeline-year {
    text-align: left;
}

.timeline-dot {
    position: relative;
    width: 16px;
    height: 16px;
    background: #c7a17a;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(199, 161, 122, 0.2);
    flex-shrink: 0;
}

.timeline-content {
    flex: 2;
    background: #ffffff;
    padding: 24px 32px;
    border-radius: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1e24;
}

.timeline-content p {
    color: #6c6a67;
    line-height: 1.5;
}

/* Values Section */
.values-section {
    margin-bottom: 80px;
}

.values-header {
    text-align: center;
    margin-bottom: 56px;
}

.values-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.values-header p {
    color: #6c6a67;
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid #f0ece8;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: #c7a17a;
    box-shadow: 0 20px 30px -12px rgba(199, 161, 122, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #f3ede8;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: #c7a17a;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: #c7a17a;
    color: white;
    transform: scale(1.05);
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-card p {
    color: #6c6a67;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Team Section */
.team-section {
    background: #ffffff;
    margin-bottom: 80px;
}

.team-header {
    text-align: center;
    margin-bottom: 56px;
}

.team-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.team-header p {
    color: #6c6a67;
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    text-align: center;
    transition: all 0.3s ease;
}

.team-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

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

.team-card:hover .team-image {
    transform: scale(1.05);
    box-shadow: 0 20px 35px -12px rgba(199, 161, 122, 0.3);
}

.team-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-title {
    color: #c7a17a;
    font-weight: 500;
    margin-bottom: 12px;
}

.team-bio {
    color: #6c6a67;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, #2c2b28 0%, #1a1e24 100%);
    border-radius: 48px;
    padding: 64px;
    text-align: center;
    color: white;
}

.about-cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-cta p {
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto 32px;
}

.about-cta .btn-primary {
    background: #c7a17a;
    color: #1a1e24;
}

.about-cta .btn-primary:hover {
    background: #dab88f;
    transform: translateY(-3px);
}

/* Responsive for About Page */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-year {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .about-hero-inner {
        padding: 40px;
        flex-direction: column;
    }
    
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-section {
        padding: 40px 24px;
    }
    
    .timeline-grid::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 40px;
    }
    
    .timeline-year {
        text-align: left !important;
        font-size: 1.5rem;
    }
    
    .timeline-dot {
        position: absolute;
        left: -30px;
        top: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta {
        padding: 48px 24px;
    }
    
    .about-cta h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .mission-card, .vision-card {
        padding: 32px 24px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .team-image {
        width: 160px;
        height: 160px;
    }
}