:root {
    --primary-color: #8a5a36;
    --secondary-color: #c89b3c;
    --bg-color: #8a5a36;
}

.pc-header {
    display: none;
    width: 100%;
    background: #fff;
    box-shadow: 0 1px 10px rgba(0, 0, 0, .08);
    /* position: fixed; */
    top: 0;
    left: 0;
    z-index: 998;
}

.pc-header__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 15px;
}

.pc-header__logo {
    flex: 0 0 auto;
}

.pc-header__logo img {
    max-height: 50px;
}

.pc-nav {
    display: flex;
    align-items: center;
}

.pc-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 18px;
    align-items: center;
}

.pc-nav ul.pc-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    gap: 18px;
    align-items: center;
}

.pc-nav li {
    position: relative;
}

.pc-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    display: inline-block;
}

.pc-nav li:hover>a {
    color: #005531;
}

.pc-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
    border-radius: 4px;
    z-index: 20;
}

.pc-submenu li {
    width: 100%;
}

.pc-submenu a {
    padding: 8px 16px;
    display: block;
    white-space: nowrap;
}

.pc-nav li:hover>.pc-submenu {
    display: block;
}

.pc-header__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pc-header__hotline {
    color: var(--bg-color);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.pc-header__hotline i {
    margin-right: 8px;
}

.mm-opened .headmobile {
    box-shadow: 0px 0px 0px #ddd;
}



@media only screen and (max-width: 767px) {
    .headmobile {
        display: block;
    }
}

@media only screen and (min-width: 768px) {
    .headmobile {
        display: none;
    }

    .pc-header {
        display: block;
    }
}

.headmobile {
    display: none;
    box-shadow: 0px 0px 3px #ddd;
    width: 100%;
    background: #fff;
}

.headmobile .pagemenu {
    width: 100%;
    display: block;
    position: relative;
    background: #fff;
    height: 55px;
}

.headmobile .headmobile__btn-home {
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 10px;
    padding: 8px 10px;
    background: var(--bg-color);
    z-index: 900;
    box-sizing: border-box;
}

.headmobile__btn-home i {
    font-size: 22px;
    color: #fff;
}

.headmobile__logo {
    position: absolute;
    left: 50%;
    top: 1px;
    transform: translate(-50%, 0);
    z-index: 999;
}

.headmobile__logo img {
    max-width: 155px;
    max-height: 45px;
}

.headmobile__hotline {
    position: absolute;
    right: 0px;
    top: 6px;
    color: #515151;
    font-size: 16px;
    padding: 8px 5px;
    display: inline-block;
}

.topfixmobile {
    top: 0px;
    left: 0px;
    position: fixed;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: 0px 0px 3px #ccc;
}

.topfixpc {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: 0 1px 10px rgba(0, 0, 0, .08);
}

@media only screen and (max-width: 767px) {
    .headmobile {
        display: block;
    }
}

/* ===== Section: Giới thiệu về chúng tôi ===== */
.intro-section {
    padding: 70px 0;
    background: #fff;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.intro-content {
    flex: 1;
}

.intro-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.intro-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.intro-title--highlight {
    color: #c89b3c;
    font-style: italic;
}

.intro-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.intro-btn {
    display: inline-block;
    padding: 15px 50px;
    transition: all .3s;
    color: var(--primary-color);
    margin-top: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    font-size: 15px;
    text-transform: uppercase;
}

.intro-btn:hover {
    background: var(--bg-color);
    color: #fff;
    text-decoration: none;
}

.intro-image-wrap {
    flex: 0 0 45%;
    position: relative;
}

.intro-image-bg {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: #CAD4C2;
    position: absolute;
    left: 0px;
    z-index: 1;
}

.intro-image {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 420px;
    display: block;
}

.mm-menu>.mm-panel {
    background-color: var(--bg-color) !important;
}

@media only screen and (max-width: 900px) {
    .intro-container {
        flex-direction: column;
        gap: 30px;
    }

    .intro-image-wrap {
        flex: none;
        width: 100%;
    }

    .intro-title {
        font-size: 28px;
    }
}

@media only screen and (max-width: 768px) {
    .intro-section {
        padding: 30px 0;
    }
}

/* ===== End Section: Giới thiệu ===== */


/* ===== Section: Gói Ưu Đãi Đặc Biệt ===== */
.promo-section {
    position: relative;
    background: var(--bg-color);
    padding: 55px 0 65px;
    overflow: hidden;
}

/* --- Bong bóng trang trí góc trái --- */
.promo-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 340px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.promo-bubble {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.07);
}

/* Vòng tròn lớn nhất, nửa ra ngoài cạnh trái */
.promo-bubble--a {
    width: 220px;
    height: 220px;
    top: -60px;
    left: -60px;
}

/* Vòng tròn vừa bên phải vòng lớn */
.promo-bubble--b {
    width: 130px;
    height: 130px;
    top: -20px;
    left: 130px;
}

/* Vòng nhỏ giữa */
.promo-bubble--c {
    width: 85px;
    height: 85px;
    top: 60px;
    left: 50px;
}

/* Vòng nét đứt */
.promo-bubble--d {
    width: 160px;
    height: 160px;
    top: 20px;
    left: 200px;
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.12);
    background: transparent;
}

/* Vòng nhỏ dưới */
.promo-bubble--e {
    width: 55px;
    height: 55px;
    top: 130px;
    left: 170px;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* --- Container --- */
.promo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* --- Header: icon + tiêu đề --- */
.promo-header {
    text-align: center;
    margin-bottom: 44px;
}

.promo-icon-row {
    display: inline-block;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 14px;
    position: relative;
}

/* .promo-line {
    display: block;
    width: 60px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 2px;
} */

.promo-lotus {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.promo-title {
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.4px;
    margin-bottom: 8px;
    line-height: 1.2;
}

.promo-subtitle {
    font-size: 14px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    letter-spacing: 0.2px;
}

/* --- Grid 4 card --- */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    align-items: center;
}

.promo-card {
    display: block;
    overflow: hidden;
    border: 2.5px solid transparent;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    text-decoration: none;
    background: #fff;
    padding: 8px;
    border-radius: 5px;
}

.promo-card::before {
    border-color: var(--bg-color) transparent transparent;
    border-style: solid;
    border-width: 0;
    content: "";
    height: 0;
    left: 0;
    opacity: 0.2;
    position: absolute;
    top: 0;
    transition: all 0.5s ease-in-out;
    width: 0;

}


.promo-card:hover:before {
    border-width: 1150px 680px 0 0;
    transition: all 0.3s ease-in-out;
}

.promo-card img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

/* Card thứ 2 được nhấn mạnh (featured) */
.promo-card--featured {
    border-color: var(--secondary-color);
    transform: scaleY(1.04) translateY(-6px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4);
}

.promo-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
    transform: translateY(-4px);
}

.promo-card--featured:hover {
    transform: scaleY(1.05) translateY(-10px);
}

.promo-card:hover img {
    transform: scale(1.05);
}

.promo-icon-row img {
    width: 55px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.dichvu-icon {
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
}

.dichvu-icon img {
    filter: brightness(0) invert(1);
}

.ic-left {
    left: inherit;
    right: calc(100% + 10px);

}

.ic-right {
    left: calc(100% + 10px);
}

/* --- Responsive --- */
@media only screen and (max-width: 992px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .promo-card--featured {
        transform: none;
        box-shadow: none;
    }

    .promo-card--featured:hover {
        transform: translateY(-4px);
    }

    .promo-title {
        font-size: 26px;
    }

    .promo-bubbles {
        width: 200px;
    }
}

@media only screen and (max-width: 576px) {
    .promo-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .promo-section {
        padding: 40px 0 50px;
    }

    /* .promo-line {
        width: 36px;
    } */

    .promo-title {
        font-size: 22px;
    }
}

/* ===== End Section: Gói Ưu Đãi Đặc Biệt ===== */


/* ===== Section: Booking Online ===== */
.booking-section {
    width: 100%;
    min-height: 685px;
    padding: 50px 10px;
    box-sizing: border-box;
    background: url('../../../../uploads/home/bg-booking.jpg') center top no-repeat;
    background-size: cover;
    position: relative;
}

.booking-home {
    width: 1000px;
    margin: 0 auto;
}

.booking-container {
    display: flex;
    flex-wrap: row wrap;
    background: #fff;
    box-shadow: 0px 0px 5px #ddd;
    border-radius: 15px;
}

/* ---- Card trái: Thông tin ---- */
.booking-info {
    width: 33%;
    flex-basis: 33%;
    background: var(--bg-color);
    border-radius: 15px;
    padding: 40px;
    box-sizing: border-box;
}

.booking-info__title {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 0 4px !important;
    font-style: italic;
    line-height: 1.2;
}

.booking-info__block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 40px;
    margin-bottom: 10px;
}

.booking-info__label {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.72) !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

.booking-info__value {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin: 0 !important;
    line-height: 1.55;
}

.booking-info__value--small {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.booking-info__phone {
    font-size: 23px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 !important;
    letter-spacing: 0.5px;
}

/* ---- Card phải: Form ---- */
.booking-form-wrap {
    width: 67%;
    flex-basis: 67%;
    padding: 40px 65px 70px;
    box-sizing: border-box;
}

.booking-form__title {
    font-size: 30px !important;
    font-weight: 700 !important;
    color: var(--secondary-color) !important;
    margin: 0 0 6px !important;
    font-style: italic;
    line-height: 1.2;
}

.booking-form__desc {
    font-size: 14px !important;
    color: #555 !important;
    margin: 0 0 22px !important;
    font-weight: 400 !important;
}

.booking-form__row {
    margin-bottom: 14px !important;
}

.booking-form__row--2col {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
}

.booking-form__row--3col {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
}

/* Override mạnh để thắng theme CSS */
.booking-form .booking-form__input,
.booking-form input.booking-form__input,
.booking-form select.booking-form__input {
    width: 100% !important;
    padding: 11px 15px !important;
    border: 1.5px solid #e0e0e0 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    color: #333 !important;
    background: #f6f6f6 !important;
    box-shadow: none !important;
    outline: none !important;
    transition: border-color 0.22s, background 0.22s;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    height: auto !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    float: none !important;
    display: block !important;
}

.booking-form .booking-form__input:focus,
.booking-form input.booking-form__input:focus,
.booking-form select.booking-form__input:focus {
    border-color: var(--secondary-color) !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.12) !important;
}

.booking-form .booking-form__input::placeholder {
    color: #bbb !important;
    font-size: 13px !important;
}

/* Dropdown arrow */
.booking-form select.booking-form__input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23aaa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    padding-right: 36px !important;
    cursor: pointer;
}

/* Nút submit */
.booking-form .booking-form__btn,
.booking-form button.booking-form__btn {
    display: inline-block;
    padding: 15px 50px;
    transition: all .3s;
    color: var(--primary-color);
    margin-top: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    font-size: 15px;
    text-transform: uppercase;
    width: 100%;
    background: none;
    cursor: pointer;
}

.booking-form .booking-form__btn:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

/* ---- Responsive ---- */
@media only screen and (max-width: 900px) {
    .booking-container {
        flex-direction: column !important;
        flex-wrap: wrap !important;
    }

    .booking-info {
        flex: none !important;
        width: 100% !important;
    }

    .booking-form__row--3col {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .booking-home,
    .booking-form-wrap {
        width: 100% !important;
    }

}

@media only screen and (max-width: 576px) {
    .booking-form-wrap {
        padding: 24px 16px !important;
    }

    .booking-form__row--2col,
    .booking-form__row--3col {
        grid-template-columns: 1fr !important;
    }

    .booking-section {
        padding: 40px 12px;
    }
}

/* ===== End Section: Booking Online ===== */


/* ===== Section: Tin tức & Sự kiện ===== */
.news-section {
    padding: 65px 0 55px;
    background: #fff;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header --- */
.news-header {
    text-align: center;
    margin-bottom: 44px;
}

.news-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 8px;
}

.news-title {
    font-weight: 700;
    color: #1a2e1a;
    margin: 0;
    line-height: 1.2;
}

.news-title--highlight {
    color: var(--secondary-color);
    font-style: italic;
}

/* --- Slider --- */
.news-slider-wrap {
    overflow: hidden;
    position: relative;
}

.news-track {
    display: flex;
    gap: 0;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* --- Card --- */
.news-card {
    flex: 0 0 calc(100% / 3);
    padding: 0 12px;
    box-sizing: border-box;
}

.news-card__img-link {
    display: block;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.news-card__img-link img {
    width: 100%;
    aspect-ratio: 14 / 10;
    object-fit: cover;
    display: block;
    transition: transform 0.38s ease;
}

.news-card:hover .news-card__img-link img {
    transform: scale(1.05);
}

.news-card__body {
    width: 100%;
    float: left;
    padding: 15px 25px;
    box-sizing: border-box;
    margin-bottom: 15px;
    background: #fff;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0px 0px 7px #ddd;
}

.news-card__meta {
    font-size: 13px;
    color: var(--primary-color);
    margin: 0 0 8px;
    font-weight: 500;
}

.news-card__cat {
    font-weight: 600;
}

.news-card__title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card__title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.news-card__title a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.news-card__desc {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Pagination dots --- */
.news-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.news-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #d0d0d0;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
    outline: none;
}

.news-dot--active {
    background: var(--primary-color);
    transform: scale(1.25);
}

.news-dot:hover {
    background: var(--secondary-color);
}

/* --- Responsive --- */
@media only screen and (max-width: 900px) {
    .news-card {
        flex: 0 0 50%;
    }

    .news-title {
        font-size: 26px;
    }
}

@media only screen and (max-width: 600px) {
    .news-card {
        flex: 0 0 100%;
    }

    .news-section {
        padding: 40px 0 36px;
    }

    .news-title {
        font-size: 22px;
    }
    .promo-grid {
      grid-template-columns: repeat(1, 1fr);
      gap: 10px;
  }
}

/* ===== End Section: Tin tức & Sự kiện ===== */

/* ===== Mảng Footer (Xóa inline styles) ===== */
.content_home {
    margin: 0 auto;
    width: 1000px;
    position: relative;
    margin-top: -70px;
}

.content_home_f {
    width: 1000px;
    position: relative;
    margin-top: -70px;
}

.boxfoot {
    width: 100%;
    float: left;
    background: #fff;
    padding: 40px 70px;
    box-sizing: border-box;
    border-radius: 15px;
    box-shadow: 0px 0px 8px #ddd;
}

.foot-title {
    color: #b79930;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.foot-info-item {
    color: #666;
    display: grid;
    grid-template-columns: 15px 80%;
    grid-column-gap: 10px;
    line-height: 23px;
    margin-bottom: 10px;
}

.socials_footer {
    display: block;
    margin-top: 30px;
}

.footer-bottom {
    width: 100%;
    float: left;
    padding: 20px 10px;
    box-sizing: border-box;
    text-align: center;
}

.footer-copy-text {
    color: #b3b3b3;
    font-size: 13px;
}

.footer-copy-name {
    color: #b1922e;
}

.footer-copy-link {
    color: #b3b3b3;
    font-size: 13px;
}

.footleft {
    width: 62%;
    float: left;
}

.footright {
    width: 35%;
    float: right;
}

.iconmxh {
    width: 34px;
    height: 34px;
    text-align: center;
    box-sizing: border-box;
    display: grid;
    transition: all .3s;
    border-radius: 50%;
    color: #666;
    font-size: 20px;
    float: left;
    margin-right: 8px;
    border: 2px solid #666;
}

.iconmxh i {
    align-self: center;
    justify-self: center;
    font-size: 15px;
}


@media (max-width: 700px) {
    .footleft {
        width: 100% !important;
        margin-bottom: 30px;
    }

    .footright {
        width: 100% !important;
    }

    .content_home,
    .footertop {
        width: 100% !important;
    }

    .boxfoot {
        width: 100%;
        float: left;
        background: #fff;
        padding: 20px 10px;
        box-sizing: border-box;
        border-radius: 15px;
        box-shadow: 0px 0px 8px #ddd;
    }

}

/* ===== Section: Nhận xét khách hàng ===== */
.review-section {
    position: relative;
    padding: 70px 20px 80px;
    overflow: hidden;
    /* Thay bằng ảnh thật: background-image: url('...') */
    background: url(../../../../assets/bg-gt-scaled.jpg);
    background-size: cover;
    background-position: center;
}

/* Fade trắng 2 bên (overlay) */
.review-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.review-fade--left {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95), transparent);
}

.review-fade--right {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.95), transparent);
}

.review-container {
    position: relative;
    z-index: 3;
    max-width: 780px;
    margin: 0 auto;
}

/* --- Header --- */
.review-header {
    text-align: center;
    margin-bottom: 36px;
}

.review-title {
    font-weight: 700;
    color: #2a2a2a;
    margin: 0 0 12px;
    line-height: 1.2;
}

.review-title--highlight {
    color: var(--secondary-color);
    font-style: italic;
}

.review-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 13px;
    padding: 5px 18px;
    border-radius: 4px;
    margin: 0;
    letter-spacing: 0.2px;
}

/* --- Owl override: ẩn nav mặc định --- */
.review-slides.owl-carousel .owl-nav {
    display: none !important;
}

/* --- Review item (1 slide = 1 item) --- */
.review-item {
    text-align: center;
    padding: 0 10px 30px;
}

/* Thẻ trắng chứa nội dung + avatar */
.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 36px 44px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
    position: relative;
    margin-bottom: 0;
}

.review-card__text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 28px;
    text-align: center;
}

/* Avatar tròn nằm dưới text, nửa ra ngoài card */
.review-card__avatar {
    width: 125px;
    border: 4px solid #b79930;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.15);
    position: relative;
    bottom: -44px;
    background: #eee;
}

.review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tên & địa điểm xuất hiện bên dưới card, sau avatar */
.review-item__name {
    margin: 54px 0 4px;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
}

.review-item__location {
    font-size: 13px;
    color: #888;
    margin: 0;
}

/* --- Custom Owl dots --- */
.review-slides.owl-carousel .owl-dots {
    margin-top: 20px !important;
}

.review-slides.owl-carousel .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    background: #ccc !important;
    border-radius: 50% !important;
    margin: 5px 5px !important;
    transition: background 0.25s, transform 0.25s !important;
}

.review-slides.owl-carousel .owl-dot.active span,
.review-slides.owl-carousel .owl-dot:hover span {
    background: var(--primary-color) !important;
    transform: scale(1.3) !important;
}

/* --- Responsive --- */
@media only screen and (max-width: 768px) {
    .review-title {
        font-size: 26px;
    }

    .review-card {
        padding: 28px 22px 0;
    }

    .review-fade {
        width: 60px;
    }

    .review-section {
        padding: 50px 12px 60px;
    }
}

/* ===== End Section: Nhận xét khách hàng ===== */