/* ============================================
   READY SET FIT ACADEMY — Main Stylesheet
   ============================================ */
/* === RESET & VARIABLES === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #1B3A5C;
    --navy-dark: #0F2640;
    --blue: #2E6DB4;
    --blue-light: #e8f2fc;
    --red: #E63B2E;
    --red-light: #fdecea;
    --yellow: #F5A623;
    --yellow-bright: #FFD166;
    --yellow-light: #fff5e0;
    --green: #2ECC71;
    --green-light: #e6f9ee;
    --bg-light: #F8FAFC;
    --text-dark: #1a1a2e;
    --text-body: #3d4555;
    --text-muted: #6b7385;
    --white: #ffffff;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(27,58,92,0.06);
    --shadow-md: 0 8px 30px rgba(27,58,92,0.1);
    --shadow-lg: 0 20px 60px rgba(27,58,92,0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    line-height: 1.15;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--yellow);
    color: var(--navy-dark);
    box-shadow: 0 4px 15px rgba(245,166,35,0.35);
}

.btn-primary:hover {
    background: #e69a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245,166,35,0.45);
}

.btn-secondary {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(27,58,92,0.25);
}

.btn-secondary:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
}

.announcement-bar a {
    color: var(--yellow-bright);
    text-decoration: underline;
    margin-left: 6px;
}

/* === NAVBAR === */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--blue);
    background: rgba(46,109,180,0.06);
}

.nav-cta {
    padding: 10px 24px !important;
    background: var(--yellow) !important;
    color: var(--navy-dark) !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
}

.nav-cta:hover {
    background: #e69a1a !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--navy);
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg,
        rgba(15,38,64,0.92) 0%,
        rgba(15,38,64,0.7) 45%,
        rgba(15,38,64,0.15) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--yellow-bright);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.08;
}

.hero h1 em {
    font-style: normal;
    color: var(--yellow-bright);
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* === STATS BAR === */
.stats-bar {
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 50%, #1a4570 100%);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='3' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
}

.stats-bar-title {
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 36px;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: var(--yellow-bright);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    max-width: 200px;
    margin: 0 auto;
}

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* === METHODOLOGY === */
.methodology {
    padding: 100px 0;
    background: var(--white);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.method-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 28px 36px;
    text-align: center;
    border: 2px solid;
    transition: var(--transition);
    overflow: hidden;
}

.method-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.method-card:nth-child(1) {
    border-color: var(--navy);
}

.method-card:nth-child(2) {
    border-color: var(--red);
}

.method-card:nth-child(3) {
    border-color: var(--yellow);
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.method-card:nth-child(1)::before {
    background: var(--navy);
}

.method-card:nth-child(2)::before {
    background: var(--red);
}

.method-card:nth-child(3)::before {
    background: var(--yellow);
}

.method-icon-svg {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.method-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.method-card:nth-child(1) .method-label {
    color: var(--navy);
}

.method-card:nth-child(2) .method-label {
    color: var(--red);
}

.method-card:nth-child(3) .method-label {
    color: var(--yellow);
}

.method-list {
    text-align: left;
}

.method-list li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-list li::before {
    content: '✓';
    font-weight: 800;
    font-size: 0.7rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-card:nth-child(1) .method-list li::before {
    color: var(--navy);
    background: var(--blue-light);
}

.method-card:nth-child(2) .method-list li::before {
    color: var(--red);
    background: var(--red-light);
}

.method-card:nth-child(3) .method-list li::before {
    color: var(--yellow);
    background: var(--yellow-light);
}

/* === FEATURE SECTIONS === */
.feature-section {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.feature-section.reverse .feature-image {
    order: 2;
}

.feature-section.reverse .feature-text {
    order: 1;
}

.feature-image {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.photo-placeholder .ph-icon {
    font-size: 3rem;
    opacity: 0.7;
}

.photo-placeholder .ph-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 6px;
    background: rgba(0,0,0,0.15);
}

.photo-placeholder .ph-desc {
    font-size: 0.8rem;
    max-width: 280px;
    line-height: 1.4;
    opacity: 0.85;
}

.feature-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 64px;
}

.feature-text h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.15;
}

.feature-text h2 em {
    font-style: normal;
    color: var(--blue);
}

.feature-text p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* === WHY SCHOOLS === */
.why-us {
    padding: 100px 0;
    background: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.why-card:hover {
    border-color: rgba(46,109,180,0.15);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-card:nth-child(1) .why-icon {
    background: var(--blue-light);
}

.why-card:nth-child(2) .why-icon {
    background: var(--red-light);
}

.why-card:nth-child(3) .why-icon {
    background: var(--green-light);
}

.why-card:nth-child(4) .why-icon {
    background: var(--yellow-light);
}

.why-card h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* === VIDEO SECTION === */
.video-section {
    padding: 80px 0;
    background: var(--navy);
    color: var(--white);
}

.video-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.video-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/9;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-text h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 16px;
}

.video-text h2 em {
    font-style: normal;
    color: var(--yellow-bright);
}

.video-text p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* === TESTIMONIALS === */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #162d48 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='3' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
}

.testimonials .section-tag {
    color: var(--yellow-bright);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials .section-header p {
    color: rgba(255,255,255,0.6);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.testimonial-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.11);
    transform: translateY(-4px);
}

.test-category {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: var(--yellow-bright);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    background: rgba(245,166,35,0.25);
    color: var(--yellow-bright);
}

.testimonial-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* === FAQ === */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.faq-left h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.faq-left p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--navy);
    gap: 16px;
}

.faq-question:hover {
    color: var(--blue);
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.open {
    max-height: 200px;
    padding-top: 12px;
}

.faq-answer p {
    color: var(--text-body);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* === CTA === */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--yellow) 0%, #f0960d 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='3' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");
}

.cta-inner {
    text-align: center;
    position: relative;
}

.cta-inner h2 {
    font-size: 3rem;
    color: var(--navy-dark);
    margin-bottom: 16px;
}

.cta-inner p {
    font-size: 1.15rem;
    color: rgba(15,38,64,0.7);
    max-width: 550px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: rgba(15,38,64,0.5);
    font-weight: 600;
}

/* === FOOTER === */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo img {
    height: 55px;
    width: auto;
    background: var(--white);
    border-radius: 8px;
    padding: 4px 8px;
}

.footer-brand-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.85rem;
}

.footer-socials a:hover {
    background: var(--yellow);
    color: var(--navy-dark);
}

/* === ANIMATIONS === */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3,1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .method-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .feature-section {
        grid-template-columns: 1fr;
    }

    .feature-section.reverse .feature-image {
        order: 0;
    }

    .feature-section.reverse .feature-text {
        order: 0;
    }

    .feature-image {
        min-height: 350px;
    }

    .feature-text {
        padding: 48px 24px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .cta-inner h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        box-shadow: var(--shadow-md);
    }
}
