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

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--vintage-cream) 0%, var(--vintage-white) 100%);
    padding: 120px 0 80px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.page-description {
    font-size: 1.2rem;
    color: var(--vintage-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== COMPANY STORY ===== */
.company-story {
    padding: 100px 0;
    background: var(--vintage-white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.story-paragraphs {
    margin-bottom: 3rem;
}

.story-paragraphs p {
    font-size: 1.1rem;
    color: var(--vintage-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(211, 47, 47, 0.05);
    border-left: 4px solid var(--vintage-red);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-light);
}

.highlight-icon {
    font-size: 1.5rem;
    color: var(--vintage-red);
    min-width: 40px;
}

.highlight-text h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--vintage-black);
    margin-bottom: 0.3rem;
}

.highlight-text p {
    color: var(--vintage-gray);
    font-size: 0.9rem;
}

/* ===== VINTAGE TIMELINE ===== */
.timeline-vintage {
    position: relative;
    padding: 2rem 0;
}

.timeline-vintage::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--vintage-red);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 4rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.timeline-item.active,
.timeline-item:hover {
    opacity: 1;
    transform: translateX(10px);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0;
    width: 15px;
    height: 15px;
    background: var(--vintage-white);
    border: 3px solid var(--vintage-red);
    border-radius: 50%;
    z-index: 2;
}

.timeline-year {
    position: absolute;
    left: -4.5rem;
    top: -0.5rem;
    background: var(--vintage-red);
    color: var(--vintage-white);
    padding: 4px 8px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    min-width: 50px;
    text-align: center;
}

.timeline-content {
    background: var(--vintage-cream);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--vintage-gray-light);
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-content,
.timeline-item:hover .timeline-content {
    border-color: var(--vintage-red);
    box-shadow: var(--shadow-light);
}

.timeline-content h4 {
    font-family: var(--font-heading);
    color: var(--vintage-red);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content p {
    color: var(--vintage-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== TEAM SECTION ===== */
.team-section {
    background: var(--vintage-cream);
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.team-card.vintage-card {
    background: var(--vintage-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
}

.team-card.vintage-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: var(--shadow-medium);
}

.card-polaroid {
    background: var(--vintage-white);
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--vintage-gray-light);
}

.photo-frame {
    background: var(--vintage-gray-light);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.photo-frame::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.8) 50%, transparent 70%);
    border-radius: 2px;
    transform: rotate(15deg);
}

.team-photo {
    font-size: 4rem;
    color: var(--vintage-red);
    filter: sepia(100%) hue-rotate(345deg) saturate(0.8);
}

.photo-caption {
    text-align: center;
}

.photo-caption h3 {
    font-family: var(--font-heading);
    color: var(--vintage-black);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.photo-caption p {
    color: var(--vintage-gray);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.card-details {
    padding: 2rem;
}

.card-details p {
    font-style: italic;
    color: var(--vintage-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
}

.card-details p::before,
.card-details p::after {
    content: '"';
    font-size: 2rem;
    color: var(--vintage-red);
    font-family: serif;
}

.card-details p::before {
    position: absolute;
    left: -15px;
    top: -5px;
}

.card-details p::after {
    position: absolute;
    right: -10px;
    bottom: -15px;
}

.expertise {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.skill-tag {
    background: var(--vintage-red);
    color: var(--vintage-white);
    padding: 4px 12px;
    font-size: 0.8rem;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== VALUES SECTION ===== */
.values-section {
    background: var(--vintage-white);
    padding: 100px 0;
}

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

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--vintage-cream);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.05) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.value-card:hover::before {
    transform: scale(1);
}

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

.value-icon.retro-frame {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--vintage-red);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vintage-white);
    position: relative;
    z-index: 2;
}

.value-icon i {
    font-size: 2rem;
    color: var(--vintage-red);
}

.value-card h3 {
    font-family: var(--font-heading);
    color: var(--vintage-red);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.value-card p {
    color: var(--vintage-gray);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* ===== STATS SHOWCASE ===== */
.stats-showcase {
    background: var(--vintage-red);
    color: var(--vintage-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    letter-spacing: 3px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-box.vintage {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-box.vintage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

.stat-box.vintage > * {
    position: relative;
    z-index: 2;
}

.stat-box.vintage:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-display {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    color: #ffffff !important;
}

.stats-showcase .stat-display {
    color: #ffffff !important;
}

.stat-box.vintage .stat-display {
    color: #ffffff !important;
}

.stat-number {
    font-weight: 900;
    color: #ffffff !important;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 255, 255, 0.5);
    position: relative;
}

.stats-showcase .stat-number {
    color: #ffffff !important;
}

.stat-box.vintage .stat-number {
    color: #ffffff !important;
}

.stat-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-box.vintage:hover .stat-number::before {
    opacity: 1;
}

.stat-unit {
    font-size: 2rem;
    color: #ffffff !important;
    opacity: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.stats-showcase .stat-unit {
    color: #ffffff !important;
}

.stat-box.vintage .stat-unit {
    color: #ffffff !important;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--vintage-white);
    opacity: 0.95;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--vintage-black);
    color: var(--vintage-white);
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--vintage-white);
}

.cta-text p {
    font-size: 1.2rem;
    color: var(--vintage-gray-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline-vintage {
        padding-left: 1rem;
    }
    
    .timeline-item {
        padding-left: 3rem;
    }
    
    .timeline-year {
        left: -3.5rem;
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-display {
        font-size: 2.5rem;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-vintage {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .company-story,
    .team-section,
    .values-section {
        padding: 60px 0;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-showcase {
        padding: 60px 0;
    }
}

/* ===== COMPANY IMAGE SHOWCASE ===== */
.company-image-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.vintage-photo-frame {
    background: var(--vintage-white);
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    position: relative;
}

.vintage-photo-frame:nth-child(even) {
    transform: rotate(1deg);
    margin-top: 1rem;
}

.vintage-photo-frame:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.company-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    filter: sepia(10%) saturate(110%) brightness(95%);
}

.photo-caption {
    text-align: center;
    margin-top: 10px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--vintage-gray);
    font-style: italic;
}

@media (max-width: 768px) {
    .company-image-showcase {
        grid-template-columns: 1fr;
    }
}