/* ==========================================================================
   MuskanTutor — Single Profile Page Styles
   ========================================================================== */

.mt-profile {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 60px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ── Breadcrumb ── */
.mt-breadcrumb {
    padding: 16px 0;
    font-size: 13px;
    color: #64748b;
}
.mt-breadcrumb a { color: #2563eb; text-decoration: none; }
.mt-breadcrumb a:hover { text-decoration: underline; }
.mt-bc-sep { margin: 0 6px; color: #cbd5e1; }
.mt-bc-current { color: #334155; font-weight: 600; }

/* ══════════════════════════════════════════════
   HERO CARD
   ══════════════════════════════════════════════ */
.mt-hero {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.mt-hero-photo { flex-shrink: 0; }
.mt-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e2e8f0;
}

.mt-hero-center { flex: 1; min-width: 0; }
.mt-name {
    margin: 0 0 4px;
    font-size: 26px;
    font-weight: 800;
    color: #1e293b;
}
.mt-tagline {
    margin: 0 0 12px;
    color: #64748b;
    font-size: 14px;
}

.mt-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.mt-avail-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}
.mt-avail-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.mt-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.mt-location-line {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 8px 0 4px;
    font-size: 13px;
    color: #475569;
}
.mt-qual-line {
    margin: 0;
    font-size: 13px;
    color: #64748b;
}

/* CTA Column */
.mt-hero-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    min-width: 180px;
}

.mt-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
}

.mt-cta--whatsapp {
    background: #25D366;
    color: #fff;
}
.mt-cta--whatsapp:hover { background: #1da851; color: #fff; }

.mt-cta--call {
    background: #fff;
    color: #1e3a5f;
    border-color: #1e3a5f;
}
.mt-cta--call:hover { background: #1e3a5f; color: #fff; }

.mt-cta--demo {
    background: #f97316;
    color: #fff;
}
.mt-cta--demo:hover { background: #ea580c; color: #fff; }

/* ══════════════════════════════════════════════
   FEATURE BADGES ROW
   ══════════════════════════════════════════════ */
.mt-features {
    display: flex;
    gap: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 28px;
}

.mt-feat {
    flex: 1;
    text-align: center;
    padding: 16px 12px;
    border-right: 1px solid #e2e8f0;
}
.mt-feat:last-child { border-right: none; }

.mt-feat-icon { margin-bottom: 6px; }
.mt-feat-label {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.mt-feat-value {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
}

/* ══════════════════════════════════════════════
   TWO-COLUMN BODY
   ══════════════════════════════════════════════ */
.mt-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.mt-section-title {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}
.mt-section-title--mt { margin-top: 32px; }

/* ── Details Table ── */
.mt-details-table {
    width: 100%;
    border-collapse: collapse;
}
.mt-details-table tr {
    border-bottom: 1px solid #f1f5f9;
}
.mt-details-table tr:last-child { border-bottom: none; }

.mt-dt-label {
    padding: 12px 12px 12px 0;
    font-weight: 700;
    color: #334155;
    font-size: 14px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mt-dt-value {
    padding: 12px 0;
    color: #475569;
    font-size: 14px;
}

/* ── About Content ── */
.mt-about-content {
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
}
.mt-about-content p { margin: 0 0 12px; }

/* ── Why Choose Grid ── */
.mt-why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}
.mt-why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 90px;
    text-align: center;
}
.mt-why-item span {
    font-size: 11px;
    font-weight: 600;
    color: #334155;
    line-height: 1.3;
}

/* ══════════════════════════════════════════════
   DEMO FORM
   ══════════════════════════════════════════════ */
.mt-demo-form {
    background: #1e3a5f;
    border-radius: 14px;
    padding: 24px;
    color: #fff;
}
.mt-demo-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 16px;
    color: #fff;
}

.mt-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}
.mt-form-grid input,
.mt-form-grid select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 13px;
    outline: none;
}
.mt-form-grid input::placeholder { color: rgba(255,255,255,0.5); }
.mt-form-grid select { color: rgba(255,255,255,0.7); }
.mt-form-grid select option { color: #1e293b; background: #fff; }

.mt-form-phone {
    display: flex;
    gap: 0;
    margin-bottom: 10px;
}
.mt-phone-prefix {
    padding: 10px 12px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px 0 0 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}
.mt-form-phone input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-left: none;
    border-radius: 0 8px 8px 0;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 13px;
    outline: none;
}
.mt-form-phone input::placeholder { color: rgba(255,255,255,0.5); }

.mt-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 13px;
    resize: vertical;
    outline: none;
    margin-bottom: 14px;
}
.mt-form textarea::placeholder { color: rgba(255,255,255,0.5); }

.mt-form-submit {
    width: 100%;
    padding: 14px;
    background: #22c55e;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s;
}
.mt-form-submit:hover { background: #16a34a; }

.mt-form-note {
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin: 10px 0 0;
}

/* ══════════════════════════════════════════════
   SIMILAR TUTORS
   ══════════════════════════════════════════════ */
.mt-similar {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px solid #e2e8f0;
}
.mt-similar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.mt-similar-header .mt-section-title {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.mt-view-all {
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}
.mt-view-all:hover { text-decoration: underline; }

.mt-similar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mt-sim-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: box-shadow 0.2s;
}
.mt-sim-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.mt-sim-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e2e8f0;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}
.mt-sim-name {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
}
.mt-sim-meta {
    font-size: 12px;
    color: #64748b;
    margin: 0 0 12px;
    line-height: 1.4;
}
.mt-sim-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #2563eb;
    border-radius: 8px;
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}
.mt-sim-btn:hover {
    background: #2563eb;
    color: #fff;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 900px) {
    .mt-hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
    }
    .mt-hero-tags { justify-content: center; }
    .mt-location-line { justify-content: center; }
    .mt-hero-right {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        min-width: 0;
    }
    .mt-hero-right .mt-cta { flex: 1; min-width: 140px; }

    .mt-features { flex-wrap: wrap; }
    .mt-feat { min-width: 120px; flex: 1 1 auto; }

    .mt-body {
        grid-template-columns: 1fr;
    }

    .mt-similar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .mt-profile { padding: 0 12px 40px; }
    .mt-avatar { width: 110px; height: 110px; }
    .mt-name { font-size: 22px; }
    .mt-hero { padding: 20px 16px; }

    .mt-features { flex-direction: column; }
    .mt-feat { border-right: none; border-bottom: 1px solid #e2e8f0; padding: 12px; }
    .mt-feat:last-child { border-bottom: none; }

    .mt-form-grid { grid-template-columns: 1fr; }

    .mt-hero-right { flex-direction: column; }
    .mt-hero-right .mt-cta { min-width: 0; }

    .mt-similar-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}
