/* ── Page Header ── */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 50px 0 40px;
    margin-bottom: 0;
}
.page-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
}
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
}
.page-header .breadcrumb-item.active { color: white; }

/* ── Section Padding ── */
.section-pad { padding: 80px 0; }
.bg-alt { background: #F5EDE3; }
.title-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 15px;
}
.body-text {
    font-size: 15px;
    color: #444;
    line-height: 1.9;
}

/* ── Vision Mission Cards ── */
.vm-card {
    background: white;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    height: 100%;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    border-top: 4px solid var(--primary);
}
.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.vm-card.vision { border-top-color: var(--primary); }
.vm-card.mission { border-top-color: var(--secondary); }
.vm-card.motto { border-top-color: var(--accent); }
.vm-icon {
    width: 64px;
    height: 64px;
    background: #FFF0E6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--primary);
}
.vm-card.mission .vm-icon {
    background: #E8F5EE;
    color: var(--secondary);
}
.vm-card.motto .vm-icon {
    background: #FFF8E6;
    color: var(--accent);
}
.vm-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.vm-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ── History Image ── */
.history-img-placeholder {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    height: 380px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255,255,255,0.2);
}

/* ── Principal Card ── */
.principal-card {
    background: white;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    border-left: 5px solid var(--primary);
    position: relative;
}
.principal-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: white;
    margin: 0 auto;
}
.principal-title {
    background: #FFF0E6;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: var(--primary);
    opacity: 0.2;
    line-height: 0.5;
    margin-bottom: 20px;
}
.principal-message {
    font-size: 15px;
    color: #444;
    line-height: 1.9;
    font-style: italic;
}

/* ── Glance Cards ── */
.glance-card {
    background: white;
    border-radius: 16px;
    padding: 36px 20px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}
.glance-card:hover { transform: translateY(-4px); }
.glance-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}
.glance-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}
.glance-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Value Cards ── */
.value-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.value-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.2s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.value-card:hover::after { transform: scaleX(1); }
.value-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 8px;
}
.value-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.value-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .section-pad { padding: 50px 0; }
    .principal-card { padding: 28px 20px; }
}