/* ============================================
   ABOUT PAGE — PREMIUM STYLES
   Cambridge Model Sr. Sec. School
   ============================================ */

/* ============================================
   SHARED
   ============================================ */
.abt-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.abt-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0B3D2E, #155d47);
    color: #C9A24D;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.abt-badge-light {
    display: inline-block;
    background: rgba(201, 162, 77, 0.15);
    color: #C9A24D;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.abt-section-header h2 {
    font-size: 2.1rem;
    font-weight: 700;
    color: #0B3D2E;
    margin-bottom: 14px;
}

.abt-section-header p {
    color: #6b7280;
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   QUICK STATS (floating over hero)
   ============================================ */
.abt-stats-section {
    padding: 0;
    position: relative;
    z-index: 2;
    margin-top: -50px;
}

.abt-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.abt-stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 26px 18px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(201, 162, 77, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
    border-color: rgba(201, 162, 77, 0.3);
}

.abt-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0B3D2E;
    margin-bottom: 4px;
    line-height: 1.1;
}

.abt-stat-label {
    font-size: 0.78rem;
    color: #6b7280;
    font-weight: 500;
}

/* ============================================
   SCHOOL OVERVIEW
   ============================================ */
.abt-overview-section {
    padding: 80px 0;
    background: #fff;
}

.abt-overview-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.abt-overview-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.abt-overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.abt-overview-content h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #0B3D2E;
    margin-bottom: 18px;
}

.abt-overview-content p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 16px;
}

.abt-facts-strip {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
}

.abt-fact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.abt-fact-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #C9A24D;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.abt-fact-value {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0B3D2E;
}

/* ============================================
   VISION & MISSION (dark section)
   ============================================ */
.abt-vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0B3D2E 0%, #155d47 50%, #0B3D2E 100%);
    position: relative;
    overflow: hidden;
}

.abt-vision-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(201, 162, 77, 0.05);
}

.abt-vision-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(201, 162, 77, 0.04);
}

.abt-vision-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    position: relative;
    z-index: 1;
}

.abt-vision-card {
    background: rgba(255, 255, 255, 0.06);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-vision-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(201, 162, 77, 0.3);
}

.abt-vision-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(201, 162, 77, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A24D;
    font-size: 24px;
    margin: 0 auto 20px;
}

.abt-vision-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.abt-vision-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.abt-mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 2.2;
}
.abt-mission-list i {
    color: #C9A24D;
    margin-right: 8px;
}

/* ============================================
   MISSION PILLARS
   ============================================ */
.abt-mission-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFF8EE, #FFF0DB);
}

.abt-mission-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.abt-mission-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(201, 162, 77, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
    border-color: rgba(201, 162, 77, 0.25);
}

.abt-mission-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0B3D2E, #155d47);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A24D;
    font-size: 22px;
    margin: 0 auto 18px;
    transition: all 0.35s ease;
}

.abt-mission-card:hover .abt-mission-icon {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(11, 61, 46, 0.3);
}

.abt-mission-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0B3D2E;
    margin-bottom: 10px;
}

.abt-mission-card p {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.6;
}

/* ============================================
   CORE VALUES
   ============================================ */
.abt-values-section {
    padding: 80px 0;
    background: #fff;
}

.abt-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.abt-value-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(201, 162, 77, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.09);
    border-color: rgba(201, 162, 77, 0.25);
}

.abt-value-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #FFF8EE, #FFF0DB);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A24D;
    font-size: 22px;
    margin: 0 auto 18px;
    transition: all 0.35s ease;
}

.abt-value-card:hover .abt-value-icon {
    background: linear-gradient(135deg, #0B3D2E, #155d47);
}

.abt-value-card h4 {
    font-size: 1.02rem;
    font-weight: 700;
    color: #0B3D2E;
    margin-bottom: 10px;
}

.abt-value-card p {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.65;
}

/* ============================================
   EDUCATIONAL PHILOSOPHY
   ============================================ */
.abt-philosophy-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFF8EE, #FFF0DB);
}

.abt-philosophy-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.abt-philosophy-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.abt-philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.abt-philosophy-content h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #0B3D2E;
    margin-bottom: 14px;
}

.abt-philosophy-intro {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 28px;
}

.abt-philosophy-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.abt-philosophy-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.abt-philosophy-check {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, #0B3D2E, #155d47);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A24D;
    font-size: 12px;
    margin-top: 2px;
}

.abt-philosophy-item h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0B3D2E;
    margin-bottom: 3px;
}

.abt-philosophy-item p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.55;
    margin-bottom: 0;
}

/* ============================================
   CAMPUS
   ============================================ */
.abt-campus-section {
    padding: 80px 0;
    background: #fff;
}

.abt-campus-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.abt-campus-image img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

/* ============================================
   CTA
   ============================================ */
.abt-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0B3D2E 0%, #155d47 50%, #0B3D2E 100%);
    position: relative;
    overflow: hidden;
}

.abt-cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(201, 162, 77, 0.05);
}

.abt-cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(201, 162, 77, 0.04);
}

.abt-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.abt-cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.abt-cta-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 32px;
}

.abt-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.abt-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 12px;
    background: linear-gradient(135deg, #C9A24D, #D4AF61);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 4px 16px rgba(201, 162, 77, 0.3);
}

.abt-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 77, 0.45);
}

.abt-btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 12px;
    background: transparent;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.35s ease;
}

.abt-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE — TABLET (992px)
   ============================================ */
@media (max-width: 992px) {
    .abt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .abt-stats-section {
        margin-top: -20px;
    }

    .abt-overview-layout,
    .abt-philosophy-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .abt-vision-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .abt-mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .abt-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .abt-section-header h2 {
        font-size: 1.7rem;
    }

    .abt-overview-image,
    .abt-philosophy-image {
        max-height: 350px;
    }
}

/* ============================================
   RESPONSIVE — MOBILE (576px)
   ============================================ */
@media (max-width: 576px) {
    .abt-stats-section {
        margin-top: 0;
    }

    .abt-stats-section {
        margin-top: 0;
    }

    .abt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .abt-stat-card {
        padding: 18px 10px;
    }

    .abt-stat-number {
        font-size: 1.4rem;
    }

    .abt-stat-label {
        font-size: 0.7rem;
    }

    .abt-overview-section,
    .abt-vision-section,
    .abt-mission-section,
    .abt-values-section,
    .abt-philosophy-section,
    .abt-campus-section,
    .abt-cta-section {
        padding: 55px 0;
    }

    .abt-section-header {
        margin-bottom: 32px;
    }

    .abt-section-header h2 {
        font-size: 1.35rem;
    }

    .abt-section-header p {
        font-size: 0.9rem;
    }

    .abt-overview-content h2,
    .abt-philosophy-content h2 {
        font-size: 1.4rem;
    }

    .abt-mission-grid {
        grid-template-columns: 1fr;
    }

    .abt-mission-card {
        padding: 26px 20px;
    }

    .abt-values-grid {
        grid-template-columns: 1fr;
    }

    .abt-value-card {
        padding: 28px 22px;
    }

    .abt-vision-card {
        padding: 28px 22px;
    }

    .abt-vision-card h3 {
        font-size: 1.1rem;
    }

    .abt-cta-content h2 {
        font-size: 1.35rem;
    }

    .abt-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .abt-btn-gold,
    .abt-btn-outline-light {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }

    .abt-facts-strip {
        flex-direction: column;
        gap: 16px;
    }
}
