/* 
from booking */
.booking-section {
    background-color: #ffffff;
    padding: 50px 0;
    padding-left: 220px;
    padding-right: 220px;
}

/* .booking-section .container {
    padding: 0 15px;
} */

/* form booking */
/* Left Side */
.booking-section {
    background-color: #ffffff;
    padding: 50px 220px;

}

/* .booking-section .container {
    padding: 0 15px;
    max-width: 1480px;
    margin: auto;
} */

.booking-wrapper {
    width: 1480px;
    margin: 0 auto;
    /* căn giữa */
    display: flex;
    background: #fff;
    /* tuỳ chỉnh */
    border-radius: 16px;
    /* tuỳ chỉnh */
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
    /* tuỳ chỉnh */
    overflow: hidden;
}

.booking-left {
    width: 720px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #AFBEBB;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.booking-right {
    width: 760px;
    padding: 80px 40px 96px 40px;

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

.doctor-info-detail {
    position: absolute;
    color: #ffffff;
    height: 120px;
    text-align: center;
    bottom: 74px;
}

.booking-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.doctor-info-detail h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 68px;
    line-height: 74px;
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.doctor-info-detail h5 {
    font-family: 'Helvetica Neue Medium', serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    max-height: 30px;
}

/* Right Side - 760px */
.title-bookap-container {
    margin-bottom: 60px;
}

.decription-doctor {
    font-size: clamp(10px, 0.83vw, 16px);
    font-family: 'Helvetica Neue', serif;
    font-weight: 300;
    line-height: 1.5;
}

.appointment-form {
    width: 100%;
    max-width: 600px;
    height: 335px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}


/* end form booking desktop */

/* form booking mobiel */
.booking-mobile-section {
    padding-top: 42px;
    padding-bottom: 50px;
    background-color: #f9f9f9;
}

.doctor-img-wrapper {
    max-width: 370px;
    max-height: 370px;
    margin: 0 auto;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.doctor-mobile-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Chữ đặt ở phần dưới ảnh */
.doctor-info-overlay-text {
    position: absolute;
    width: 254px;
    height: 64px;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    padding: 0 12px;
}

.doctor-name-mobile {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -2px;
    margin: 0;
}

.doctor-title-mobile {
    font-family: 'Helvetica Neue Light', sans-serif;
    font-size: clamp(12px, 3.7vw, 16px);
    font-weight: 300;
    line-height: 1.5;
}

/* end form mobile */

/* info doctor */
.doctor-info-section {
    font-family: 'Helvetica Neue', sans-serif;
    padding-bottom: 80px;
}

/* Accordion */
.accordion {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 2.5vw, 42px);
    background-color: #fff;
    font-weight: 400;
    color: #0C4242;
    line-height: 1.1;
    letter-spacing: -1px;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    transition: background-color 0.3s;
    border-top: 1px solid #AFBEBB;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
    padding-left: 0;
    padding-top: 28px;
}

.accordion.active {
    padding-bottom: 30px;
}

.accordion .dropdown-icon {
    transition: transform 0.3s ease;
}

.accordion.active .dropdown-icon {
    transform: rotate(180deg);

}

.accordion:hover {
    background-color: #f2f2f2;
}

.accordion:last-of-type {
    border-bottom: 1px solid #AFBEBB;
}

.accordion:last-of-type.active {
    border-bottom: none;
}

.panel {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: #687276;
    line-height: 28px;
    display: none;
    background-color: white;
    overflow: hidden;
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
}

/* Accordion mobile */
.doctor-info-section-mobile {
    background-color: #f9f9f9;
}

.accordion-mobile-section {
    min-width: 371px;
    width: 100%;
}

.accordion-mobile {
    font-family: 'Helvetica Neue ', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #0C4242;
    line-height: 24px;
    border: none;
    width: 100%;
    text-align: left;
    padding: 23px 0;
    background-color: #EFF6F4;
    border-top: 1px solid #AFBEBB;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-mobile .dropdown-icon-mobile {
    transition: transform 0.3s ease;
    width: 10px;
    height: auto;
}

.accordion-mobile.active .dropdown-icon-mobile {
    transform: rotate(180deg);
}

.panel-mobile:last-of-type {
    border-bottom: 1px solid #AFBEBB;
}

.panel-mobile {
    font-family: 'Helvetica Neue Light', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #687276;
    padding: 0 0 25px 0;
    line-height: 22px;
    display: none;
}


/* Articles */
.expert-advice h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 2.5vw, 42px);
    font-weight: 400;
    letter-spacing: -1px;
    color: #0C4242;
}

.articles {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.article-card {
    flex: 1;
    min-width: 260px;
    max-width: 410px;
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
}

.article-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.article-card h4 {
    font-family: 'Helvetica Neue medium', sans-serif;
    font-weight: 500;
    font-size: clamp(16px, 1.25vw, 24px);
    margin-top: 35px;
    margin-bottom: 15px;
    line-height: 1.25;
    color: #7F7F7F;
}

.article-card a {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(12px, 0.83vw, 16px);
    font-weight: 700;
    color: #708E86;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.article-card a img.icon-small {
    width: 24px;
    height: 15px;
    object-fit: contain;
}

/* form  đặt hẹn ngay */
.vita-appointment-section {
    background-color: #EFF6F4;
    display: flex;
    justify-content: center;
    padding-left: 35px;
    padding-right: 35px
}

.vita-appointment-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 60px 30px;
    width: 100%;
    max-width: 370px;
    max-height: 518px;
    text-align: center;
    margin: auto;
}

.vita-appointment-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 7.9vw, 34px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -2px;
    color: #0C4242;
    margin-bottom: 30px;
}


.vita-appointment-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vita-input {
    padding: 16px 25px;
    border-radius: 999px;
    border: 1px solid #AFBEBB;
    color: #0C4242;
    font-size: 14px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 300;
    line-height: 1.6;
}

.vita-input::placeholder {
    color: #0C4242;
    font-size: 14px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 300;
    line-height: 1.6;
}

.vita-input:focus {
    border-color: #0C4242;
    outline: none;
}

textarea.vita-input {
    border-radius: 16px;
}

.vita-submit-btn {
    font-family: 'Helvetica Neue', sans-serif;
    padding: 16px 40px;
    background-color: #0C4242;
    color: white;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.6;
    font-size: 10px;
    text-transform: uppercase;
    cursor: pointer;
}

.vita-submit-btn:hover {
    background-color: #093333;
}

/* blog mobile */
.media-title-mobile {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -2px;
    color: #0C4242;
    text-align: center;
    margin-bottom: 70px;
}

.media-img-wrapper-mobile {
    border-radius: 20px;
    gap: 10px;
}

.media-img-wrapper-mobile img {
    width: 100%;
    min-height: 370px;
    display: block;
}

.icon-small{
    width: 24px !important;
    height: 15px;
    object-fit: contain;
}

.media-card-title-mobile {
    font-size: 18px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 400;
    color: #7F7F7F;
    line-height: 24px;
    text-align: justify;
    padding-top: 20px;
    padding-bottom: 10px;
    margin-bottom: 0;
}

.media-read-more-mobile {
    font-size: 10px;
    font-family: 'Helvetica Neue', sans-serif;
    color: #7F7F7F;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    gap: 10px;
}

.media-carousel .owl-dots {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width:350px;
    width: 100%;
}

/* Slide blog cố vân chuyên môn */
.articles.owl-carousel {
    position: relative;
}
.articles .owl-nav {
    position: absolute;
    top: 50%;
    left: -100px; 
    right: -100px; 
    width: auto;
    height: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none; 
}
.articles .owl-nav button.owl-nav-custom {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: #EFF6F4;
    color: #7fa09c;
    border: none;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.2s, color 0.2s;
}
.articles .owl-nav button.owl-nav-custom:hover {
    background: #b1d1c7;
    color: #fff;
}