/* =========================================================
   TUTORHUB - VIEW TUTOR
   NEW LAYOUT MATCHING THE REQUESTED WIREFRAME
   ========================================================= */

:root{
    --blue:#2563eb;
    --blue-dark:#1d4ed8;
    --blue-soft:#eff6ff;

    --purple:#7c3aed;
    --purple-dark:#6d28d9;
    --purple-soft:#f5f3ff;

    --green:#16a34a;
    --green-soft:#ecfdf3;

    --ink:#172033;
    --text:#334155;
    --muted:#64748b;
    --light:#94a3b8;

    --bg:#f5f7fb;
    --white:#fff;
    --line:#e5eaf1;

    --shadow:0 14px 40px rgba(15,23,42,.07);
    --shadow-hover:0 20px 45px rgba(15,23,42,.11);
}

/* =========================================================
   PAGE
   ========================================================= */

.vt-page{
    min-height:100vh;
    background:
        radial-gradient(
            circle at 95% 0,
            rgba(37,99,235,.07),
            transparent 28%
        ),
        var(--bg);

    color:var(--text);
}

.vt-container{
    width:min(1180px,94%);
    margin:0 auto;
    padding:30px 0 70px;
}

.vt-container *{
    box-sizing:border-box;
}

/* =========================================================
   BACK
   ========================================================= */

.vt-back{
    display:inline-flex;
    align-items:center;
    gap:7px;

    margin-bottom:15px;

    color:var(--muted);

    font-size:12px;
    font-weight:700;

    text-decoration:none;
}

.vt-back:hover{
    color:var(--blue);
}

.vt-back span{
    font-size:18px;
}

/* =========================================================
   HERO
   ========================================================= */

.vt-hero{
    position:relative;

    display:grid;
    grid-template-columns:125px minmax(0,1fr) 185px;

    gap:25px;

    align-items:center;

    padding:27px 29px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fbfdff 60%,
            #f7f3ff 100%
        );

    border:1px solid var(--line);
    border-radius:21px;

    box-shadow:var(--shadow);

    overflow:hidden;
}

.vt-hero::before{
    content:"";

    position:absolute;

    top:0;
    left:0;
    bottom:0;

    width:4px;

    background:
        linear-gradient(
            180deg,
            var(--blue),
            var(--purple)
        );
}

.vt-profile-photo-wrap{
    position:relative;

    width:116px;
    height:116px;
}

.vt-profile-photo-wrap::before{
    content:"";

    position:absolute;

    inset:-4px;

    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--purple)
        );
}

.vt-profile-photo{
    position:relative;

    z-index:1;

    width:100%;
    height:100%;

    object-fit:cover;

    border:5px solid #fff;
    border-radius:50%;

    box-shadow:
        0 12px 28px
        rgba(15,23,42,.14);
}

.vt-hero-content{
    min-width:0;
}

.vt-verified{
    display:inline-flex;

    align-items:center;

    gap:6px;

    padding:5px 10px;

    border:1px solid #bbf7d0;
    border-radius:50px;

    background:var(--green-soft);
    color:var(--green);

    font-size:9px;
    font-weight:800;
}

.vt-verified span{
    width:14px;
    height:14px;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:var(--green);

    color:#fff;

    font-size:8px;
}

.vt-hero-content h1{
    margin:8px 0 3px;

    color:var(--ink);

    font-size:29px;

    line-height:1.15;

    font-weight:800;

    letter-spacing:-.3px;
}

.vt-specialization{
    margin:0;

    color:var(--muted);

    font-size:13px;
}

.vt-rating-row{
    display:flex;

    align-items:center;

    gap:6px;

    margin-top:8px;
}

.vt-stars{
    color:#f59e0b;

    font-size:14px;

    letter-spacing:1px;
}

.vt-rating-row strong{
    color:var(--ink);

    font-size:12px;
}

.vt-rating-row > span:last-child{
    color:var(--muted);

    font-size:11px;
}

.vt-hero-tags{
    display:flex;

    flex-wrap:wrap;

    gap:7px;

    margin-top:10px;
}

.vt-hero-tags span{
    padding:5px 9px;

    border:1px solid #dbe5f5;

    border-radius:50px;

    background:#f8fbff;

    color:var(--text);

    font-size:10px;

    font-weight:600;
}

.vt-hourly-card{
    padding:17px;

    border:1px solid #d9e4f6;

    border-radius:15px;

    background:#fff;

    text-align:center;

    box-shadow:
        0 8px 24px
        rgba(37,99,235,.07);
}

.vt-hourly-card span{
    display:block;

    color:var(--muted);

    font-size:10px;

    font-weight:700;
}

.vt-hourly-card strong{
    display:block;

    margin-top:4px;

    color:var(--blue);

    font-size:23px;

    font-weight:800;
}

.vt-hourly-card small{
    display:block;

    margin-top:2px;

    color:var(--light);

    font-size:9px;
}

/* =========================================================
   TABS
   ========================================================= */

.vt-tabs{
    display:flex;

    align-items:center;

    gap:3px;

    margin:16px 0;

    padding:4px;

    overflow-x:auto;

    background:#fff;

    border:1px solid var(--line);

    border-radius:12px;

    box-shadow:
        0 5px 18px
        rgba(15,23,42,.035);
}

.vt-tab{
    flex:0 0 auto;

    padding:9px 14px;

    border:0;

    border-radius:8px;

    background:transparent;

    color:var(--muted);

    font-family:inherit;

    font-size:10px;

    font-weight:700;

    cursor:pointer;
}

.vt-tab:hover,
.vt-tab.active{
    background:var(--blue-soft);

    color:var(--blue);
}

/* =========================================================
   PANELS
   ========================================================= */

.vt-panel{
    display:none;
}

.vt-panel.active{
    display:block;
}

.vt-profile-grid{
    display:grid;

    grid-template-columns:
        minmax(0,1.6fr)
        minmax(300px,.8fr);

    gap:20px;

    align-items:start;
}

.vt-panel-main{
    display:flex;

    flex-direction:column;

    gap:16px;
}

.vt-panel-side{
    position:sticky;

    top:78px;

    display:flex;

    flex-direction:column;

    gap:16px;
}

/* =========================================================
   CARDS
   ========================================================= */

.vt-card,
.vt-plans-card,
.vt-book-card{
    background:var(--white);

    border:1px solid var(--line);

    border-radius:17px;

    box-shadow:
        0 8px 28px
        rgba(15,23,42,.045);
}

.vt-card{
    padding:22px;
}

.vt-card-title{
    display:flex;

    align-items:flex-start;

    justify-content:space-between;

    gap:15px;

    margin-bottom:16px;
}

.vt-card-title > div:first-child span,
.vt-plans-heading > span,
.vt-book-card > span{
    display:block;

    margin-bottom:4px;

    color:var(--blue);

    font-size:9px;

    font-weight:800;

    letter-spacing:1px;
}

.vt-card-title h2,
.vt-plans-heading h2,
.vt-book-card h2{
    margin:0;

    color:var(--ink);

    font-size:18px;

    line-height:1.25;

    font-weight:800;
}

/* =========================================================
   INFORMATION
   ========================================================= */

.vt-info-grid{
    display:grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:10px;
}

.vt-info-box{
    min-height:75px;

    padding:13px;

    border:1px solid #edf0f4;

    border-radius:11px;

    background:#fbfcfe;
}

.vt-info-box span,
.vt-long-box span,
.vt-skill-box span{
    display:block;

    margin-bottom:4px;

    color:var(--muted);

    font-size:9px;

    font-weight:700;
}

.vt-info-box strong{
    display:block;

    color:var(--ink);

    font-size:12px;

    line-height:1.5;
}

.vt-long-grid{
    display:grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:10px;
}

.vt-long-box{
    padding:14px;

    border:1px solid #edf0f4;

    border-radius:11px;

    background:#fbfcfe;
}

.vt-long-box p{
    margin:0;

    color:var(--text);

    font-size:12px;

    line-height:1.65;
}

.vt-skills-grid{
    display:grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:10px;
}

.vt-skill-box{
    padding:14px;

    border:1px solid #edf0f4;

    border-radius:11px;

    background:#fbfcfe;
}

.vt-skill-box.wide{
    grid-column:1 / -1;
}

.vt-skill-box p{
    margin:0;

    color:var(--text);

    font-size:12px;

    line-height:1.6;
}

/* =========================================================
   PLANS
   ========================================================= */

.vt-plans-card{
    padding:21px;

    box-shadow:var(--shadow);
}

.vt-plans-heading p{
    margin:5px 0 15px;

    color:var(--muted);

    font-size:11px;

    line-height:1.5;
}

.vt-plans{
    display:flex;

    flex-direction:column;

    gap:9px;
}

.vt-plan{
    position:relative;

    display:block;

    padding:15px;

    border:1px solid var(--line);

    border-radius:13px;

    background:#fff;

    color:var(--text);

    text-decoration:none;

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.vt-plan:hover{
    transform:translateY(-2px);

    border-color:#cbdcf8;

    box-shadow:
        0 12px 25px
        rgba(15,23,42,.07);
}

.vt-plan-top{
    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:10px;
}

.vt-plan-top span{
    color:var(--ink);

    font-size:10px;

    font-weight:800;

    letter-spacing:.6px;
}

.vt-plan-top strong{
    color:var(--blue);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:22px;

    font-weight:800;
}

.vt-plan-sessions{
    margin-top:4px;

    color:var(--text);

    font-size:11px;

    font-weight:700;
}

.vt-plan p{
    margin:5px 0 0;

    color:var(--muted);

    font-size:10px;

    line-height:1.4;
}

.vt-plan.featured{
    padding-top:33px;

    border:2px solid var(--purple);

    background:
        linear-gradient(
            135deg,
            #fff,
            #fbf9ff
        );

    box-shadow:
        0 12px 28px
        rgba(124,58,237,.12);
}

.vt-plan.featured .vt-plan-top strong{
    color:var(--purple);
}

.vt-popular{
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:25px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:11px 11px 0 0;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            #8b5cf6
        );

    color:#fff;

    font-size:8px;

    font-weight:800;

    letter-spacing:.6px;
}

.vt-plan-note{
    display:flex;

    gap:6px;

    margin-top:12px;

    padding:9px;

    border-radius:9px;

    background:var(--blue-soft);

    color:var(--muted);

    font-size:9px;
}

.vt-plan-note span{
    color:var(--green);

    font-weight:800;
}


/* =========================================================
   PRICING & EARNINGS
   ========================================================= */

.vt-pricing-card{
    overflow:hidden;
}

.vt-pricing-list{
    display:flex;
    flex-direction:column;
    gap:9px;
    margin-top:16px;
}

.vt-pricing-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:13px 14px;
    border:1px solid var(--line);
    border-radius:11px;
    background:#fbfcfe;
    transition:
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.vt-pricing-row:hover{
    transform:translateY(-1px);
    border-color:#cbdcf8;
    box-shadow:0 8px 18px rgba(15,23,42,.05);
}

.vt-pricing-row > div{
    min-width:0;
    display:flex;
    flex-direction:column;
    gap:3px;
}

.vt-pricing-row > div > span{
    color:var(--ink);
    font-size:10px;
    font-weight:800;
    letter-spacing:.5px;
}

.vt-pricing-row > div > small{
    color:var(--muted);
    font-size:9px;
    line-height:1.35;
}

.vt-pricing-row > strong{
    flex:0 0 auto;
    color:var(--blue);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size:19px;
    font-weight:800;
}

.vt-fee-box{
    margin-top:14px;
    padding:13px 14px;
    border:1px solid #e3e8f0;
    border-radius:11px;
    background:#f8fafc;
}

.vt-fee-title{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
}

.vt-fee-title span{
    color:var(--muted);
    font-size:9px;
    font-weight:800;
    letter-spacing:.7px;
}

.vt-fee-title strong{
    color:var(--ink);
    font-size:16px;
    font-weight:800;
}

.vt-fee-box p{
    margin:6px 0 0;
    color:var(--muted);
    font-size:9px;
    line-height:1.55;
}

.vt-earnings-box{
    margin-top:14px;
    padding:14px;
    border:1px solid #dbe8ff;
    border-radius:12px;
    background:
        linear-gradient(
            145deg,
            #f6f9ff,
            #eef5ff
        );
}

.vt-earnings-heading{
    display:flex;
    flex-direction:column;
    gap:3px;
    margin-bottom:11px;
}

.vt-earnings-heading span{
    color:var(--blue);
    font-size:9px;
    font-weight:800;
    letter-spacing:.7px;
}

.vt-earnings-heading small{
    color:var(--muted);
    font-size:9px;
}

.vt-earnings-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
}

.vt-earnings-grid > div{
    padding:10px 11px;
    border:1px solid #e2ebfa;
    border-radius:10px;
    background:#fff;
}

.vt-earnings-grid > div span{
    display:block;
    margin-bottom:3px;
    color:var(--muted);
    font-size:8px;
    font-weight:700;
}

.vt-earnings-grid > div strong{
    display:block;
    color:var(--ink);
    font-size:14px;
    font-weight:800;
}

.vt-pricing-card .vt-plan-note{
    margin-top:12px;
}

/* Better heading spacing for the new pricing card */
.vt-pricing-card .vt-plans-heading p{
    margin-bottom:0;
}

/* =========================================================
   PRICING RESPONSIVE
   ========================================================= */

@media(max-width:520px){

    .vt-pricing-list{
        gap:8px;
    }

    .vt-pricing-row{
        padding:12px;
    }

    .vt-pricing-row > strong{
        font-size:17px;
    }

    .vt-earnings-grid{
        grid-template-columns:1fr 1fr;
    }

    .vt-earnings-grid > div{
        padding:9px 10px;
    }

    .vt-earnings-grid > div strong{
        font-size:13px;
    }
}

/* =========================================================
   BOOKING CARD
   ========================================================= */

.vt-book-card{
    padding:21px;

    background:
        linear-gradient(
            145deg,
            #172033,
            #233b70
        );

    color:#fff;

    box-shadow:
        0 18px 40px
        rgba(23,32,51,.17);
}

.vt-book-card > span{
    color:#93c5fd;
}

.vt-book-card h2{
    color:#fff;
}

.vt-book-card p{
    margin:7px 0 15px;

    color:
        rgba(255,255,255,.68);

    font-size:11px;

    line-height:1.6;
}

.vt-book-btn{
    min-height:45px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 14px;

    border-radius:10px;

    background:#fff;

    color:var(--blue);

    font-size:12px;

    font-weight:800;

    text-decoration:none;
}

.vt-book-btn:hover{
    transform:translateY(-2px);

    box-shadow:
        0 10px 24px
        rgba(0,0,0,.16);
}

.vt-book-btn strong{
    font-size:18px;
}

.vt-empty-state{
    padding:30px 15px;

    border:1px dashed #d7dee8;

    border-radius:12px;

    text-align:center;
}

.vt-empty-state.large{
    min-height:310px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    background:
        radial-gradient(
            circle,
            #eef4ff,
            #fafbfe
        );
}

.vt-empty-state strong{
    display:block;

    color:var(--ink);

    font-size:13px;
}

.vt-empty-state span{
    display:block;

    margin-top:4px;

    color:var(--muted);

    font-size:10px;
}

.vt-empty-icon{
    width:52px;
    height:52px;

    display:flex;

    align-items:center;
    justify-content:center;

    margin-bottom:10px;

    border-radius:50%;

    background:var(--blue-soft);

    color:var(--blue);

    font-size:17px;
}

/* =========================================================
   SCHEDULE
   ========================================================= */

.vt-schedule-list{
    display:grid;

    gap:9px;
}

.vt-schedule-item{
    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:10px;

    padding:13px 14px;

    border:1px solid var(--line);

    border-radius:11px;

    background:#fbfcfe;
}

.vt-schedule-item strong{
    display:block;

    color:var(--ink);

    font-size:12px;
}

.vt-schedule-item div span{
    display:block;

    margin-top:3px;

    color:var(--muted);

    font-size:10px;
}

.vt-available{
    padding:5px 8px;

    border-radius:50px;

    background:var(--green-soft);

    color:var(--green);

    font-size:9px;

    font-weight:800;
}

/* =========================================================
   VIDEO
   ========================================================= */

.vt-video-wrap{
    overflow:hidden;

    border-radius:14px;

    background:#111827;

    box-shadow:
        0 15px 35px
        rgba(15,23,42,.12);
}

.vt-video-wrap video{
    display:block;

    width:100%;

    max-height:530px;

    background:#111827;
}

/* =========================================================
   CREDENTIALS
   ========================================================= */

.vt-credential-list{
    display:grid;

    gap:9px;
}

.vt-credential-item{
    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:10px;

    padding:12px 13px;

    border:1px solid var(--line);

    border-radius:11px;

    background:#fbfcfe;
}

.vt-doc-left{
    display:flex;

    align-items:center;

    gap:10px;

    min-width:0;
}

.vt-doc-icon{
    width:35px;
    height:35px;

    display:flex;

    align-items:center;
    justify-content:center;

    flex:0 0 auto;

    border-radius:9px;

    background:var(--blue-soft);

    font-size:15px;
}

.vt-doc-left strong{
    display:block;

    color:var(--ink);

    font-size:11px;
}

.vt-doc-left small{
    display:block;

    margin-top:2px;

    color:var(--muted);

    font-size:9px;
}

.vt-doc-btn{
    min-width:65px;

    min-height:32px;

    border:1px solid #cbdcf8;

    border-radius:8px;

    background:#fff;

    color:var(--blue);

    font-family:inherit;

    font-size:10px;

    font-weight:700;

    cursor:pointer;
}

.vt-doc-btn:hover{
    border-color:var(--blue);

    background:var(--blue-soft);
}

/* =========================================================
   REVIEWS
   ========================================================= */

.vt-review-score{
    display:flex;

    align-items:baseline;

    gap:2px;
}

.vt-review-score strong{
    color:var(--ink);

    font-size:20px;
}

.vt-review-score span{
    color:var(--muted);

    font-size:10px;
}

.vt-review-summary-bar{
    display:flex;

    align-items:center;

    gap:9px;

    margin-bottom:15px;

    padding:11px 13px;

    border-radius:10px;

    background:#fffbeb;
}

.vt-stars.large{
    font-size:16px;

    color:#f59e0b;

    letter-spacing:1px;
}

.vt-review-summary-bar span{
    color:var(--muted);

    font-size:10px;
}

.vt-review-list{
    display:grid;

    gap:9px;
}

.vt-review-item{
    padding:14px;

    border:1px solid var(--line);

    border-radius:11px;

    background:#fbfcfe;
}

.vt-review-head{
    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:10px;
}

.vt-review-head strong{
    color:var(--ink);

    font-size:12px;
}

.vt-review-stars{
    color:#f59e0b;

    font-size:12px;

    letter-spacing:1px;
}

.vt-review-item p{
    margin:7px 0 0;

    color:var(--text);

    font-size:11px;

    line-height:1.7;
}

/* =========================================================
   MODAL
   ========================================================= */

.vt-modal{
    position:fixed;

    inset:0;

    z-index:9999;

    display:none;

    align-items:center;
    justify-content:center;

    padding:20px;

    background:rgba(15,23,42,.72);

    backdrop-filter:blur(5px);
}

.vt-modal.show{
    display:flex;
}

.vt-modal-box{
    position:relative;

    width:min(920px,100%);

    height:min(700px,90vh);

    overflow:hidden;

    border-radius:16px;

    background:#fff;

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.25);
}

.vt-modal-box iframe{
    width:100%;
    height:100%;

    border:0;
}

.vt-modal-close{
    position:absolute;

    top:10px;
    right:10px;

    z-index:2;

    width:34px;
    height:34px;

    border:0;

    border-radius:50%;

    background:#111827;

    color:#fff;

    font-size:20px;

    cursor:pointer;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width:1050px){

    .vt-hero{
        grid-template-columns:
            110px minmax(0,1fr);
    }

    .vt-hourly-card{
        grid-column:1 / -1;
    }

    .vt-profile-grid{
        grid-template-columns:1fr;
    }

    .vt-panel-side{
        position:static;
    }

}

@media(max-width:760px){

    .vt-container{
        width:92%;
        padding-top:22px;
    }

    .vt-hero{
        grid-template-columns:1fr;

        text-align:center;

        padding:22px 18px;
    }

    .vt-profile-photo-wrap{
        margin:0 auto;
    }

    .vt-verified{
        margin:0 auto;
    }

    .vt-rating-row,
    .vt-hero-tags{
        justify-content:center;
    }

    .vt-info-grid,
    .vt-long-grid,
    .vt-skills-grid{
        grid-template-columns:1fr;
    }

    .vt-skill-box.wide{
        grid-column:auto;
    }

}

@media(max-width:520px){

    .vt-container{
        width:94%;
    }llllll

    .vt-hero-content h1{
        font-size:24px;
    }

    .vt-card,
    .vt-plans-card,
    .vt-book-card{
        padding:18px;
        border-radius:15px;
    }

    .vt-card-title h2,
    .vt-plans-heading h2,
    .vt-book-card h2{
        font-size:16px;
    }

    .vt-tabs{
        margin-top:13px;
    }

    .vt-tab{
        padding:8px 10px;
        font-size:9px;
    }

    .vt-video-wrap video{
        max-height:330px;
    }

}/* =========================================================
   TUTORHUB - VIEW TUTOR
   NEW LAYOUT MATCHING THE REQUESTED WIREFRAME
   ========================================================= */

:root{
    --blue:#2563eb;
    --blue-dark:#1d4ed8;
    --blue-soft:#eff6ff;

    --purple:#7c3aed;
    --purple-dark:#6d28d9;
    --purple-soft:#f5f3ff;

    --green:#16a34a;
    --green-soft:#ecfdf3;

    --ink:#172033;
    --text:#334155;
    --muted:#64748b;
    --light:#94a3b8;

    --bg:#f5f7fb;
    --white:#fff;
    --line:#e5eaf1;

    --shadow:0 14px 40px rgba(15,23,42,.07);
    --shadow-hover:0 20px 45px rgba(15,23,42,.11);
}

/* =========================================================
   PAGE
   ========================================================= */

.vt-page{
    min-height:100vh;
    background:
        radial-gradient(
            circle at 95% 0,
            rgba(37,99,235,.07),
            transparent 28%
        ),
        var(--bg);

    color:var(--text);
}

.vt-container{
    width:min(1180px,94%);
    margin:0 auto;
    padding:30px 0 70px;
}

.vt-container *{
    box-sizing:border-box;
}

/* =========================================================
   BACK
   ========================================================= */

.vt-back{
    display:inline-flex;
    align-items:center;
    gap:7px;

    margin-bottom:15px;

    color:var(--muted);

    font-size:12px;
    font-weight:700;

    text-decoration:none;
}

.vt-back:hover{
    color:var(--blue);
}

.vt-back span{
    font-size:18px;
}

/* =========================================================
   HERO
   ========================================================= */

.vt-hero{
    position:relative;

    display:grid;
    grid-template-columns:125px minmax(0,1fr) 185px;

    gap:25px;

    align-items:center;

    padding:27px 29px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fbfdff 60%,
            #f7f3ff 100%
        );

    border:1px solid var(--line);
    border-radius:21px;

    box-shadow:var(--shadow);

    overflow:hidden;
}

.vt-hero::before{
    content:"";

    position:absolute;

    top:0;
    left:0;
    bottom:0;

    width:4px;

    background:
        linear-gradient(
            180deg,
            var(--blue),
            var(--purple)
        );
}

.vt-profile-photo-wrap{
    position:relative;

    width:116px;
    height:116px;
}

.vt-profile-photo-wrap::before{
    content:"";

    position:absolute;

    inset:-4px;

    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--purple)
        );
}

.vt-profile-photo{
    position:relative;

    z-index:1;

    width:100%;
    height:100%;

    object-fit:cover;

    border:5px solid #fff;
    border-radius:50%;

    box-shadow:
        0 12px 28px
        rgba(15,23,42,.14);
}

.vt-hero-content{
    min-width:0;
}

.vt-verified{
    display:inline-flex;

    align-items:center;

    gap:6px;

    padding:5px 10px;

    border:1px solid #bbf7d0;
    border-radius:50px;

    background:var(--green-soft);
    color:var(--green);

    font-size:9px;
    font-weight:800;
}

.vt-verified span{
    width:14px;
    height:14px;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:var(--green);

    color:#fff;

    font-size:8px;
}

.vt-hero-content h1{
    margin:8px 0 3px;

    color:var(--ink);

    font-size:29px;

    line-height:1.15;

    font-weight:800;

    letter-spacing:-.3px;
}

.vt-specialization{
    margin:0;

    color:var(--muted);

    font-size:13px;
}

.vt-rating-row{
    display:flex;

    align-items:center;

    gap:6px;

    margin-top:8px;
}

.vt-stars{
    color:#f59e0b;

    font-size:14px;

    letter-spacing:1px;
}

.vt-rating-row strong{
    color:var(--ink);

    font-size:12px;
}

.vt-rating-row > span:last-child{
    color:var(--muted);

    font-size:11px;
}

.vt-hero-tags{
    display:flex;

    flex-wrap:wrap;

    gap:7px;

    margin-top:10px;
}

.vt-hero-tags span{
    padding:5px 9px;

    border:1px solid #dbe5f5;

    border-radius:50px;

    background:#f8fbff;

    color:var(--text);

    font-size:10px;

    font-weight:600;
}

.vt-hourly-card{
    padding:17px;

    border:1px solid #d9e4f6;

    border-radius:15px;

    background:#fff;

    text-align:center;

    box-shadow:
        0 8px 24px
        rgba(37,99,235,.07);
}

.vt-hourly-card span{
    display:block;

    color:var(--muted);

    font-size:10px;

    font-weight:700;
}

.vt-hourly-card strong{
    display:block;

    margin-top:4px;

    color:var(--blue);

    font-size:23px;

    font-weight:800;
}

.vt-hourly-card small{
    display:block;

    margin-top:2px;

    color:var(--light);

    font-size:9px;
}

/* =========================================================
   TABS
   ========================================================= */

.vt-tabs{
    display:flex;

    align-items:center;

    gap:3px;

    margin:16px 0;

    padding:4px;

    overflow-x:auto;

    background:#fff;

    border:1px solid var(--line);

    border-radius:12px;

    box-shadow:
        0 5px 18px
        rgba(15,23,42,.035);
}

.vt-tab{
    flex:0 0 auto;

    padding:9px 14px;

    border:0;

    border-radius:8px;

    background:transparent;

    color:var(--muted);

    font-family:inherit;

    font-size:10px;

    font-weight:700;

    cursor:pointer;
}

.vt-tab:hover,
.vt-tab.active{
    background:var(--blue-soft);

    color:var(--blue);
}

/* =========================================================
   PANELS
   ========================================================= */

.vt-panel{
    display:none;
}

.vt-panel.active{
    display:block;
}

.vt-profile-grid{
    display:grid;

    grid-template-columns:
        minmax(0,1.6fr)
        minmax(300px,.8fr);

    gap:20px;

    align-items:start;
}

.vt-panel-main{
    display:flex;

    flex-direction:column;

    gap:16px;
}

.vt-panel-side{
    position:sticky;

    top:78px;

    display:flex;

    flex-direction:column;

    gap:16px;
}

/* =========================================================
   CARDS
   ========================================================= */

.vt-card,
.vt-plans-card,
.vt-book-card{
    background:var(--white);

    border:1px solid var(--line);

    border-radius:17px;

    box-shadow:
        0 8px 28px
        rgba(15,23,42,.045);
}

.vt-card{
    padding:22px;
}

.vt-card-title{
    display:flex;

    align-items:flex-start;

    justify-content:space-between;

    gap:15px;

    margin-bottom:16px;
}

.vt-card-title > div:first-child span,
.vt-plans-heading > span,
.vt-book-card > span{
    display:block;

    margin-bottom:4px;

    color:var(--blue);

    font-size:9px;

    font-weight:800;

    letter-spacing:1px;
}

.vt-card-title h2,
.vt-plans-heading h2,
.vt-book-card h2{
    margin:0;

    color:var(--ink);

    font-size:18px;

    line-height:1.25;

    font-weight:800;
}

/* =========================================================
   INFORMATION
   ========================================================= */

.vt-info-grid{
    display:grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:10px;
}

.vt-info-box{
    min-height:75px;

    padding:13px;

    border:1px solid #edf0f4;

    border-radius:11px;

    background:#fbfcfe;
}

.vt-info-box span,
.vt-long-box span,
.vt-skill-box span{
    display:block;

    margin-bottom:4px;

    color:var(--muted);

    font-size:9px;

    font-weight:700;
}

.vt-info-box strong{
    display:block;

    color:var(--ink);

    font-size:12px;

    line-height:1.5;
}

.vt-long-grid{
    display:grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:10px;
}

.vt-long-box{
    padding:14px;

    border:1px solid #edf0f4;

    border-radius:11px;

    background:#fbfcfe;
}

.vt-long-box p{
    margin:0;

    color:var(--text);

    font-size:12px;

    line-height:1.65;
}

.vt-skills-grid{
    display:grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:10px;
}

.vt-skill-box{
    padding:14px;

    border:1px solid #edf0f4;

    border-radius:11px;

    background:#fbfcfe;
}

.vt-skill-box.wide{
    grid-column:1 / -1;
}

.vt-skill-box p{
    margin:0;

    color:var(--text);

    font-size:12px;

    line-height:1.6;
}

/* =========================================================
   PLANS
   ========================================================= */

.vt-plans-card{
    padding:21px;

    box-shadow:var(--shadow);
}

.vt-plans-heading p{
    margin:5px 0 15px;

    color:var(--muted);

    font-size:11px;

    line-height:1.5;
}

.vt-plans{
    display:flex;

    flex-direction:column;

    gap:9px;
}

.vt-plan{
    position:relative;

    display:block;

    padding:15px;

    border:1px solid var(--line);

    border-radius:13px;

    background:#fff;

    color:var(--text);

    text-decoration:none;

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.vt-plan:hover{
    transform:translateY(-2px);

    border-color:#cbdcf8;

    box-shadow:
        0 12px 25px
        rgba(15,23,42,.07);
}

.vt-plan-top{
    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:10px;
}

.vt-plan-top span{
    color:var(--ink);

    font-size:10px;

    font-weight:800;

    letter-spacing:.6px;
}

.vt-plan-top strong{
    color:var(--blue);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:22px;

    font-weight:800;
}

.vt-plan-sessions{
    margin-top:4px;

    color:var(--text);

    font-size:11px;

    font-weight:700;
}

.vt-plan p{
    margin:5px 0 0;

    color:var(--muted);

    font-size:10px;

    line-height:1.4;
}

.vt-plan.featured{
    padding-top:33px;

    border:2px solid var(--purple);

    background:
        linear-gradient(
            135deg,
            #fff,
            #fbf9ff
        );

    box-shadow:
        0 12px 28px
        rgba(124,58,237,.12);
}

.vt-plan.featured .vt-plan-top strong{
    color:var(--purple);
}

.vt-popular{
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:25px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:11px 11px 0 0;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            #8b5cf6
        );

    color:#fff;

    font-size:8px;

    font-weight:800;

    letter-spacing:.6px;
}

.vt-plan-note{
    display:flex;

    gap:6px;

    margin-top:12px;

    padding:9px;

    border-radius:9px;

    background:var(--blue-soft);

    color:var(--muted);

    font-size:9px;
}

.vt-plan-note span{
    color:var(--green);

    font-weight:800;
}


/* =========================================================
   PRICING & EARNINGS
   ========================================================= */

.vt-pricing-card{
    overflow:hidden;
}

.vt-pricing-list{
    display:flex;
    flex-direction:column;
    gap:9px;
    margin-top:16px;
}

.vt-pricing-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:13px 14px;
    border:1px solid var(--line);
    border-radius:11px;
    background:#fbfcfe;
    transition:
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.vt-pricing-row:hover{
    transform:translateY(-1px);
    border-color:#cbdcf8;
    box-shadow:0 8px 18px rgba(15,23,42,.05);
}

.vt-pricing-row > div{
    min-width:0;
    display:flex;
    flex-direction:column;
    gap:3px;
}

.vt-pricing-row > div > span{
    color:var(--ink);
    font-size:10px;
    font-weight:800;
    letter-spacing:.5px;
}

.vt-pricing-row > div > small{
    color:var(--muted);
    font-size:9px;
    line-height:1.35;
}

.vt-pricing-row > strong{
    flex:0 0 auto;
    color:var(--blue);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size:19px;
    font-weight:800;
}

.vt-fee-box{
    margin-top:14px;
    padding:13px 14px;
    border:1px solid #e3e8f0;
    border-radius:11px;
    background:#f8fafc;
}

.vt-fee-title{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
}

.vt-fee-title span{
    color:var(--muted);
    font-size:9px;
    font-weight:800;
    letter-spacing:.7px;
}

.vt-fee-title strong{
    color:var(--ink);
    font-size:16px;
    font-weight:800;
}

.vt-fee-box p{
    margin:6px 0 0;
    color:var(--muted);
    font-size:9px;
    line-height:1.55;
}

.vt-earnings-box{
    margin-top:14px;
    padding:14px;
    border:1px solid #dbe8ff;
    border-radius:12px;
    background:
        linear-gradient(
            145deg,
            #f6f9ff,
            #eef5ff
        );
}

.vt-earnings-heading{
    display:flex;
    flex-direction:column;
    gap:3px;
    margin-bottom:11px;
}

.vt-earnings-heading span{
    color:var(--blue);
    font-size:9px;
    font-weight:800;
    letter-spacing:.7px;
}

.vt-earnings-heading small{
    color:var(--muted);
    font-size:9px;
}

.vt-earnings-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
}

.vt-earnings-grid > div{
    padding:10px 11px;
    border:1px solid #e2ebfa;
    border-radius:10px;
    background:#fff;
}

.vt-earnings-grid > div span{
    display:block;
    margin-bottom:3px;
    color:var(--muted);
    font-size:8px;
    font-weight:700;
}

.vt-earnings-grid > div strong{
    display:block;
    color:var(--ink);
    font-size:14px;
    font-weight:800;
}

.vt-pricing-card .vt-plan-note{
    margin-top:12px;
}

/* Better heading spacing for the new pricing card */
.vt-pricing-card .vt-plans-heading p{
    margin-bottom:0;
}

/* =========================================================
   PRICING RESPONSIVE
   ========================================================= */

@media(max-width:520px){

    .vt-pricing-list{
        gap:8px;
    }

    .vt-pricing-row{
        padding:12px;
    }

    .vt-pricing-row > strong{
        font-size:17px;
    }

    .vt-earnings-grid{
        grid-template-columns:1fr 1fr;
    }

    .vt-earnings-grid > div{
        padding:9px 10px;
    }

    .vt-earnings-grid > div strong{
        font-size:13px;
    }
}

/* =========================================================
   BOOKING CARD
   ========================================================= */

.vt-book-card{
    padding:21px;

    background:
        linear-gradient(
            145deg,
            #172033,
            #233b70
        );

    color:#fff;

    box-shadow:
        0 18px 40px
        rgba(23,32,51,.17);
}

.vt-book-card > span{
    color:#93c5fd;
}

.vt-book-card h2{
    color:#fff;
}

.vt-book-card p{
    margin:7px 0 15px;

    color:
        rgba(255,255,255,.68);

    font-size:11px;

    line-height:1.6;
}

.vt-book-btn{
    min-height:45px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 14px;

    border-radius:10px;

    background:#fff;

    color:var(--blue);

    font-size:12px;

    font-weight:800;

    text-decoration:none;
}

.vt-book-btn:hover{
    transform:translateY(-2px);

    box-shadow:
        0 10px 24px
        rgba(0,0,0,.16);
}

.vt-book-btn strong{
    font-size:18px;
}

.vt-empty-state{
    padding:30px 15px;

    border:1px dashed #d7dee8;

    border-radius:12px;

    text-align:center;
}

.vt-empty-state.large{
    min-height:310px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    background:
        radial-gradient(
            circle,
            #eef4ff,
            #fafbfe
        );
}

.vt-empty-state strong{
    display:block;

    color:var(--ink);

    font-size:13px;
}

.vt-empty-state span{
    display:block;

    margin-top:4px;

    color:var(--muted);

    font-size:10px;
}

.vt-empty-icon{
    width:52px;
    height:52px;

    display:flex;

    align-items:center;
    justify-content:center;

    margin-bottom:10px;

    border-radius:50%;

    background:var(--blue-soft);

    color:var(--blue);

    font-size:17px;
}

/* =========================================================
   SCHEDULE
   ========================================================= */

.vt-schedule-list{
    display:grid;

    gap:9px;
}

.vt-schedule-item{
    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:10px;

    padding:13px 14px;

    border:1px solid var(--line);

    border-radius:11px;

    background:#fbfcfe;
}

.vt-schedule-item strong{
    display:block;

    color:var(--ink);

    font-size:12px;
}

.vt-schedule-item div span{
    display:block;

    margin-top:3px;

    color:var(--muted);

    font-size:10px;
}

.vt-available{
    padding:5px 8px;

    border-radius:50px;

    background:var(--green-soft);

    color:var(--green);

    font-size:9px;

    font-weight:800;
}

/* =========================================================
   VIDEO
   ========================================================= */

.vt-video-wrap{
    overflow:hidden;

    border-radius:14px;

    background:#111827;

    box-shadow:
        0 15px 35px
        rgba(15,23,42,.12);
}

.vt-video-wrap video{
    display:block;

    width:100%;

    max-height:530px;

    background:#111827;
}

/* =========================================================
   CREDENTIALS
   ========================================================= */

.vt-credential-list{
    display:grid;

    gap:9px;
}

.vt-credential-item{
    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:10px;

    padding:12px 13px;

    border:1px solid var(--line);

    border-radius:11px;

    background:#fbfcfe;
}

.vt-doc-left{
    display:flex;

    align-items:center;

    gap:10px;

    min-width:0;
}

.vt-doc-icon{
    width:35px;
    height:35px;

    display:flex;

    align-items:center;
    justify-content:center;

    flex:0 0 auto;

    border-radius:9px;

    background:var(--blue-soft);

    font-size:15px;
}

.vt-doc-left strong{
    display:block;

    color:var(--ink);

    font-size:11px;
}

.vt-doc-left small{
    display:block;

    margin-top:2px;

    color:var(--muted);

    font-size:9px;
}

.vt-doc-btn{
    min-width:65px;

    min-height:32px;

    border:1px solid #cbdcf8;

    border-radius:8px;

    background:#fff;

    color:var(--blue);

    font-family:inherit;

    font-size:10px;

    font-weight:700;

    cursor:pointer;
}

.vt-doc-btn:hover{
    border-color:var(--blue);

    background:var(--blue-soft);
}

/* =========================================================
   REVIEWS
   ========================================================= */

.vt-review-score{
    display:flex;

    align-items:baseline;

    gap:2px;
}

.vt-review-score strong{
    color:var(--ink);

    font-size:20px;
}

.vt-review-score span{
    color:var(--muted);

    font-size:10px;
}

.vt-review-summary-bar{
    display:flex;

    align-items:center;

    gap:9px;

    margin-bottom:15px;

    padding:11px 13px;

    border-radius:10px;

    background:#fffbeb;
}

.vt-stars.large{
    font-size:16px;

    color:#f59e0b;

    letter-spacing:1px;
}

.vt-review-summary-bar span{
    color:var(--muted);

    font-size:10px;
}

.vt-review-list{
    display:grid;

    gap:9px;
}

.vt-review-item{
    padding:14px;

    border:1px solid var(--line);

    border-radius:11px;

    background:#fbfcfe;
}

.vt-review-head{
    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:10px;
}

.vt-review-head strong{
    color:var(--ink);

    font-size:12px;
}

.vt-review-stars{
    color:#f59e0b;

    font-size:12px;

    letter-spacing:1px;
}

.vt-review-item p{
    margin:7px 0 0;

    color:var(--text);

    font-size:11px;

    line-height:1.7;
}

/* =========================================================
   MODAL
   ========================================================= */

.vt-modal{
    position:fixed;

    inset:0;

    z-index:9999;

    display:none;

    align-items:center;
    justify-content:center;

    padding:20px;

    background:rgba(15,23,42,.72);

    backdrop-filter:blur(5px);
}

.vt-modal.show{
    display:flex;
}

.vt-modal-box{
    position:relative;

    width:min(920px,100%);

    height:min(700px,90vh);

    overflow:hidden;

    border-radius:16px;

    background:#fff;

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.25);
}

.vt-modal-box iframe{
    width:100%;
    height:100%;

    border:0;
}

.vt-modal-close{
    position:absolute;

    top:10px;
    right:10px;

    z-index:2;

    width:34px;
    height:34px;

    border:0;

    border-radius:50%;

    background:#111827;

    color:#fff;

    font-size:20px;

    cursor:pointer;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width:1050px){

    .vt-hero{
        grid-template-columns:
            110px minmax(0,1fr);
    }

    .vt-hourly-card{
        grid-column:1 / -1;
    }

    .vt-profile-grid{
        grid-template-columns:1fr;
    }

    .vt-panel-side{
        position:static;
    }

}

@media(max-width:760px){

    .vt-container{
        width:92%;
        padding-top:22px;
    }

    .vt-hero{
        grid-template-columns:1fr;

        text-align:center;

        padding:22px 18px;
    }

    .vt-profile-photo-wrap{
        margin:0 auto;
    }

    .vt-verified{
        margin:0 auto;
    }

    .vt-rating-row,
    .vt-hero-tags{
        justify-content:center;
    }

    .vt-info-grid,
    .vt-long-grid,
    .vt-skills-grid{
        grid-template-columns:1fr;
    }

    .vt-skill-box.wide{
        grid-column:auto;
    }

}

@media(max-width:520px){

    .vt-container{
        width:94%;
    }

    .vt-hero-content h1{
        font-size:24px;
    }

    .vt-card,
    .vt-plans-card,
    .vt-book-card{
        padding:18px;
        border-radius:15px;
    }

    .vt-card-title h2,
    .vt-plans-heading h2,
    .vt-book-card h2{
        font-size:16px;
    }

    .vt-tabs{
        margin-top:13px;
    }

    .vt-tab{
        padding:8px 10px;
        font-size:9px;
    }

    .vt-video-wrap video{
        max-height:330px;
    }

}