/* ==================================================
   PLC Tutors - Final CSS (Clean Version)
   Shared by Alexandra / Kevin / Lan-Anh
================================================== */

.tutor-page{
    max-width:1200px;
    margin:0 auto;
    padding:50px 20px 70px;
    background:#f4f7fb;
}

.tutor-hero{
    position:relative;
    overflow:hidden;
    background:#183B6B url("../images/hero_bg_master.png") center center no-repeat;
    background-size:cover;
    color:#fff;
    text-align:center;
    padding:120px 20px 140px;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(16,42,82,.72);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:0 auto;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.hero-content h1{
    color:#FFD54D !important;
    font-size:72px !important;
    font-weight:800;
    line-height:1.1;
    margin:0 0 18px;
}

.hero-stars{
    color:#FFD54D;
    font-size:38px !important;
    letter-spacing:6px;
    margin:0 0 18px;
}

.hero-subtitle{
    color:#fff;
    font-size:32px !important;
    font-weight:700;
    margin-bottom:18px;
}

.hero-description{
    color:#fff;
    font-size:20px;
    line-height:1.8;
    text-align:center;
    max-width:900px;
}

.hero-wave{
    position:absolute;
    left:-5%;
    bottom:-60px;
    width:110%;
    height:120px;
    background:#f4f7fb;
    border-radius:50% 50% 0 0;
}

.profile-summary{
    display:flex;
    gap:40px;
    align-items:center;
    background:#fff;
    border-radius:18px;
    padding:35px;
    margin:50px 0;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.profile-photo,
.photo-placeholder{
    width:220px;
    height:220px;
    border-radius:50%;
    background:#e8edf5;
    border:6px solid #183B6B;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    color:#183B6B;
    flex-shrink:0;
}

.profile-photo{
    width:220px;
    height:220px;
    border-radius:50%;
    background:#e8edf5;
    border:6px solid #183B6B;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    color:#183B6B;
    flex-shrink:0;
}

.profile-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    margin-bottom:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.profile-card h2{
    color:#183B6B;
    font-size:30px;
    margin-bottom:18px;
    border-bottom:3px solid #FFD54D;
    padding-bottom:8px;
}

.profile-card li,
.profile-card p{
    font-size:17px;
    line-height:1.8;
}

.profile-cta{
    background:#183B6B;
    color:#fff;
    text-align:center;
    border-radius:18px;
    padding:60px 30px;
    margin:50px 0;
}

.btn-register{
    display:inline-block;
    margin-top:20px;
    background:#FFD54D;
    color:#183B6B;
    padding:15px 38px;
    border-radius:35px;
    text-decoration:none;
    font-weight:700;
}

.btn-register:hover{
    background:#fff;
}

@media(max-width:768px){
    .hero-content h1{font-size:40px;}
    .hero-subtitle{font-size:24px;}
    .hero-description{font-size:17px;}
    .profile-summary{
        flex-direction:column;
        text-align:center;
    }
    .profile-photo{
        width:170px;
        height:170px;
    }
}

.back-to-tutors{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    margin:35px 0 30px;
}

.back-to-tutors a{
    display:inline-block;
    background:#183B6B;
    color:#fff;
    padding:12px 26px;
    border-radius:30px;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    transition:all .25s ease;
}

.back-to-tutors a:hover{
    background:#FFD54D;
    color:#183B6B;
}



.tutor-card{
    max-width:320px;
    margin:0 auto 40px;
    text-align:center;
}

.photo-placeholder{
    margin:0 auto 25px;
}

/* =========================================
   Elite Tutors Section Header
========================================= */

.tutor-section-header{
    margin:0 0 60px;
}

.section-badge{
    display:block;
    color:#183B6B;
    font-size:22px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.title-line{
    width:90px;
    height:5px;
    background:#FFD54D;
    border-radius:3px;
    margin:18px 0 30px;
}

.tutor-section-header h2{
    color:#183B6B;
    font-size:48px;
    font-weight:800;
    line-height:1.2;
    margin:0 0 20px;
}

.tutor-section-header p{
    max-width:900px;
    color:#555;
    font-size:22px;
    line-height:1.8;
    margin:0 0 55px;
}


@media(max-width:768px){

    .profile-photo{
        margin:0 auto 25px;
    }

    .col-md-3{
        text-align:center;
    }

}