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

/* Page Header */
.page-header {
    background: var(--navy-deep);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    letter-spacing: 3px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.page-header p {
    color: var(--gray-400);
    font-size: 1.2rem;
    margin-top: 12px;
    position: relative;
    z-index: 1;
}

/* Story Section */
.story {
    padding: 80px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-quote {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 350px;
}

.story-quote blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.7;
    font-weight: 500;
}

.story-quote cite {
    color: var(--yellow-accent);
    font-weight: 600;
    font-size: 1rem;
    font-style: normal;
}

.story-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: var(--navy-deep);
    margin-bottom: 24px;
}

.story-text p {
    color: var(--gray-600);
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.highlight-box {
    background: var(--blue-light);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--blue-primary);
    margin: 24px 0;
}

.highlight-box p {
    color: var(--navy-deep);
    font-weight: 500;
    margin: 0;
    font-style: italic;
}

/* Timeline */
.timeline {
    padding: 80px 0;
    background: var(--off-white);
}

.timeline-items {
    max-width: 800px;
    margin: 48px auto 0;
    position: relative;
}

.timeline-items::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
    transform: translateX(-50%);
}

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

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

.timeline-item .timeline-content {
    width: 45%;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.timeline-item .timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue-primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 1;
}

.timeline-item h3 {
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 8px;
}

.timeline-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
}

/* Values */
.values {
    padding: 80px 0;
    background: var(--white);
}

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

.value-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--blue-light);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--blue-primary);
}

.value-card h3 {
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.value-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--off-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    margin-top: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-primary);
    flex-shrink: 0;
}

.contact-item h4 {
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
    color: var(--gray-600);
    font-size: 0.95rem;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--blue-primary);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-hover));
}

.cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

/* Mobile */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .timeline-items::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
    }
    
    .timeline-item .timeline-content {
        width: 100%;
    }
    
    .timeline-item .timeline-year {
        left: 20px;
        transform: translateX(-50%);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 0 20px;
    }
}
