/* ===================================
       DISHA DESIGN SYSTEM
    =================================== */
:root {
    --navy: #1c2b4a;
    --navy-dark: #141f35;
    --green: #7dc242;
    --green-dark: #65a832;
    --gold: #c8a84b;
    --light-bg: #f5f6f8;
    --text-dark: #1c2b4a;
    --text-muted: #6c757d;
    --white: #ffffff;
}


/* ===================================
       HERO SECTION
    =================================== */
.hero-section {
    position: relative;
    min-height: 480px;
    background:
        linear-gradient(135deg, rgba(20, 31, 53, .82) 40%, rgba(125, 194, 66, .18) 100%),
        url('https://www.dishalifeschool.com/wp-content/uploads/2026/03/jpp-top-banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    margin-bottom: 18px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    color: var(--white);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--green);
}

.hero-subtitle {
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    max-width: 540px;
    margin-bottom: 32px;
}

.btn-green {
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    transition: background .2s, transform .15s;
}

.btn-green:hover {
    background: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, .5);
    padding: 12px 32px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    transition: border-color .2s, background .2s;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--white);
    border-color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--green);
    font-weight: 700;
    line-height: 1;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ===================================
       SECTION HEADINGS
    =================================== */
.section-label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: var(--navy);
    font-weight: 700;
    line-height: 1.2;
}

.section-title-underline {
    width: 50px;
    height: 3px;
    background: var(--green);
    margin: 14px 0 20px;
}

.section-title-underline.center {
    margin: 14px auto 20px;
}

/* ===================================
       OVERVIEW SECTION
    =================================== */
.overview-section {
    padding: 80px 0;
    background: var(--white);
}

.overview-intro {
    font-size: 16.5px;
    color: var(--text-dark);
    line-height: 1.8;
}

.overview-intro p:last-child {
    margin-bottom: 0;
}

/* ===================================
       SPORTS STRIP (Dark Banner)
    =================================== */
.sports-strip {
    background: var(--navy);
    padding: 60px 0;
}

.sports-strip .section-title {
    color: var(--white);
}

.sport-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-top: 3px solid var(--green);
    padding: 36px 28px;
    text-align: center;
    transition: transform .25s, background .25s;
    height: 100%;
}

.sport-card:hover {
    transform: translateY(-6px);
    background: rgba(125, 194, 66, .12);
}

.sport-icon {
    font-size: 2.6rem;
    color: var(--green);
    margin-bottom: 14px;
}

.sport-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.sport-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, .62);
    line-height: 1.65;
    text-align: center;
}

/* ===================================
       HIGHLIGHTS SECTION
    =================================== */
.highlights-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #dde3ee;
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    margin-top: 2px;
}

.highlight-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.6;
}

.highlight-text strong {
    color: var(--navy);
}

/* ===================================
       SUPPORT PILLARS
    =================================== */
.pillars-section {
    padding: 80px 0;
    background: var(--white);
}

.pillar-card {
    border: 1px solid #e0e6f0;
    border-top: 4px solid var(--green);
    padding: 36px 30px;
    height: 100%;
    transition: box-shadow .25s;
}

.pillar-card:hover {
    box-shadow: 0 8px 32px rgba(28, 43, 74, .1);
}

.pillar-icon {
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 14px;
}

.pillar-title {
    font-size: 1.55rem;
    color: var(--navy);
    font-family: var(--headingFont);
    margin-bottom: 10px;
    font-weight: bold;
}

.pillar-text {
    color: var(--text-muted);
    margin: 0;
}

/* ===================================
       ACADEMICS BAND
    =================================== */
.academics-band {
    background: linear-gradient(135deg, var(--navy) 55%, #253d6a 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.academics-band::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 28rem;
    color: rgba(255, 255, 255, .03);
    position: absolute;
    top: -80px;
    right: -40px;
    line-height: 1;
}

.academics-band .section-title {
    color: var(--white);
}

.academics-band p {
    color: rgba(255, 255, 255, .75);
}

.icse-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(125, 194, 66, .15);
    border: 1px solid rgba(125, 194, 66, .3);
    padding: 14px 24px;
    margin-top: 16px;
}

.icse-badge-icon {
    font-size: 1.6rem;
    color: var(--green);
}

.icse-badge-text {
    font-size: 16px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.4;
}

.icse-badge-text strong {
    color: var(--white);
    display: block;
    font-size: 20px;
}

/* ===================================
       WHY SECTION
    =================================== */
.why-section {
    padding: 80px 0;
    background: var(--white);
}

.why-point {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.why-num {
    font-size: 2.5rem;
    color: rgba(28, 43, 74, .1);
    font-weight: 500;
    line-height: 1;
    min-width: 44px;
    font-family: var(--headingFont);
    opacity: 0.5;
}

.why-content h5 {
    font-family: var(--headingFont);
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.why-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* ===================================
       FAQ SECTION
    =================================== */
.faq-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.accordion-item {
    border: 1px solid #dde3ee;
    border-radius: 0 !important;
    margin-bottom: 8px;
    overflow: hidden;
}

.accordion-button {
    background: var(--white);
    color: var(--navy);
    font-weight: 600;
    font-size: 14.5px;
    padding: 18px 22px;
    border-radius: 0 !important;
}

.accordion-button:not(.collapsed) {
    background: var(--navy);
    color: var(--white);
    box-shadow: none;
}

.accordion-button::after {
    filter: none;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background: var(--white);
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.75;
    padding: 18px 22px 22px;
    font-weight: 300;
}

.accordion-body ul {
    padding-left: 18px;
    margin: 10px 0 0;
}

.accordion-body ul li {
    margin-bottom: 4px;
}

/* ===================================
       ADMISSIONS CTA SECTION
    =================================== */
.cta-section {
    position: relative;
    padding: 100px 0;
    background:
        linear-gradient(rgba(20, 31, 53, .88), rgba(20, 31, 53, .92)),
        url('https://www.dishalifeschool.com/wp-content/uploads/2026/03/jpp-cta-banner.jpg') center/cover no-repeat fixed;
    text-align: center;
}

.cta-section .section-label {
    color: var(--green);
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-title span {
    color: var(--green);
}

.cta-sub {
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.format-badge {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 10px 24px;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 4px 6px;
}

.cta-phone {
    margin-top: 32px;
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
}

.cta-phone a {
    color: var(--green);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
}

.cta-tagline {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-style: italic;
    color: rgba(255, 255, 255, .45);
    font-size: 14px;
    letter-spacing: 1px;
}

/* ===================================
       FOOTER
    =================================== */
footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, .65);
    padding-top: 60px;
}

footer .footer-logo {
    height: 60px;
    margin-bottom: 18px;
}

footer h6 {
    color: var(--white);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--green);
    display: inline-block;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: 13.5px;
    transition: color .2s;
}

footer ul li a:hover {
    color: var(--green);
}

footer p {
    font-size: 13.5px;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 48px;
    padding: 18px 0;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .35);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .6);
    margin-right: 6px;
    font-size: 14px;
    transition: background .2s, color .2s, border-color .2s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.sport-img img {
    width: 100%;
    margin-bottom: 30px;
}

/* ===================================
       UTILITIES
    =================================== */
@media (max-width: 767.98px) {
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-stats>div {
        min-width: 100px;
    }
}

.faq-section .accordion-header button.accordion-button {
    font-size: 20px;
}

.faq-section .accordion-header {
    background: transparent;
    padding: 0;
}

.highlights-title {
    position: sticky;
    top: 180px;
}