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

/* ============================================ */
/* PAGE HEADER */
/* ============================================ */
.page-header-section {
    padding: 180px 0 100px;
    background:  linear-gradient(135deg, var(--primary-color) 0%, var(--primary-tint) 100%);
    position: relative;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:  100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="300" fill="rgba(255,255,255,0.05)"/><circle cx="800" cy="700" r="250" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.breadcrumb-nav a {
    color: var(--on-primary);
    transition: var(--transition-base);
}

.breadcrumb-nav a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-nav .separator {
    color: rgba(255, 255, 255, 0.5);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--on-primary);
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin:  0;
}

/* ============================================ */
/* COMPANY INTRODUCTION */
/* ============================================ */
.company-intro-section {
    padding: 100px 0;
    background:  var(--on-primary);
}

.intro-image-wrapper {
    position: relative;
}

.intro-main-image {
    width: 100%;
    height: 600px;
    object-fit:  cover;
    border-radius:  16px;
    box-shadow:  var(--shadow-lg);
}

.intro-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-content h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--on-primary);
    margin-bottom: 5px;
    line-height: 1;
}

.badge-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.intro-content {
    padding-left: 40px;
}

.intro-highlights {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: var(--transition-base);
}

.highlight-item:hover {
    background: var(--on-primary);
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.highlight-item svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-color);
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size:  1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.highlight-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================ */
/* MISSION & VISION */
/* ============================================ */
.mission-vision-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.mv-card {
    background: var(--on-primary);
    padding: 50px 40px;
    border-radius:  16px;
    box-shadow: var(--shadow-md);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    transition: var(--transition-base);
}

.mv-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mv-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.mv-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-color);
}

.mv-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.mv-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.mv-list {
    padding-left: 0;
}

.mv-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 1rem;
    color: var(--text-color);
}

.mv-list li svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================ */
/* HISTORY TIMELINE */
/* ============================================ */
.history-section {
    padding: 100px 0;
    background: var(--on-primary);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top:  0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom:  80px;
    position: relative;
}

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

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

.timeline-marker {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-year {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    display:  flex;
    align-items:  center;
    justify-content:  center;
    font-size: 1.5rem;
    font-weight:  800;
    color: var(--on-primary);
    box-shadow: 0 0 0 10px var(--light-bg), var(--shadow-md);
    transition: var(--transition-base);
}

.timeline-item:hover .timeline-year {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px var(--light-bg), var(--shadow-lg);
}

.timeline-item.current .timeline-year {
    background:  var(--primary-tint);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 10px var(--light-bg), 0 0 0 20px rgba(123, 17, 77, 0.2);
    }
    50% {
        box-shadow: 0 0 0 10px var(--light-bg), 0 0 0 30px rgba(123, 17, 77, 0);
    }
}

.timeline-content {
    flex: 1;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.timeline-title {
    font-size: 1.75rem;
    font-weight:  700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.timeline-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.timeline-highlights {
    padding-left: 0;
}

.timeline-highlights li {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.timeline-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

.value-card {
    background: var(--on-primary);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.value-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin:  0 auto 25px;
    transition: var(--transition-base);
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    transform: rotateY(360deg);
}

.value-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-color);
    transition: var(--transition-base);
}

.value-card:hover .value-icon svg {
    stroke: var(--on-primary);
}

.value-title {
    font-size:  1.25rem;
    font-weight:  700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.value-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

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

.team-card {
    background: var(--light-bg);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

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

.team-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:  100%;
    background: rgba(123, 17, 77, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    width: 50px;
    height: 50px;
    background: var(--on-primary);
    border-radius: 50%;
    display:  flex;
    align-items:  center;
    justify-content:  center;
    transition: var(--transition-base);
}

.team-social a:hover {
    background: var(--primary-tint);
    transform: translateY(-5px);
}

.team-social a svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
}

.team-social a:hover svg {
    stroke: var(--on-primary);
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.team-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.team-description {
    font-size:  0.95rem;
    color: var(--text-light);
    margin:  0;
    line-height: 1.6;
}

/* ============================================ */
/* CERTIFICATIONS */
/* ============================================ */
.certifications-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.cert-card {
    background: var(--on-primary);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.cert-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.cert-icon {
    width: 100px;
    height: 100px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin:  0 auto 25px;
}

.cert-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--primary-color);
}

.cert-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.cert-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================ */
/* STATISTICS */
/* ============================================ */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-tint) 100%);
    position: relative;
    color: var(--on-primary);
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:  100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="150" fill="rgba(255,255,255,0.05)"/><circle cx="900" cy="900" r="200" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.2;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.stat-icon {
    margin-bottom: 20px;
}

.stat-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--on-primary);
    margin:  0 auto;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--on-primary);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ============================================ */
/* ABOUT CTA */
/* ============================================ */
.about-cta-section {
    padding: 100px 0;
    background:  var(--on-primary);
}

.about-cta-section .cta-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.about-cta-section .cta-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

/* ============================================ */
/* RESPONSIVE DESIGN */
/* ============================================ */

@media (max-width: 991px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .intro-content {
        padding-left: 0;
        padding-top: 40px;
    }
    
    .intro-main-image {
        height: 400px;
    }
    
    .timeline::before {
        left: 50px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-year {
        width: 80px;
        height: 80px;
        font-size: 1.25rem;
    }
}

@media (max-width:  767px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-header-section {
        padding: 140px 0 60px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .intro-badge {
        bottom: 15px;
        right: 15px;
        padding: 20px;
    }
    
    .badge-content h3 {
        font-size: 2rem;
    }
    
    .mv-card {
        padding: 40px 30px;
    }

    .timeline {
        padding: 0 0;
    }

    .timeline-item{
        gap: 0;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}