/* ======================== PAGE HERO ======================== */
.page-hero {
    background: linear-gradient(135deg, rgba(10, 31, 61, 0.95), rgba(26, 58, 107, 0.90)),
                url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=1600&auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 110px 20px 85px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 50%,
        rgba(212, 175, 55, 0.15) 0%, transparent 65%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}

.page-hero-content h1 {
    font-size: 58px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
}

.page-hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 25px;
    animation: fadeInUp 1s ease;
    line-height: 1.7;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    animation: fadeInUp 1.2s ease;
}

.breadcrumb a {
    color: var(--secondary);
    transition: var(--transition);
}

.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--secondary); }

/* ======================== SECTION LABELS ======================== */
.section-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-dark);
    background: rgba(212, 175, 55, 0.12);
    padding: 5px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 14px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-heading {
    text-align: center;
    margin-bottom: 55px;
}

.section-heading h2 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 15px;
    display: inline-block;
}

.section-heading h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary);
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-heading p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 650px;
    margin: 18px auto 0;
    line-height: 1.8;
}

/* ======================== WHO WE ARE ======================== */
.who-we-are {
    padding: 90px 20px;
    background: var(--white);
}

.who-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 65px;
    flex-wrap: wrap;
}

.who-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.who-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.who-image img:hover {
    transform: scale(1.02);
    border-color: var(--secondary);
}

.who-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--primary);
    padding: 22px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    font-family: "Playfair Display", serif;
}

.badge-number {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.badge-year {
    display: block;
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
}

.badge-text {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.85;
}

.who-text {
    flex: 1;
    min-width: 300px;
}

.who-text h2 {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 22px;
    line-height: 1.2;
}

.who-text h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--secondary);
    margin: 14px 0 0;
    border-radius: 2px;
}

.who-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 18px;
}

.who-highlights {
    margin: 28px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15.5px;
    color: var(--text-dark);
    font-weight: 500;
}

.highlight-icon {
    font-size: 18px;
    flex-shrink: 0;
}

/* ======================== MISSION VISION VALUES ======================== */
.mvv-section {
    padding: 90px 20px;
    background: var(--light-bg);
}

.mvv-container {
    max-width: 1200px;
    margin: auto;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
}

.mission-card::before {
    background: linear-gradient(90deg, var(--secondary), var(--secondary-dark));
}

.vision-card::before {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.values-card::before {
    background: linear-gradient(90deg, var(--accent), #c0392b);
}

.mvv-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.mvv-icon {
    font-size: 52px;
    margin-bottom: 22px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.mvv-card h3 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 18px;
}

.mvv-card > p {
    font-size: 15.5px;
    color: var(--text-light);
    line-height: 1.85;
}

/* Values List */
.values-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.value-dot {
    width: 10px;
    height: 10px;
    background: var(--secondary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.value-item strong {
    display: block;
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 3px;
    font-family: "Playfair Display", serif;
}

.value-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ======================== TIMELINE ======================== */
.timeline-section {
    padding: 90px 20px;
    background: var(--white);
}

.timeline-container {
    max-width: 1000px;
    margin: auto;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    background: linear-gradient(180deg,
        var(--secondary) 0%,
        var(--primary-light) 50%,
        var(--secondary) 100%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    margin-bottom: 50px;
    position: relative;
}

.timeline-item.right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 24px;
    right: calc(50% - 10px);
    width: 20px;
    height: 20px;
    background: var(--secondary);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 3px var(--secondary),
                0 4px 15px rgba(212, 175, 55, 0.4);
    z-index: 2;
    transition: var(--transition);
}

.timeline-item.right::after {
    right: auto;
    left: calc(50% - 10px);
}

.timeline-item:hover::after {
    transform: scale(1.3);
}

.timeline-content {
    background: var(--light-bg);
    padding: 30px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    max-width: 400px;
    transition: var(--transition);
    border-left: 4px solid var(--secondary);
    position: relative;
}

.timeline-item.right .timeline-content {
    border-left: none;
    border-right: 4px solid var(--primary);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.timeline-content h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.75;
}

/* ======================== CTA BUTTONS ======================== */
.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-cta-outline {
    padding: 13px 32px;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
}

.btn-cta-outline:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 31, 61, 0.3);
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 992px) {
    .page-hero-content h1 { font-size: 44px; }
    .mvv-grid { grid-template-columns: 1fr 1fr; }
    .who-container { gap: 50px; }
    .section-heading h2 { font-size: 34px; }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 15px 60px;
        background-attachment: scroll;
    }
    .page-hero-content h1 { font-size: 34px; }
    .page-hero-content p { font-size: 16px; }

    .who-container {
        flex-direction: column;
        gap: 60px;
    }

    .who-badge {
        right: 10px;
        bottom: -20px;
        padding: 16px 20px;
    }

    .badge-year { font-size: 32px; }

    .who-text h2 { font-size: 30px; }

    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mvv-card { padding: 35px 25px; }

    /* Timeline Mobile */
    .timeline::before {
        left: 18px;
    }

    .timeline-item,
    .timeline-item.right {
        justify-content: flex-start;
        padding-right: 0;
        padding-left: 55px;
    }

    .timeline-item::after,
    .timeline-item.right::after {
        left: 8px;
        right: auto;
        top: 22px;
    }

    .timeline-content {
        max-width: 100%;
        border-left: 4px solid var(--secondary) !important;
        border-right: none !important;
    }

    .who-we-are,
    .mvv-section,
    .timeline-section { padding: 60px 15px; }

    .section-heading h2 { font-size: 28px; }
    .section-heading p { font-size: 15px; }

    .cta-buttons { flex-direction: column; align-items: center; }
    .btn-cta-outline {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-hero-content h1 { font-size: 28px; }
    .who-text h2 { font-size: 26px; }
    .mvv-icon { font-size: 42px; }
    .mvv-card h3 { font-size: 22px; }
    .timeline-content { padding: 22px 18px; }
    .timeline-content h3 { font-size: 18px; }
}