/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Barlow, sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
}

/* Animations */
@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

@keyframes blinking {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

/* Common styles */
.ldp-section {
    padding: 60px 5%;
    min-height: 400px;
    scroll-margin-top: 80px;
}

.ldp-section__title {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.ldp-section__content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.animate-from-bottom {
    animation: slideUp 0.8s ease-out forwards;
}

/* Header */
.ldp-header {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.ldp-header__logo img {
    height: 50px;
    width: auto;
}

.ldp-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ldp-nav__list {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.ldp-nav__link {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.ldp-nav__link:hover {
    color: #0b3050;
}

.ldp-nav__toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.ldp-hero {
    background: url('https://weereal.com.vn/the-prive/images/hero-1.jpg') no-repeat center center/cover;
    padding: 60px 5%;
    color: #fff;
}

.ldp-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.ldp-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.ldp-hero__column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ldp-hero__column--right {
    min-height: 400px;
}

.ldp-hero__header-img {
    max-width: 300px;
    margin-bottom: 20px;
    display: block;
}

.ldp-hero__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ldp-hero__logo {
    max-width: 200px;
    margin-bottom: 20px;
    display: block;
}

.ldp-hero__text {
    font-size: 16px;
    margin-bottom: 20px;
}

.ldp-hero__text p {
    margin-bottom: 10px;
}

.ldp-hero__grid-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ldp-hero__grid-item {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Overview Section */
.ldp-overview {
    background: url('https://weereal.com.vn/the-prive/images/BG-tong-quan.jpg') no-repeat center center/cover;
    color: #fff;
}

.ldp-overview__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5%;
}

.ldp-overview__header-img {
    max-width: 300px;
    margin: 0 auto 40px;
    display: block;
}

.ldp-overview__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.ldp-overview__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.ldp-overview__icon {
    width: 40px;
    height: 40px;
}

.ldp-overview__label {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: #fff;
    margin-bottom: 5px;
}

.ldp-overview__value {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.ldp-overview__cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.ldp-overview__cta-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.ldp-overview__cta-form {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ldp-overview__cta-title {
    font-family: 'Barlow', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.ldp-overview__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ldp-overview__input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
}

.ldp-overview__button {
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.3s;
}

.ldp-overview__button:hover {
    background: #0056b3;
}

/* Location Section */
.ldp-location {
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('https://weereal.com.vn/the-prive/images/BG-VI-TRI.jpg') no-repeat center center/cover;
    color: #000;
}

.ldp-location__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5%;
}

.ldp-location__row {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    align-items: center;
}

.ldp-location__content {
    flex: 1;
    max-width: 500px;
}

.ldp-location__slider {
    flex: 1;
    position: relative;
    overflow: hidden;
    border: 2px solid #e79072;
    border-radius: 10px;
}

.ldp-location__header-img {
    max-width: 100%;
    margin: 0 0 20px;
    display: block;
}

.ldp-location__title {
    font-family: 'Barlow', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.ldp-location__subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
}

.ldp-location__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.ldp-location__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid #d5d5d5;
}

.ldp-location__icon {
    width: 40px;
    height: 35px;
}

.ldp-location__text {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
}

.ldp-location__slider-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.ldp-location__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.ldp-location__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    box-sizing: border-box;
}

.ldp-location__slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    z-index: 10;
}

.ldp-location__slider-dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.ldp-location__slider-dot.active {
    background: #fd9a00;
}

/* Break Image Section */
.ldp-break-image__img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Contact Form After Location */
.ldp-contact-vi-tri {
    background: #854112;
    padding: 60px 5%;
}

.ldp-contact__subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

/* Pricing Section */
.ldp-pricing {
    background: url('https://weereal.com.vn/the-prive/images/BG-can-ho-1.png') no-repeat center center/cover;
    color: #fff;
    padding: 60px 5%;
}

.ldp-pricing__container {
    max-width: 1200px;
    margin: 0 auto;
}

.ldp-pricing__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
}

.ldp-pricing__column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ldp-pricing__column--right {
    background: #143a72;
    border-radius: 10px;
    padding: 30px;
}

.ldp-pricing__image {
    height: auto;
    border-radius: 10px;
}

.ldp-pricing__column .ldp-pricing__image {
    width: 280px;
}

.ldp-pricing__column--right .ldp-pricing__image {
    width: 100%;
}

.ldp-pricing__text {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
}

.ldp-pricing__text p {
    margin-bottom: 15px;
}

.ldp-pricing__text .highlight {
    color: #e79072;
    font-weight: 500;
}

.ldp-pricing__separator {
    width: 100%;
    height: 1px;
    background: #bfc0c1;
    margin: 20px 0;
}

.ldp-pricing__button {
    display: inline-block;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: #e19076;
    border: 2px solid #e19076;
    padding: 0.5rem 2rem;
    border-radius: 0.3rem;
    box-shadow: 0 10px 77px -23px rgba(0, 0, 0, 0.75);
    white-space: normal;
    transition: all 0.3s, transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
}

.ldp-pricing__button:hover {
    color: #fff;
    background-color: #0B3050;
    border-color: #0B3050;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.ldp-pricing__button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    background-color: #155D9C;
}

.ldp-pricing__button:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    background-color: #155D9C;
}

.ldp-pricing__button:disabled {
    pointer-events: none;
    opacity: 0.65;
}

.ldp-pricing__button img {
    animation: blinking 1s step-start infinite;
    margin-right: 5px;
    vertical-align: middle;
    display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
    .ldp-pricing__button {
        transition: none;
    }
}

.ldp-pricing__button-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    justify-items: center;
    max-width: 100%;
    margin-top: 1rem;
}

.ldp-pricing__diem_manh_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    background-color: #0F2E5C;
    border: none;
    border-radius: 5px;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    width: 100%;
    height: 100px;
    line-height: 1.2;
}

.ldp-pricing__diem_manh_item i {
    font-size: 1.5rem;
    color: #D9866A;
    margin-bottom: 0.5rem;
}

.ldp-pricing__diem_manh_item span {
    display: block;
    font-size: 0.9rem;
}

/* Design Section */
.ldp-design {
    background: url('https://weereal.com.vn/the-prive/images/BG-thiet-ke.jpg') no-repeat center center/cover;
    color: #333;
    padding: 60px 5%;
}

.ldp-design__container {
    max-width: 1200px;
    margin: 0 auto;
}

.ldp-design__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}

.ldp-design__image-container {
    text-align: left;
}

.ldp-design__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.ldp-design__text {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
}

.ldp-design__text p {
    margin-bottom: 15px;
}

.ldp-design__slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.ldp-design__slider-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.ldp-design__slide {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ldp-design__slide img {
    width: 100%;
    max-height: 400px; /* Giới hạn chiều cao để tránh ảnh quá lớn */
    object-fit: contain; /* Hiển thị đầy đủ nội dung ảnh */
    border-radius: 10px;
    display: block;
}

.ldp-design__slider-dots {
    text-align: center;
    margin-top: 10px;
}

.ldp-design__slider-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.ldp-design__slider-dot.active {
    background: #fd9a00;
}

/* Amenities Section */
.ldp-amenities {
    background: linear-gradient(180deg, #001327, #002752);
    color: #fff;
    padding: 60px 5%;
}

.ldp-amenities__container {
    max-width: 1200px;
    margin: 0 auto;
}

.ldp-amenities__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
    align-items: stretch;
}

.ldp-amenities__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ldp-amenities__image {
    max-width: 325px;
    height: auto;
    border-radius: 10px;
}

.ldp-amenities__text {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
}

.ldp-amenities__text p {
    margin-bottom: 15px;
}

.ldp-amenities__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ldp-amenities__grid-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    line-height: 1.25;
}

.ldp-amenities__grid-icon {
    width: 40px;
    height: 40px;
}

.ldp-amenities__slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.ldp-amenities__slider-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.ldp-amenities__slide {
    flex: 0 0 100%;
    aspect-ratio: 5 / 3;
}

.ldp-amenities__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.ldp-amenities__slider-dots {
    text-align: center;
    margin-top: 10px;
}

.ldp-amenities__slider-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.ldp-amenities__slider-dot.active {
    background: #e19076;
}

/* Amenities Grid Section */
.ldp-amenities-grid {
    background: linear-gradient(180deg, #001327, #002752);
    color: #fff;
    padding: 60px 5%;
}

.ldp-amenities-grid__container {
    max-width: 1200px;
    margin: 0 auto;
}

.ldp-amenities-grid__img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 40px;
}

.ldp-amenities-grid__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ldp-amenities-grid__item {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Layout Section */
.ldp-layout {
    background: linear-gradient(rgb(245 245 245 / 50%), rgb(255 216 216 / 50%)), url(https://weereal.com.vn/the-prive/images/BG-VI-TRI.jpg) no-repeat center center / cover;
    color: #fff;
    padding: 60px 5%;
}

.ldp-layout__container {
    max-width: 1200px;
    margin: 0 auto;
}

.ldp-layout__image-container {
    text-align: center;
    margin-bottom: 40px;
}

.ldp-layout__header-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.ldp-layout__slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.ldp-layout__slider-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.ldp-layout__slide {
    flex: 0 0 100%;
    aspect-ratio: 5 / 3;
}

.ldp-layout__slide img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.ldp-layout__slider-dots {
    text-align: center;
    margin-top: 10px;
}

.ldp-layout__slider-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.ldp-layout__slider-dot.active {
    background: #fd9a00;
}

/* Video Section */
.ldp-video {
    padding: 60px 5%;
}

.ldp-video__container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.ldp-video__iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
}

.ldp-video__container::before {
    content: '';
    display: block;
    padding-bottom: 56.25%;
}

.ldp-video__iframe.animate-from-bottom {
    animation: slideUp 0.5s ease-out forwards;
}

@media (min-width: 768px) {
    .ldp-video__container {
        padding: 0 20px;
    }
}

/* Contact Section */
.ldp-contact {
    background: #854112;
    padding: 60px 5%;
}

.ldp-contact__title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.ldp-contact__form {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.ldp-contact__input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex: 1;
    min-width: 200px;
}

.ldp-contact__button {
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.3s;
}

.ldp-contact__button:hover {
    background: #0056b3;
}

.ldp-contact__hotline-btn {
    display: block;
    margin: 20px auto 0;
    padding: 12px 24px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border: 0px solid #ffffff;
    border-radius: 6px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.ldp-contact__hotline-btn:hover {
    color: #e0e0e0;
    border-color: #e0e0e0;
}

/* Modal Popup */
.modal-content {
    padding: 20px;
    border: none;
    border-radius: 0;
    box-shadow: 10px 10px 60px -25px rgba(0, 0, 0, 0.5);
}

.modal-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #155d9c;
    line-height: 25px;
}

.modal-body {
    font-family: 'Barlow', sans-serif;
}

.ldp-modal__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.ldp-modal__input {
    padding: 10px;
    font-size: 16px;
    border-radius: 4px;
}

.ldp-modal__button {
    background: #0b3050;
    border: none;
    padding: 10px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.ldp-modal__button:hover {
    background: #155d9c;
}

.ldp-modal__note {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-style: italic;
    color: #333;
    text-align: center;
}



/* Phân tích chuyên sâu Section */
.ldp-phan-tich {
    background: url('https://weereal.com.vn/the-prive/images/BG-can-ho-1.png') no-repeat center center/cover;
    color: #fff;
    padding: 60px 5%;
}

.ldp-phan-tich__container {
    max-width: 1200px;
    margin: 0 auto;
}

.ldp-phan-tich__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
}

.ldp-phan-tich__column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ldp-phan-tich__column--right {
    background: #143a72;
    border-radius: 10px;
    padding: 30px;
}

.ldp-phan-tich__image {
    max-width: 100% !important;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.ldp-phan-tich__image--left {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.ldp-phan-tich__image--right {
    width: 100%;
    max-width: 585px;
    height: auto;
    border-radius: 10px;
}

.ldp-phan-tich__image--animate {
    animation: slideUp 0.8s ease-out forwards;
}

.ldp-phan-tich__text {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
}

.ldp-phan-tich__text p {
    margin-bottom: 15px;
}

.ldp-phan-tich__highlight {
    color: #e79072;
    font-weight: 500;
}

.ldp-phan-tich__separator {
    width: 100%;
    height: 1px;
    background: #bfc0c1;
    margin: 20px 0;
}

.ldp-phan-tich__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    background-color: #e19076;
    border: 2px solid #e19076;
    padding: 0.5rem 2rem;
    border-radius: 0.3rem;
    box-shadow: 0 10px 77px -23px rgba(0, 0, 0, 0.75);
    transition: all 0.3s, transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
}

.ldp-phan-tich__button:hover {
    color: #fff;
    background-color: #0B3050;
    border-color: #0B3050;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.ldp-phan-tich__button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    background-color: #155D9C;
}

.ldp-phan-tich__button:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    background-color: #155D9C;
}

.ldp-phan-tich__button:disabled {
    pointer-events: none;
    opacity: 0.65;
}

.ldp-phan-tich__button img {
    animation: blinking 1s step-start infinite;
    margin-right: 5px;
    vertical-align: middle;
    display: inline-block;
}

/* Footer Section */
.ldp-footer {
    background-color: #051e33;
    color: #fff;
    text-align: center;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ldp-footer__text {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    margin: 0; /* Loại bỏ margin để đảm bảo căn giữa */
    line-height: 1; /* Đảm bảo không có khoảng cách dòng thừa */
}
/* Responsive */
@media (max-width: 768px) {
    .ldp-header {
        flex-wrap: wrap;
        height: auto;
        padding: 15px 5%;
    }

    .ldp-header__logo img {
        height: 40px;
    }

    .ldp-nav {
        width: 100%;
        justify-content: flex-end;
    }

    .ldp-nav__toggle {
        display: block;
    }

    .ldp-nav__list {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 10px 0;
    }

    .ldp-nav__list--active {
        display: flex;
    }

    .ldp-hero {
        padding: 30px 5%;
    }

    .ldp-hero__grid {
        grid-template-columns: 1fr;
    }

    .ldp-hero__column--right {
        display: none;
    }

    .ldp-hero__grid-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .ldp-overview__grid {
        grid-template-columns: 1fr;
    }

    .ldp-overview__cta {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .ldp-overview__cta-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 200px;
        border-radius: 10px 10px 0 0;
    }

    .ldp-overview__cta-form {
        padding: 20px;
    }

    .ldp-overview__cta-title {
        font-size: 18px;
    }

    .ldp-overview__input {
        font-size: 14px;
    }

    .ldp-overview__button {
        font-size: 14px;
        padding: 10px;
    }

    .ldp-location__row {
        flex-direction: column;
    }

    .ldp-location__row:nth-child(1) {
        flex-direction: column-reverse;
    }

    .ldp-location__row:nth-child(2) {
        flex-direction: column;
    }

    .ldp-location__content,
    .ldp-location__slider {
        max-width: 100%;
        width: 100%;
    }

    .ldp-location__grid {
        grid-template-columns: 1fr;
    }

    .ldp-location__slider {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    .ldp-location__slider-container {
        width: 100%;
        height: 100%;
    }

    .ldp-location__slide {
        width: 100%;
        flex: 0 0 100%;
        height: 100%;
    }

    .ldp-location__slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ldp-location__slider-dots {
        bottom: 8px;
    }

    .ldp-break-image__img {
        max-height: 60vh;
    }

    .ldp-pricing__grid {
        grid-template-columns: 1fr;
    }

    .ldp-pricing__column--right {
        padding: 20px;
    }

    .ldp-pricing__button-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .ldp-pricing__diem_manh_item {
        font-size: 0.8rem;
        height: 120px;
    }

    .ldp-pricing__diem_manh_item i {
        font-size: 1.3rem;
        margin-bottom: 0.4rem;
    }

    .ldp-pricing__diem_manh_item span {
        font-size: 0.8rem;
    }

    .ldp-design__row {
        grid-template-columns: 1fr;
    }

    .ldp-design__image-container {
        text-align: center;
    }

    .ldp-design__slider {
        max-width: 100%;
    }

    .ldp-design__slide img {
        max-height: 300px; /* Giảm chiều cao trên mobile */
    }

    .ldp-amenities__row {
        grid-template-columns: 1fr;
    }

    .ldp-amenities__row:nth-child(1) {
        flex-direction: column-reverse;
    }

    .ldp-amenities__row:nth-child(2) {
        flex-direction: column;
    }

    .ldp-amenities__grid,
    .ldp-amenities-grid__items {
        grid-template-columns: 1fr;
    }

    .ldp-contact__form,
    .ldp-contact-vi-tri .ldp-contact__form {
        flex-direction: column;
    }

    .ldp-contact__input,
    .ldp-contact__button {
        width: 100%;
        min-width: unset;
    }

    .ldp-location__slider,
    .ldp-amenities__slider,
    .ldp-layout__slider {
        max-width: 100%;
        overflow: hidden;
    }

    .ldp-location__slider-container,
    .ldp-amenities__slider-container,
    .ldp-layout__slider-container {
        width: 100%;
    }

    .ldp-location__slide,
    .ldp-amenities__slide,
    .ldp-layout__slide {
        width: 100%;
        flex: 0 0 100%;
    }

    .ldp-phan-tich__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ldp-phan-tich__column {
        align-items: center;
    }

    .ldp-phan-tich__column--right {
        padding: 20px;
    }

    .ldp-phan-tich__image--left,
    .ldp-phan-tich__image--right {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .ldp-phan-tich__text {
        font-size: 14px;
        text-align: center;
    }

    .ldp-phan-tich__button {
        width: 100%;
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    .ldp-phan-tich__separator {
        margin: 15px 0;
    }
}
.ldp-phan-tich__title {
    font-family: 'Oswald', sans-serif;
    font-size: 100px;
    font-weight: 700;
    color: #E19175;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .ldp-phan-tich__title {
        font-size: 60px;
    }
}
.xc-contact {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.call-button, .zalo-button {
    width: 60px;
    height: 60px;
    background: #4caf50;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    animation: pulse 1.5s infinite;
    transition: transform 0.2s;
}

.call-button img, .zalo-button img {
    width: 30px;
    height: 30px;
}

.call-button:hover, .zalo-button:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}
/* Hotline Button */
.ldp-contact__hotline-btn {
    display: block;
    margin: 20px auto 0;
    padding: 12px 24px;
    background: #4caf50; /* Background màu xanh */
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border: none;
    border-radius: 6px; /* Border radius */
    cursor: pointer;
    animation: shake 2s ease-in-out infinite; /* Hiệu ứng rung */
    transition: background 0.3s ease;
}

.ldp-contact__hotline-btn:hover {
    background: #388e3c; /* Màu nền khi hover */
}

/* Hiệu ứng rung */
@keyframes shake {
    0% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
    100% { transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .ldp-contact__hotline-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}