/* Tutors Section */
.tutors-section .tutor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tutors-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-items: center;
    margin-top: 32px;
}

.tutor-card {
    width: 100%;
    max-width: 340px;
    background: var(--color-white);
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 24px 18px;
    text-align: center;
    min-height: 0;
    box-sizing: border-box;
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.tutor-card:nth-child(1) { animation-delay: 0.1s; }
.tutor-card:nth-child(2) { animation-delay: 0.15s; }
.tutor-card:nth-child(3) { animation-delay: 0.2s; }
.tutor-card:nth-child(4) { animation-delay: 0.25s; }
.tutor-card:nth-child(5) { animation-delay: 0.3s; }
.tutor-card:nth-child(6) { animation-delay: 0.35s; }
.tutor-card:nth-child(7) { animation-delay: 0.4s; }
.tutor-card:nth-child(8) { animation-delay: 0.45s; }
.tutor-card:nth-child(9) { animation-delay: 0.5s; }
.tutor-card:nth-child(10) { animation-delay: 0.55s; }
.tutor-card:nth-child(11) { animation-delay: 0.6s; }
.tutor-card:nth-child(12) { animation-delay: 0.65s; }

.tutor-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.tutor-card h3 {
    font-size: 1.4em;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.tutor-card .tutor-role {
    font-size: 1em;
    color: #888;
    font-weight: 400;
    margin-bottom: 10px;
}

.tutor-card .tutor-description {
    font-size: 0.9em;
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: 0;
}

.tutor-card .contact-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.tutor-icon {
    margin-top: auto;
    font-size: 2.4em;
    text-align: center;
    width: 100%;
    opacity: 0.85;
    padding-top: 18px;
    letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
    .tutors-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tutors-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tutor-card {
        max-width: 100%;
    }

    .tutor-card h3 {
        font-size: 1.1em;
    }

    .tutor-card .tutor-role,
    .tutor-card .tutor-description {
        font-size: 0.97em;
        text-align: center;
    }
}