@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600;700&display=swap');

:root {
    --font-title: 'Playfair Display', 'Lora', serif;
    --font-body: 'Be Vietnam Pro', 'Helvetica Neue', sans-serif;
    --fs-hero: clamp(3rem, 7vw, 6.5rem);
    --fs-h1: clamp(2.5rem, 5vw, 4.5rem);
    --fs-h2: clamp(2rem, 3.5vw, 3rem);
    --fs-h3: clamp(1.25rem, 2vw, 1.75rem);
    --fs-h4: clamp(1rem, 1.5vw, 1.25rem);
    --fs-body: 1rem;
    --fs-body-sm: 0.875rem;
    --fs-label: 0.75rem;
    --fs-stat: clamp(2.5rem, 4vw, 4rem);
    --ls-tight: -0.02em;
    --ls-normal: 0;
    --ls-wide: 0.08em;
    --ls-wider: 0.15em;
    --ls-widest: 0.25em;
    --lh-tight: 1.1;
    --lh-heading: 1.2;
    --lh-body: 1.7;
    --lh-relaxed: 1.9;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    --section-padding-y: clamp(4rem, 8vw, 8rem);
    --section-padding-x: clamp(1.5rem, 5vw, 5rem);
    --container-max: 1320px;
    --container-padding: clamp(1rem, 4vw, 2.5rem);
    --radius-none: 0;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 999px;
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 32px 80px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 0 30px rgba(201, 168, 124, 0.2);
    --z-base: 1;
    --z-above: 10;
    --z-modal: 100;
    --z-nav: 1000;
    --z-overlay: 9999;
}

/* Global Section Typography Standards */
.hp-section-label,
.hp-amenity-label,
.hp-news-title-serif,
.hp-amenity-sub {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #c9a87c;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1;
}

.hp-section-title,
.hp-amenity-main-title,
.hp-news-main-title,
.hp-intro-title,
.hp-post-detail-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 3px;
    margin: 0;
}

.hp-intro-content {
    margin-left: 30px;
}

.hp-section-title span,
.hp-section-title-serif span {
    color: #c9a87c;
}

.hp-section-title-serif,
.hp-visit-title,
.hp-about-headline,
.hp-news-title-serif-accent {
    font-family: var(--font-title);
    font-size: 52px;
    font-weight: 400;
    color: #1a1a1a;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.hp-section-title span,
.hp-section-title-serif span {
    color: #c9a87c;
}

@media (max-width: 959px) {

    .hp-section-title,
    .hp-amenity-main-title,
    .hp-news-main-title,
    .hp-intro-title,
    .hp-post-detail-title {
        font-size: 36px;
        line-height: 1.2;
        letter-spacing: 1px;
    }

    .hp-intro-content {
        margin-left: 0;
    }

    .hp-section-title-serif,
    .hp-visit-title,
    .hp-about-headline {
        font-size: 32px;
        line-height: 1.2;
    }

    .hp-section-label,
    .hp-amenity-label,
    .hp-news-title-serif {
        font-size: 11px;
        letter-spacing: 2px;
    }
}

body {
    box-sizing: border-box;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    margin: 0;
    padding: 0;
}

/* Header & Navigation Refined Phase 7 */
.hp-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: transparent !important;
}

.hp-header-main {
    padding: 0;
    transition: all 0.3s ease;
}

/* Sticky Header Refinements */
.hp-header.uk-active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0f1216 !important;
    /* Darker elite background */
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    animation: slideDown 0.4s ease;
}


@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.hp-logo-img {
    max-height: 55px;
    /* Slightly larger logo */
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.hp-header.uk-active .hp-logo-img {
    max-height: 48px;
    /* Compact logo on sticky */
}

.hp-nav-center-wrap {
    padding-left: 2%;
}

.uk-navbar-custom {
    background: transparent !important;
}

.hp-main-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hp-header-right {
    padding-left: 14%;
}

.hp-main-menu>li>a {
    font-family: var(--font-body);
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff !important;
    text-decoration: none !important;
    padding: 30px 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.hp-main-menu>li>a:hover,
.hp-main-menu>li.uk-active>a {
    color: #c9a87c !important;
    opacity: 1;
}


.hp-header-container-nav {
    max-width: 1600px !important;
    padding: 0 60px !important;
}

.hp-contact-val {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-right: 25px;
}


.hp-btn-ghost {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    background: transparent;
}

.hp-btn-ghost:hover {
    background: #fff;
    color: #000 !important;
    border-color: #fff;
    transform: translateY(-2px);
}


/* Hero Section Split Base */
.hp-hero-premium {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0f1216;
    /* Dark background */
}

/* Layer 1: Background Layout */
.hp-hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.hp-hero-bg-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 2;
    opacity: 1;
}


/* Cleanup duplicate split background */
.hp-hero-premium::after {
    display: none;
}


.hp-hero-content-wrap {
    z-index: 30 !important;
    margin-left: 15% !important;
    width: 100% !important;
    padding-right: 50px;
}


.hp-hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.hp-hero-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    backdrop-filter: blur(5px);
}

.hp-hero-title {
    font-family: var(--font-body);
    color: #fff;
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    max-width: 750px;
    text-transform: uppercase;
}

.hp-hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 45px;
    letter-spacing: 0.5px;
    max-width: 450px;
}

.hp-btn-solid {
    border: none;
    background: #c9a87c;
    color: #fff !important;
    padding: 16px 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

/* Layer 2: Content Overlay (60% Left) */
.hp-hero-container {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1600px !important;
    /* Expand container width */
    padding: 0 60px !important;
    /* Reduce side indentation */
}


.hp-hero-content-wrap {
    width: 60%;
    padding-right: 50px;
}

/* Layer 3: Visual Overlay (60% Right, Independent Overlap) */
.hp-hero-visual-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60%;
    z-index: 20;
    /* Above Content */
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    pointer-events: none;
}

.hp-hero-building-img {
    width: 100%;
    max-width: 1100px;
    height: auto;
    filter: drop-shadow(-30px 20px 60px rgba(0, 0, 0, 0.7));
    display: block;
    transform-origin: bottom right;
}

/* 360 Badge - Part of Top Layers, Centered on 60/40 split */
.hp-360-badge-wrap {
    position: absolute;
    left: 60%;
    /* Anchored to split point */
    top: 25%;
    transform: translate(-50%, -50%);
    z-index: 30;
    /* Highest */
    pointer-events: auto;
}




.hp-360-badge {
    width: 140px;
    height: 140px;
    border: 1px solid rgba(201, 168, 124, 0.8);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    color: #fff;
}

.hp-360-badge::before {
    content: '';
    position: absolute;
    width: 155px;
    height: 155px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hp-360-num {
    font-size: 38px;
    font-weight: 800;
    color: #c9a87c;
}

.hp-360-unit {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

@media (max-width: 959px) {
    .hp-header {
        border-top: none !important;
    }

    .hp-hero-premium {
        height: auto;
        min-height: auto;
        padding: 120px 0 0;
        flex-direction: column !important;
        display: flex !important;
    }

    .hp-hero-container {
        height: auto;
        padding: 0 20px !important;
        order: 1;
    }

    .hp-hero-content-wrap {
        width: 100% !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        text-align: center;
        margin-bottom: 40px;
    }

    .hp-hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        margin: 0 auto 20px;
    }

    .hp-hero-subtitle {
        margin: 0 auto 40px;
    }

    .hp-hero-bg-main {
        position: relative !important;
        width: 100% !important;
        height: 400px !important;
        top: 0 !important;
        right: 0 !important;
        order: 2;
        background-size: cover;
    }

    .hp-hero-visual-wrap {
        position: relative !important;
        width: 100% !important;
        margin-top: -100px;
        order: 3;
        display: flex;
        justify-content: center;
    }

    .hp-hero-building-img {
        width: 100%;
        max-width: 100%;
        transform: none !important;
    }

    .hp-360-badge-wrap {
        display: none !important;
    }
}


.hp-btn-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px);
}

.hp-hamburger-icon {
    width: 25px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hp-hamburger-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    transition: var(--transition-fast);
}

.hp-hamburger-icon:hover span {
    background: #c9a87c;
}

/* Phase 8: Introduction Section Refined */
.hp-intro-section {
    background-color: #ffffff;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.hp-intro-watermark {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 60%;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

.hp-intro-container {
    position: relative;
    z-index: 2;
    max-width: 1400px !important;
}

.hp-intro-title {
    max-width: 650px;
}

.hp-intro-title .hp-text-gold {
    color: #c9a87c;
    display: block;
}

.hp-intro-tagline {
    font-size: 16px;
    /* Larger than body, smaller than title */
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 40px;
    /* Strong vertical spacing */
    display: block;
    line-height: 1.5;
}

.hp-intro-tagline span {
    color: #c9a87c;
}

.hp-intro-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    text-align: left;
    max-width: 700px;
}

@media (max-width: 959px) {
    .hp-intro-section {
        padding: 80px 0;
    }

    .hp-intro-title {
        font-size: 3rem;
        margin-bottom: 30px;
    }

    .hp-intro-tagline {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* Phase 9: Elite Gallery Slider Refined */
.hp-elite-gallery-section {
    padding: 60px 0;
    background: #fff;
    cursor: none;
    position: relative;
    overflow: hidden;
}

.hp-gallery-swiper-wrapper {
    position: relative;
    padding: 0 50px;
}

.hp-gallery-swiper {
    width: 100%;
    padding: 20px 0 100px;
    overflow: visible !important;
}

.hp-swiper-slide {
    width: 600px !important;
    max-width: 600px !important;
    aspect-ratio: 4 / 3;
    /* Enforce uniform aspect ratio */
    height: auto !important;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.8s ease;
    opacity: 0.4;
    transform: scale(0.82);
    /* Side slides are unified and slightly smaller */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-swiper-slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1.1);
    /* Center slide is the hero */
    z-index: 10;
}

.hp-gallery-img-wrap {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.hp-gallery-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
    display: block;
}

/* Custom Swiper Buttons */
.hp-swiper-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 20;
}

.hp-swiper-button-prev,
.hp-swiper-button-next {
    width: 60px;
    height: 60px;
    background: #0f1216;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hp-swiper-button-prev:hover,
.hp-swiper-button-next:hover {
    background: #c9a87c;
    transform: scale(1.1);
}

.hp-swiper-button-prev i,
.hp-swiper-button-next i {
    font-size: 18px;
}

/* Custom Drag Cursor */
.hp-drag-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: #c9a87c;
    /* Gold for drag cursor */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: scale(0);
    mix-blend-mode: hard-light;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.hp-elite-gallery-section:hover .hp-drag-cursor {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 959px) {
    .hp-swiper-slide {
        width: 85% !important;
        /* Larger width on mobile for better visibility */
        height: 350px;
        transform: scale(0.9);
    }

    .hp-swiper-slide.swiper-slide-active {
        transform: scale(1.05);
    }

    .hp-swiper-nav {
        display: none;
    }

    .hp-drag-cursor {
        display: none;
    }

    .hp-elite-gallery-section {
        cursor: default;
    }
}

/* Phase 10: Building Amenities Section */
.hp-amenities-section {
    padding: 60px 0;
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
}

.hp-amenities-header {
    margin-bottom: 80px;
}

/* Standardized under Global Typography above */
.hp-amenity-label,
.hp-amenity-main-title {
    border: none;
}

.hp-amenities-intro {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    max-width: 500px;
    padding-top: 30px;
}

.hp-amenity-card {
    padding: 60px 40px;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f2f2f2;
    margin-right: -1px;
    margin-bottom: -1px;
    background-color: transparent;
    cursor: default;
}

.hp-amenity-card:hover {
    background-color: #f9f5f2;
    /* Light beige on hover */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.03);
    z-index: 5;
}

.hp-amenity-icon-wrap {
    width: 80px;
    height: 80px;
    background-color: transparent;
    border: 1px solid #c9a87c;
    /* Outline by default */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.hp-amenity-icon-wrap i,
.hp-amenity-icon-wrap img {
    color: #c9a87c;
    /* Gold by default on outline */
    font-size: 32px;
    max-width: 40px;
    transition: all 0.3s ease;
}

.hp-amenity-card:hover .hp-amenity-icon-wrap {
    background-color: #c9a87c;
    /* Solid on hover */
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(201, 168, 124, 0.3);
}

.hp-amenity-card:hover .hp-amenity-icon-wrap i,
.hp-amenity-card:hover .hp-amenity-icon-wrap img {
    color: #fff;
    /* White icon on solid bg */
}


.hp-amenity-title {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.hp-amenity-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

@media (max-width: 959px) {
    .hp-amenities-section {
        padding: 80px 0;
    }

    .hp-amenity-main-title {
        font-size: 36px;
    }

    .hp-amenity-label {
        font-size: 24px;
    }

    .hp-amenity-card {
        padding: 40px 20px;
    }

    .hp-amenities-header {
        margin-bottom: 40px;
    }
}

/* Phase 11: Scrolling Title Section */
.hp-scrolling-title-section {
    padding: 60px 0;
    background-color: #fff;
    overflow: hidden;
    user-select: none;
}

.hp-scrolling-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 200vw;
    margin-left: -50vw;
}

.hp-scrolling-row {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 40px;
    transition: transform 0.1s linear;
    /* Fast response to scroll */
    will-change: transform;
}

.hp-scrolling-row span {
    font-size: 6vw;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hp-row-dark {
    color: #1a1a1a;
}

.hp-row-gold {
    color: #c9a87c;
}

.hp-spacer {
    color: #eee;
    font-weight: 300;
}

@media (max-width: 959px) {
    .hp-scrolling-title-section {
        padding: 60px 0;
    }

    .hp-scrolling-row span {
        font-size: 15vw;
    }
}

.hp-video-section {
    padding: 60px 0;
    background-color: #fff;
    overflow: hidden;
}

.hp-video-header-container {
    margin-bottom: 60px;
}

.hp-video-full-wrap {
    position: relative;
    width: 100%;
    height: 85vh;
    /* Increased from 70vh for more impact */
    min-height: 600px;
    background-color: #000;
}

.hp-video-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hp-video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.hp-video-cover:hover .hp-video-thumb {
    transform: scale(1.05);
}

.hp-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.4) 100%);
    transition: opacity 0.4s ease;
}

.hp-video-cover:hover .hp-video-overlay {
    opacity: 0.8;
}

/* Play Button with Pulse - Centered Precisely */
.hp-play-btn-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Core centering logic */
    z-index: 20;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-play-button {
    width: 90px;
    height: 90px;
    background-color: #c9a87c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(201, 168, 124, 0.6);
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.hp-play-button i {
    color: #fff;
    font-size: 28px;
    margin-left: 6px;
    /* Precise visual centering for triangular icon */
}

.hp-video-cover:hover .hp-play-button {
    transform: scale(1.15);
    background-color: #b39164;
}

.hp-play-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #c9a87c;
    border-radius: 50%;
    animation: hp-pulse 2s infinite;
    opacity: 0;
}

@keyframes hp-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.hp-video-player-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.hp-video-player-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 959px) {
    .hp-video-section {
        padding: 40px 0 0 0;
    }

    .hp-video-full-wrap {
        height: 50vh;
        min-height: 350px;
    }

    .hp-play-btn-wrap {
        width: 100px;
        height: 100px;
    }

    .hp-play-button {
        width: 70px;
        height: 70px;
    }

    .hp-play-button i {
        font-size: 22px;
    }
}

/* Phase 13: Apartment Plans Section */
.hp-plans-section {
    padding: 120px 0;
    background-color: #fff;
    border-top: 1px solid #f2f2f2;
}

.hp-plans-header {
    margin-bottom: 40px;
}

/* UIkit Tab Customization - Left aligned in column */
.hp-plans-tabs-in-col {
    border-bottom: none !important;
    justify-content: flex-start !important;
    margin-bottom: 30px;
    background: transparent;
    padding: 0;
}

.hp-plans-tabs-in-col::before {
    display: none !important;
}

.hp-plans-tabs-in-col>li>a {
    border: none !important;
    background: transparent !important;
    color: #999;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 12px 25px 12px 0;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hp-plans-tabs-in-col>li.uk-active>a {
    color: #c5a059;
    background: #fdfaf7 !important;
    /* Light accent background */
    padding: 12px 25px;
    /* Add padding for the background effect */
    border-radius: 4px;
    box-shadow: none;
}


.hp-plan-img-wrap {
    padding: 20px;
    background: #fff;
}

.hp-plan-img {
    width: 100%;
    height: auto;
    filter: contrast(1.1);
    transition: all 0.5s ease;
}

.hp-plan-right-col {
    padding-left: 40px;
}

/* Specs Style */
.hp-plan-specs {
    display: flex;
    flex-direction: column;
}

.hp-spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hp-spec-label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #1a1a1a;
    text-transform: uppercase;
}

.hp-spec-value {
    font-size: 15px;
    font-weight: 500;
    color: #666;
}

.hp-spec-value.hp-text-gold {
    font-weight: 800;
}

/* Button Centering */
.hp-plan-btn-center {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hp-plan-btn-center .hp-btn-solid {
    width: 100%;
    /* Make button full width */
    text-align: center;
}

@media (max-width: 959px) {
    .hp-plans-section {
        padding: 60px 0;
    }

    .hp-plans-tabs-in-col {
        overflow-x: auto;
        flex-wrap: nowrap;
        background: transparent;
        padding: 0;
    }

    .hp-plans-tabs-in-col>li>a {
        padding: 10px 12px;
        font-size: 11px;
        white-space: nowrap;
    }

    .hp-plan-right-col {
        padding-left: 0;
        margin-top: 50px;
    }
}

/* Phase 14: Schedule a Visit Section */
.hp-visit-section {
    padding: 100px 0;
    background-color: #c5a059;
    /* Brand Beige/Gold */
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hp-visit-title {
    color: #fff;
}

.hp-visit-desc {
    font-size: 16px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 50px;
    opacity: 0.9;
    font-weight: 300;
}

.hp-visit-btn {
    display: inline-block;
    padding: 18px 45px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
}

.hp-visit-btn:hover {
    background: #fff;
    color: #c5a059;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 959px) {
    .hp-visit-section {
        padding: 80px 0;
    }

    .hp-visit-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .hp-visit-desc {
        font-size: 14px;
        padding: 0 15px;
    }
}

/* Phase 15: Neighborhoods Section */
.hp-neighborhood-section {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.hp-neighborhood-content {
    padding: 100px 10%;
}

.hp-neighborhood-img-wrap {
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

.hp-neighborhood-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.hp-neighborhood-list-wrap {
    max-height: 400px;
    overflow-y: auto;
    margin-top: 50px;
    padding-right: 20px;
}

.hp-neighborhood-list-wrap::-webkit-scrollbar {
    width: 4px;
}

.hp-neighborhood-list-wrap::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.hp-neighborhood-list-wrap::-webkit-scrollbar-thumb {
    background: #c5a059;
}

.hp-accordion {
    margin-top: 0;
    padding: 0;
    list-style: none;
}

.hp-accordion-item {
    border-bottom: 1px solid #f0f0f0;
}

.hp-accordion-item:first-child {
    border-top: 1px solid #f0f0f0;
}

.hp-accordion-header {
    margin: 0 !important;
    padding: 25px 0 !important;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    color: #1a1a1a !important;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hp-accordion-header::after {
    display: none !important;
    /* Hide UIKit default icon */
}

.hp-accordion-icon {
    position: relative;
    width: 24px;
    height: 24px;
    border: 1px solid #ddd;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hp-accordion-icon::before,
.hp-accordion-icon::after {
    content: '';
    position: absolute;
    background: #c5a059;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

/* Horizontal line */
.hp-accordion-icon::before {
    width: 10px;
    height: 1px;
}

/* Vertical line */
.hp-accordion-icon::after {
    width: 1px;
    height: 1000px;
    /* Long enough to be clipped or zeroed */
    height: 10px;
}

.uk-open .hp-accordion-icon {
    border-color: #c5a059;
}

.uk-open .hp-accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
    /* Makes it a dash */
}

.hp-accordion-body {
    padding-bottom: 30px !important;
}

.hp-neighborhood-item-details {
    padding-left: 0;
}

.hp-neighborhood-name {
    font-size: 20px;
    font-family: var(--font-title);
    color: #1a1a1a;
    margin-bottom: 10px;
}

.hp-neighborhood-dist {
    font-size: 13px;
    color: #c5a059;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hp-neighborhood-dist i {
    margin-right: 5px;
}

.hp-neighborhood-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

@media (max-width: 959px) {
    .hp-neighborhood-content {
        padding: 80px 5%;
    }

    .hp-neighborhood-img-wrap {
        min-height: 400px;
    }
}

/* Phase 16: Blog Section */
.hp-news-header-wrap {
    margin-bottom: 60px;
}

/* Standardized under Global Typography above */
.hp-news-title-serif,
.hp-news-main-title {
    border: none;
}

.hp-news-intro {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    max-width: 500px;
}

/* Premium Blog Card */
.hp-blog-card {
    transition: all 0.4s ease;
}

.hp-blog-card__img-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}

.hp-blog-card__img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hp-blog-card:hover .hp-blog-card__img {
    transform: scale(1.08);
}

.hp-blog-card__date {
    position: absolute;
    top: 30px;
    left: 30px;
    color: #fff;
    display: flex;
    align-items: baseline;
    gap: 10px;
    z-index: 2;
}

.hp-blog-card__day {
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-body);
}

.hp-blog-card__month {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hp-blog-card__cat {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #c5a059;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hp-blog-card__title {
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

.hp-blog-card__title a {
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.hp-blog-card__title a:hover {
    color: #c5a059;
}

@media (max-width: 959px) {
    .hp-news-header-wrap {
        margin-bottom: 40px;
    }

    .hp-news-title-serif {
        font-size: 32px;
    }

    .hp-news-main-title {
        font-size: 40px;
    }

    .hp-blog-card__img {
        height: 300px;
    }

    .hp-blog-card__day {
        font-size: 40px;
    }
}

.hp-news-section {
    padding: 60px 0;
}

.hp-footer-premium {
    background: #0e1217 !important;
    color: #cecece !important;
    padding: 80px 0 30px;
    font-family: var(--second-font), sans-serif;
}

.hp-footer-top-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 30px;
    margin-bottom: 50px;
}

.hp-footer-nav {
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.hp-footer-nav li a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hp-footer-nav li a:hover {
    color: #c9a87c;
}

.hp-footer-social-minimal a {
    color: #fff;
    margin-left: 20px;
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.hp-footer-social-minimal a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hp-footer-logo-center img {
    max-width: 180px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.hp-footer-logo-center img:hover {
    opacity: 0.8;
}

.hp-footer-hotline {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    margin-bottom: 40px;
    font-family: var(--third-font), sans-serif;
    transition: color 0.3s ease;
}

.hp-footer-hotline:hover {
    color: #c9a87c;
}

.hp-footer-office-info {
    max-width: 600px;
    margin: 0 auto 60px;
}

.hp-office-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: #c9a87c;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.hp-office-addr {
    font-size: 15px;
    line-height: 1.8;
    color: #cecece;
}

.hp-footer-copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.hp-copy-text {
    font-size: 13px;
    margin: 0;
    color: #888;
}

.hp-footer-legal a {
    color: #888;
    margin-left: 25px;
    font-size: 13px;
    transition: color 0.3s ease;
}

.hp-footer-legal a:hover {
    color: #fff;
}

@media (max-width: 960px) {
    .hp-footer-nav {
        justify-content: center;
        margin-bottom: 20px;
    }

    .hp-footer-social-minimal {
        text-align: center;
    }

    .hp-footer-social-minimal a {
        margin: 0 10px;
    }

    .hp-footer-hotline {
        font-size: 32px;
    }

    .hp-footer-legal {
        text-align: center;
        margin-top: 15px;
    }

    .hp-footer-legal a {
        margin: 0 10px;
    }
}

.hp-floating-social {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.hp-float-item {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    color: var(--color-dark) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy pop */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none !important;
    border: 2px solid #fff;
    /* White border for contrast */
    position: relative;
}

.hp-float-item:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.hp-float-messenger {
    background: #0084ff;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.2);
}

.hp-float-zalo {
    background: #0068ff;
    border-color: rgba(255, 255, 255, 0.2);
}

.hp-float-hotline {
    background: #e31b23;
    border-color: rgba(255, 255, 255, 0.2);
}

.hp-float-hotline::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid #e31b23;
    animation: hp-pulse 2s infinite;
    opacity: 0.6;
}

.hp-back-to-top {
    background: #0f1216;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
}

.hp-back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.hp-back-to-top::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    animation: hp-pulse 2s infinite;
    opacity: 0.5;
}

@media (max-width: 639px) {
    .hp-floating-social {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .hp-float-item {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* HP FOOTER PREMIUM - DARK THEME */
.hp-footer-premium {
    background: #0e1217 !important;
    color: #cecece !important;
    padding: 80px 0 30px;
    font-family: var(--second-font), sans-serif;
}

.hp-footer-top-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 30px;
    margin-bottom: 50px;
}

.hp-footer-nav {
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.hp-footer-nav li a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hp-footer-nav li a:hover {
    color: #c9a87c;
}

.hp-footer-social-minimal a {
    color: #fff;
    margin-left: 20px;
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.hp-footer-social-minimal a:hover {
    color: #c9a87c;
    transform: translateY(-3px);
}

.hp-footer-logo-center img {
    max-width: 180px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.hp-footer-logo-center img:hover {
    opacity: 0.8;
}

.hp-footer-hotline {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    margin-bottom: 40px;
    font-family: var(--third-font), sans-serif;
    transition: color 0.3s ease;
}

.hp-footer-hotline:hover {
    color: #c9a87c;
}

.hp-footer-office-info {
    max-width: 600px;
    margin: 0 auto 60px;
}

.hp-office-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: #c9a87c;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.hp-office-addr {
    font-size: 15px;
    line-height: 1.8;
    color: #cecece;
}

.hp-footer-copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.hp-copy-text {
    font-size: 13px;
    margin: 0;
    color: #888;
}

.hp-footer-legal a {
    color: #888;
    margin-left: 25px;
    font-size: 13px;
    transition: color 0.3s ease;
}

.hp-footer-legal a:hover {
    color: #fff;
}

@media (max-width: 960px) {
    .hp-footer-nav {
        display: none !important;
    }

    .hp-footer-social-minimal {
        text-align: center;
    }

    .hp-footer-social-minimal a {
        margin: 0 10px;
    }

    .hp-footer-hotline {
        font-size: 32px;
    }

    .hp-footer-legal {
        text-align: center;
        margin-top: 15px;
    }

    .hp-footer-legal a {
        margin: 0 10px;
    }
}

/* Header Responsive Fix */
@media (max-width: 959px) {
    .uk-navbar-custom {
        display: flex !important;
        justify-content: space-between !important;
        width: 100%;
        align-items: center !important;
    }

    .hp-logo {
        flex: 1;
    }

    .hp-header-right {
        flex: 1;
        display: flex;
        justify-content: flex-end !important;
    }
}

/* Breadcrumbs Premium Section */
.hp-breadcrumbs-section {
    position: relative;
    padding: 160px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hp-breadcrumbs-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 18, 22, 0.7), rgba(15, 18, 22, 0.9));
    z-index: 1;
}

.hp-breadcrumbs-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hp-breadcrumbs-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 5px;
    font-family: var(--font-title);
}

.hp-breadcrumbs-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hp-breadcrumbs-list li {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.hp-breadcrumbs-list li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hp-breadcrumbs-list li a:hover {
    color: #c9a87c;
}

.hp-breadcrumbs-list li.current {
    color: #c9a87c;
}

.hp-breadcrumbs-list .separator {
    color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 959px) {
    .hp-breadcrumbs-section {
        padding: 120px 0 60px;
    }

    .hp-breadcrumbs-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
}

/* About Project Premium Section */
.hp-about-premium {
    padding: 120px 0;
    background: #fff;
}

.hp-about-collage {
    position: relative;
    padding-right: 40px;
}

.hp-collage-main {
    width: 65%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.hp-collage-sub {
    position: absolute;
    top: 50%;
    right: 0;
    width: 50%;
    transform: translateY(-50%);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 10px solid #fff;
    z-index: 2;
}

.hp-collage-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.hp-about-premium:hover .hp-collage-img {
    transform: scale(1.05);
}

.hp-collage-play {
    position: absolute;
    top: 50%;
    left: 32.5%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(15, 18, 22, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    z-index: 3;
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
}

.hp-collage-play:hover {
    background: #c9a87c;
    transform: translate(-50%, -50%) scale(1.1);
}

.hp-about-content {
    padding-left: 50px;
}

/* Standardized under Global Typography above */
.hp-about-headline {
    border: none;
}

.hp-about-headline span {
    color: #c9a87c;
    background: linear-gradient(to right, #c9a87c, #b4916a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hp-about-intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-weight: 500;
}

.hp-about-body-text {
    font-size: 15px;
    line-height: 1.8;
    color: #777;
    margin-bottom: 0;
}

@media (max-width: 959px) {
    .hp-about-premium {
        padding: 80px 0;
    }

    .hp-about-content {
        padding-left: 0;
        margin-top: 60px;
        text-align: center;
    }

    .hp-about-headline {
        font-size: 36px;
    }

    .hp-about-collage {
        padding-right: 20px;
    }

    .hp-collage-play {
        width: 70px;
        height: 70px;
        font-size: 18px;
    }
}

/* Premium Stats Section */
.hp-stats-premium {
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.hp-stat-box {
    position: relative;
    text-align: center;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hp-stat-bg-num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    font-weight: 800;
    color: #f0f0f0;
    z-index: 1;
    line-height: 1;
    pointer-events: none;
    font-family: var(--font-body);
    white-space: nowrap;
}

.hp-stat-content {
    position: relative;
    z-index: 2;
}

.hp-stat-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0;
}

.hp-stat-value {
    display: block;
    font-size: 18px;
    color: #c9a87c;
    margin-top: 5px;
    font-weight: 600;
}

@media (max-width: 959px) {
    .hp-stat-bg-num {
        font-size: 100px;
    }

    .hp-stat-box {
        padding: 40px 0;
    }
}

.hp-amenity-slider {
    background: #fdfdfd;
    overflow: hidden;
    padding: 60px 0;
}

.hp-amenity-slide-item {
    display: flex !important;
    align-items: stretch;
    height: 600px;
}

.hp-amenity-img-wrap {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.hp-amenity-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-amenity-content-wrap {
    width: 50%;
    background: #f9f7f5;
    padding: 80px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hp-amenity-sub {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.hp-amenity-title {
    font-family: var(--font-title);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hp-amenity-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
    max-width: 500px;
}

.hp-amenity-nav {
    position: absolute;
    bottom: 80px;
    right: 100px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.hp-amenity-nav-btn {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1a1a1a;
}

.hp-amenity-nav-btn:hover {
    background: #c9a87c;
    border-color: #c9a87c;
    color: #fff;
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    .hp-amenity-content-wrap {
        padding: 60px 50px;
    }

    .hp-amenity-title {
        font-size: 36px;
    }
}

@media (max-width: 959px) {
    .hp-amenity-slide-item {
        flex-direction: column;
        height: auto;
    }

    .hp-amenity-img-wrap,
    .hp-amenity-content-wrap {
        width: 100%;
    }

    .hp-amenity-img-wrap {
        height: 400px;
    }

    .hp-amenity-content-wrap {
        padding: 50px 30px;
        text-align: center;
        align-items: center;
    }

    .hp-amenity-nav {
        position: static;
        margin-top: 30px;
        justify-content: center;
        gap: 20px;
    }
}

/* Post Detail V2 */
.hp-post-detail-v2 {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 0;
}

.hp-post-detail-header {
    text-align: left;
    margin-bottom: 60px;
}

.hp-post-detail-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
}

.hp-post-detail-title {
    font-family: var(--font-title);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a1a;
    text-transform: uppercase;
    margin: 0;
}

.hp-post-detail-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 13px;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hp-post-detail-meta .cat {
    color: #c9a87c;
    font-weight: 700;
}

.hp-post-detail-see-all {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hp-post-detail-see-all .icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.hp-post-detail-see-all:hover {
    color: #c9a87c;
}

.hp-post-detail-see-all:hover .icon {
    background: #c9a87c;
    border-color: #c9a87c;
    color: #fff;
}

.hp-content-entry {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.hp-content-entry p {
    margin-bottom: 30px;
}

.hp-content-entry h3 {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 700;
    margin: 60px 0 30px;
    text-transform: uppercase;
}

.hp-content-entry blockquote {
    margin: 60px 0;
    padding: 40px;
    background: #f9f7f5;
    border-left: 0;
    font-family: var(--font-title);
    font-size: 24px;
    font-style: italic;
    color: #1a1a1a;
    text-align: left;
    position: relative;
}

.hp-content-entry blockquote cite {
    display: block;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    color: #c9a87c;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hp-content-entry ul {
    margin-bottom: 40px;
    padding-left: 0;
    list-style: none;
}

.hp-content-entry ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.hp-content-entry ul li:before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    color: #c9a87c;
    font-size: 16px;
}

.hp-content-entry img {
    margin: 40px 0;
    width: 100%;
    border-radius: 4px;
}

.hp-post-detail-related {
    padding: 100px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 959px) {
    .hp-post-detail-v2 {
        padding: 60px 20px;
    }

    .hp-post-detail-title {
        font-size: 36px;
    }

    .hp-post-detail-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* --- CONTACT PAGE PREMIUM STYLES --- */
.hp-contact-page-wrap {
    padding: 140px 0;
}

.hp-contact-info-panel {
    padding-right: 80px;
}

.hp-contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.hp-contact-item .label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #c9a87c;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.hp-contact-item .value {
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.hp-contact-socials a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border: 1px solid #e0e0e0;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    margin-right: 15px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.hp-contact-socials a:hover {
    background: #c9a87c;
    border-color: #c9a87c;
    color: #fff;
    transform: translateY(-5px);
}

.hp-contact-map-mini {
    filter: grayscale(1) contrast(1.1);
    opacity: 0.8;
    transition: all 0.5s ease;
    border: 1px solid #eee;
}

.hp-contact-map-mini:hover {
    filter: none;
    opacity: 1;
}

/* Premium Form Panel */
.hp-contact-form-panel {
    background: #f9f9f9;
    position: relative;
}

.hp-glass-form-card {
    background: #fff;
    padding: 20px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
}

.hp-form-heading {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hp-form-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.hp-form-subheading {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
}

.hp-input-group {
    margin-bottom: 25px;
}

.hp-input-group input,
.hp-input-group textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    font-family: var(--font-body);
    font-size: 14px;
    background: transparent;
    transition: all 0.3s ease;
}

.hp-input-group input:focus,
.hp-input-group textarea:focus {
    outline: none;
    border-bottom-color: #c9a87c;
}

@media (max-width: 959px) {
    .hp-contact-page-wrap {
        padding: 80px 20px;
    }

    .hp-contact-info-panel {
        padding-right: 0;
        margin-bottom: 60px;
    }

    .hp-contact-form-panel {
        padding: 10px;
    }

    .hp-glass-form-card {
        padding: 10px;
    }

    .hp-contact-item .value {
        font-size: 20px;
    }
}

/* Breadcrumbs Standardization */
.hp-breadcrumbs-section {
    position: relative;
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.hp-breadcrumbs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 18, 22, 0.7);
    z-index: 1;
}

.hp-breadcrumbs-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hp-breadcrumbs-title {
    font-family: var(--font-title);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin-bottom: 20px;
}

.hp-breadcrumbs-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.hp-breadcrumbs-nav a {
    color: #c9a87c !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.hp-breadcrumbs-nav a:hover {
    color: #fff !important;
}

.hp-breadcrumbs-nav .separator {
    font-size: 8px;
    opacity: 0.5;
}

.hp-breadcrumbs-nav .current {
    color: #fff;
}