/* About Page - Dedicated CSS */
/* Reset and base styles for about page */
.about-page {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.about-page *,
.about-page *::before,
.about-page *::after {
    box-sizing: border-box;
}

/* Container with proper padding control */
.about-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive container padding */
@media (max-width: 768px) {
    .about-container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 0 12px;
    }
}

/* Page Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-breadcrumbs a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-breadcrumbs a:hover {
    color: var(--primary-gold);
}

.about-breadcrumbs span {
    color: rgba(255, 255, 255, 0.7);
}

.about-breadcrumbs i {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

.about-hero h1 {
    font-size: 3rem;
    font-family: var(--font-serif);
    margin-bottom: 16px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.about-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive hero */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0 40px;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }
    
    .about-hero p {
        font-size: 0.95rem;
    }
}

/* Introduction Section */
.about-intro {
    background: var(--white);
    padding: 80px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.intro-text h2 {
    color: var(--primary-navy);
    font-size: 2.5rem;
    font-family: var(--font-serif);
    margin-bottom: 24px;
    line-height: 1.2;
}

.intro-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.intro-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--white);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(30, 58, 95, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.15);
}

.stat-card .stat-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 16px;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive intro section */
@media (max-width: 1024px) {
    .intro-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-intro {
        padding: 60px 0;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .intro-text h2 {
        font-size: 2rem;
    }
    
    .intro-text .lead {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
    
    .stat-card {
        padding: 24px 16px;
    }
    
    .stat-card .stat-icon {
        font-size: 2rem;
    }
}

/* Mission and Values Section */
.mission-values {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 80px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mission-card,
.values-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(30, 58, 95, 0.08);
    border: 1px solid rgba(30, 58, 95, 0.05);
}

.mission-card h3,
.values-card h3 {
    color: var(--primary-navy);
    font-size: 1.8rem;
    font-family: var(--font-serif);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.mission-card .icon,
.values-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-item {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.06);
    border: 1px solid rgba(30, 58, 95, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.12);
    border-color: rgba(201, 169, 97, 0.2);
}

.value-item:hover::before {
    transform: scaleY(1);
}

.value-item:last-child {
    margin-bottom: 0;
}

.value-item .value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.2), 0 4px 8px rgba(201, 169, 97, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.value-item .value-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.15) rotate(-3deg);
    box-shadow: 0 12px 30px rgba(30, 58, 95, 0.3), 0 6px 12px rgba(201, 169, 97, 0.2);
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
}

.value-item:hover .value-icon::before {
    left: 100%;
}

.value-item .value-icon i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.value-item:hover .value-icon i {
    transform: scale(1.1);
}

.value-content h4 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
    font-family: var(--font-serif);
    line-height: 1.3;
}

.value-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive adjustments for value items */
@media (max-width: 768px) {
    .value-item {
        padding: 20px;
        text-align: center;
        margin-bottom: 12px;
    }
    
    .value-item .value-icon {
        margin: 0 auto 16px auto;
        width: 54px;
        height: 54px;
        font-size: 1.3rem;
        border-radius: 18px;
    }
    
    .value-content h4 {
        font-size: 1.2rem;
    }
    
    .value-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .value-item {
        padding: 16px;
    }
    
    .value-item .value-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        border-radius: 16px;
    }
    
    .value-content h4 {
        font-size: 1.1rem;
    }
}

/* Responsive mission and values */
@media (max-width: 768px) {
    .mission-values {
        padding: 60px 0;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-card,
    .values-card {
        padding: 32px 24px;
    }
    
    .mission-card h3,
    .values-card h3 {
        font-size: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .value-item {
        padding: 20px;
        text-align: center;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .mission-card,
    .values-card {
        padding: 24px 16px;
    }
    
    .value-item {
        padding: 16px;
        margin-bottom: 8px;
    }
}

/* Company History Timeline */
.company-history {
    background: var(--white);
    padding: 80px 0;
}

.history-header {
    text-align: center;
    margin-bottom: 60px;
}

.history-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 58, 95, 0.1);
    color: var(--primary-navy);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.history-header h2 {
    color: var(--primary-navy);
    font-size: 2.5rem;
    font-family: var(--font-serif);
    margin-bottom: 16px;
}

.history-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-gold), var(--accent-gold));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: 800;
    font-family: var(--font-serif);
    flex-shrink: 0;
    border: 4px solid var(--white);
    box-shadow: 0 4px 6px rgba(30, 58, 95, 0.1);
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    max-width: 350px;
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(30, 58, 95, 0.08);
    margin: 0 40px;
    border: 1px solid rgba(30, 58, 95, 0.05);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 40px;
    width: 0;
    height: 0;
    border: 12px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -24px;
    border-right-color: var(--white);
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -24px;
    border-left-color: var(--white);
}

.timeline-content h3 {
    color: var(--primary-navy);
    font-size: 1.4rem;
    font-family: var(--font-serif);
    margin-bottom: 16px;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Responsive timeline */
@media (max-width: 768px) {
    .company-history {
        padding: 60px 0;
    }
    
    .history-header h2 {
        font-size: 2rem;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .timeline-content {
        margin: 20px 0 0 0;
        max-width: none;
        width: 100%;
    }
    
    .timeline-content::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 24px 20px;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
}

/* Section spacing adjustments */
@media (max-width: 768px) {
    .about-intro,
    .mission-values,
    .company-history {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .about-intro,
    .mission-values,
    .company-history {
        padding: 40px 0;
    }
    
    .history-header {
        margin-bottom: 40px;
    }
}

/* Print styles */
@media print {
    .about-page {
        background: white !important;
        color: black !important;
    }
    
    .about-hero {
        background: white !important;
        color: black !important;
        padding: 20px 0 !important;
    }
    
    .stat-card,
    .mission-card,
    .values-card,
    .timeline-content {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
} 