/* ===================================
   BPSS Website Styles
   Color Palette:
   - Saffron: #FF9933
   - Blue: #4A90E2
   - Cream: #FFF8E7
   - Gold: #D4AF37
   - Purple: #6A1B9A
   - Charcoal: #333333
   =================================== */

/* ===================================
   GLOBAL STYLES & RESET
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --saffron: #FF9933;
    --blue: #4A90E2;
    --cream: #FFF8E7;
    --gold: #D4AF37;
    --purple: #6A1B9A;
    --charcoal: #333333;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #999999;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
    --font-accent: 'Montserrat', sans-serif;
    
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--saffron);
    color: var(--white);
    border-color: var(--saffron);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--saffron);
    border-color: var(--saffron);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--saffron);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    width: 100%;
}

.cta-button {
    background-color: var(--saffron);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
}

.cta-button:hover {
    background-color: var(--gold);
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.8rem;
    color: var(--saffron);
    margin: 0;
}

.nav-brand .tagline {
    font-size: 0.75rem;
	font-weight:bold;
    color: var(--medium-black);
    font-family: var(--font-accent);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.95rem;
}

.nav-menu li a:hover {
    color: var(--saffron);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--charcoal);
    transition: var(--transition);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
    color: var(--white);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-family: var(--font-accent);
    font-weight: 400;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   STATS BANNER
   =================================== */

.stats-banner {
    background-color: var(--cream);
    padding: 3rem 0;
}

.stats-banner .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--saffron);
    font-family: var(--font-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--charcoal);
    font-family: var(--font-accent);
}

/* ===================================
   SECTION TITLES
   =================================== */

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--purple);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
    border-radius: 2px;
}

/* ===================================
   PROBLEM SECTION
   =================================== */

.problem-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.problem-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.problem-card:hover {
    border-color: var(--saffron);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    color: var(--purple);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.problem-card p {
    line-height: 1.7;
}

.key-insight {
    background: linear-gradient(135deg, var(--cream) 0%, #FFEFD5 100%);
    padding: 3rem;
    border-radius: 10px;
    margin-top: 3rem;
    border-left: 5px solid var(--saffron);
}

.key-insight h3 {
    color: var(--purple);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--saffron);
    margin: 1.5rem 0;
}

.key-insight blockquote {
    background-color: var(--white);
    padding: 1.5rem;
    border-left: 4px solid var(--blue);
    margin: 2rem 0;
    font-style: italic;
    border-radius: 5px;
}

.key-insight blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-style: normal;
}

.emphasis {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
    text-align: center;
    margin: 2rem 0;
}

.question {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--purple);
    text-align: center;
    margin-top: 2rem;
}

.question span {
    color: var(--saffron);
}

/* ===================================
   SOLUTION SECTION
   =================================== */

.solution-section {
    padding: 5rem 0;
    background-color: var(--cream);
}

.solution-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.solution-intro .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 1.5rem;
}

.solution-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.highlight {
    color: var(--saffron);
    font-weight: 700;
}

.gita-quote {
    background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quote-content .quote-text {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.quote-content cite {
    font-size: 1rem;
    opacity: 0.9;
    font-style: normal;
}

.transformation-grid {
    margin: 4rem 0;
}

.transformation-grid h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--purple);
    margin-bottom: 2rem;
}

.transformation-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.transformation-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--saffron);
}

.transformation-item .check {
    font-size: 1.5rem;
    color: var(--saffron);
    flex-shrink: 0;
}

.transformation-item strong {
    color: var(--purple);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.transformation-item p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin: 0;
}

.science-section {
    margin-top: 4rem;
}

.science-section h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--purple);
    margin-bottom: 1.5rem;
}

.science-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: var(--purple);
    margin-bottom: 0.5rem;
}

.statement-box {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    border: 3px solid var(--gold);
}

.statement-box p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.tagline-emphasis {
    font-size: 1.4rem;
    color: var(--saffron);
    font-weight: 700;
}

/* ===================================
   PROGRAM SECTION
   =================================== */

.program-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.program-card {
    background: linear-gradient(135deg, var(--cream) 0%, #FFEFD5 100%);
    padding: 2.5rem;
    border-radius: 10px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.program-card:hover {
    border-color: var(--saffron);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.program-card h3 {
    color: var(--purple);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.program-card ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.program-card li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
    color: var(--white);
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-section .section-title::after {
    background: linear-gradient(90deg, var(--gold), var(--cream));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.quote-mark {
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    padding: 5rem 0;
    background-color: var(--cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--saffron);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.faq-item h3 {
    color: var(--purple);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-item p {
    line-height: 1.7;
}

.trust-section {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.trust-section h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--purple);
    margin-bottom: 2.5rem;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-badge {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.badge-icon {
    font-size: 2rem;
    color: var(--saffron);
    flex-shrink: 0;
}

.trust-badge strong {
    color: var(--purple);
    display: block;
    margin-bottom: 0.3rem;
}

.trust-badge p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin: 0;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: var(--purple);
    margin-bottom: 1.5rem;
}

.contact-header .lead {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-block h3 {
    color: var(--purple);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.info-block p {
    line-height: 1.7;
}

.registration-form {
    background-color: var(--cream);
    padding: 2.5rem;
    border-radius: 10px;
    border: 3px solid var(--saffron);
}

.registration-form h3 {
    color: var(--purple);
    text-align: center;
    margin-bottom: 1rem;
}

.registration-form > p {
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--charcoal);
    font-family: var(--font-accent);
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--medium-gray);
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--saffron);
}

.contact-methods {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}

.contact-methods p {
    margin-bottom: 0.5rem;
}

.urgency-box {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
}

.urgency-box p {
    margin-bottom: 0.5rem;
}

/* ===================================
   FINAL MESSAGE SECTION
   =================================== */

.final-message {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
    color: var(--white);
    text-align: center;
}

.sun-metaphor h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sun-metaphor .large {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.sun-metaphor .emphasis {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.sun-metaphor .highlight {
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--saffron);
    margin-bottom: 1rem;
}

.tagline-footer {
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.om {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--saffron);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    opacity: 0.7;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .stats-banner .container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .problems-grid,
    .transformation-items,
    .benefits-grid,
    .program-grid,
    .testimonials-grid,
    .faq-grid,
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 5rem 0 4rem;
    }
    
    .stats-banner .container {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
    text-align: center;
}

.text-saffron {
    color: var(--saffron);
}

.text-purple {
    color: var(--purple);
}

.text-gold {
    color: var(--gold);
}

.bg-cream {
    background-color: var(--cream);
}

.bg-white {
    background-color: var(--white);
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pt-3 { padding-top: 3rem; }
.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }
.pb-3 { padding-bottom: 3rem; }

/* --- Stats List Section --- */

.stats-list-section {
  background: var(--cream, #fff8e7);
  padding: 3rem 0;
}

.stats-list-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.stats-heading .section-title {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.stats-heading .section-intro {
  max-width: 720px;
  margin: 0 auto 1.8rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-soft, #4b3f33);
}

/* Card around the list */
.stats-panel {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--border-soft, #e6d4b8);
  box-shadow: var(--shadow-soft, 0 18px 45px rgba(0,0,0,0.08));
  padding: 1.8rem 1.8rem 1.5rem;
}

/* Simple, left-aligned list */
.stats-simple-list {
  margin: 0 0 1.2rem;
  padding-left: 1.4rem;
  list-style: disc;
  font-size: 0.95rem;
  color: var(--text-soft, #4b3f33);
}

.stats-simple-list li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

.stats-simple-list strong {
  font-weight: 700;
}

/* Footer line */
.stats-conclusion {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted, #7c6f67);
  text-align: center;
}

@media (max-width: 768px) {
  .stats-panel {
    padding: 1.4rem 1.2rem 1.3rem;
  }
}

/* --- References / Citations --- */

.references-section {
  background: var(--cream, #fff8e7);
  padding: 1.5rem 0 2.5rem;
}

.refs-toggle {
  max-width: 900px;
  margin: 0 auto;
  background: #fffaf1;
  border-radius: 10px;
  border: 1px solid #e3d2b5;
  padding: 0.9rem 1.2rem;
  font-size: 0.9rem;
}

.refs-toggle summary {
  cursor: pointer;
  font-weight: 600;
  color: #5a2a82; /* your purple */
  list-style: none;
}

.refs-toggle summary::-webkit-details-marker {
  display: none;
}

/* Add a small arrow indicator */
.refs-toggle summary::after {
  content: "▾";
  margin-left: 0.4rem;
  font-size: 0.8rem;
  color: #5a2a82;
}

.refs-toggle[open] summary::after {
  content: "▴";
}

.refs-list {
  margin: 0.8rem 0 0;
  padding-left: 1.3rem;
  color: #4b3f33;
  line-height: 1.5;
}

.refs-list li {
  margin-bottom: 0.4rem;
}

.refs-list a {
  color: #4a90e2;
  text-decoration: underline;
  font-size: 0.9em;
}

/* --- TRUST SECTION POLISHED --- */

.trust-section {
  background: #ffffff;
  padding: 3rem 0 3rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem 2rem;
  margin-top: 1.5rem;
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  background: #fffdf9;
  border: 1px solid #f0e2c7;
  transition: box-shadow 0.2s ease;
}

.trust-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.trust-icon {
  font-size: 1.4rem;
  color: #ff9933; /* saffron */
  line-height: 1;
  margin-top: 2px;
}

.trust-text h4 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  color: #6a1b9a; /* purple */
  font-weight: 700;
}

.trust-text p {
  margin: 0;
  color: #4b3f33;
  font-size: 0.9rem;
}

/* Contact info cards */

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  background: #fffdf9;
  border: 1px solid #f0e2c7;
}

.info-icon {
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 2px;
}

.info-body h4 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: #6a1b9a; /* your purple */
  font-weight: 700;
}

.info-body p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b3f33;
}

.info-body p + p {
  margin-top: 0.15rem;
}

/* --- Parents Horizontal Banner --- */

.parents-banner {
  background: #fff3df; /* light saffron-cream blend */
  padding: 2rem 0;
  border-top: 1px solid #f0d6b5;
  border-bottom: 1px solid #f0d6b5;
  margin: 2.5rem 0;
}

.parents-banner-inner {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  max-width: 950px;
  margin: 0 auto;
}

.parents-banner-icon {
  font-size: 2.2rem;
  min-width: 48px;
}

.parents-banner-text h3 {
  margin: 0 0 0.4rem;
  font-size: 1.3rem;
  color: #6a1b9a; /* your purple */
  font-weight: 700;
}

.parents-banner-text p {
  margin: 0.2rem 0;
  font-size: 0.95rem;
  color: #4b3f33;
  line-height: 1.55;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .parents-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .parents-banner-icon {
    font-size: 2rem;
  }
}

/* --- Unified Family Learning Banner --- */

.family-learning-banner {
  background: #fef7ea; /* soft cream-saffron tone */
  padding: 2.5rem 0;
  border-top: 1px solid #f1dab8;
  border-bottom: 1px solid #f1dab8;
  margin: 3rem 0;
}

.family-learning-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  max-width: 980px;
  margin: 0 auto;
}

.family-learning-icon {
  font-size: 2.4rem;
  min-width: 50px;
}

.family-learning-text h3 {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
  color: #6a1b9a; /* purple */
  font-weight: 700;
}

.family-learning-text p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
  color: #4b3f33;
  line-height: 1.55;
}

.family-points {
  margin: 0.6rem 0 0.8rem;
  padding-left: 1.1rem;
  color: #4b3f33;
  font-size: 0.95rem;
}

.family-points li {
  margin-bottom: 0.3rem;
}

.family-highlight {
  margin-top: 0.7rem;
  font-weight: 600;
  color: #d46b00; /* warm saffron */
}

/* Mobile */
@media (max-width: 768px) {
  .family-learning-inner {
    flex-direction: column;
    text-align: center;
  }

  .family-learning-icon {
    font-size: 2rem;
  }

  .family-points {
    text-align: left;
    margin: 0.8rem auto;
    max-width: 260px;
  }
}

.family-levels {
    margin: 0.8rem 0;
}

.level-item {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.level-item strong {
    color: #6a1b9a; /* purple highlight */
}

.info-flat {
    padding: 3rem 0;
    background: var(--color-bg-alt);
}

.info-flat-inner {
    display: grid;
    gap: 1.75rem;
}

.info-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow-soft);
}

.info-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-family: var(--font-serif, "Playfair Display", serif);
}

@media (min-width: 768px) {
    .info-flat-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.final-cta {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    text-align: center;
    color: white;
}

.final-cta-title {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.final-cta-text {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
    opacity: 0.95;
}

.final-cta-button {
    background: white;
    color: #2575fc;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.25s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.final-cta-button:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
}

.footer {
    background: #1f1f1f; /* warm deep charcoal */
    color: #f7f7f7;
    padding: 3rem 1rem 2rem;
    border-top: 4px solid #d4a658; /* gold line - premium touch */
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-brand {
    font-family: "Playfair Display", serif;
    color: #c67f50; /* clay */
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-style: italic;
    color: #ddd;
}

.footer-col h4 {
    color: #d4a658; /* gold */
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: #f7f7f7;
    text-decoration: none;
    transition: 0.2s;
}

.footer a:hover {
    color: #d4a658; /* gold highlight */
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: #bbb;
    border-top: 1px solid #444;
}

.footer-minimal {
    background: #2b185a; /* flat deep purple */
    color: #f7f4ff;
    padding: 2.5rem 1rem;
}

.footer-minimal-inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.footer-line-1 {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.footer-line-2 {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0.75rem;
    font-style: italic;
}

.footer-line-3 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.footer-line-3 a {
    color: #f7f4ff;
    text-decoration: none;
    padding: 0 0.35rem;
    transition: opacity 0.2s ease, transform 0.15s ease;
}

.footer-line-3 a:hover {
    opacity: 0.75;
    transform: translateY(-1px);
}

.footer-line-4 {
    font-size: 0.85rem;
    opacity: 0.7;
}
.solution-section .section-title {
    max-width: 900px;
    margin: 0 auto 1.75rem auto;
    line-height: 1.2;
}

.solution-intro {
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    text-align: center;
}

.solution-intro .lead {
    font-weight: 600;
    color: #6b1a96; /* your purple */
    margin-bottom: 1rem;
}

.solution-intro p {
    margin-bottom: 1rem;
}

.solution-intro .highlight {
    color: #d58c32; /* your warm orange/gold */
}


.subtle-note {
    background: #FFF8E7;
    padding: 0.8rem 1rem;
    border-left: 4px solid #FF9933; /* saffron highlight */
    border-radius: 4px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.info-card {
    height: 100%;
}

.nav-brand h1 {
    color: #d97706; /* richer saffron orange */
    font-family: "Playfair Display", serif;
    font-weight: 700;
}
