/* ===========================
   ROOT VARIABLES & RESET
   =========================== */

:root {
    --coral: #FF6B6B;
    --teal: #4ECDC4;
    --purple: #A084DC;
    --amber: #FFB84D;
    --pink: #F06292;
    --green: #66BB6A;
    
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    --font-heading: 'Quicksand', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   NAVIGATION
   =========================== */

.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--coral);
}

.nav-brand i {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--coral);
}

.btn-primary-small {
    background: linear-gradient(135deg, var(--coral) 0%, #ee5a6f 100%);
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: 0.3s;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    background: linear-gradient(135deg, rgba(255,107,107,0.1) 0%, rgba(78,205,196,0.1) 100%);
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.badge {
    background: var(--bg-white);
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    font-weight: 500;
}

.badge i {
    color: var(--teal);
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--coral) 0%, #ee5a6f 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

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

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

/* ===========================
   ABOUT SECTION
   =========================== */

.about {
    padding: 80px 0;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--coral);
}

.about-card.highlight {
    background: linear-gradient(135deg, rgba(255,107,107,0.1) 0%, rgba(78,205,196,0.1) 100%);
    border-color: var(--coral);
}

.about-card i {
    font-size: 3rem;
    color: var(--coral);
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.about-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===========================
   MODULES SECTION
   =========================== */

.modules {
    padding: 80px 0;
    background: var(--bg-light);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.module-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

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

.module-header {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 15px;
    background: var(--bg-light);
}

.module-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.module-info {
    flex: 1;
}

.module-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.module-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.module-status i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.module-body {
    padding: 20px;
}

.module-body h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.module-body ul {
    list-style: none;
    margin-bottom: 20px;
}

.module-body ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
    color: var(--text-light);
}

.module-body ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

.module-highlight {
    background: rgba(78, 205, 196, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--teal);
    margin: 15px 0;
}

.module-highlight p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.module-topics {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.topic-tag {
    background: linear-gradient(135deg, var(--teal) 0%, #44a3a0 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-module {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--coral) 0%, #ee5a6f 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-module:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.course-progress {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.course-progress h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.progress-bar {
    height: 20px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--coral) 0%, var(--teal) 100%);
    transition: width 0.5s ease;
}

/* ===========================
   TOOLS SECTION
   =========================== */

.tools {
    padding: 80px 0;
    background: var(--bg-white);
}

.tool-section {
    margin-bottom: 80px;
}

.tool-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.tool-section h3 i {
    color: var(--coral);
    margin-right: 10px;
}

.tool-section > p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.question-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--border);
    background: var(--bg-white);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover {
    border-color: var(--coral);
    color: var(--coral);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--coral) 0%, #ee5a6f 100%);
    color: white;
    border-color: var(--coral);
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.question-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--teal);
    transition: all 0.3s;
}

.question-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.question-category {
    display: inline-block;
    background: var(--teal);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.question-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.scenario-card {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

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

.scenario-front {
    padding: 30px;
    background: linear-gradient(135deg, rgba(160,132,220,0.1) 0%, rgba(255,107,107,0.1) 100%);
}

.scenario-front h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.scenario-question {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.scenario-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scenario-option {
    padding: 12px;
    background: var(--bg-white);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.scenario-option:hover {
    border-color: var(--purple);
    transform: translateX(5px);
}

.scenario-option.correct {
    border-color: var(--green);
    background: rgba(102, 187, 106, 0.1);
}

.scenario-option.wrong {
    border-color: var(--coral);
    background: rgba(255, 107, 107, 0.1);
}

.assessment-container {
    text-align: center;
    padding: 60px 0;
}

/* ===========================
   RESOURCES SECTION
   =========================== */

.resources {
    padding: 80px 0;
    background: var(--bg-light);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.resource-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

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

.resource-card.highlight {
    background: linear-gradient(135deg, rgba(255,107,107,0.1) 0%, rgba(78,205,196,0.1) 100%);
    border: 2px solid var(--coral);
}

.resource-card i {
    font-size: 3rem;
    color: var(--coral);
    margin-bottom: 20px;
}

.resource-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.resource-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.resource-card ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-light);
}

.resource-card ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

.resource-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ===========================
   SCHOOLS SECTION
   =========================== */

.schools {
    padding: 80px 0;
    background: var(--bg-white);
}

.schools-content > * {
    margin-bottom: 60px;
}

.format-options h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.format-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.format-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}

.format-card.highlight {
    background: linear-gradient(135deg, rgba(78,205,196,0.1) 0%, rgba(255,107,107,0.1) 100%);
    border-color: var(--teal);
}

.format-card i {
    font-size: 3rem;
    color: var(--teal);
    margin-bottom: 20px;
}

.format-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.format-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--coral);
}

.implementation h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--coral) 0%, var(--teal) 100%);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral) 0%, var(--teal) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.timeline-content {
    flex: 1;
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.timeline-content ul {
    list-style: none;
}

.timeline-content ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
    color: var(--text-light);
}

.timeline-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-size: 1.5rem;
    line-height: 1;
}

.impact-metrics h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.metric-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

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

.metric-card i {
    font-size: 3rem;
    color: var(--purple);
    margin-bottom: 20px;
}

.metric-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.metric-card p {
    color: var(--text-light);
}

.contact-schools {
    background: linear-gradient(135deg, rgba(255,107,107,0.1) 0%, rgba(78,205,196,0.1) 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

.contact-schools h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-schools p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */

.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s;
}

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

.quote-icon {
    font-size: 4rem;
    color: var(--coral);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: normal;
    margin: 0;
}

/* ===========================
   CTA SECTION
   =========================== */

.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--coral) 0%, var(--teal) 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta > p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

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

.btn-primary-large, .btn-secondary-large {
    padding: 18px 40px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.btn-primary-large {
    background: white;
    color: var(--coral);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary-large {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary-large:hover {
    background: white;
    color: var(--teal);
}

.cta-guarantee {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ===========================
   FOOTER
   =========================== */

footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-col ul li i {
    color: var(--teal);
    margin-right: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--coral);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline:before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta > p {
        font-size: 1.1rem;
    }
}