/* RESET */

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

body{
    font-family:'Inter',sans-serif;
    background:#f4fbfa;
    color:#064b46;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* CONTAINER */

.vd-container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

.site-header{
    background:#ffffff;
    border-bottom:1px solid #dcefed;
    position:sticky;
    top:0;
    z-index:999;
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:80px;
}

.site-logo{
    font-size:32px;
    font-weight:700;
    color:#00564f;
}

.vd-menu{
    display:flex;
    align-items:center;
    gap:28px;
}

.vd-menu a{
    color:#064b46;
    font-weight:600;
}

.vd-header-btn{
    background:#11c5b5;
    color:#fff !important;
    padding:10px 18px;
    border-radius:10px;
}

/* BUTTON */

.vd-btn{
    display:inline-block;
    background:#11c5b5;
    color:#fff;
    padding:12px 22px;
    border-radius:10px;
    font-weight:600;
}

/* SECTION */

.vd-section{
    padding:80px 0;
}

/* GRID */

.vd-grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.vd-grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.vd-grid-4{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* CARD */

.vd-card{
    background:#ffffff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

/* FORM */

input,
textarea,
select{
    width:100%;
    padding:14px;
    border:1px solid #d5e5e4;
    border-radius:10px;
    font-size:15px;
    margin-bottom:18px;
}

button,
input[type="submit"]{
    background:#11c5b5;
    color:#fff;
    border:none;
    padding:14px 22px;
    border-radius:10px;
    cursor:pointer;
}

/* LOGIN / REGISTER */

.vd-auth-page{
    padding:90px 0;
}

.vd-auth-box{
    max-width:500px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* DASHBOARD */

.doctor-dashboard{
    padding:50px 0;
}

.dashboard-grid{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:30px;
}

.dashboard-sidebar{
    background:#ffffff;
    padding:25px;
    border-radius:20px;
    height:fit-content;
}

.dashboard-content{
    background:#ffffff;
    padding:30px;
    border-radius:20px;
}

/* DOCTOR PROFILE */

.doctor-profile-wrap{
    padding:70px 0;
}

.doctor-profile-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
}

.doctor-main-card,
.doctor-sidebar{
    background:#ffffff;
    padding:30px;
    border-radius:24px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

/* FOOTER */

.site-footer{
    background:#00564f;
    color:#ffffff;
    margin-top:80px;
    padding-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
    padding-bottom:40px;
}

.site-footer h3{
    margin-bottom:18px;
}

.site-footer p,
.site-footer a{
    color:#dff7f4;
}

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

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.15);
    text-align:center;
    padding:20px;
    font-size:14px;
}

/* MOBILE */

@media(max-width:768px){

    .header-inner{
        flex-direction:column;
        padding:20px 0;
        gap:20px;
    }

    .vd-menu{
        flex-direction:column;
        width:100%;
        text-align:center;
    }

    .vd-grid-2,
    .vd-grid-3,
    .vd-grid-4,
    .dashboard-grid,
    .doctor-profile-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .vd-container{
        width:92%;
    }

    .site-logo{
        font-size:26px;
    }

}
/* HOMEPAGE BODY FIX */

.vd-hero{
    padding:80px 0;
}

.vd-hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.vd-hero-content h1{
    font-size:56px;
    line-height:1.08;
    margin-bottom:22px;
    color:#00564f;
}

.vd-hero-content p{
    font-size:18px;
    max-width:620px;
    margin-bottom:25px;
}

.vd-hero-image img{
    width:100%;
    height:460px;
    object-fit:cover;
    border-radius:24px;
}

.vd-search-box{
    display:flex;
    gap:0;
    max-width:620px;
    margin-bottom:25px;
}

.vd-search-box input{
    margin:0;
    border-radius:12px 0 0 12px;
}

.vd-search-box button{
    border-radius:0 12px 12px 0;
    white-space:nowrap;
}

.vd-hero-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    max-width:650px;
}

.vd-hero-stats div{
    background:#ffffff;
    padding:18px;
    border-radius:16px;
    box-shadow:0 6px 20px rgba(0,0,0,0.04);
}

.vd-hero-stats strong{
    display:block;
    font-size:24px;
    color:#00564f;
}

.vd-hero-stats span{
    font-size:14px;
}

/* AI + DASHBOARD CARDS */

.vd-feature-cards{
    padding:30px 0 80px;
}

.vd-feature-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.vd-ai-card,
.vd-dashboard-card{
    background:#ffffff;
    border-radius:24px;
    padding:36px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.vd-card-tag,
.vd-section-subtitle{
    color:#11c5b5;
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.vd-ai-card h2,
.vd-dashboard-card h2{
    font-size:34px;
    line-height:1.2;
    margin:12px 0;
}

.vd-ai-form{
    display:flex;
    gap:12px;
    margin-top:24px;
}

.vd-ai-form input{
    margin:0;
}

.vd-ai-form button{
    white-space:nowrap;
}

.vd-dashboard-list{
    margin-top:25px;
}

.vd-dashboard-item{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.vd-dashboard-icon{
    width:44px;
    height:44px;
    background:#e8faf8;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* SECTIONS */

.vd-section,
.vd-blog-section{
    padding:80px 0;
}

.vd-section-title{
    font-size:42px;
    line-height:1.2;
    color:#00564f;
}

.vd-section-description{
    font-size:17px;
    margin-top:8px;
}

/* CITY / SPECIALITY / DOCTOR / BLOG GRIDS */

.vd-city-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:35px;
}

.vd-city-card,
.vd-speciality-card,
.vd-doctor-card,
.vd-blog-card{
    background:#ffffff;
    border-radius:22px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
    overflow:hidden;
}

.vd-city-card,
.vd-speciality-card{
    padding:28px;
    color:#064b46;
}

.vd-speciality-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:35px;
}

.vd-speciality-icon{
    width:46px;
    height:46px;
    background:#e8faf8;
    color:#11c5b5;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:18px;
}

.vd-doctor-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:35px;
}

.vd-doctor-image img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.vd-no-image{
    height:230px;
    background:#e8faf8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.vd-doctor-content{
    padding:22px;
}

.vd-doctor-content h3{
    font-size:22px;
    color:#00564f;
    margin-bottom:8px;
}

.vd-doctor-content p{
    margin-bottom:8px;
}

.vd-blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:35px;
}

.vd-blog-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.vd-blog-content{
    padding:24px;
}

/* RESPONSIVE */

@media(max-width:900px){
    .vd-hero-grid,
    .vd-feature-grid,
    .vd-city-grid,
    .vd-speciality-grid,
    .vd-doctor-grid,
    .vd-blog-grid{
        grid-template-columns:1fr;
    }

    .vd-hero-content h1{
        font-size:40px;
    }

    .vd-hero-stats{
        grid-template-columns:1fr 1fr;
    }

    .vd-search-box,
    .vd-ai-form{
        flex-direction:column;
    }

    .vd-search-box input,
    .vd-search-box button{
        border-radius:12px;
    }
}
/* LOGIN + REGISTER PAGE FIX */

.vd-auth-page,
.login-page,
.register-page,
.page-login,
.page-register {
    padding: 90px 0;
    min-height: 70vh;
}

.vd-auth-box,
.login-box,
.register-box,
.vd-login-box,
.vd-register-box {
    max-width: 520px;
    margin: 0 auto;
    background: #ffffff;
    padding: 42px;
    border-radius: 24px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

.vd-auth-box h1,
.vd-auth-box h2,
.login-box h1,
.register-box h1 {
    font-size: 34px;
    color: #00564f;
    margin-bottom: 15px;
}

.vd-auth-box label,
.login-box label,
.register-box label {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.vd-auth-box input,
.login-box input,
.register-box input {
    margin-bottom: 18px;
}

/* DOCTOR DASHBOARD FIX */

.doctor-dashboard,
.vd-dashboard-page,
.page-doctor-dashboard {
    padding: 60px 0;
}

.dashboard-grid,
.vd-dashboard-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: flex-start;
}

.dashboard-sidebar,
.vd-dashboard-sidebar {
    background: #ffffff;
    padding: 25px;
    border-radius: 22px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    position: sticky;
    top: 110px;
}

.dashboard-sidebar ul,
.vd-dashboard-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-sidebar li,
.vd-dashboard-sidebar li {
    margin-bottom: 12px;
}

.dashboard-sidebar a,
.vd-dashboard-sidebar a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: #064b46;
    font-weight: 600;
    background: #f1fbfa;
}

.dashboard-content,
.vd-dashboard-content {
    background: #ffffff;
    padding: 32px;
    border-radius: 22px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.dashboard-content h1,
.dashboard-content h2,
.vd-dashboard-content h1,
.vd-dashboard-content h2 {
    color: #00564f;
    margin-bottom: 20px;
}

.dashboard-cards,
.vd-dashboard-cards {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
    margin-bottom: 30px;
}

.dashboard-card,
.vd-dashboard-card-small {
    background: #f1fbfa;
    padding: 22px;
    border-radius: 18px;
}

.dashboard-form-grid,
.vd-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* DOCTOR PUBLIC PROFILE FIX */

.single-doctor .doctor-profile-wrap,
.vd-doctor-profile-page {
    padding: 70px 0;
}

.single-doctor .doctor-profile-grid,
.vd-profile-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

.single-doctor .doctor-main-card,
.single-doctor .doctor-sidebar,
.vd-profile-main,
.vd-profile-sidebar {
    background: #ffffff;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.single-doctor .doctor-hero {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 25px;
    align-items: center;
    margin-bottom: 30px;
}

.single-doctor .doctor-hero img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 22px;
}

.single-doctor .doctor-hero h1 {
    font-size: 42px;
    color: #00564f;
}

.single-doctor .doctor-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.single-doctor .doctor-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e0eeee;
}

.single-doctor .doctor-section h2 {
    color: #00564f;
    margin-bottom: 15px;
}

.single-doctor .doctor-sidebar-box {
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0eeee;
}

/* RESPONSIVE FIX */

@media(max-width: 900px) {
    .dashboard-grid,
    .vd-dashboard-grid,
    .single-doctor .doctor-profile-grid,
    .vd-profile-grid,
    .single-doctor .doctor-hero,
    .dashboard-form-grid,
    .vd-form-grid,
    .dashboard-cards,
    .vd-dashboard-cards {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar,
    .vd-dashboard-sidebar {
        position: static;
    }

    .single-doctor .doctor-hero img {
        width: 100%;
        height: auto;
    }
}
/* FIX ACTUAL TEMPLATE PAGES */

.page-template-page-doctor-login,
.page-template-page-doctor-register {
    background: #f4fbfa;
}

.page-template-page-doctor-login main,
.page-template-page-doctor-register main {
    padding: 90px 0;
}

.page-template-page-doctor-login form,
.page-template-page-doctor-register form {
    max-width: 520px;
    margin: 0 auto;
    background: #fff;
    padding: 42px;
    border-radius: 24px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

.page-template-page-doctor-dashboard .doctor-dashboard,
.page-template-page-doctor-dashboard main {
    padding: 60px 0;
}

.single-doctor main,
.single-doctor .site-main {
    padding: 70px 0;
}
/* DOCTOR LOGIN PAGE */

.page-template-page-doctor-login .vd-auth-page {
    padding: 100px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.page-template-page-doctor-login .vd-auth-box {
    max-width: 500px;
    margin: 0 auto;
    background: #ffffff;
    padding: 45px;
    border-radius: 26px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.page-template-page-doctor-login .vd-auth-box h1 {
    font-size: 36px;
    color: #00564f;
    margin-bottom: 28px;
    text-align: center;
}

.page-template-page-doctor-login .vd-auth-form input {
    width: 100%;
    height: 54px;
    border: 1px solid #d5e5e4;
    border-radius: 12px;
    padding: 0 16px;
    margin-bottom: 18px;
    font-size: 15px;
}

.page-template-page-doctor-login .vd-auth-form .vd-btn {
    width: 100%;
    border: none;
    text-align: center;
    font-size: 16px;
}

.vd-error-message {
    max-width: 500px;
    margin: 30px auto 0;
    background: #ffecec;
    color: #b00020;
    padding: 14px 18px;
    border-radius: 12px;
}
/* DOCTOR REGISTER PAGE */

.page-template-page-doctor-register .vd-auth-page {
    padding: 100px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.page-template-page-doctor-register .vd-auth-box {
    max-width: 560px;
    margin: 0 auto;
    background: #ffffff;
    padding: 45px;
    border-radius: 26px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.page-template-page-doctor-register .vd-auth-box h1 {
    font-size: 36px;
    color: #00564f;
    margin-bottom: 28px;
    text-align: center;
}

.page-template-page-doctor-register .vd-auth-form input {
    width: 100%;
    height: 54px;
    border: 1px solid #d5e5e4;
    border-radius: 12px;
    padding: 0 16px;
    margin-bottom: 18px;
    font-size: 15px;
}

.page-template-page-doctor-register .vd-auth-form .vd-btn {
    width: 100%;
    border: none;
    text-align: center;
    font-size: 16px;
}

.vd-success-message {
    max-width: 560px;
    margin: 30px auto 0;
    background: #e9fff5;
    color: #007a4d;
    padding: 14px 18px;
    border-radius: 12px;
}
/* DOCTOR DASHBOARD FINAL FIX */

.vd-dashboard-page{
    padding:60px 0;
}

.vd-dashboard-topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
    gap:20px;
}

.vd-dashboard-topbar h1{
    font-size:42px;
    color:#00564f;
    margin-bottom:8px;
}

.vd-dashboard-layout{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:30px;
    align-items:start;
}

/* SIDEBAR */

.vd-dashboard-sidebar{
    background:#ffffff;
    border-radius:24px;
    padding:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    position:sticky;
    top:100px;
}

.vd-tab-btn{
    width:100%;
    border:none;
    background:#f2fbfa;
    color:#064b46;
    padding:14px 16px;
    border-radius:14px;
    text-align:left;
    margin-bottom:12px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.vd-tab-btn:hover,
.vd-tab-btn.active{
    background:#11c5b5;
    color:#ffffff;
}

/* CONTENT */

.vd-dashboard-content{
    background:#ffffff;
    border-radius:24px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.vd-tab-content{
    display:none;
}

.vd-tab-content.active{
    display:block;
}

.vd-tab-content h2{
    font-size:34px;
    color:#00564f;
    margin-bottom:25px;
}

/* FORM */

.vd-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
}

.vd-form-field{
    display:flex;
    flex-direction:column;
}

.vd-form-field label{
    font-weight:600;
    margin-bottom:8px;
    color:#00564f;
}

.vd-form-field input,
.vd-form-field textarea,
.vd-form-field select{
    width:100%;
    border:1px solid #d5e5e4;
    border-radius:14px;
    padding:14px 16px;
    font-size:15px;
    background:#ffffff;
}

.vd-form-field textarea{
    min-height:140px;
    resize:vertical;
}

.vd-form-field.vd-full{
    grid-column:1 / -1;
}

.vd-upload-preview{
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius:18px;
    margin-bottom:12px;
}

/* ANALYTICS */

.vd-analytics-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
    margin-bottom:35px;
}

.vd-analytics-card{
    background:#f2fbfa;
    border-radius:20px;
    padding:24px;
    text-align:center;
}

.vd-analytics-card h3{
    font-size:34px;
    color:#11c5b5;
    margin-bottom:8px;
}

.vd-chart-box{
    background:#f8fdfd;
    border-radius:20px;
    padding:30px;
}

.vd-chart-box h3{
    margin-bottom:20px;
}

.vd-chart-row{
    display:grid;
    grid-template-columns:180px 1fr 80px;
    gap:16px;
    align-items:center;
    margin-bottom:16px;
}

.vd-chart-bar{
    width:100%;
    height:14px;
    background:#dcefed;
    border-radius:20px;
    overflow:hidden;
}

.vd-chart-bar div{
    height:100%;
    background:#11c5b5;
    border-radius:20px;
}

/* QUESTION */

.vd-question-card{
    background:#f8fdfd;
    border-radius:20px;
    padding:24px;
    margin-bottom:24px;
}

.vd-question-card h3{
    color:#00564f;
    margin-bottom:12px;
}

/* ARTICLE */

.vd-article-dash-card{
    background:#f8fdfd;
    border-radius:18px;
    padding:18px 22px;
    margin-bottom:18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* PACKAGE */

.vd-package-box{
    background:linear-gradient(135deg,#11c5b5,#00564f);
    color:#ffffff;
    padding:40px;
    border-radius:24px;
}

.vd-package-box h3{
    font-size:36px;
    margin-bottom:12px;
}

/* EMPTY */

.vd-empty-box{
    background:#f8fdfd;
    border-radius:18px;
    padding:25px;
}

/* SUCCESS */

.vd-success-msg{
    background:#e8fff3;
    color:#007a4d;
    padding:14px 18px;
    border-radius:12px;
    margin-bottom:25px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .vd-dashboard-layout{
        grid-template-columns:1fr;
    }

    .vd-dashboard-sidebar{
        position:static;
    }

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

    .vd-analytics-grid{
        grid-template-columns:1fr 1fr;
    }

    .vd-chart-row{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .vd-dashboard-topbar{
        flex-direction:column;
        align-items:flex-start;
    }

    .vd-analytics-grid{
        grid-template-columns:1fr;
    }

    .vd-dashboard-content{
        padding:22px;
    }
}
/* SINGLE DOCTOR PROFILE FINAL FIX */

.vd-public-profile-page{
    background:#f4fbfa;
}

/* BREADCRUMB */

.vd-breadcrumb-section{
    padding:25px 0 10px;
}

.vd-breadcrumb{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    color:#6a7d7b;
    font-size:14px;
}

.vd-breadcrumb a{
    color:#11c5b5;
}

/* HERO */

.vd-public-hero{
    padding:30px 0 50px;
}

.vd-public-profile-card{
    background:#ffffff;
    border-radius:30px;
    padding:40px;
    display:grid;
    grid-template-columns:260px 1fr;
    gap:40px;
    box-shadow:0 12px 35px rgba(0,0,0,0.05);
}

.vd-public-photo img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:24px;
}

.vd-public-info h1{
    font-size:46px;
    line-height:1.1;
    color:#00564f;
    margin-bottom:12px;
}

.vd-public-qualification{
    font-size:18px;
    margin-bottom:18px;
    color:#5f7270;
}

/* TAGS */

.vd-public-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:22px;
}

.vd-public-tags span{
    background:#e9faf8;
    color:#11c5b5;
    padding:10px 16px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

/* META */

.vd-public-meta-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-bottom:22px;
}

.vd-public-meta-grid div{
    background:#f7fcfc;
    padding:18px;
    border-radius:18px;
}

.vd-public-meta-grid strong{
    display:block;
    font-size:22px;
    color:#00564f;
    margin-bottom:6px;
}

.vd-public-location{
    font-size:16px;
    margin-bottom:22px;
}

/* LOCATION BOXES */

.vd-top-location-boxes{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-bottom:25px;
}

.vd-top-location-card{
    background:#f7fcfc;
    border-radius:20px;
    padding:20px;
}

.vd-top-location-card strong{
    display:block;
    margin-bottom:10px;
    color:#00564f;
}

/* ACTIONS */

.vd-public-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.vd-btn-primary{
    background:#11c5b5;
    color:#ffffff;
}

.vd-btn-outline{
    background:#ffffff;
    border:1px solid #11c5b5;
    color:#11c5b5;
}

.vd-btn-whatsapp{
    background:#25d366;
    color:#ffffff;
}

.vd-btn-share{
    background:#f1f7f7;
    color:#064b46;
}

/* MAIN GRID */

.vd-public-content-section{
    padding-bottom:80px;
}

.vd-public-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
    align-items:start;
}

/* MAIN CARD */

.vd-public-section-card{
    background:#ffffff;
    border-radius:24px;
    padding:32px;
    margin-bottom:28px;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.vd-public-section-card h2{
    font-size:30px;
    color:#00564f;
    margin-bottom:20px;
}

/* LOCATION */

.vd-location-detail-box{
    background:#f8fdfd;
    border-radius:18px;
    padding:20px;
    margin-bottom:18px;
}

.vd-link-btn{
    display:inline-block;
    margin-top:12px;
    color:#11c5b5;
    font-weight:600;
}

/* GALLERY */

.vd-public-image-gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.vd-public-image-gallery img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:18px;
}

/* VIDEO */

.vd-public-video-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.vd-public-video-list a{
    background:#f7fcfc;
    padding:16px;
    border-radius:16px;
    color:#00564f;
    font-weight:600;
}

/* FORM */

.vd-question-form{
    margin-top:20px;
}

.vd-login-note{
    background:#f4fbfa;
    padding:14px 18px;
    border-radius:14px;
    margin-bottom:20px;
}

/* ARTICLE */

.vd-article-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.vd-article-card{
    background:#f7fcfc;
    border-radius:18px;
    padding:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#00564f;
}

/* SIDEBAR */

.vd-public-sidebar{
    position:sticky;
    top:100px;
}

.vd-public-sidebar-card{
    background:#ffffff;
    border-radius:24px;
    padding:28px;
    margin-bottom:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.vd-public-sidebar-card h2{
    font-size:26px;
    color:#00564f;
    margin-bottom:20px;
}

.vd-public-sidebar-card p{
    margin-bottom:18px;
}

.vd-public-social-links{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.vd-public-social-links a{
    background:#f7fcfc;
    padding:14px 16px;
    border-radius:14px;
    color:#064b46;
    font-weight:600;
}

/* MOBILE CTA */

.vd-public-mobile-cta{
    display:none;
}

/* ERROR */

.vd-error-msg{
    background:#ffecec;
    color:#b00020;
    padding:14px 18px;
    border-radius:12px;
    margin-bottom:20px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .vd-public-profile-card{
        grid-template-columns:1fr;
    }

    .vd-public-grid{
        grid-template-columns:1fr;
    }

    .vd-public-sidebar{
        position:static;
    }

    .vd-public-meta-grid{
        grid-template-columns:1fr;
    }

    .vd-top-location-boxes{
        grid-template-columns:1fr;
    }

    .vd-public-image-gallery{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .vd-public-info h1{
        font-size:34px;
    }

    .vd-public-profile-card{
        padding:24px;
    }

    .vd-public-section-card,
    .vd-public-sidebar-card{
        padding:22px;
    }

    .vd-public-actions{
        flex-direction:column;
    }

    .vd-public-mobile-cta{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        position:fixed;
        bottom:0;
        left:0;
        width:100%;
        background:#ffffff;
        border-top:1px solid #dcefed;
        z-index:999;
    }

    .vd-public-mobile-cta a{
        text-align:center;
        padding:16px;
        color:#00564f;
        font-weight:700;
    }

    body{
        padding-bottom:80px;
    }
}
/* FINAL FOOTER OVERRIDE */

footer.site-footer {
    background: #00564f !important;
    color: #ffffff !important;
    margin-top: 80px !important;
    padding: 70px 0 25px !important;
}

footer.site-footer .footer-grid {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr !important;
    gap: 50px !important;
    align-items: start !important;
    padding-bottom: 40px !important;
}

footer.site-footer h3 {
    color: #ffffff !important;
    font-size: 22px !important;
    margin-bottom: 18px !important;
}

footer.site-footer p,
footer.site-footer a {
    color: #dff7f4 !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}

footer.site-footer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

footer.site-footer li {
    margin-bottom: 10px !important;
}

footer.site-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.18) !important;
    text-align: center !important;
    padding-top: 22px !important;
    color: #dff7f4 !important;
}
/* DASHBOARD FORCE FIX */

.page-template-page-doctor-dashboard .vd-dashboard-layout {
    display: grid !important;
    grid-template-columns: 280px 1fr !important;
    gap: 30px !important;
    align-items: flex-start !important;
}

.page-template-page-doctor-dashboard .vd-dashboard-sidebar {
    background: #ffffff !important;
    border-radius: 24px !important;
    padding: 20px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
}

.page-template-page-doctor-dashboard .vd-dashboard-content {
    background: #ffffff !important;
    border-radius: 24px !important;
    padding: 35px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
}

.page-template-page-doctor-dashboard .vd-tab-content {
    display: none !important;
}

.page-template-page-doctor-dashboard .vd-tab-content.active {
    display: block !important;
}

.page-template-page-doctor-dashboard .vd-analytics-grid,
.page-template-page-doctor-dashboard .vd-form-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 22px !important;
}

.page-template-page-doctor-dashboard .vd-tab-btn {
    width: 100% !important;
    display: block !important;
    text-align: left !important;
    margin-bottom: 12px !important;
}
/* FINAL WIDTH FIX */

body.page-template-page-doctor-dashboard .site-header,
body.page-template-page-doctor-dashboard .site-footer,
body.page-template-page-doctor-dashboard main,
body.page-template-page-doctor-dashboard .vd-dashboard-page {
    width: 100% !important;
    max-width: 100% !important;
}

body.page-template-page-doctor-dashboard .vd-container {
    width: 94% !important;
    max-width: 1450px !important;
    margin: 0 auto !important;
}

body.page-template-page-doctor-dashboard .vd-dashboard-layout {
    display: grid !important;
    grid-template-columns: 300px 1fr !important;
    gap: 35px !important;
    align-items: start !important;
}

body.page-template-page-doctor-dashboard .vd-dashboard-content {
    width: 100% !important;
}

body.page-template-page-doctor-dashboard .vd-analytics-grid {
    grid-template-columns: repeat(5, 1fr) !important;
}

body.page-template-page-doctor-dashboard .vd-form-grid {
    grid-template-columns: repeat(2, 1fr) !important;
}

@media(max-width: 992px){

    body.page-template-page-doctor-dashboard .vd-dashboard-layout,
    body.page-template-page-doctor-dashboard .vd-form-grid,
    body.page-template-page-doctor-dashboard .vd-analytics-grid{
        grid-template-columns:1fr !important;
    }

}
/* FINAL DOCTOR DASHBOARD */

.vd-dashboard-page {
    width: 100%;
    padding: 60px 0;
    background: #f4fbfa;
}

.vd-dashboard-page .vd-container {
    width: 94%;
    max-width: 1400px;
    margin: 0 auto;
}

.vd-dashboard-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
}

.vd-dashboard-topbar h1 {
    font-size: 42px;
    color: #00564f;
    margin-bottom: 8px;
}

.vd-dashboard-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 35px;
    align-items: start;
}

.vd-dashboard-sidebar {
    width: 100%;
    background: #ffffff;
    padding: 22px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    position: sticky;
    top: 100px;
}

.vd-tab-btn {
    width: 100%;
    display: block;
    border: 0;
    outline: 0;
    background: #eefaf8;
    color: #00564f;
    padding: 15px 18px;
    margin-bottom: 12px;
    border-radius: 14px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.vd-tab-btn.active,
.vd-tab-btn:hover {
    background: #18c4b5;
    color: #ffffff;
}

.vd-dashboard-content {
    width: 100%;
    min-width: 0;
    background: #ffffff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.vd-tab-content {
    display: none;
}

.vd-tab-content.active {
    display: block;
}

.vd-tab-content h2 {
    font-size: 34px;
    color: #00564f;
    margin-bottom: 25px;
}

.vd-analytics-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-bottom: 35px;
}

.vd-analytics-card {
    background: #f2fbfa;
    padding: 24px;
    border-radius: 18px;
    text-align: center;
}

.vd-analytics-card h3 {
    font-size: 34px;
    color: #18c4b5;
}

.vd-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.vd-form-field {
    display: flex;
    flex-direction: column;
}

.vd-form-field.vd-full {
    grid-column: 1 / -1;
}

.vd-form-field label {
    font-weight: 700;
    color: #00564f;
    margin-bottom: 8px;
}

.vd-form-field input,
.vd-form-field select,
.vd-form-field textarea {
    width: 100%;
    border: 1px solid #d5e5e4;
    border-radius: 14px;
    padding: 14px;
    font-size: 15px;
}

.vd-form-field textarea {
    min-height: 140px;
}

.vd-upload-preview {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 12px;
}

.vd-question-card,
.vd-empty-box,
.vd-article-dash-card {
    background: #f8fdfd;
    padding: 22px;
    border-radius: 18px;
    margin-bottom: 20px;
}

.vd-package-box {
    background: linear-gradient(135deg, #18c4b5, #00564f);
    color: #fff;
    padding: 40px;
    border-radius: 24px;
}

.vd-success-msg {
    background: #e8fff3;
    color: #007a4d;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 25px;
}

@media (max-width: 992px) {
    .vd-dashboard-layout,
    .vd-form-grid,
    .vd-analytics-grid {
        grid-template-columns: 1fr;
    }

    .vd-dashboard-sidebar {
        position: static;
    }

    .vd-dashboard-topbar {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* DASHBOARD PAGE WIDTH + LAYOUT FIX */

body.page-template-page-doctor-dashboard {
    background: #f4fbfa !important;
    max-width: none !important;
    width: 100% !important;
}

body.page-template-page-doctor-dashboard .site-header,
body.page-template-page-doctor-dashboard .site-footer,
body.page-template-page-doctor-dashboard .vd-dashboard-page {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

body.page-template-page-doctor-dashboard .vd-dashboard-page {
    padding: 60px 0 !important;
}

body.page-template-page-doctor-dashboard .vd-container {
    width: 94% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
}

body.page-template-page-doctor-dashboard .vd-dashboard-layout {
    display: grid !important;
    grid-template-columns: 300px minmax(0, 1fr) !important;
    gap: 35px !important;
    align-items: start !important;
}

body.page-template-page-doctor-dashboard .vd-dashboard-content {
    width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
}

body.page-template-page-doctor-dashboard .vd-analytics-grid {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(120px, 1fr)) !important;
    gap: 18px !important;
}

body.page-template-page-doctor-dashboard .vd-form-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 22px !important;
}

@media(max-width: 992px) {
    body.page-template-page-doctor-dashboard .vd-dashboard-layout,
    body.page-template-page-doctor-dashboard .vd-form-grid,
    body.page-template-page-doctor-dashboard .vd-analytics-grid {
        grid-template-columns: 1fr !important;
    }
}
.vd-tab-content {
    display: none !important;
}

.vd-tab-content.active {
    display: block !important;
}

.vd-dashboard-content {
    overflow: visible !important;
}

.vd-dashboard-layout {
    align-items: flex-start !important;
}
.vd-tab-content {
    display: none !important;
}

.vd-tab-content.active {
    display: block !important;
}
.vd-tab-content {
    display: none !important;
}

.vd-tab-content.active {
    display: block !important;
}