/* Scheme of Works Page Styles - Brand Colors: Green, White, Black */

.scheme-of-works-page .page-title {
    background: var(--brand-green-50);
    background-size: cover;
    background-position: center;
    padding: 140px 0 80px;
    position: relative;
}

.scheme-of-works-page .page-title::before { display: none; }

.scheme-of-works-page .page-title .container {
    position: relative;
    z-index: 2;
}

.scheme-of-works-page .page-title h1 {
    color: var(--brand-gray-900);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.scheme-of-works-page .page-title p {
    color: var(--brand-gray-600);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Hero Section */
.scheme-hero {
    padding: 100px 0;
    background: #ffffff;
}

.scheme-hero .hero-stats {
    margin: 3rem 0;
}

.scheme-hero .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.scheme-hero .stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.08);
}

.scheme-hero .stat-item h3 {
    color: var(--brand-gray-900);
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.scheme-hero .stat-item p {
    color: #333;
    font-weight: 500;
    margin: 0;
}

/* Class Cards */
.class-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.class-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.08);
    border-color: #d1fae5;
}

.class-card .card-header {
    background: transparent;
    color: var(--brand-gray-900);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f3f4f6;
}

.class-card .card-header h3 {
    color: var(--brand-gray-900);
    font-weight: 700;
    margin: 0;
    font-size: 1.25rem;
}

.class-card .class-icon {
    color: var(--brand-green-600);
    font-size: 1.5rem;
}

.class-card .card-body {
    padding: 1.5rem;
}

.class-card .subjects-list h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.class-card .subjects-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.class-card .subjects-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #555;
    font-size: 0.9rem;
}

.class-card .subjects-list li:last-child {
    border-bottom: none;
}

.class-card .subjects-list li i {
    color: #28a745;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.class-card .card-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.class-card .card-actions .btn {
    flex: 1;
    min-width: 120px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 600;
}

.class-card .card-actions .btn-primary {
    background: var(--brand-green-600);
    border: 1px solid var(--brand-green-600);
    color: white;
}

.class-card .card-actions .btn-primary:hover {
    background: #1e7e34;
    border-color: #1e7e34;
    color: white;
    transform: translateY(-2px);
}

.class-card .card-actions .btn-outline {
    background: transparent;
    border: 1px solid var(--brand-gray-300);
    color: var(--brand-gray-700);
}

.class-card .card-actions .btn-outline:hover {
    background: var(--brand-gray-900);
    color: #ffffff;
    transform: translateY(-1px);
}

/* School Level Styles */
.school-level {
    margin-bottom: 3rem;
}

.level-title {
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #28a745;
    display: inline-block;
}

/* Subject Cards */
.subject-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.subject-card::before { display: none; }

.subject-card:hover::before {
    left: 100%;
}

.subject-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.08);
    border-color: #d1fae5;
}

.subject-card .card-icon {
    font-size: 2rem;
    color: var(--brand-green-600);
    margin-bottom: 0.75rem;
}

.subject-card .card-content h4 {
    color: var(--brand-gray-900);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.subject-card .card-content p {
    color: var(--brand-gray-600);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 1rem;
}

.subject-card .card-content .btn {
    background: var(--brand-green-600);
    border-color: var(--brand-green-600);
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.subject-card .card-content .btn:hover {
    background: #15803d;
    border-color: #15803d;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(20, 83, 45, 0.15);
}

/* Category Titles */
.category-title {
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

/* Benefits Section */
.benefit-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
    padding: 2rem;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #d1fae5;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.benefit-card:hover::after {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.08);
    border-color: #d1fae5;
}

.benefit-card .benefit-icon {
    font-size: 2rem;
    color: var(--brand-green-600);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq .accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    color: #333;
    padding: 1.5rem;
}

.faq .accordion-button:not(.collapsed) {
    background: #28a745;
    color: white;
}

.faq .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq .accordion-body {
    padding: 1.5rem;
    background: #f8f9fa;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: #28a745;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #28a745;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta .lead {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #ffffff;
    line-height: 1.6;
}

.cta .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta .btn-primary {
    background: #000;
    border-color: #000;
    color: white;
}

.cta .btn-primary:hover {
    background: #333;
    border-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px #000;
}

.cta .btn-outline {
    border-color: white;
    color: white;
    background: transparent;
}

.cta .btn-outline:hover {
    background: white;
    color: #28a745;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px #fff;
}

.cta .btn-secondary {
    background: #fff;
    border-color: #fff;
    color: #28a745;
}

.cta .btn-secondary:hover {
    background: #f8f9fa;
    border-color: #f8f9fa;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .scheme-of-works-page .page-title h1 {
        font-size: 2.5rem;
    }
    
    .scheme-hero .hero-stats {
        flex-direction: column;
    }
    
    .class-card .card-actions {
        flex-direction: column;
    }
    
    .cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta h2 {
        font-size: 2.5rem;
    }
    
    .cta .btn-lg {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

/* Animations */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Section Spacing */
.section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-top: 1rem;
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumbs li {
    color: var(--brand-gray-700);
    font-size: 0.9rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: '>';
    margin: 0 0.5rem;
    color: var(--brand-gray-500);
}

.breadcrumbs li a {
    color: var(--brand-gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs li a:hover { color: var(--brand-gray-900); }

.breadcrumbs li.current { color: var(--brand-gray-900); font-weight: 600; }

/* Additional Brand Styling */
.btn-primary {
    background: #28a745 !important;
    border-color: #28a745 !important;
    color: white !important;
}

.btn-primary:hover {
    background: #1e7e34 !important;
    border-color: #1e7e34 !important;
    color: white !important;
}

.btn-outline {
    border-color: #28a745 !important;
    color: #28a745 !important;
    background: transparent !important;
}

.btn-outline:hover {
    background: #28a745 !important;
    color: white !important;
}

/* Text Colors */
.text-primary {
    color: #28a745 !important;
}

.text-dark {
    color: #333 !important;
}

.text-muted {
    color: #666 !important;
}

/* Border Colors */
.border-primary {
    border-color: #28a745 !important;
}

.border-dark {
    border-color: #333 !important;
} 