/* ==============================================
          Teach With Us Page Specific Styles
          ============================================== */

/* --- General Section Styling --- */
.page-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title h2 {
        font-family: 'PinarBold', sans-serif;
        font-size: 2.5rem;
        color: var(--text-color);
        margin-bottom: 15px;
    }

    .section-title p {
        font-size: 1.1rem;
        color: var(--dark-gray-color);
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.8;
    }

/* --- Hero Section --- */
.teach-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #34A853 0%, #1A73E8 100%);
    color: #ffffff;
    text-align: center;
}

    .teach-hero h1 {
        font-family: 'PinarBold', sans-serif;
        font-size: 3.2rem;
        color: #ffffff;
        margin-bottom: 20px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .teach-hero p {
        font-size: 1.2rem;
        opacity: 0.95;
        max-width: 800px;
        margin: 0 auto 30px;
    }

.btn-hero-start {
    font-size: 1.2rem;
    padding: 35px 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    transition: background 0.3s;
}

    .btn-hero-start:hover {
        background: rgba(255, 255, 255, 0.35);
    }

/* --- Why Teach Section --- */
.why-teach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, calc(33.333% - 20px)));
    gap: 30px;
}

.value-card {
    background-color: var(--component-bg-color);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--medium-gray-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--box-shadow);
    }

    .value-card .icon {
        font-size: 48px;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .value-card h4 {
        font-family: 'PinarBold', sans-serif;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .value-card p {
        font-size: 1rem;
        color: var(--dark-gray-color);
        line-height: 1.7;
    }

/* --- Wizard Section --- */
.wizard-section {
    background-color: var(--light-gray-color);
}

.wizard-container {
    max-width: 800px;
    margin: 0 auto;
}

/* --- Process Section (Timeline) --- */
.process-section {
    background-color: #fff;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

    .timeline-container::after {
        content: '';
        position: absolute;
        width: 3px;
        background-color: #e0e0e0;
        top: 0;
        bottom: 0;
        right: 20px;
        z-index: 1;
    }

.timeline-item {
    padding-right: 60px;
    padding-bottom: 50px;
    position: relative;
    z-index: 2;
}

    .timeline-item:last-child {
        padding-bottom: 0;
    }

    .timeline-item::before {
        content: attr(data-step);
        font-family: 'PinarBold', sans-serif;
        position: absolute;
        width: 44px;
        height: 44px;
        right: 20px;
        transform: translateX(50%);
        top: 20px;
        background-color: var(--primary-color);
        color: #fff;
        border-radius: 50%;
        z-index: 3;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        border: 3px solid #fff;
        box-shadow: 0 0 0 3px var(--primary-color);
    }

.timeline-content {
    padding: 25px;
    background-color: var(--component-bg-color);
    border-radius: var(--border-radius);
    border-right: 4px solid var(--primary-color);
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

    .timeline-content h3 {
        color: var(--primary-hover-color);
        margin-bottom: 10px;
        font-size: 1.5rem;
    }

    .timeline-content p {
        font-size: 1rem;
        line-height: 1.8;
        margin: 0;
    }

/* --- FAQ Section --- */
.faq-section {
    background-color: var(--light-gray-color);
}

.tosinso-accordion {
    max-width: 800px;
    margin: 0 auto;
}

/* MODIFICATION: Added styles for the new two-column layout */
.consultation-box {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0;
    background-color: var(--component-bg-color);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.07);
    overflow: hidden;
}

.consultation-image-column {
    flex: 1 1 40%;
    background-image: url('/images/teaching_w550.webp');
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.consultation-form-column {
    flex: 1 1 60%;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 992px) {
    .consultation-image-column {
        display: none;
    }

    .consultation-form-column {
        flex-basis: 100%;
    }
}
