/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #0A2D58;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 150px;
    aspect-ratio: 105 / 47;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

@media screen and (max-width: 768px) {
    .logo-icon {
        width: 100px;
    }

    .header-content {
        height: 60px;
    }
}

/* .logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 2px;
} */

.logo-text {
    font-size: 20px;
    font-weight: bold;
}

.nav {
    display: flex;
    gap: 15px;
}

.nav-link,
.nav-link a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
    list-style-type: none;
}

.nav-link:hover {
    color: #F9BE4F;
}

.hotline-btn {
    background-color: #F9BE4F;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hotline-btn:hover {
    background-color: #e6a93f;
    transform: scale(1.05);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

/* Banner Styles */
.banner {
    width: 100%;
    height: auto;
    aspect-ratio: 1904/840;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-video {
    width: 100%;
    height: 100%;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.banner-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.banner-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.banner-subtitle {
    font-size: 1.5rem;
}

/* Info Section */
.info-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    color: #0A2D58;
    margin-bottom: 60px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 60px;
}

/* Tab Styles */
.tab-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    background-color: #f1f1f1;
}

.tab-btn {
    flex: 1;
    padding: 15px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background-color: #0A2D58;
    color: white;
}

.tab-content {
    display: none;
    padding: 30px;
}

.tab-content.active {
    display: block;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #0A2D58;
}

.info-value {
    text-align: right;
    max-width: 60%;
}

.developer-title {
    color: #0A2D58;
    font-size: 18px;
    margin-bottom: 15px;
}

.developer-desc {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.developer-info p {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Video Styles */
.video-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    /* 16:9 aspect ratio */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Description Section */
.description-section {
    text-align: center;
    margin-bottom: 60px;
}

.description-title {
    font-size: 2.5rem;
    color: #0A2D58;
    margin-bottom: 30px;
}

.description-text {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

/* Content Boxes */
.content-boxes {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.content-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: calc(50% - 30px);
}

.content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.box-title {
    color: #F9BE4F;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.box-list {
    list-style: none;
    padding: 0;
}

.box-list li {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.cta-box {
    background-color: #F9BE4F;
    color: black;
    padding: 40px;
    border-radius: 10px;
    display: inline-block;
}

.cta-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.cta-hotline {
    font-size: 20px;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: #0A2D58;
    color: white;
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.footer-logo .logo-icon {
    width: 210px;
}

.social-links {
    margin-top: 8px;
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link.facebook {
    background-color: #3b5998;
}

.social-link.zalo {
    background-color: #0068ff;
}

.social-link.youtube {
    background-color: #ff0000;
}

.social-link.email {
    background-color: #666;
}

.social-link:hover {
    transform: scale(1.1);
}

.footer-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.company-name {
    font-weight: bold;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input {
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
}

.contact-form .wpcf7-form-control.submit-btn {
    background-color: #F9BE4F;
    color: black;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .wpcf7-form-control.submit-btn:hover {
    background-color: #e6a93f;
    transform: scale(1.05);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
}

.zalo-btn {
    background-color: #F9BE4F;
    color: black;
}

.facebook-btn {
    background-color: #3b5998;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #0A2D58;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .nav.active {
        display: flex;
        gap: 5px;
    }

    .mobile-toggle {
        display: block;
    }

    .hotline {
        display: none;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .description-title {
        font-size: 1.8rem;
    }

    .info-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-boxes {
        flex-wrap: wrap;
    }

    .tab-buttons {
        flex-direction: row;
    }

    .info-item {
        flex-direction: column;
        gap: 5px;
    }

    .info-value {
        max-width: 100%;
        text-align: left;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 18px;
    }

    .cta-hotline {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .info-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .content-box,
    .tab-content {
        padding: 20px;
    }

    .content-box {
        width: 100%;
    }

    .footer {
        padding: 40px 0;
    }
}

/* Hero Garden Section */
.hero-garden {
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.garden-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.breadcrumb {
    color: white;
    font-size: 16px;
}

.breadcrumb a {
    color: #F9BE4F;
    text-decoration: none;
}

.breadcrumb span {
    color: white;
}

@media screen and (max-width: 768px) {
    .hero-garden {
        height: 230px;
    }

}

/* Overview Section */
.overview-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: center;
}

.page-title {
    font-size: 2.5rem;
    color: #0A2D58;
    font-weight: bold;
    margin-bottom: 10px;
}

.project-name {
    font-size: 2rem;
    color: #F9BE4F;
    font-weight: bold;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    margin-bottom: 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.detail-label {
    font-weight: 600;
    color: #0A2D58;
    min-width: 120px;
}

.detail-value {
    color: #666;
    flex: 1;
}

.specs-list {
    margin-top: 15px;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.spec-item i {
    color: #F9BE4F;
    font-size: 18px;
    margin-right: 15px;
    margin-top: 2px;
}

.spec-item span {
    color: #666;
    line-height: 1.5;
}

@media screen and (max-width: 992px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .project-name {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .page-title {
        font-size: 1.5rem;
        color: #0A2D58;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .project-name {
        font-size: 1.2rem;
    }
}

/* Project Visual */
.visual-container {
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.view-360-btn {
    background: rgba(249, 190, 79, 0.9);
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.view-360-btn:hover {
    background: #F9BE4F;
    transform: scale(1.05);
}

/* Project Description */
.project-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    margin-bottom: 30px;
}

.project-description p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Location Section */
.location-section {
    padding: 40px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    color: #0A2D58;
    margin-bottom: 50px;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-wrapper {
    position: relative;
}

.map-info-card {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    min-width: 250px;
}

.map-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.map-info-header h3 {
    color: #0A2D58;
    font-size: 18px;
    font-weight: bold;
}

.directions-btn {
    background: #4285f4;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.map-address {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.view-larger-btn {
    background: none;
    border: none;
    color: #4285f4;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
}

/* Features Section */
.features-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F9BE4F, #e6a93f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-title {
    font-size: 20px;
    font-weight: bold;
    color: #0A2D58;
    margin-bottom: 15px;
}

.feature-desc {
    color: #666;
    line-height: 1.6;
}

/* Location Overview */
.location-overview {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    color: #0A2D58;
    margin-bottom: 40px;
    line-height: 1.2;
}

.overview-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.overview-description p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Location Benefits */
.location-benefits {
    padding: 40px 0;
    background: white;
}

.benefit-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
    align-items: center;
}

.benefit-block.reverse {
    direction: rtl;
}

.benefit-block.reverse>* {
    direction: ltr;
}

.benefit-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #F9BE4F;
    margin-bottom: 20px;
}

.benefit-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.benefit-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.benefit-image:hover img {
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {
    .benefit-block {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefit-block.reverse {
        direction: ltr;
    }
}

/* Connectivity Section */
.connectivity-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    color: #0A2D58;
    margin-bottom: 60px;
}

.connectivity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.connectivity-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.connectivity-section .wrap-img img {
    width: 100%;
    height: 100%;
}

.connectivity-section .wrap-img {
    margin-top: 20px;
}

.connectivity-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F9BE4F, #e6a93f);
}

.connectivity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.connectivity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0A2D58, #1a4a7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.connectivity-icon i {
    font-size: 32px;
    color: #F9BE4F;
}

.connectivity-title {
    font-size: 20px;
    font-weight: bold;
    color: #0A2D58;
    margin-bottom: 10px;
}

.connectivity-distance {
    font-size: 16px;
    font-weight: bold;
    color: #F9BE4F;
    margin-bottom: 15px;
}

.connectivity-desc {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Interactive Map Section */
.interactive-map-section {
    padding: 40px 0;
    background: white;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 500px;
}

/* Location Advantages */
.location-advantages {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.advantage-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.advantage-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #F9BE4F, #e6a93f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 18px;
}

.advantage-title {
    font-size: 20px;
    font-weight: bold;
    color: #0A2D58;
    margin: 30px 0 15px;
}

.advantage-desc {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Benefit Page  */

/* Main Amenities Section */
.main-amenities {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    color: #0A2D58;
    margin-bottom: 40px;
    line-height: 1.2;
}

.amenities-description {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.amenities-description p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Lifestyle Grid */
.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.lifestyle-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lifestyle-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.lifestyle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lifestyle-item:hover .lifestyle-image {
    transform: scale(1.1);
}

.lifestyle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
}

.lifestyle-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.lifestyle-desc {
    font-size: 14px;
    opacity: 0.9;
}

/* Project Amenities Section with Swiper */
.project-amenities {
    padding: 40px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    color: #0A2D58;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.amenity-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Amenity Image Container with Swiper */
.amenity-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.amenity-swiper {
    width: 100%;
    height: 100%;
}

.amenity-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.amenity-card:hover .card-image {
    transform: scale(1.05);
}

/* Swiper Navigation Buttons */
.amenity-swiper .swiper-button-next,
.amenity-swiper .swiper-button-prev {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    color: #F9BE4F;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0;
}

.amenity-swiper .swiper-button-next:after,
.amenity-swiper .swiper-button-prev:after {
    font-size: 12px;
    font-weight: bold;
}

.amenity-card:hover .swiper-button-next,
.amenity-card:hover .swiper-button-prev {
    opacity: 1;
}

.amenity-swiper .swiper-button-next:hover,
.amenity-swiper .swiper-button-prev:hover {
    background: #F9BE4F;
    color: white;
}

/* Swiper Pagination */
.amenity-swiper .swiper-pagination {
    bottom: 10px;
}

.amenity-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.amenity-swiper .swiper-pagination-bullet-active {
    background: #F9BE4F;
}

.amenity-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(249, 190, 79, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    z-index: 10;
    transition: all 0.3s ease;
}

.amenity-card:hover .amenity-overlay {
    background: #F9BE4F;
    transform: scale(1.1);
}

.amenity-title {
    font-size: 20px;
    font-weight: bold;
    color: #0A2D58;
    margin: 20px 20px 10px;
}

.amenity-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 20px 20px;
}

.amenity-desc ul {
    padding-left: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-amenities {
        height: 40vh;
    }

    .main-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .lifestyle-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 150px);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .feature-item {
        padding: 20px;
    }

    .amenity-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .main-amenities,
    .project-amenities,
    .amenities-features,
    .amenities-gallery {
        padding: 40px 0;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .lifestyle-item {
        height: 200px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto 20px;
    }
}

/* Tabs FloorPlan  */

/* Tabs */
.floor-project .tabs {
    display: flex;
    border-bottom: 1px solid #2b5192;
    width: 100%;
}

.floor-plan-tabs {
    border: 5px solid #2b5192;
    border-radius: 15px;
}

.floor-project .tab-button {
    flex: 1;
    padding: 12px 8px;
    text-align: center;
    background-color: white;
    color: #3b82f6;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-size: 22px;
    color: #2b5192;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
}

.floor-project .tab-button:hover:not(.active) {
    background-color: #f3f4f6;
}

.floor-project .tab-button.active {
    background-color: #2b5192;
    color: white;
}

/* Content */
.floor-project .tab-content {
    position: relative;
    border-top: none;
    display: block;
}

.floor-project .tab-content>.tab-pane.active {
    display: block;
}

/* Image Slider */
.image-slider {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
}

.slider-nav:hover {
    background-color: white;
}

.prev {
    left: 16px;
}

.next {
    right: 16px;
}

/* Amenities Legend */
.amenities-legend {
    position: absolute;
    left: 16px;
    top: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 16px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 250px;
    max-height: 500px;
    overflow-y: auto;
}

.amenities-list {
    list-style: none;
}

.amenity-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.amenity-number {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ef4444;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.amenity-name {
    font-size: 14px;
}

.apartment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.apartment-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid var(--primary-color);
}

.apartment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #fb923c;
}

.card-header {
    background: linear-gradient(135deg, #fff7ed 0%, #fef3f2 100%);
    padding: 25px;
    border-bottom: 2px solid var(--primary-color);
}

.card-title {
    color: #be185d;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-icon {
    width: 24px;
    height: 24px;
    fill: #ea580c;
}

.card-description {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
}

.card-content {
    padding: 25px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 10px;
    background: #f9fafb;
    border-radius: 8px;
}

.info-icon {
    width: 20px;
    height: 20px;
    fill: #ea580c;
    flex-shrink: 0;
}

.info-label {
    font-weight: 500;
    color: #374151;
}

.info-value {
    font-size: 1.1rem;
    font-weight: bold;
    color: #111827;
}

.features-section {
    background: #fff7ed;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.features-title {
    font-weight: 600;
    color: #be185d;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 5px 0;
    color: #4b5563;
    position: relative;
    padding-left: 20px;
}

.features-list li:before {
    content: "•";
    color: #ea580c;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.special-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #fff7ed 0%, #fef3f2 100%);
}

.special-content {
    text-align: center;
    padding: 40px;
}

.special-title {
    font-size: 1.3rem;
    color: #ea580c;
    margin-bottom: 10px;
}

.special-subtitle {
    color: #6b7280;
    font-size: 0.9rem;
}

.slide-image {
    aspect-ratio: 256 / 181;
    height: auto;
}

.slide-image img {
    width: 100%;
    height: 100%;
}

.floor-project {
    padding: 40px 0;
}

/* Pulse animation */
.social-icon.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 89, 152, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(59, 89, 152, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 89, 152, 0);
    }
}

/* Bounce animation */
.social-icon.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Floating effect on hover */
.social-icon:hover {
    animation: float 0.8s ease-in-out infinite alternate;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-8px);
    }
}

/* Ripple effect on click */
.social-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.social-icon:active::after {
    transform: scale(2);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

@media screen and (max-width: 768px) {
    .floor-project .wrap-tab {
        overflow-y: hidden;
        overflow-x: scroll;
    }

    .floor-project .tabs {
        width: 820px;
    }

    .floor-project .tab-button {
        font-size: 18px;
    }
}

/* Policay Page  */

/* Policy Section Styles */
.policy {
    background: #2b5192;
    padding: 40px 0 40px;
}

.policy-image {
    aspect-ratio: 343 / 512;
    height: auto;
}

.policy-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    height: auto;
}

.policy-form {
    background: #ffffff;
    padding: 25px 0 0 0;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}

.policy-form textarea {
    max-height: 140px;
}

.policy-form .contact-form {
    padding: 10px 50px;
}

.policy-form .section-title1 {
    font-size: 24px;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.policy-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.policy-form input {
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: border 0.3s, box-shadow 0.3s;
}

.policy-form input:focus {
    border-color: #ff6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.15);
    outline: none;
}

.policy .section-subtitle,
.policy .section-title {
    color: var(--light-color);
}

.policy-supper-content {
    display: flex;
    justify-content: center;
    align-items: stretch;
    /* KÃ©o dÃ i cÃ¡c pháº§n tá»­ con cho chiá»u cao Ä‘á»“ng nháº¥t */
    gap: 30px;
    flex-wrap: wrap;
    /* Äáº£m báº£o áº£nh xuá»‘ng dÃ²ng khi mÃ n hÃ¬nh nhá» */
}

.policy-supper-image {
    width: 100%;
    /* Äáº£m báº£o chiá»u rá»™ng container vá»«a vá»›i flex item */
    max-width: 480px;
    /* Giá»›i háº¡n chiá»u rá»™ng */
    aspect-ratio: 3 / 4;
    /* Äáº·t tá»· lá»‡ khung hÃ¬nh cá»‘ Ä‘á»‹nh */
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

.policy-supper-image img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    /* Giá»¯ tá»‰ lá»‡ áº£nh vÃ  cáº¯t bá»›t pháº§n dÆ° */
    border-radius: 15px;
}


/* .policy-supper-image:hover img {
  transform: scale(1.05); 
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
} */

*/ .policy-supper {
    padding: 40px 0;
}

.policy .section-divider {
    background: var(--dark-color);
}

/* progress Section styles */
.progress {
    background-color: var(--gray-color);
    width: 100%;
    height: auto;
}

.progress-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.progress-item {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

.progress .progress-image {
    max-width: 800px;
    max-height: 500px;
    margin: 0 auto;
}

.progress .progress-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.progress-image .image-overlay {
    border-radius: 15px;
}

.progress .swiper-button-next,
.progress .swiper-button-prev {
    color: rgb(255 153 102);
    background: rgba(255, 255, 255, 0.2);
}

.progress .swiper-button-next:hover,
.progress .swiper-button-prev:hover {
    background: var(--primary-gradient);
    color: var(--light-color);
    transform: scale(1.1);
}

/* signing section */
.signing-ceremony-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.signing-ceremony-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.signing-ceremony-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.signing-image-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    border-radius: 5px;
    max-width: 90%;
}

.wpcf7-form-control.submit-btn {
    width: 100%;
    padding: 15px;
    background: #2b5192;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 153, 102, 0.3);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.policy .section-subtitle,
.policy .section-title {
    color: #fff;
}

.section-subtitle {
    font-size: 16px;
    text-transform: uppercase;
}

/* Overview Gallery */
.overview-gallery {
    margin-top: 50px;
}

.overview-swiper,
.location-swiper,
.amenities-swiper {
    width: 100%;
    height: 386px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.overview-swiper .swiper-slide,
.location-swiper .swiper-slide,
.amenities-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.overview-swiper .swiper-slide img,
.location-swiper .swiper-slide img,
.amenities-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.overview-swiper .swiper-slide:hover img,
.location-swiper .swiper-slide:hover img,
.amenities-swiper .swiper-slide:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--light-color);
    font-weight: 600;
    z-index: 2;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #2b5192;
    transform: scale(1.2);
}

.news-section {
    padding: 40px 0 20px;
}

.news-section .news-item .news-title,
.news-section .news-item .news-title a {
    font-size: 21px;
    margin: 10px 0;
    color: #0A2D58;
    text-decoration: none;
}

.news-section .news-item .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-section .news-item .news-image {
    aspect-ratio: 540 / 298;
    width: 100%;
    height: 100%;
    display: block;
}

.news-section .news-item .news-read-more {}

/* Progress Section  */
.progress-section {
    padding: 40px 0;
    margin-bottom: 30px;
}

.gallery-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 8px;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.photo-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.photo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.photo-item:hover::before {
    background: rgba(0, 0, 0, 0.1);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px;
    font-weight: bold;
    z-index: 2;
}

.date-overlay {
    font-size: 18px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.count-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    z-index: 2;
}

.zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.photo-item:hover .zoom-icon {
    opacity: 1;
}

.zoom-icon svg {
    width: 24px;
    height: 24px;
    fill: #333;
}

/* Grid layout positioning */
.photo-1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

.photo-2 {
    grid-column: 2;
    grid-row: 1;
}

.photo-3 {
    grid-column: 2;
    grid-row: 2;
}

.photo-4 {
    grid-column: 1;
    grid-row: 3;
}

.photo-5 {
    grid-column: 2;
    grid-row: 3;
}

/* Custom Fancybox styling */
.fancybox__container {
    --fancybox-bg: rgba(24, 24, 27, 0.92);
}

.fancybox__slide {
    padding: 20px;
}

.fancybox__content {
    border-radius: 8px;
    overflow: hidden;
}

.fancybox__caption {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 250px);
        height: auto;
    }

    .photo-1,
    .photo-2,
    .photo-3,
    .photo-4,
    .photo-5 {
        grid-column: 1;
        grid-row: auto;
    }

    .photo-1 {
        grid-row: 1;
    }

    .photo-2 {
        grid-row: 2;
    }

    .photo-3 {
        grid-row: 3;
    }

    .photo-4 {
        grid-row: 4;
    }

    .photo-5 {
        grid-row: 5;
    }
}

@media (max-width: 480px) {
    /* body {
        padding: 10px;
    } */

    .gallery-container {
        gap: 6px;
    }

    .photo-overlay {
        padding: 15px;
    }

    .date-overlay {
        font-size: 16px;
    }

    .zoom-icon {
        width: 40px;
        height: 40px;
    }

    .zoom-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Single Post  */

.blog-layout {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 40px;
    margin: 40px 0;
}

/* Main Content Styles */
.main-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.meta-item {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-item::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
}

.meta-item:first-child::before {
    display: none;
}

.post-content {
    margin-bottom: 30px;
}

.post-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.post-content h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.post-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Sidebar Styles */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-section {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 0px;
    border-bottom: 2px solid var(--primary-color);
}

.recent-posts {
    list-style: none;
    padding: 0;
}

.recent-posts li {
    margin-bottom: 15px;
}

.recent-posts a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.recent-posts a:hover {
    color: var(--primary-color);
    padding-left: 10px;
    background-color: var(--hover-color);
    border-radius: 4px;
    border-bottom-color: var(--primary-color);
}

.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-tag {
    background-color: var(--primary-color);
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.category-tag:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 51, 102, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .blog-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px 0;
    }

    .main-content {
        padding: 25px;
    }

    .post-title {
        font-size: 2rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 10px;
    }

    .sidebar-section {
        padding: 20px;
    }

    body {
        font-size: 16px;
    }

    .policy-content {
        grid-template-columns: 1fr;
        /* 1 cột trên điện thoại */
    }

    .policy-image {
        order: 1;
        /* Ảnh nằm sau nội dung nếu cần */
    }

    .policy-content-inner {
        order: 2;
    }
}

@media (max-width: 480px) {
    .post-title {
        font-size: 1.5rem;
    }

    .main-content {
        padding: 20px;
    }

    .sidebar-section {
        padding: 15px;
    }
}

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;

}

/* Nút tròn */
.float-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: visible;
}

/* Hover effect */
.float-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

/* Font Awesome icon (gọi, mũi tên) */
.float-btn i {
    font-size: 24px;
    color: white;
}

/* Icon ảnh */
.btn-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
    background: white;
    padding: 4px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Màu nền theo loại */
.phone-btn {
    background-color: #28a745;
}

.zalo-btn {
    background-color: #0180ff;
}

.facebook-btn {
    background-color: #1877f2;
}

.back-to-top {
    background-color: #444;
    display: none;
}

/* Ẩn ban đầu */
.phone-label {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: #28a745;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.phone-btn:hover .phone-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(233, 57, 21, 0.6);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.phone-btn {
    animation: pulse-ring 2s infinite;
}

.zalo-btn {
    animation: pulse-ring 2s infinite;
}

.facebook-btn {
    animation: pulse-ring 2s infinite;
}

@keyframes fadeInUp {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* -------- Animation: hiện nút top khi scroll xuống -------- */
@keyframes fadeScaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.floor-desc {
    background-color: #f5f8fc;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    white-space: pre-line;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-top: 10px;
    text-align: center;
}

.project-visual .image-overlay {
    display: none;
}

.chinh_sach_bao_mat{
    color: white;
    font-weight: 700;
}

.chinh_sach_bao_mat span{
    text-decoration: none;
    color: red;
}

.chinh_sach_bao_mat:hover{
    color: rgba(13, 110, 253, 1);
}