/* ===== Inner Page Specific Styles ===== */

/* Inner Page Banner */
.inner-banner {
    background: linear-gradient(135deg, var(--pale-pink) 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.inner-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--light-yellow) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
}

.inner-banner::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--light-blue) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--muted-text);
}

.breadcrumb a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
}

/* About Us - Team Cards */
.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.team-img-wrapper {
    position: relative;
    overflow: hidden;
    padding: 15px;
}
.team-img-wrapper img {
    border-radius: 15px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Programs - Detailed Layout */
.program-detail-card {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.program-feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.program-feature-list i {
    color: var(--primary-pink);
}

/* Gallery - Masonry */
.masonry-grid {
    column-count: 3;
    column-gap: 1.5rem;
}
.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}
.masonry-item:hover img {
    transform: scale(1.05);
}
@media (max-width: 991px) { .masonry-grid { column-count: 2; } }
@media (max-width: 575px) { .masonry-grid { column-count: 2; column-gap: 10px; } }

/* Admissions - Timeline */
.timeline-step {
    position: relative;
    padding-left: 50px;
    margin-bottom: 40px;
}
.timeline-step::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: -40px;
    width: 2px;
    background-color: var(--pale-pink);
}
.timeline-step:last-child::before {
    display: none;
}
.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-pink);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 0 0 5px var(--pale-pink);
    z-index: 2;
}

/* Contact - Map & Info */
.contact-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}
.contact-info-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-pink);
}
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
