/* ================================================
   KURUMSAL PAGE SPECIFIC STYLES
================================================ */

/* Page Header */
.page-header {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.4), var(--bg-base));
    z-index: 1;
}

.header-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) grayscale(0.2);
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 5%;
}

.header-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.header-content h1 span {
    color: var(--orange);
}

/* Vision & Mission Section */
.vision-mission {
    padding: 100px 5%;
    background: var(--bg-base);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vm-card {
    background: var(--bg-card);
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all var(--normal) var(--ease);
    position: relative;
    overflow: hidden;
}

.vm-card:hover {
    border-color: var(--orange);
    transform: translateY(-10px);
}

.vm-card i {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 2rem;
    display: block;
}

.vm-card h2 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.vm-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* Timeline Section */
.timeline-section {
    padding: 120px 5%;
    background: var(--bg-surface);
}

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

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--border);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.t-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.t-container::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg-base);
    border: 4px solid var(--orange);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.right::after {
    left: -10px;
}

.t-content {
    padding: 30px;
    background: var(--bg-card);
    position: relative;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.t-content h3 {
    color: var(--orange);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.t-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.t-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Who We Are Section */
.who-we-are {
    padding: 120px 5%;
    background: var(--bg-base);
}

.who-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.who-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
    line-height: 1;
}

.who-content p {
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.who-img {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.who-img img {
    width: 100%;
    display: block;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .vm-grid, .who-layout {
        grid-template-columns: 1fr;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .t-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .t-container::after {
        left: 21px;
    }
    
    .right {
        left: 0%;
    }
}
