/* ======================== BIẾN CSS (VARIABLES) ======================== */
:root {
    --red-primary: #750e24;
    --red-dark: #4a0816;
    --red-medium: #8c1129;
    --red-light: #a0182f;
    --red-accent: #b32038;
    --gold: #C9A84C;
    --gold-dark: #A68B3C;
    --gold-light: #E8D48B;
    --gold-pale: #FDF8E8;
    --cream: #FFFDF8;
    --dark: #1a0508;
    --dark-medium: #2d080d;
    --dark-section: #150407;
    --text-dark: #1a0508;
    --text-body: #4a1518;
    --text-muted: #7a4048;
    --bg-light: #FDF6F0;
    --bg-white: #FFFFFF;
    --border-color: #F0E0D0;
    --border-gold: rgba(201, 168, 76, 0.3);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(201, 168, 76, 0.12);
    
    /* Nâng cấp thiết kế mẫu */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-round: 50%;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
    --shadow-luxury: 0 20px 50px rgba(117, 14, 36, 0.12);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
*{margin:0;padding:0;box-sizing:border-box}
html{overflow-x:hidden}
body{font-family:'Montserrat',sans-serif;color:var(--text-body);font-size:15px;line-height:1.7;overflow-x:hidden;background:var(--bg-white);padding-top:108px}
h1,h2,h3,h4,h5,h6{color:var(--text-dark);font-weight:700;line-height:1.3}
a{color:var(--red-primary);text-decoration:none;transition:var(--transition-smooth)}
a:hover,a:focus{color:var(--gold);text-decoration:none}
img{max-width:100%;height:auto}
.index-pmh-scroll-progress{position:fixed;top:0;left:0;width:0%;height:3px;background:linear-gradient(90deg,var(--red-primary),var(--gold));z-index:99999;transition:width .1s linear}
/* Nâng cấp Gold Shimmer Placeholder */
.img-placeholder {
    background: linear-gradient(90deg, #F5EDE5 25%, #EFE5DB 37%, #F5EDE5 63%);
    background-size: 400% 100%;
    animation: goldShimmer 2s infinite linear;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}
.img-placeholder::before {
    content: '\f03e';
    font-family: FontAwesome;
    font-size: 32px;
    color: rgba(201,168,76,0.5);
    margin-bottom: 8px;
    transition: var(--transition-smooth);
}
.img-placeholder span {
    display: block;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 0.5px;
}
.img-placeholder-dark {
    background: linear-gradient(90deg, rgba(26,10,10,0.85) 25%, rgba(45,14,14,0.9) 37%, rgba(26,10,10,0.85) 63%);
    background-size: 400% 100%;
    animation: goldShimmerDark 2.5s infinite linear;
    border-color: rgba(201,168,76,0.25);
    color: rgba(255,255,255,0.5);
}
.img-placeholder-dark::before {
    color: rgba(201,168,76,0.3);
}
.img-placeholder-dark span {
    color: var(--gold);
}
.img-placeholder:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}
.img-placeholder:hover::before {
    transform: scale(1.1);
    color: var(--gold);
}

@keyframes goldShimmer {
    0% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}
@keyframes goldShimmerDark {
    0% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}
.index-pmh-topbar{background:var(--dark);color:rgba(255,255,255,0.7);padding:10px 0;font-size:13px;border-bottom:1px solid rgba(201,168,76,0.15)}
.index-pmh-topbar a{color:rgba(255,255,255,0.7);margin-right:20px;transition:color .3s}
.index-pmh-topbar a:hover{color:var(--gold)}
.index-pmh-topbar .fa{margin-right:5px;color:var(--gold)}
.index-pmh-topbar-right{text-align:right}
.index-pmh-topbar-phone{font-weight:700;font-size:15px;color:#fff!important;letter-spacing:.5px}
.index-pmh-topbar-phone .fa{animation:phoneRing 1.5s infinite}
@keyframes phoneRing{0%,100%{transform:rotate(0)}10%{transform:rotate(15deg)}20%{transform:rotate(-10deg)}30%{transform:rotate(10deg)}40%{transform:rotate(0)}}
.index-pmh-topbar-social{display:inline-block;margin-left:15px}
.index-pmh-topbar-social a{display:inline-block;width:28px;height:28px;line-height:28px;text-align:center;border-radius:50%;background:rgba(201,168,76,0.1);margin:0 3px;font-size:12px;color:var(--gold)}
.index-pmh-topbar-social a:hover{background:var(--gold);color:var(--dark)}

/* ======================== HEADER & TOPBAR ======================== */
/* ===== HEADER - Option A Classic Luxury ===== */
.index-pmh-header-fixed-wrapper{position:fixed;top:0;left:0;right:0;z-index:1030;transition:all 0.4s ease}
.index-pmh-header-topbar{background:linear-gradient(90deg,#4a0816 0%,#750e24 100%);padding:0;border-bottom:1px solid rgba(201,168,76,0.15);position:relative;z-index:2;transition:all 0.4s ease;height:38px;display:flex;align-items:center}
.index-pmh-header-topbar .container{display:flex;align-items:center}
.index-pmh-header-topbar .row{width:100%;display:flex;align-items:center}
.index-pmh-header-topbar a{color:rgba(255,255,255,0.7);font-size:12px;margin-right:20px;transition:color .3s;line-height:38px}
.index-pmh-header-topbar a:hover{color:var(--gold)}
.index-pmh-header-topbar a:focus,.index-pmh-header-topbar a:active,.navbar-main a:focus,.navbar-main a:active,.navbar-main button:focus,.navbar-main button:active{outline:none!important;box-shadow:none!important}
.index-pmh-header-topbar a i{margin-right:0px;color:var(--gold);font-size:11px}
.index-pmh-header-topbar .index-pmh-topbar-left{display:flex;align-items:center;height:38px}
.index-pmh-header-topbar .index-pmh-topbar-right{display:flex;align-items:center;justify-content:flex-end;gap:20px;height:38px}
.index-pmh-header-topbar .index-pmh-topbar-right a{margin-right:0;line-height:38px}
.index-pmh-header-topbar .index-pmh-topbar-social{display:flex;align-items:center;gap:8px;height:38px}
.index-pmh-header-topbar .index-pmh-topbar-social a{margin-right:0;width:26px;height:26px;line-height:26px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,0.3);border-radius:50%;font-size:12px;text-align:center;transition:all .3s;color:rgba(255,255,255,0.8)}
.index-pmh-header-topbar .index-pmh-topbar-social a:hover{background:rgba(201,168,76,0.15);border-color:var(--gold);color:var(--gold);transform:translateY(-1px)}
.index-pmh-header-topbar .index-pmh-topbar-phone{color:#fff;font-weight:700;font-size:14px;letter-spacing:.5px;margin-right:0;background:transparent;padding:0;border-radius:0;border:none;display:inline-flex;align-items:center;gap:10px;transition:all .3s ease}
.index-pmh-header-topbar .index-pmh-topbar-phone i{color:var(--gold);font-size:16px;animation:pulse-phone 2s infinite}
.index-pmh-header-topbar .index-pmh-topbar-phone .index-pmh-phone-text{color:#fff;font-size:14px;font-weight:700;letter-spacing:.5px}
.index-pmh-header-topbar .index-pmh-topbar-phone:hover{color:var(--gold)}
.index-pmh-header-topbar .index-pmh-topbar-phone:hover .index-pmh-phone-text{color:var(--gold)}
@keyframes pulse-phone{0%,100%{transform:scale(1)}50%{transform:scale(1.15)}}
.index-pmh-header-topbar-hidden{height:0!important;opacity:0;overflow:hidden;padding:0;border:none!important;margin:0!important;line-height:0!important;transition:all 0.3s ease}


/* ======================== NAVBAR ======================== */
/* ===== NAVBAR ===== */
.navbar-main{background:#fff;border:none;border-bottom:1px solid rgba(0,0,0,0.06);margin-bottom:0;border-radius:0;min-height:70px;transition:all 0.4s ease;z-index:1}
.navbar-scrolled{min-height:60px;box-shadow:0 4px 30px rgba(0,0,0,0.08)}
.navbar-brand{padding:12px 15px 12px 0;height:auto;float:left}
.navbar-brand img{height:42px;width:auto;transition:all .3s;filter:drop-shadow(0 1px 3px rgba(0,0,0,0.2))}
.navbar-scrolled .navbar-brand img{height:36px}
.navbar-main .navbar-toggle{border-color:var(--red-primary);padding:9px 10px;background:transparent;margin-top:18px;margin-right:0}
.navbar-main .navbar-toggle:hover,.navbar-main .navbar-toggle:focus{background:var(--gold-pale);outline:none}
.navbar-main .navbar-toggle .icon-bar{background:var(--red-primary);width:22px;height:2px}
.navbar-main .navbar-nav>li>a{color:var(--text-dark);font-weight:600;font-size:16px;padding:10px 14px;text-transform:uppercase;letter-spacing:.8px;transition:all .3s ease;position:relative}
.navbar-main .navbar-nav>li>a:focus,.navbar-main .navbar-nav>li>a:active,.navbar-main .navbar-nav>.active>a,.navbar-main .navbar-nav>.active>a:focus,.navbar-main .navbar-nav>.active>a:hover{outline:none!important;box-shadow:none!important;background:transparent!important}
.navbar-main .navbar-nav>li>a:hover,.navbar-main .navbar-nav>li.active>a{color:var(--red-primary);background:transparent}
/*.navbar-main .navbar-nav>li>a::before{content:'';position:absolute;bottom:15px;left:50%;width:calc(100% - 28px);height:2px;background:var(--gold);transform:translateX(-50%) scaleX(0);transition:transform .3s ease;transform-origin:center}*/
.navbar-main .navbar-nav>li>a:hover::before,.navbar-main .navbar-nav>li.active>a::before{transform:translateX(-50%) scaleX(1);transform-origin:center}
.navbar-main .dropdown:hover>a::before,.navbar-main .dropdown.open>a::before{transform:translateX(-50%) scaleX(0)!important}
.navbar-main .dropdown-menu{background:#fff;border:none;border-top:2px solid var(--gold);border-radius:0 0 6px 6px;box-shadow:0 15px 50px rgba(0,0,0,0.12);padding:12px 0;min-width:230px;margin-top:0}
.navbar-main .dropdown>a .fa-angle-down{font-size:10px;margin-left:4px;transition:transform .3s}
.navbar-main .dropdown:hover>a .fa-angle-down{transform:rotate(180deg)}
.navbar-main .dropdown-menu .divider{background:var(--border-color);margin:8px 20px;height:1px}
.navbar-main .dropdown-menu li a{padding:10px 25px;font-size:13px;font-weight:500;color:var(--text-dark);letter-spacing:.3px;text-transform:none;transition:all .25s ease;border-left:3px solid transparent}
.navbar-main .dropdown-menu li a:hover{background:var(--gold-pale);color:var(--red-primary);border-left-color:var(--gold);padding-left:30px}
.navbar-cta .btn-header-cta{background:var(--gold);color:var(--dark);padding:10px 22px;font-weight:700;font-size:12px;letter-spacing:1px;text-transform:uppercase;display:inline-flex;align-items:center;gap:8px;transition:all .3s;border:none;border-radius:4px}
.navbar-cta .btn-header-cta:hover{background:var(--red-primary);color:#fff;box-shadow:0 4px 20px rgba(117,14,36,0.3);transform:translateY(-1px)}
.navbar-cta .btn-header-cta i{font-size:11px}

/* Fix dropdown menu */
.navbar-nav .menu-item-has-children {
  position: relative;
}

.navbar-nav .menu-item-has-children > .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 220px;
  padding: 5px 0;
  margin: 0;
  list-style: none;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

.navbar-nav .menu-item-has-children:hover > .sub-menu {
  display: block;
}

.navbar-nav .sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-nav .sub-menu li a:hover {
  background-color: #f5f5f5;
  color: #b8860b;
}

/* Mũi tên xuống cho menu có submenu */
.navbar-nav > li.menu-item-has-children > a::after {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    padding-left: 5px;
    font-weight: normal;
    font-size: 14px;
}

/* Xoay mũi tên khi hover */
.navbar-nav > li.menu-item-has-children:hover > a::before {
  transform: rotate(180deg);
}

/* Desktop navbar (>=992px) */
@media(min-width:992px){
.navbar-main .container{display:flex!important;align-items:center!important;flex-wrap:nowrap!important}
.navbar-main .navbar-header{flex-shrink:0;float:none!important}
.navbar-main .navbar-collapse{display:flex!important;flex-grow:1;justify-content:center;align-items:center;padding:0;margin:0;border:none;box-shadow:none;max-height:none!important;overflow:visible!important;float:none!important;width:auto!important}
.navbar-main .navbar-collapse.collapse{display:flex!important}
.navbar-main .navbar-nav{display:flex;align-items:center;margin:0;float:none!important}
.navbar-main .navbar-nav>li{float:none}
.navbar-main .dropdown-menu{opacity:0;visibility:hidden;transform:translateY(10px);transition:all .3s ease;display:block;position:absolute}
.navbar-main .dropdown:hover>.dropdown-menu,.navbar-main .dropdown.open>.dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}
.navbar-cta{flex-shrink:0;float:none!important;margin-left:auto}
.navbar-main .navbar-toggle{display:none!important}
}

/* Mobile navbar (<=991px) */
@media(max-width:991px){
.navbar-main{min-height:60px}
.navbar-main .container{padding:0 15px}
.navbar-main .navbar-header{display:flex;align-items:center;justify-content:center;position:relative;min-height:60px}
.navbar-main .navbar-toggle{position:absolute;right:10px;top:50%;transform:translateY(-50%);margin:0;float:none}
.navbar-main .navbar-brand{float:none;padding:10px 0;margin:0}
.navbar-main .navbar-brand img{height:38px}
.navbar-main .navbar-collapse{border-top:1px solid rgba(0,0,0,0.06);background:#fff;padding:0;margin:0;clear:both}
.navbar-main .navbar-collapse.collapse{display:none}
.navbar-main .navbar-collapse.collapse.in{display:block}
.navbar-main .navbar-nav{margin:0;padding:10px 0;float:none}
.navbar-main .navbar-nav>li{display:block;float:none}
.navbar-main .navbar-nav>li>a{padding:14px 20px;border-bottom:1px solid rgba(0,0,0,0.04);font-size:14px}
.navbar-main .navbar-nav>li>a::after{display:none}
.navbar-main .dropdown-menu{position:static!important;float:none;width:100%;box-shadow:none;border:none;border-top:none;border-radius:0;padding:0;background:#f9f9f9;display:none;opacity:1!important;visibility:visible!important;transform:none!important}
.navbar-main .dropdown.open>.dropdown-menu{display:block}
.navbar-main .dropdown-menu li a{padding:12px 35px;font-size:13px}
.navbar-cta{display:none}
}


/* ======================== HERO SLIDER ======================== */
/* ===== HERO SLIDER SECTION (Image Only) ===== */
.index-pmh-hero-slider-section {
    position: relative;
    background: #1a1a1a;
    overflow: hidden;
    
}


#heroCarousel .carousel-inner{overflow:hidden}
#heroCarousel .item img{width:100%;height:65vh;min-height:380px;max-height:600px;object-fit:cover;object-position:center;display:block}




/* Hero Carousel Indicators */
#heroCarousel .carousel-indicators {
    bottom: 30px;
    gap: 8px;
}
#heroCarousel .carousel-indicators li {
    width: 35px;
    height: 3px;
    background: rgba(255,255,255,0.4);
    border: none;
    border-radius: 2px;
    transition: var(--transition-smooth);
}
#heroCarousel .carousel-indicators li.active {
    background: var(--gold);
    width: 55px;
}

/* Hero Carousel Controls */
#heroCarousel .carousel-control.left,
#heroCarousel .carousel-control.right {
    width: 48px;
    height: 48px;
    top: 50%;
    margin-top: -24px;
    bottom: auto;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 6px;
    opacity: 0.85;
    transition: all .3s ease;
    text-align: center;
    line-height: 48px;
    font-size: 0;
    text-shadow: none;
}
#heroCarousel .carousel-control.left { left: 20px; }
#heroCarousel .carousel-control.right { right: 20px; }
@media(max-width:767px){
.index-pmh-hero-slider-section{margin-top:0}
#heroCarousel .item img{height:50vh;min-height:280px;max-height:450px}
}
#heroCarousel .carousel-control.left:hover,
#heroCarousel .carousel-control.right:hover {
    background: var(--gold);
    border-color: var(--gold);
    opacity: 1;
}
#heroCarousel .carousel-control.left:hover .icon-prev,
#heroCarousel .carousel-control.right:hover .icon-next {
    filter: brightness(0);
}
#heroCarousel .carousel-control .icon-prev,
#heroCarousel .carousel-control .icon-next {
    position: absolute!important;
    top: 50%!important;
    left: 50%!important;
    width: 30px!important;
    height: 30px!important;
    margin-top: -15px!important;
    margin-left: -15px!important;
    font-size: 30px!important;
    line-height: 1!important;
    text-align: center;
}
#heroCarousel .carousel-control .icon-next {
    margin-right: -15px!important;
}
#heroCarousel .carousel-control .icon-prev:before {
    content: '\2039';
    font-size: 30px;
    color: #fff;
}
#heroCarousel .carousel-control .icon-next:before {
    content: '\203A';
    font-size: 30px;
    color: #fff;
}
@media(max-width:767px) {
    #heroCarousel .carousel-control.left,
    #heroCarousel .carousel-control.right {
        width: 40px;
        height: 40px;
    }
    #heroCarousel .carousel-control.left { left: 10px; }
    #heroCarousel .carousel-control.right { right: 10px; }
}

/* Carousel Slide transition */
#heroCarousel .item {
    transition: transform 0.8s ease-in-out;
}

@media(max-width:767px) {
    
}


/* ======================== HERO SECTION (LEGACY) ======================== */
.index-pmh-hero-section{position:relative;background:var(--red-primary);min-height:100vh;display:flex;align-items:center;overflow:hidden}
.index-pmh-hero-bg{position:absolute;top:0;left:0;right:0;bottom:0;background:url('https://phumyhungsale.vn/wp-content/uploads/2020/11/phong-kinh-doanh-phu-my-hung-chinh-1920x700.jpg') center/cover no-repeat;opacity:.3;transform:scale(1.1);transition:transform 15s linear}
.index-pmh-hero-section:hover .index-pmh-hero-bg{transform:scale(1)}
.index-pmh-hero-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(160deg,rgba(26,10,10,0.92) 0%,rgba(117,14,36,0.6) 50%,rgba(26,10,10,0.85) 100%)}
.index-pmh-hero-particles{position:absolute;top:0;left:0;right:0;bottom:0;overflow:hidden}
.index-pmh-hero-particles span{position:absolute;width:3px;height:3px;background:var(--gold);border-radius:50%;opacity:0;animation:particle 8s infinite}
.index-pmh-hero-particles span:nth-child(1){left:10%;animation-delay:0s}
.index-pmh-hero-particles span:nth-child(2){left:25%;animation-delay:1.5s}
.index-pmh-hero-particles span:nth-child(3){left:40%;animation-delay:3s}
.index-pmh-hero-particles span:nth-child(4){left:55%;animation-delay:4.5s}
.index-pmh-hero-particles span:nth-child(5){left:70%;animation-delay:2s}
.index-pmh-hero-particles span:nth-child(6){left:85%;animation-delay:5.5s}
.index-pmh-hero-particles span:nth-child(7){left:95%;animation-delay:7s}
@keyframes particle{0%{transform:translateY(100vh);opacity:0}10%{opacity:.6}90%{opacity:.6}100%{transform:translateY(-20vh);opacity:0}}
.index-pmh-hero-inner{position:relative;z-index:3;width:100%;padding:160px 0 100px}
.index-pmh-hero-content{color:#fff}
.index-pmh-hero-badge{display:inline-block;border:1px solid var(--gold);color:var(--gold);font-size:10px;font-weight:700;letter-spacing:4px;text-transform:uppercase;padding:8px 22px;margin-bottom:30px;position:relative;overflow:hidden}
.index-pmh-hero-badge::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(201,168,76,0.15),transparent);animation:shimmer 3s infinite}
@keyframes shimmer{0%{left:-100%}100%{left:100%}}
.index-pmh-hero-content h1{font-family:'Cormorant Garamond',serif;color:#fff;font-size:54px;font-weight:700;margin-bottom:25px;line-height:1.15}
.index-pmh-hero-content h1 span{color:var(--gold)}
.index-pmh-hero-content p{font-size:16px;color:rgba(255,255,255,0.7);margin-bottom:40px;max-width:520px;line-height:1.9}
.index-pmh-hero-cta .btn{margin-right:15px;margin-bottom:12px}
.btn-gold{background:var(--gold);color:var(--dark);border:none;padding:16px 42px;font-size:12px;font-weight:700;letter-spacing:2px;text-transform:uppercase;border-radius:0;transition:var(--transition-smooth);position:relative;overflow:hidden}
.btn-gold::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,0.3),transparent);transition:left .5s}
.btn-gold:hover::before{left:100%}
.btn-gold:hover{background:#fff;color:var(--red-primary);transform:translateY(-2px);box-shadow:0 10px 30px rgba(201,168,76,0.3)}
.btn-outline-light{background:transparent;color:#fff;border:1px solid rgba(255,255,255,0.3);padding:15px 38px;font-size:12px;font-weight:600;letter-spacing:2px;text-transform:uppercase;border-radius:0;transition:all .3s}
.btn-outline-light:hover{border-color:var(--gold);color:var(--gold);background:rgba(201,168,76,0.05)}
.index-pmh-hero-image{position:relative}
.index-pmh-hero-image .img-placeholder{border:2px dashed rgba(255,255,255,0.3);display:flex;flex-direction:column;align-items:center;justify-content:center;color:rgba(255,255,255,0.5);font-size:12px;background:rgba(255,255,255,0.05);border-radius:var(--radius-sm)}
.index-pmh-hero-image::before{content:'';position:absolute;top:-15px;right:-15px;width:100px;height:100px;border-top:2px solid var(--gold);border-right:2px solid var(--gold)}
.index-pmh-hero-image::after{content:'';position:absolute;bottom:-15px;left:-15px;width:100px;height:100px;border-bottom:2px solid var(--gold);border-left:2px solid var(--gold)}
.index-pmh-section-padding{padding:50px 0}
.index-pmh-section-heading{text-align:center;margin-bottom:65px}
.index-pmh-section-heading .index-pmh-sub-title{color:var(--gold);font-size:11px;font-weight:700;letter-spacing:4px;text-transform:uppercase;margin-bottom:15px;display:block}
.index-pmh-section-heading h2{font-family:'Cormorant Garamond',serif;font-size:38px;font-weight:700;color:var(--text-dark);margin-bottom:20px}
.index-pmh-section-heading p{font-size:15px;color:var(--text-muted);max-width:550px;margin:0 auto}
.index-pmh-section-heading-dark h2{color:#fff}
.index-pmh-section-heading-dark p{color:rgba(255,255,255,0.55)}
.index-pmh-divider-gold{width:50px;height:2px;background:var(--gold);margin:18px auto;position:relative}
.index-pmh-divider-gold::before,.index-pmh-divider-gold::after{content:'';position:absolute;top:-2px;width:6px;height:6px;background:var(--gold);border-radius:50%}
.index-pmh-divider-gold::before{left:-8px}
.index-pmh-divider-gold::after{right:-8px}


/* ======================== CHỨNG NHẬN (CERTIFICATIONS) ======================== */
.index-pmh-cert-section{background:var(--red-primary);padding:50px 0}
.index-pmh-cert-item{text-align:center;padding:35px 20px;transition:all .3s;background:rgba(255,255,255,0.1);border:1px solid rgba(255,255,255,0.25);border-radius:var(--radius-md)}.index-pmh-cert-item p{color:rgba(255,255,255,0.85);margin:0;font-size:13px}
.index-pmh-cert-item:hover{background:rgba(255,255,255,0.18);border-color:rgba(255,255,255,0.4);transform:translateY(-5px)}
.index-pmh-cert-section .index-pmh-section-heading h2{color:#fff}
.index-pmh-cert-section .index-pmh-section-heading .index-pmh-sub-title{color:var(--gold)}
.index-pmh-projects-section{background:var(--red-primary);position:relative}
.index-pmh-projects-section::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:radial-gradient(ellipse at center top,rgba(255,255,255,0.05) 0%,transparent 70%)}

/* ======================== DỰ ÁN (PROJECTS) ======================== */
.index-pmh-project-card{background:#fff;border:1px solid rgba(117,14,36,0.15);overflow:hidden;margin:15px;transition:all .5s cubic-bezier(.25,.8,.25,1);border-radius:var(--radius-md)}
.index-pmh-project-card:hover{border-color:var(--gold);transform:translateY(-8px);box-shadow:var(--shadow-lg)}
.index-pmh-project-card .index-pmh-project-image{position:relative;height:250px;overflow:hidden}
.index-pmh-project-card .index-pmh-project-image .img-placeholder{height:100%;border:none}
.index-pmh-project-status{position:absolute;top:15px;left:15px;padding:6px 14px;font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;color:#fff}
.index-pmh-status-new{background:var(--red-accent)}
.index-pmh-status-selling{background:var(--gold-dark);color:var(--dark)}
.index-pmh-project-card .index-pmh-project-info{padding:20px;background:#fff}
.index-pmh-project-card .index-pmh-project-info h4{font-family:'Cormorant Garamond',serif;font-size:20px;font-weight:600;margin-bottom:8px;color:#fff}
.index-pmh-project-card .index-pmh-project-info h4 a{color:var(--dark);text-decoration:none;font-size:17px;font-weight:700;transition:color .3s}
.index-pmh-project-card .index-pmh-project-info h4 a:hover{color:var(--gold)}
.index-pmh-project-card .index-pmh-project-location{color:#666;font-size:13px;margin:8px 0}
.index-pmh-project-card .index-pmh-project-location .fa{color:var(--gold);margin-right:6px}
.index-pmh-project-meta{display:flex;justify-content:space-between;border-top:1px solid rgba(201,168,76,0.1);padding-top:12px;font-size:12px;color:rgba(255,255,255,0.4)}
.index-pmh-project-meta span .fa{margin-right:5px;color:var(--gold)}
.btn-view-all{border:2px solid var(--gold);color:#fff;background:transparent;padding:14px 45px;font-size:11px;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;border-radius:var(--radius-sm);transition:all .3s;cursor:pointer;position:relative;z-index:10;display:inline-block}
.btn-view-all:hover{background:var(--gold);color:var(--dark);border-color:var(--gold)}
.owl-theme .owl-dots .owl-dot span{width:30px;height:3px;border-radius:0;background:rgba(201,168,76,0.3)}
.owl-theme .owl-dots .owl-dot.active span{background:var(--gold);width:50px}
.owl-theme .owl-nav [class*=owl-]{width:50px;height:50px;line-height:50px;border-radius:0;background:transparent;border:1px solid var(--gold);color:var(--gold);font-size:20px;margin:0 8px;transition:all .3s}
.owl-theme .owl-nav [class*=owl-]:hover{background:var(--gold);color:var(--dark)}
.index-pmh-projects-section .owl-nav{position:absolute;top:45%;width:calc(100% + 50px);left:-25px;display:flex;justify-content:space-between;transform:translateY(-50%);pointer-events:none;margin:0;padding:0}
.index-pmh-projects-section .owl-nav div{pointer-events:all;width:50px;height:50px;line-height:50px;background:rgba(255,255,255,0.15)!important;border:1px solid rgba(255,255,255,0.4)!important;border-radius:var(--radius-sm)!important;color:#fff!important;font-size:20px;margin:0!important;display:flex;align-items:center;justify-content:center;transition:all .3s}
.index-pmh-projects-section .owl-nav div:hover{background:rgba(255,255,255,0.9)!important;color:var(--red-primary)!important}
.index-pmh-projects-section .owl-stage-outer{position:relative}
.index-pmh-projects-section .owl-carousel{position:relative}

/* ======================== THƯ VIỆN ẢNH (GALLERY) ======================== */
.index-pmh-gallery-section{background:var(--bg-white)}
.index-pmh-gallery-item{position:relative;overflow:hidden;border-radius:var(--radius-sm);display:block;margin-bottom:15px}
.index-pmh-gallery-item img{width:100%;object-fit:cover;display:block;transition:transform .4s ease}
.index-pmh-gallery-item.index-pmh-gallery-lg img{height:375px}
.index-pmh-gallery-item.index-pmh-gallery-sm img{height:180px}
.index-pmh-gallery-item:hover img{transform:scale(1.05)}
.index-pmh-gallery-item .index-pmh-gallery-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(135deg,rgba(117,14,36,0.7) 0%,rgba(201,168,76,0.4) 100%);display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .4s;pointer-events:none;z-index:2}
.index-pmh-gallery-item:hover .index-pmh-gallery-overlay{opacity:1}
.index-pmh-gallery-overlay i{color:#fff;font-size:30px;transform:scale(.5);transition:transform .3s .1s}
.index-pmh-gallery-item:hover .index-pmh-gallery-overlay i{transform:scale(1)}
.index-pmh-gallery-lg{height:375px}
.index-pmh-gallery-sm{height:180px}

/* ======================== VIDEO ======================== */
.index-pmh-video-section{background:var(--red-primary);padding:50px 0;position:relative;overflow:hidden}
.index-pmh-video-section::before{content:'';position:absolute;top:-50%;left:-50%;width:200%;height:200%;background:radial-gradient(circle,rgba(255,255,255,0.03) 0%,transparent 50%);animation:pulse 10s infinite}
@keyframes pulse{0%,100%{transform:scale(1);opacity:.5}50%{transform:scale(1.1);opacity:1}}
.index-pmh-video-wrapper{position:relative;z-index:2;max-width:850px;margin:0 auto}
.index-pmh-video-thumbnail{position:relative}
.index-pmh-video-thumbnail .img-placeholder{height:480px}
.index-pmh-video-play-btn{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:90px;height:90px;background:var(--gold);border-radius:50%;display:flex;align-items:center;justify-content:center;z-index:2;transition:all .3s;box-shadow:0 0 0 15px rgba(201,168,76,0.15),0 0 0 30px rgba(201,168,76,0.08)}
.index-pmh-video-play-btn:hover{transform:translate(-50%,-50%) scale(1.1);box-shadow:0 0 0 20px rgba(201,168,76,0.2),0 0 0 40px rgba(201,168,76,0.1)}
.index-pmh-video-play-btn i{color:var(--dark);font-size:30px;margin-left:5px}

/* ======================== TẠI SAO CHỌN (WHY US) ======================== */
.index-pmh-why-section{background:var(--bg-light)}
.index-pmh-why-section .row{display:flex;flex-wrap:wrap}
.index-pmh-why-section .row>[class*="col-"]{display:flex}
.index-pmh-why-card{text-align:center;padding:40px 22px;background:#fff;border:1px solid var(--border-color);margin-bottom:30px;transition:all .4s cubic-bezier(.25,.8,.25,1);position:relative;overflow:hidden;width:100%;display:flex;flex-direction:column;justify-content:flex-start}
.index-pmh-why-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--red-primary),var(--gold));transform:scaleX(0);transition:transform .4s;transform-origin:left}
.index-pmh-why-card:hover::before{transform:scaleX(1)}
.index-pmh-why-card:hover{transform:translateY(-8px);box-shadow:0 20px 50px rgba(117,14,36,0.08);border-color:var(--gold)}
.index-pmh-why-card .index-pmh-icon-box{width:70px;height:70px;line-height:70px;background:var(--gold-pale);color:var(--red-primary);font-size:26px;margin:0 auto 20px;border:1px solid var(--border-gold);transition:all .4s}
.index-pmh-why-card:hover .index-pmh-icon-box{
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    transform: rotateY(180deg);
}
.index-pmh-why-card h4{font-size:16px;font-weight:700;margin-bottom:12px}
.index-pmh-why-card p{font-size:13px;color:var(--text-muted);margin:0;line-height:1.7}

/* ======================== ĐÁNH GIÁ KHÁCH HÀNG (TESTIMONIALS) ======================== */
.index-pmh-testimonials-section{background:var(--bg-light)}
.index-pmh-testimonial-card{background:#fff;border:1px solid var(--border-color);padding:35px;margin:15px;position:relative;transition:all .3s;display:flex;flex-direction:column;height:100%;min-height:280px}
.index-pmh-testimonial-card:hover{border-color:var(--gold);box-shadow:var(--shadow-md)}
.index-pmh-testimonial-carousel .owl-stage{display:flex!important}
.index-pmh-testimonial-carousel .owl-item{display:flex!important;height:auto!important}
.index-pmh-testimonial-carousel .owl-item .index-pmh-testimonial-card{flex:1;display:flex;flex-direction:column;height:100%}
.index-pmh-testimonial-card::before{content:'\201C';font-family:'Cormorant Garamond',serif;font-size:80px;color:var(--gold);opacity:.2;position:absolute;top:10px;left:25px;line-height:1}
.index-pmh-testimonial-stars{color:var(--gold);font-size:14px;margin-bottom:15px}
.index-pmh-testimonial-text{font-size:14px;color:var(--text-body);line-height:1.8;margin-bottom:20px;font-style:italic;padding-top:10px;flex:1}
.index-pmh-testimonial-author{display:flex;align-items:center;margin-top:auto}
.index-pmh-testimonial-author .index-pmh-avatar{width:50px;height:50px;border-radius:50%;overflow:hidden;margin-right:15px;border:2px solid var(--gold)}
.index-pmh-testimonial-author h5{font-size:14px;font-weight:700;margin-bottom:2px}
.index-pmh-testimonial-author p{font-size:12px;color:var(--text-muted);margin:0}

/* ======================== KÊU GỌI HÀNH ĐỘNG (CTA) ======================== */
.index-pmh-cta-section{background:var(--red-primary);padding:50px 0;position:relative;overflow:hidden}
.index-pmh-cta-section::before{content:'';position:absolute;top:-100px;right:-100px;width:400px;height:400px;border:1px solid rgba(201,168,76,0.15);border-radius:50%;animation:float 8s infinite ease-in-out}
.index-pmh-cta-section::after{content:'';position:absolute;bottom:-50px;left:-50px;width:250px;height:250px;border:1px solid rgba(201,168,76,0.1);border-radius:50%;animation:float 6s infinite ease-in-out reverse}
@keyframes float{0%,100%{transform:translate(0,0)}50%{transform:translate(20px,-20px)}}
.index-pmh-cta-content{position:relative;z-index:2;text-align:center;color:#fff}
.index-pmh-cta-content h2{font-family:'Cormorant Garamond',serif;color:#fff;font-size:36px;margin-bottom:15px}
.index-pmh-cta-content p{color:rgba(255,255,255,0.8);font-size:16px;margin-bottom:35px;max-width:500px;margin-left:auto;margin-right:auto}
.btn-cta-gold{background:linear-gradient(135deg,#C9A84C 0%,#E8D48B 50%,#C9A84C 100%);background-size:200% auto;color:var(--dark);padding:18px 55px;font-size:14px;font-weight:700;border:none;border-radius:50px;text-transform:uppercase;letter-spacing:2px;transition:all .4s ease;box-shadow:0 5px 20px rgba(201,168,76,0.4);position:relative;overflow:hidden;animation:ctaGlow 3s infinite}
.btn-cta-gold::after{content:'';position:absolute;top:-50%;left:-50%;width:200%;height:200%;background:linear-gradient(45deg,transparent,rgba(255,255,255,0.2),transparent);transform:rotate(45deg);transition:all .6s}
.btn-cta-gold:hover{background-position:right center;transform:translateY(-4px) scale(1.03);box-shadow:0 12px 35px rgba(201,168,76,0.5);color:var(--dark)}
.btn-cta-gold:hover::after{left:100%}
@keyframes ctaGlow{0%,100%{box-shadow:0 5px 20px rgba(201,168,76,0.4)}50%{box-shadow:0 5px 30px rgba(201,168,76,0.6),0 0 60px rgba(201,168,76,0.15)}}

/* ======================== TIN TỨC (NEWS) ======================== */
.index-pmh-news-section{background:var(--bg-light)}
.index-pmh-news-section .row{display:flex;flex-wrap:wrap}
.index-pmh-news-section .row>[class*=col-]{display:flex}
.index-pmh-news-card{background:#fff;border:1px solid var(--border-color);overflow:hidden;margin-bottom:30px;transition:all .4s;display:flex;flex-direction:column;width:100%}
.index-pmh-news-card .index-pmh-news-body{flex:1;display:flex;flex-direction:column}
.index-pmh-news-card .index-pmh-news-body p:last-child{margin-top:auto}
.index-pmh-news-card:hover{border-color:var(--gold);box-shadow:0 15px 40px rgba(0,0,0,0.08);transform:translateY(-5px)}
.index-pmh-news-card .index-pmh-news-image{height:210px;overflow:hidden}
.index-pmh-news-card .index-pmh-news-image .img-placeholder{height:100%;border:none}
.index-pmh-news-card .index-pmh-news-body{padding:25px}
.index-pmh-news-card .index-pmh-news-date{font-size:12px;color:var(--text-muted);margin-bottom:10px}
.index-pmh-news-card .index-pmh-news-date .fa{margin-right:6px;color:var(--gold)}
.index-pmh-news-card h4{font-size:16px;font-weight:700;margin-bottom:12px;line-height:1.5}
.index-pmh-news-card h4 a{color:var(--text-dark)}
.index-pmh-news-card h4 a:hover{color:var(--red-primary)}
.index-pmh-news-card p{font-size:14px;color:var(--text-muted);margin:0;line-height:1.7}


/* ======================== LIÊN HỆ (CONTACT) ======================== */
.index-pmh-contact-section{background:var(--red-primary);color:#fff}
.index-pmh-contact-form{background:var(--glass);border:1px solid var(--glass-border);padding:45px;backdrop-filter:blur(5px)}
.index-pmh-contact-form h3{font-family:'Cormorant Garamond',serif;color:#fff;font-size:24px;margin-bottom:30px;text-align:center}
.index-pmh-contact-form .form-control{background:rgba(255,255,255,0.05);border:1px solid rgba(201,168,76,0.2);height:50px;border-radius:0;color:#fff;font-size:14px;padding:12px 18px;transition:all .3s}
.index-pmh-contact-form .form-control:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(201,168,76,0.1);background:rgba(255,255,255,0.08)}
.index-pmh-contact-form .form-control::placeholder{color:rgba(255,255,255,0.45)}
.index-pmh-contact-form .form-control::-webkit-input-placeholder{color:rgba(255,255,255,0.45)}
.index-pmh-contact-form select.form-control{color:rgba(255,255,255,0.45)}
.index-pmh-contact-form textarea.form-control{height:130px;resize:vertical}
.index-pmh-contact-form .btn-submit{background:var(--gold);color:var(--dark);width:100%;padding:16px;font-size:13px;font-weight:700;border:none;border-radius:0;text-transform:uppercase;letter-spacing:2px;transition:all .3s}
.index-pmh-contact-form .btn-submit:hover{background:#fff;color:var(--red-primary);transform:translateY(-2px)}
.index-pmh-contact-info-item{display:flex;align-items:flex-start;margin-bottom:28px}
.index-pmh-contact-info-item .index-pmh-icon{width:50px;height:50px;min-width:50px;background:rgba(201,168,76,0.1);border:1px solid rgba(201,168,76,0.2);display:flex;align-items:center;justify-content:center;margin-right:18px;color:var(--gold);font-size:18px;transition:all .3s}
.index-pmh-contact-info-item:hover .index-pmh-icon{background:var(--gold);color:var(--dark)}
.index-pmh-contact-info-item h5{font-size:13px;font-weight:700;margin-bottom:4px;color:#fff;text-transform:uppercase;letter-spacing:1px}
.index-pmh-contact-info-item p{font-size:14px;color:rgba(255,255,255,0.6);margin:0}
.index-pmh-contact-info-item a{color:var(--gold);font-weight:600}
.index-pmh-map-section{height:350px;position:relative}
.index-pmh-map-section iframe{width:100%;height:100%;border:none;filter:grayscale(50%) contrast(1.1)}

/* ======================== FOOTER ======================== */
.index-pmh-footer{background:var(--red-primary);color:rgba(255,255,255,0.6);padding:70px 0 30px}
.index-pmh-footer h4{color:#fff;font-size:15px;font-weight:700;margin-bottom:25px;text-transform:uppercase;letter-spacing:1.5px}
.index-pmh-footer p{font-size:14px;line-height:1.8}
.index-pmh-footer a{color:rgba(255,255,255,0.5)}
.index-pmh-footer a:hover{color:var(--gold)}
.index-pmh-footer-links{list-style:none;padding:0}
.index-pmh-footer-links li{margin-bottom:10px}
.index-pmh-footer-links li a{
    font-size:14px;
/*    padding-left:16px;*/
    position:relative;
    transition:all .3s;
}
/*.index-pmh-footer-links li a::before{content:'';position:absolute;left:0;top:50%;width:6px;height:1px;background:var(--gold);transition:width .3s}*/
.index-pmh-footer-links li a:hover::before{width:12px}
.index-pmh-footer-links li a:hover{padding-left:5px;color:var(--gold)}
.index-pmh-footer-bottom{border-top:1px solid rgba(201,168,76,0.08);padding-top:25px;margin-top:45px;text-align:center;font-size:13px}
.index-pmh-footer-social a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--gold);
    margin: 0 5px;
    font-size: 16px;
    transition: all .3s;
}
.index-pmh-footer-social a:hover{background:var(--gold);color:var(--dark);border-color:var(--gold);transform:translateY(-3px)}

/* ======================== NÚT NỔI (FLOATING CTA) ======================== */
.index-pmh-floating-cta{position:fixed;bottom:30px;right:25px;z-index:9999;display:flex;flex-direction:column;align-items:flex-end}
.index-pmh-floating-cta a{display:flex;align-items:center;justify-content:center;width:50px;height:50px;color:#fff;font-size:19px;border-radius:50%;transition:all .4s cubic-bezier(.25,.8,.25,1);box-shadow:0 4px 15px rgba(0,0,0,0.2);position:relative;overflow:visible;margin-bottom:12px}
.index-pmh-floating-cta a:last-child{margin-bottom:0}
.index-pmh-floating-cta a::before{content:attr(data-tooltip);position:absolute;right:calc(100% + 12px);top:50%;transform:translateY(-50%) scale(0.8);background:#1a0a0a;color:#fff;padding:6px 14px;border-radius:6px;font-size:11px;font-weight:600;white-space:nowrap;opacity:0;pointer-events:none;transition:all .3s ease;letter-spacing:.3px}
.index-pmh-floating-cta a:hover::before{opacity:1;transform:translateY(-50%) scale(1)}
.index-pmh-floating-cta .btn-phone{background:linear-gradient(135deg,#750e24 0%,#a0182f 100%);animation:pulsePhone 2s infinite}
@keyframes pulsePhone{0%{box-shadow:0 0 0 0 rgba(117,14,36,0.5)}70%{box-shadow:0 0 0 12px rgba(117,14,36,0)}100%{box-shadow:0 0 0 0 rgba(117,14,36,0)}}
.index-pmh-floating-cta .btn-zalo{background:linear-gradient(135deg,#0054d9 0%,#2196F3 100%);font-weight:800;font-size:18px;font-family:Arial,sans-serif;animation:pulseZalo 2s infinite}
@keyframes pulseZalo{0%{box-shadow:0 0 0 0 rgba(33,150,243,0.5)}70%{box-shadow:0 0 0 12px rgba(33,150,243,0)}100%{box-shadow:0 0 0 0 rgba(33,150,243,0)}}

.index-pmh-floating-cta a:hover{transform:translateY(-3px) scale(1.08);box-shadow:0 8px 25px rgba(0,0,0,0.3)}
.index-pmh-floating-cta a:focus,.index-pmh-floating-cta a:active{outline:none;border-radius:50%;box-shadow:0 4px 15px rgba(0,0,0,0.2)}

/* ======================== BACK TO TOP ======================== */
.index-pmh-back-to-top{position:fixed;bottom:25px;left:25px;width:44px;height:44px;line-height:44px;text-align:center;background:var(--red-primary);border:1px solid var(--gold);color:var(--gold);font-size:16px;z-index:9999;display:none;transition:all .3s}
.index-pmh-back-to-top:hover{background:var(--gold);color:var(--dark)}
.index-pmh-mobile-sticky-cta{display:none}

/* ======================== RESPONSIVE MOBILE ======================== */
@media(max-width:767px){
    .index-pmh-hero-content h1{font-size:30px}
    .index-pmh-hero-inner{padding:100px 0 60px}
    .index-pmh-section-heading h2{font-size:28px}
    
    .index-pmh-header-topbar{display:none}
    .index-pmh-gallery-lg,.index-pmh-gallery-sm{height:auto}
    .index-pmh-gallery-section .row>[class*="col-"]{width:100%;float:none;padding-left:15px;padding-right:15px}
    .index-pmh-gallery-item{margin-bottom:10px}
    .index-pmh-gallery-item img{height:200px;width:100%;object-fit:cover}
    .index-pmh-cert-section .row{display:flex;flex-wrap:wrap}
    .index-pmh-cert-section .col-xs-6{padding-left:8px;padding-right:8px;margin-bottom:15px;display:flex}
    .index-pmh-cert-item{padding:20px 12px;width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center}
    .index-pmh-contact-form{padding:25px}
    
    /* Nâng cấp Mobile Sticky CTA dạng Floating Dock sang trọng */
    .index-pmh-mobile-sticky-cta {
        display: flex !important;
        position: fixed;
        bottom: 15px;
        left: 15px;
        right: 15px;
        z-index: 9998;
        gap: 6px;
        background: rgba(26, 10, 10, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(201, 168, 76, 0.25);
        border-radius: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
        padding: 6px 8px;
        transition: var(--transition-smooth);
    }
    .index-pmh-mobile-sticky-cta a {
        flex: 1;
        text-align: center;
        padding: 10px 8px;
        font-weight: 700;
        font-size: 11px;
        color: #fff;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        transition: var(--transition-smooth);
    }
    .index-pmh-mobile-sticky-cta .btn-call {
        background: var(--red-primary);
    }
    .index-pmh-mobile-sticky-cta .btn-zalo-m {
        background: var(--gold);
        color: var(--dark);
    }
    .index-pmh-mobile-sticky-cta .btn-phone-m {
        background: #2c3e50;
        color: #fff;
    }
    .index-pmh-floating-cta {
        bottom: 85px;
    }
    .index-pmh-floating-text-pill {
        display: none !important;
    }
    .index-pmh-back-to-top {
        bottom: 100px !important;
        left: 15px;
    }
}

/* ======================== ANIMATIONS ======================== */
.index-pmh-reveal{opacity:1;transform:translateY(0);transition:opacity .8s cubic-bezier(.25,.8,.25,1),transform .8s cubic-bezier(.25,.8,.25,1)}
.index-pmh-reveal.index-pmh-visible{opacity:1;transform:translateY(0)}
.index-pmh-reveal-left{opacity:1;transform:translateX(0);transition:opacity .8s ease,transform .8s ease}
.index-pmh-reveal-left.index-pmh-visible{opacity:1;transform:translateX(0)}
.index-pmh-reveal-right{opacity:1;transform:translateX(0);transition:opacity .8s ease,transform .8s ease}
.index-pmh-reveal-right.index-pmh-visible{opacity:1;transform:translateX(0)}
.index-pmh-reveal-scale{opacity:1;transform:scale(1);transition:opacity .6s ease,transform .6s ease}
.index-pmh-reveal-scale.index-pmh-visible{opacity:1;transform:scale(1)}
    

/* ======================== POPUP MODALS & FORMS ======================== */
/* ===== ADVERTISING OPTIMIZED WIDGETS & CONVERSION ELEMENTS ===== */
.btn-pulse-gold {
    animation: pulseGoldButton 2s infinite;
}
@keyframes pulseGoldButton {
    0% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.6); }
    70% { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
}

/* Multi-step Form & Popups */
.index-pmh-ad-modal .modal-content {
    border-radius: 8px;
    border: 1px solid var(--border-gold);
    background: var(--dark-medium);
    color: #fff;
}
.index-pmh-ad-modal .modal-header {
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 20px 25px;
}
.index-pmh-ad-modal .modal-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-weight: 700;
}
.index-pmh-ad-modal .close {
    color: #fff;
    opacity: 0.8;
    text-shadow: none;
    font-size: 28px;
}
.index-pmh-ad-modal .close:hover {
    color: var(--gold);
}
.index-pmh-ad-modal .modal-body {
    padding: 30px 25px;
}
.form-step {
    display: none;
}
.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}
.index-pmh-step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}
.index-pmh-step-indicator::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}
.index-pmh-step-progress-bar {
    position: absolute;
    top: 15px;
    left: 10px;
    width: 0%;
    height: 2px;
    background: var(--gold);
    z-index: 1;
    transition: width 0.3s ease;
}
.index-pmh-step-dot {
    width: 32px;
    height: 32px;
    line-height: 30px;
    border-radius: 50%;
    background: var(--dark-section);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
    transition: all 0.3s ease;
}
.index-pmh-step-dot.active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
}
.index-pmh-step-dot.index-pmh-completed {
    border-color: var(--gold);
    background: #1a1a1a;
    color: var(--gold);
}
.index-pmh-step-question {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}
.index-pmh-step-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}
@media (max-width: 575px) {
    .index-pmh-step-options { grid-template-columns: 1fr; }
}
.index-pmh-option-card {
    border: 1px solid rgba(201, 168, 76, 0.2);
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}
.index-pmh-option-card:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: var(--gold);
}
.index-pmh-option-card.index-pmh-selected {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
    box-shadow: inset 0 0 0 1px var(--gold);
}
.index-pmh-option-card input[type="radio"], .index-pmh-option-card input[type="checkbox"] {
    margin: 0;
    accent-color: var(--gold);
    width: 18px;
    height: 18px;
}
.index-pmh-option-card label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}
.index-pmh-step-navigation {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding-top: 20px;
}
.index-pmh-step-navigation .btn {
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 25px;
    font-size: 12px;
}
.index-pmh-error-message {
    color: var(--red-accent);
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

/* Special Offer Exit Intent Modal */
.index-pmh-offer-modal .modal-content {
    border: 2px solid var(--gold);
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dark-medium) 0%, var(--dark-section) 100%);
    color: #fff;
    overflow: hidden;
}
.index-pmh-offer-modal-left {
    background: url('https://phumyhungsale.vn/wp-content/uploads/2020/11/phong-kinh-doanh-phu-my-hung-chinh-1920x700.jpg') center/cover no-repeat;
    height: 100%;
    min-height: 400px;
    position: relative;
}
.index-pmh-offer-modal-left::before {
    content: '';
    position: absolute;
    top:0;left:0;right:0;bottom:0;
    background: linear-gradient(180deg, rgba(13,5,5,0.4) 0%, rgba(13,5,5,0.85) 100%);
}
.index-pmh-offer-modal-left-content {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    z-index: 2;
}
.index-pmh-offer-modal-right {
    padding: 40px 30px;
}
.index-pmh-offer-badge {
    background: var(--red-accent);
    color: #fff;
    display: inline-block;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-radius: 2px;
}
.index-pmh-offer-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}
.index-pmh-offer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Project details popup modal */
.index-pmh-project-detail-modal .modal-content {
    border-radius: 8px;
    border: 1px solid var(--border-gold);
    background: var(--dark-medium);
    color: #fff;
}
.index-pmh-project-detail-modal .modal-header {
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.index-pmh-project-detail-modal .modal-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-weight: 700;
}
.index-pmh-project-detail-modal .modal-body {
    padding: 25px;
}
.index-pmh-project-detail-img {
    height: 280px;
    border-radius: 6px;
    margin-bottom: 20px;
}
.index-pmh-project-detail-info h4 {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    margin-bottom: 15px;
}
.index-pmh-project-detail-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
}
.index-pmh-project-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 6px;
}
.index-pmh-spec-item {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}
.index-pmh-spec-item strong {
    color: #fff;
}

/* Floating Action Widget Updates */
.index-pmh-floating-text-pill {
    position: fixed;
    bottom: 230px;
    right: 25px;
    z-index: 9999;
    background: linear-gradient(135deg, #750e24 0%, #C9A84C 100%);
    color: #fff;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 12px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(117,14,36,0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    animation: pillFloat 3s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.2);
}
.index-pmh-floating-text-pill:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(117,14,36,0.45);
}
@keyframes pillFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.index-pmh-floating-cta .btn-facebook {
    background: #1877F2;
    color: #fff;
    animation: pulseFacebook 2s infinite;
    font-size: 18px;
}
@keyframes pulseFacebook{0%{box-shadow:0 0 0 0 rgba(24,119,242,0.5)}70%{box-shadow:0 0 0 12px rgba(24,119,242,0)}100%{box-shadow:0 0 0 0 rgba(24,119,242,0)}}
.index-pmh-floating-cta .btn-facebook:hover {
    background: #0d65d9;
}

/* BS5 Navbar Toggler Override */





/* ======================== ĐỐI TÁC (PARTNERS) ======================== */
.index-pmh-partner-section .index-pmh-section-heading h2{color:var(--text-dark)}

.index-pmh-partner-section .index-pmh-section-heading .index-pmh-sub-title{color:var(--gold)}

.index-pmh-partner-section .index-pmh-section-heading p{color:var(--text-muted)}
.index-pmh-partner-item{padding:10px 15px}
.index-pmh-partner-logo-wrap{background:#fff;border:1px solid #eee;border-top:3px solid var(--gold);border-radius:8px;padding:30px 25px;display:flex;align-items:center;justify-content:center;height:120px;transition:all .4s cubic-bezier(.25,.8,.25,1);box-shadow:0 4px 15px rgba(0,0,0,0.06);position:relative}
.index-pmh-partner-logo-wrap:hover{transform:translateY(-5px);box-shadow:0 10px 30px rgba(201,168,76,0.15);border-top-color:var(--gold);border-color:rgba(201,168,76,0.3)}
.index-pmh-partner-logo-wrap img{max-height:70px;max-width:160px;width:auto;object-fit:contain;transition:all .4s;opacity:0.85}
.index-pmh-partner-logo-wrap:hover img{transform:scale(1.05);opacity:1;filter:none}

/* ======================== CHỦ ĐẦU TƯ (DEVELOPER) ======================== */
.index-pmh-developer-section{background:var(--bg-light)}
.index-pmh-developer-content{display:flex;align-items:center;gap:50px;margin-bottom:50px}
.index-pmh-developer-info{flex:1}
.index-pmh-developer-info h3{font-family:'Cormorant Garamond',serif;font-size:28px;color:var(--red-primary);margin-bottom:20px}
.index-pmh-developer-info p{font-size:14px;color:var(--text-body);line-height:1.8;margin-bottom:15px}
.index-pmh-developer-stats{display:flex;gap:25px;margin-top:30px;flex-wrap:wrap}
.index-pmh-dev-stat{text-align:center;padding:20px 15px;background:var(--bg-white);border-radius:var(--radius-md);border:1px solid var(--border-gold);box-shadow:var(--shadow-sm);transition:var(--transition-smooth);min-width:120px}
.index-pmh-dev-stat:hover{transform:translateY(-5px);box-shadow:var(--shadow-md);border-color:var(--gold)}
.index-pmh-dev-stat .index-pmh-number{font-family:'Cormorant Garamond',serif;font-size:36px;color:var(--red-primary);font-weight:700;line-height:1}
.index-pmh-dev-stat .index-pmh-label{font-size:11px;color:var(--text-muted);text-transform:uppercase;letter-spacing:1px;margin-top:8px}
.index-pmh-developer-logo{flex:0 0 380px;text-align:center}
.index-pmh-developer-logo img{width:100%;border-radius:var(--radius-md);box-shadow:var(--shadow-lg);border:3px solid var(--border-gold)}
.index-pmh-partner-logos{display:flex;align-items:center;justify-content:center;gap:20px;margin-top:40px;padding-top:40px;border-top:1px solid var(--border-color);flex-wrap:wrap}
.index-pmh-partner-logo{padding:12px 22px;border:1px solid var(--border-color);border-radius:var(--radius-sm);color:var(--text-muted);font-size:13px;font-weight:600;letter-spacing:1px;transition:var(--transition-smooth);background:var(--bg-white)}
.index-pmh-partner-logo:hover{border-color:var(--gold);color:var(--red-primary);box-shadow:var(--shadow-sm)}
.index-pmh-developer-achievements{margin-top:50px}
.index-pmh-developer-achievements h4{font-family:'Cormorant Garamond',serif;font-size:20px;color:var(--text-dark);margin-bottom:20px;padding-bottom:10px;border-bottom:2px solid var(--border-gold)}
.index-pmh-developer-achievements .index-pmh-feature-list{list-style:none;padding:0}
.index-pmh-developer-achievements .index-pmh-feature-list li{padding:8px 0;font-size:14px;color:var(--text-body);display:flex;align-items:center;gap:10px}
.index-pmh-developer-achievements .index-pmh-feature-list li i{color:var(--gold);font-size:14px;min-width:18px}
@media(max-width:991px){.index-pmh-developer-content{flex-direction:column;gap:30px}.index-pmh-developer-logo{flex:none;max-width:100%}.index-pmh-developer-stats{justify-content:center}}
@media(max-width:575px){.index-pmh-dev-stat{min-width:calc(50% - 15px)}.index-pmh-developer-stats{gap:15px}}


@media(max-width:991px){body{padding-top:60px!important}}

.index-pmh-gallery-item:focus,.index-pmh-gallery-item:active,[data-fancybox]:focus,[data-fancybox]:active{outline:none!important;box-shadow:none!important}
.fancybox-container{z-index:99999!important}
.fancybox-bg{background:rgba(0,0,0,0.92)!important;opacity:1!important}
.fancybox-slide--image .fancybox-content{opacity:1!important;visibility:visible!important}
.fancybox-image{opacity:1!important;filter:none!important;visibility:visible!important}

