/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #a78072;
    --secondary-color: #cbb5ae;
    --light-color: #e6dbd7;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --border-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: transparent;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
    position: relative;
}

.interactive-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.interactive-background svg {
    width: 100%;
    height: 100%;
}

.interactive-background circle {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ensure video is visible */
.hero-video-container video {
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.95;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    opacity: 0.8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Quiz Section */
.quiz-section {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.95);
    min-height: 100vh;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 600;
}

.quiz-step {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    animation: cardEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.quiz-step.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95) rotateX(10deg);
    }
    50% {
        opacity: 0.7;
        transform: translateY(10px) scale(0.98) rotateX(2deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

.quiz-step h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.user-type-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 15px rgba(167, 128, 114, 0.3);
}

.btn-primary:hover {
    background: #8f6b5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(167, 128, 114, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.quiz-progress {
    margin-bottom: 30px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    display: block;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.question-container {
    margin: 30px 0;
}

.question-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    text-align: center;
}

.answer-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.answer-option {
    padding: 18px 24px;
    background: var(--light-color);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    text-align: left;
}

.answer-option:hover {
    background: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.answer-option.selected {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.quiz-navigation {
    margin-top: 30px;
    text-align: center;
}

.btn-next-quiz {
    min-width: 120px;
}

/* Profile Result */
.profile-result {
    text-align: center;
}

.profile-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    box-shadow: 0 10px 40px rgba(167, 128, 114, 0.3);
    animation: cardEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.profile-card h4 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.profile-card p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.8;
}

/* Subjects Selection */
.subjects-selection {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 30px 0;
}

.subjects-group h4,
.level-group h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-group label,
.radio-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--light-color);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.checkbox-group label:hover,
.radio-group label:hover {
    background: var(--secondary-color);
}

.checkbox-group input[type="checkbox"],
.radio-group input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-group input[type="checkbox"]:checked + span,
.radio-group input[type="radio"]:checked + span {
    font-weight: 600;
    color: var(--primary-color);
}

.modern-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.level-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.modern-select-btn {
    padding: 18px 24px;
    background: var(--white);
    border: 2px solid var(--light-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-select-btn:hover {
    border-color: var(--primary-color);
    background: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(167, 128, 114, 0.2);
}

.modern-select-btn.selected {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(167, 128, 114, 0.3);
}

.selection-hint {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
    font-weight: 300;
}

#btn-continue-classes {
    display: block;
    margin: 30px auto 0;
}

/* Classes Selection - New Design */
.class-selection-step {
    max-width: 100%;
    padding: 50px;
}

.class-selection-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
}

.class-selection-left h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.subjects-list {
    margin-bottom: 40px;
}

.subjects-list h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

.subject-list-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subject-list-item {
    padding: 16px 20px;
    background: var(--white);
    border: 2px solid var(--light-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subject-list-item:hover {
    border-color: var(--primary-color);
    background: var(--light-color);
}

.subject-list-item.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.subject-list-item.complete {
    border-color: #4CAF50;
}

.subject-list-name {
    font-weight: 500;
    font-size: 1rem;
}

.subject-list-check {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

.subject-list-item.active .subject-list-check {
    color: var(--white);
}

.selection-summary-panel {
    background: var(--light-color);
    padding: 30px;
    border-radius: 12px;
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.selection-summary-panel h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.summary-item {
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    border: 2px solid transparent;
}

.summary-item.current {
    border-color: var(--primary-color);
    background: var(--light-color);
}

.summary-item.complete {
    border-left: 4px solid #4CAF50;
}

.summary-subject-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.summary-check {
    color: #4CAF50;
    font-weight: bold;
}

.summary-class {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-top: 8px;
    line-height: 1.6;
}

.summary-class.incomplete {
    color: var(--text-light);
    font-style: italic;
}

/* Table format for final summary (showCTA) */
.summary-table-wrapper {
    overflow-x: auto;
}

.summary-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.summary-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.summary-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.summary-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--light-color);
    font-size: 0.9rem;
    color: var(--text-dark);
}

.summary-table tbody tr:last-child td {
    border-bottom: none;
}

.summary-table tbody tr:hover {
    background: var(--light-color);
}

.summary-table tbody tr.current {
    background: rgba(167, 128, 114, 0.1);
    border-left: 3px solid var(--primary-color);
}

.summary-table tbody tr.complete {
    border-left: 3px solid #4CAF50;
}

.summary-table tbody tr.current.complete {
    border-left: 3px solid var(--primary-color);
}

.summary-table .incomplete {
    color: var(--text-light);
    font-style: italic;
}

.class-selection-right h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.lessons-section {
    margin-bottom: 50px;
}

.lesson-type-header {
    margin-bottom: 20px;
}

.lesson-type-header h5 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.lesson-type-desc {
    font-size: 0.95rem;
    color: var(--text-light);
}

.table-filters {
    margin-bottom: 20px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-group label {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    padding: 8px 16px;
    background: var(--white);
    border: 2px solid var(--light-color);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    background: var(--light-color);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.table-scroll-container {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lessons-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.lessons-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.lessons-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.lessons-table td {
    padding: 16px;
    border-bottom: 1px solid var(--light-color);
    color: var(--text-dark);
}

.lessons-table tbody tr:hover {
    background: var(--light-color);
}

.lessons-table tbody tr.selected {
    background: #e8f5e9;
    border-left: 4px solid #4CAF50;
}

.lessons-table tbody tr:last-child td {
    border-bottom: none;
}

.lesson-select-btn {
    padding: 8px 20px;
    background: var(--white);
    border: 2px solid var(--light-color);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    min-width: 90px;
}

.lesson-select-btn:hover {
    border-color: var(--primary-color);
    background: var(--light-color);
}

.lesson-select-btn.selected {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.lesson-select-btn.disabled {
    background: #e0e0e0;
    color: #999;
    border-color: #d0d0d0;
    cursor: not-allowed;
    opacity: 0.6;
}

.lesson-select-btn.disabled:hover {
    background: #e0e0e0;
    transform: none;
}

.lessons-table tr.conflict {
    opacity: 0.6;
    background-color: #f5f5f5;
}

.lessons-table tr.conflict td {
    color: #999;
}

.class-selection-nav {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 40px;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 30px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.btn-secondary:hover {
    background: var(--light-color);
}

/* CTA Section */
.cta-content {
    text-align: center;
}

.selection-summary {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    text-align: left;
}

.selection-summary h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.selection-summary p {
    margin: 10px 0;
    line-height: 1.8;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: var(--white);
    padding: 18px 40px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-top: 20px;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
    width: 24px;
    height: 24px;
}

/* Pedagogy Section */
.pedagogy-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    min-height: 600px;
}

.pedagogy-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Navigation Pane */
.pedagogy-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pedagogy-nav-btn {
    padding: 16px 20px;
    background: var(--white);
    border: 2px solid var(--light-color);
    border-radius: var(--border-radius);
    text-align: left;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

.pedagogy-nav-btn:hover {
    background: var(--light-color);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.pedagogy-nav-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    font-weight: 600;
}

.pedagogy-nav-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pedagogy-nav-btn-sub {
    padding: 10px 20px 10px 35px;
    background: var(--white);
    border: 2px solid var(--light-color);
    border-radius: var(--border-radius);
    text-align: left;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    margin-left: 0;
    width: 85%;
    max-width: 220px;
}

.pedagogy-nav-btn-sub:hover {
    background: var(--light-color);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.pedagogy-nav-btn-sub.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    font-weight: 500;
}

/* Right Content Pane */
.pedagogy-content {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 50px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.pedagogy-content-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.pedagogy-content-default {
    text-align: center;
}

.pedagogy-main-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.pedagogy-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 400;
}

.pedagogy-step-content {
    opacity: 1;
}

.pedagogy-step-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.pedagogy-step-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.pedagogy-step-text.typing {
    border-right: 2px solid var(--primary-color);
    animation: blink 1s infinite;
}

.pedagogy-step-image {
    max-width: 100%;
    margin: 30px 0;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pedagogy-step-image-placeholder {
    width: 100%;
    min-height: 300px;
    background: var(--light-color);
    border: 2px dashed var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 30px 0;
}

.pedagogy-step-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.pedagogy-step-button {
    padding: 14px 30px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

.pedagogy-step-button:hover {
    background: #8f6b5d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(167, 128, 114, 0.3);
}

.pedagogy-step-button-next {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.pedagogy-step-button-next:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

/* Wiping Animation */
@keyframes wipeOut {
    0% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
    100% {
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }
}

@keyframes wipeIn {
    0% {
        clip-path: inset(100% 0 0 0);
        opacity: 0;
    }
    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes blink {
    0%, 50% {
        border-color: var(--primary-color);
    }
    51%, 100% {
        border-color: transparent;
    }
}

.pedagogy-content-inner.wiping-out {
    animation: wipeOut 0.4s ease-out forwards;
}

.pedagogy-content-inner.wiping-in {
    animation: wipeIn 0.4s ease-out forwards;
}

/* Typing Effect */
.typing-cursor::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--primary-color);
    font-weight: 300;
}

/* Exam Care Pack Section */
.exam-care-pack-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
}

.exam-care-pack {
    margin-top: 0;
    text-align: center;
    padding: 60px 40px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.exam-care-pack h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.exam-care-pack > p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.exam-care-pack-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.exam-care-pack-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.google-review {
    background: rgba(255, 255, 255, 0.98);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: var(--transition);
    opacity: 0;
    animation: cardEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.google-review:nth-child(1) {
    animation-delay: 0.1s;
}

.google-review:nth-child(2) {
    animation-delay: 0.2s;
}

.google-review:nth-child(3) {
    animation-delay: 0.3s;
}

.google-review:nth-child(4) {
    animation-delay: 0.4s;
}

.google-review:nth-child(5) {
    animation-delay: 0.5s;
}

.google-review:nth-child(6) {
    animation-delay: 0.6s;
}

.google-review:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-author-info {
    flex: 1;
}

.review-author-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.review-meta {
    font-size: 0.85rem;
    color: var(--text-light);
}

.google-icon {
    width: 24px;
    height: 24px;
    background: #4285F4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.review-rating {
    color: #FFA000;
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.review-footer {
    font-size: 0.85rem;
    color: var(--text-light);
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
}

.footer-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.btn-enrol-footer {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 14px 35px;
    font-size: 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.btn-enrol-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Sticky Navigation */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.sticky-nav.visible {
    transform: translateY(0);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-hamburger span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn-enrol-nav {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.btn-enrol-nav:hover {
    background: #8f6b5d;
    transform: translateY(-2px);
}

.btn-enrol-nav-mobile {
    display: none;
}

/* Welcome Pack Section */
.welcome-pack-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.welcome-pack-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.welcome-pack-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

/* Campaign Section */
.campaign-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(230, 219, 215, 0.95), rgba(255, 255, 255, 0.95));
    position: relative;
}

.campaign-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.campaign-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.campaign-item {
    background: rgba(255, 255, 255, 0.98);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: cardEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.campaign-item:nth-child(1) {
    animation-delay: 0.1s;
}

.campaign-item:nth-child(2) {
    animation-delay: 0.2s;
}

.campaign-item:nth-child(3) {
    animation-delay: 0.3s;
}

.campaign-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.campaign-item h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.campaign-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.btn-campaign {
    margin-top: 30px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    margin: auto;
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--text-light);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2rem;
}

.modal-body h3 {
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.modal-body p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.modal-body strong {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .quiz-step {
        padding: 25px 20px;
    }

    .subjects-selection {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pedagogy-grid,
    .testimonials-grid,
    .outcomes-section,
    .campaign-highlights {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 280px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-link {
        width: 100%;
        padding: 12px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--light-color);
    }

    .btn-enrol-nav {
        display: none;
    }

    .btn-enrol-nav-mobile {
        display: block;
        width: 100%;
        background: var(--primary-color);
        color: var(--white);
        border: none;
        padding: 14px 30px;
        font-size: 1rem;
        border-radius: var(--border-radius);
        cursor: pointer;
        transition: var(--transition);
        font-weight: 600;
        margin-top: 20px;
    }

    .btn-enrol-nav-mobile:hover {
        background: #8f6b5d;
        transform: translateY(-2px);
    }

    .footer-simple {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .day-time-grid {
        grid-template-columns: 1fr;
    }

    .class-selection-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .class-selection-step {
        padding: 30px 20px;
    }

    .lessons-table {
        font-size: 0.9rem;
    }

    .lessons-table th,
    .lessons-table td {
        padding: 12px 8px;
    }

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

    .container {
        padding: 0 20px;
    }

    .quiz-step {
        padding: 30px 20px;
    }

    .user-type-buttons {
        flex-direction: column;
    }

    .btn-primary {
        width: 100%;
    }

    .pedagogy-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pedagogy-nav {
        order: 2;
    }

    .pedagogy-content {
        order: 1;
        padding: 30px 20px;
        min-height: auto;
    }

    .pedagogy-main-title {
        font-size: 2rem;
    }

    .pedagogy-subtitle {
        font-size: 1.1rem;
    }

    .pedagogy-step-title {
        font-size: 1.6rem;
    }

    .pedagogy-step-text {
        font-size: 1rem;
    }

    .pedagogy-nav-btn {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .pedagogy-nav-btn-sub {
        padding-left: 30px;
        font-size: 0.85rem;
    }
}

