/* Ganesha Real Estate South Bopal — Premium Luxury Brand */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.hk-body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: var(--header-h);
}
h1, h2, h3, h4, h5, .hk-btn { font-family: 'Poppins', sans-serif; }
img { max-width: 100%; height: auto; }
a { transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.25s; }

/* Buttons */
.hk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    white-space: nowrap;
}
.hk-btn-primary { background: var(--primary); color: var(--white) !important; }
.hk-btn-primary:hover { background: var(--secondary); color: var(--white) !important; }
.hk-btn-gold {
    background: var(--gold-gradient);
    color: #FFFFFF !important;
    box-shadow: 0 4px 18px rgba(153, 27, 27, 0.45);
    border: 1px solid rgba(123, 15, 15, 0.35);
}
.hk-btn-gold:hover {
    background: linear-gradient(135deg, #FF8A80 0%, #E53935 50%, #B71C1C 100%);
    box-shadow: 0 6px 24px rgba(153, 27, 27, 0.55);
    transform: translateY(-1px);
}
.hk-btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary) !important; }
.hk-btn-outline:hover { background: var(--primary); color: var(--white) !important; }
.hk-btn-outline-gold {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold-dark) !important;
}
.hk-btn-outline-gold:hover {
    background: var(--gold-gradient);
    border-color: var(--gold-dark);
    color: #FFFFFF !important;
    box-shadow: 0 4px 18px rgba(153, 27, 27, 0.35);
    transform: translateY(-1px);
}
.hk-btn-wa {
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 50%;
}
.hk-btn-white { background: var(--white); color: var(--secondary) !important; }
.hk-btn-white:hover { background: var(--gold-light); color: #FFFFFF !important; }
.hk-btn-lg { padding: 14px 32px; font-size: 15px; }
.hk-btn-search {
    background: var(--gold-gradient);
    color: #FFFFFF !important;
    padding: 14px 36px;
    font-size: 15px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(153, 27, 27, 0.4);
    border: 1px solid rgba(123, 15, 15, 0.3);
}
.hk-btn-search:hover {
    background: linear-gradient(135deg, #FF8A80 0%, #E53935 50%, #B71C1C 100%);
    box-shadow: 0 6px 26px rgba(153, 27, 27, 0.55);
    transform: translateY(-2px);
}

/* Section utilities */
.hk-section { padding: 88px 0; }
.hk-section-dark { background: var(--secondary); color: var(--white); }
.hk-section-alt { background: var(--white); }
.hk-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}
.hk-label-gold {
    color: #FFFFFF;
    background: var(--gold-gradient);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 18px rgba(153, 27, 27, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.35);
}
.hk-hero .hk-label-gold {
    display: inline-block;
    margin-bottom: 18px;
    color: #FFFFFF !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.hk-section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.hk-section-head h2 { font-size: 34px; font-weight: 700; margin: 0 0 14px; color: var(--secondary); }
.hk-section-head p { font-size: 17px; color: var(--text-muted); margin: 0; }
.hk-section-dark .hk-section-head h2 { color: var(--white); }
.hk-section-dark .hk-section-head p { color: rgba(255,255,255,0.75); }
.hk-section-dark .hk-label { color: var(--gold-light); text-shadow: 0 1px 8px rgba(229, 57, 53, 0.35); }

/* ═══ HEADER — Brand Red Premium ═══ */
@keyframes hkGoldShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes hkNavReveal {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes hkDrawerItemIn {
    from { opacity: 0; transform: translateX(-16px); }
    to { opacity: 1; transform: translateX(0); }
}

.hk-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    border-bottom: 1px solid rgba(153, 27, 27, 0.14);
    box-shadow: 0 4px 24px rgba(26, 26, 26, 0.06);
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s ease,
                height 0.35s ease,
                transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.hk-header-gold-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 25%, var(--gold) 50%, var(--gold-light) 75%, var(--gold-dark) 100%);
    background-size: 200% 100%;
    animation: hkGoldShimmer 6s ease-in-out infinite;
    z-index: 3;
}
.hk-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 40px rgba(26, 26, 26, 0.12), 0 1px 0 rgba(153, 27, 27, 0.25);
    border-bottom-color: rgba(153, 27, 27, 0.28);
}
.hk-header.scrolled .hk-header-gold-line {
    height: 2px;
}
.hk-header.hk-header--hidden {
    transform: translateY(-100%);
}
@media (prefers-reduced-motion: reduce) {
    .hk-header.hk-header--hidden { transform: none; }
}
.hk-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: calc(var(--header-h) - 3px);
    position: relative;
}
.hk-header-shell {
    position: relative;
    height: calc(var(--header-h) - 3px);
    padding-top: 3px;
}

/* Desktop navbar row */
.hk-header-desktop {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 16px;
    width: 100%;
    height: 100%;
    animation: hkNavReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hk-header-mobile {
    display: none;
}
.hk-header-desktop .hk-logo {
    flex-shrink: 0;
    min-width: 0;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}
.hk-header-desktop .hk-logo:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 4px 12px rgba(153, 27, 27, 0.25));
}
.hk-header-desktop .hk-logo img {
    height: 46px;
    max-width: 190px;
    transition: height 0.35s ease;
}
.hk-header.scrolled .hk-header-desktop .hk-logo img {
    height: 42px;
}
.hk-nav--desktop {
    display: flex;
    justify-content: center;
    min-width: 0;
    max-width: 100%;
}
.hk-nav--desktop .hk-nav-list {
    list-style: none;
    margin: 0;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 2px;
    max-width: 100%;
    background: rgba(248, 250, 252, 0.72);
    border: 1px solid rgba(153, 27, 27, 0.12);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.hk-nav--desktop .hk-nav-list li a {
    display: block;
    position: relative;
    padding: 9px 13px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    border-radius: 999px;
    white-space: nowrap;
    overflow: hidden;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.hk-nav--desktop .hk-nav-list li a span {
    position: relative;
    z-index: 1;
}
.hk-nav--desktop .hk-nav-list li a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: var(--gold-gradient);
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.hk-nav--desktop .hk-nav-list li a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--gold-gradient);
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
}
.hk-nav--desktop .hk-nav-list li a:hover {
    color: var(--gold-dark);
    transform: translateY(-1px);
}
.hk-nav--desktop .hk-nav-list li a:hover::after {
    width: calc(100% - 22px);
}
.hk-nav--desktop .hk-nav-list li a.is-active {
    color: #FFFFFF;
    font-weight: 700;
}
.hk-nav--desktop .hk-nav-list li a.is-active::before {
    opacity: 1;
    transform: scale(1);
}
.hk-nav--desktop .hk-nav-list li a.is-active::after {
    width: 0;
}
.hk-header-desktop .hk-header-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}
.hk-header-desktop .hk-header-actions .hk-btn {
    padding-left: 14px;
    padding-right: 14px;
    font-size: 13px;
}
.hk-btn-icon-only-desktop .hk-btn-label {
    display: inline;
}
@media (min-width: 992px) and (max-width: 1180px) {
    .hk-btn-icon-only-desktop .hk-btn-label {
        display: none;
    }
    .hk-btn-icon-only-desktop {
        width: 42px;
        height: 42px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

@media (min-width: 992px) and (max-width: 1100px) {
    .hk-header-desktop .hk-logo img {
        height: 40px;
        max-width: 150px;
    }
    .hk-nav--desktop .hk-nav-list li a {
        padding: 8px 9px;
        font-size: 12px;
    }
    .hk-header-desktop .hk-header-actions .hk-btn {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 12px;
    }
    .hk-header-desktop .hk-post-property-btn--desktop {
        padding: 8px 11px;
        font-size: 12px;
    }
}

.hk-logo img { height: 48px; width: auto; max-width: 200px; }
.hk-menu-toggle {
    background: rgba(153, 27, 27, 0.08);
    border: 1px solid rgba(153, 27, 27, 0.22);
    border-radius: 10px;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.hk-menu-toggle:hover {
    background: rgba(153, 27, 27, 0.14);
    border-color: rgba(153, 27, 27, 0.4);
}
.hk-menu-toggle span {
    display: block;
    height: 3px;
    background: var(--gold-dark);
    border-radius: 999px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease, width 0.35s ease, background 0.25s ease;
}
.hk-menu-toggle span:nth-child(1),
.hk-menu-toggle span:nth-child(3) { width: 26px; }
.hk-menu-toggle span:nth-child(2) { width: 16px; }
.hk-menu-toggle.active {
    align-items: center;
    background: var(--gold-gradient);
    border-color: var(--gold-dark);
}
.hk-menu-toggle.active span {
    width: 26px;
    background: #FFFFFF;
}
.hk-menu-toggle.active span:nth-child(1) { transform: translateY(13px) rotate(45deg); }
.hk-menu-toggle.active span:nth-child(2) { opacity: 0; width: 0; }
.hk-menu-toggle.active span:nth-child(3) { transform: translateY(-13px) rotate(-45deg); }

/* Post Property CTA */
.hk-post-property-btn {
    display: inline-flex;
    position: relative;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    background: var(--gold-gradient);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.2;
    border: 1px solid rgba(123, 15, 15, 0.35);
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(153, 27, 27, 0.38);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.hk-post-property-btn i {
    font-size: 13px;
}
.hk-post-property-btn:hover,
.hk-post-property-btn:focus {
    color: #FFFFFF;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(153, 27, 27, 0.48);
    filter: brightness(1.05);
}
.hk-header-desktop .hk-post-property-btn--desktop {
    padding: 10px 16px;
    font-size: 13px;
}

/* FREE badge */
@keyframes pulseFree {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
@keyframes glowFree {
    0%, 82%, 100% { box-shadow: none; }
    90% { box-shadow: 0 0 15px rgba(40, 167, 69, 0.5); }
}
.free-badge {
    position: absolute;
    top: -7px;
    right: -8px;
    background: #28A745;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    border-radius: 4px;
    padding: 2px 6px;
    letter-spacing: 0.02em;
    animation: pulseFree 1.5s infinite ease-in-out, glowFree 4s infinite ease-in-out;
    pointer-events: none;
}
.free-badge--inline {
    position: static;
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
    font-size: 9px;
    padding: 1px 5px;
}

/* Mobile nav overlay + drawer */
.hk-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 13, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
body.nav-open .hk-nav-overlay {
    opacity: 1;
    visibility: visible;
}
.hk-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(320px, 88vw);
    background: linear-gradient(165deg, #1A1A1A 0%, #141414 55%, #0D0D0D 100%);
    border-right: 1px solid rgba(229, 57, 53, 0.18);
    box-shadow: 12px 0 48px rgba(13, 13, 13, 0.35);
    transform: translateX(-105%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 10000;
    overflow-x: hidden;
    overflow-y: auto;
    display: none;
    flex-direction: column;
}
.hk-mobile-drawer.open {
    transform: translateX(0);
}
.hk-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 18px 12px;
    border-bottom: 1px solid rgba(229, 57, 53, 0.15);
    position: sticky;
    top: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.92) 100%);
    backdrop-filter: blur(8px);
}
.hk-drawer-brand img {
    height: 40px;
    max-width: 170px;
    filter: brightness(1.08);
}
.hk-drawer-tagline {
    margin: 0;
    padding: 10px 18px 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.9;
}
.hk-drawer-close {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(229, 57, 53, 0.35);
    background: rgba(229, 57, 53, 0.1);
    color: var(--gold-light);
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.hk-drawer-close:hover {
    background: var(--gold-gradient);
    color: #FFFFFF;
    border-color: transparent;
    transform: rotate(90deg);
}
.hk-nav-list--mobile {
    list-style: none;
    margin: 0;
    padding: 6px 12px 0;
    width: 100%;
}
.hk-nav-list--mobile li {
    width: 100%;
    opacity: 0;
    transform: translateX(-16px);
}
.hk-mobile-drawer.open .hk-nav-list--mobile li {
    animation: hkDrawerItemIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hk-mobile-drawer.open .hk-nav-list--mobile li:nth-child(1) { animation-delay: 0.05s; }
.hk-mobile-drawer.open .hk-nav-list--mobile li:nth-child(2) { animation-delay: 0.08s; }
.hk-mobile-drawer.open .hk-nav-list--mobile li:nth-child(3) { animation-delay: 0.11s; }
.hk-mobile-drawer.open .hk-nav-list--mobile li:nth-child(4) { animation-delay: 0.14s; }
.hk-mobile-drawer.open .hk-nav-list--mobile li:nth-child(5) { animation-delay: 0.17s; }
.hk-mobile-drawer.open .hk-nav-list--mobile li:nth-child(6) { animation-delay: 0.20s; }
.hk-mobile-drawer.open .hk-nav-list--mobile li:nth-child(7) { animation-delay: 0.23s; }
.hk-mobile-drawer.open .hk-nav-list--mobile li:nth-child(8) { animation-delay: 0.26s; }
.hk-mobile-drawer.open .hk-nav-list--mobile li:nth-child(9) { animation-delay: 0.29s; }
.hk-mobile-drawer.open .hk-nav-list--mobile li:nth-child(10) { animation-delay: 0.32s; }
.hk-mobile-drawer.open .hk-nav-list--mobile li:nth-child(11) { animation-delay: 0.35s; }
.hk-mobile-drawer.open .hk-nav-list--mobile li:nth-child(12) { animation-delay: 0.38s; }
.hk-mobile-drawer.open .hk-nav-list--mobile li:nth-child(n+13) { animation-delay: 0.41s; }
.hk-nav-list--mobile li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 12px;
    border-left: 3px solid transparent;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.hk-nav-list--mobile li a i {
    width: 22px;
    text-align: center;
    color: var(--gold-light);
    font-size: 16px;
    transition: transform 0.25s ease;
}
.hk-nav-list--mobile li a:hover,
.hk-nav-list--mobile li a:focus,
.hk-nav-list--mobile li a.is-active {
    background: rgba(229, 57, 53, 0.12);
    color: var(--gold-light);
    border-left-color: var(--gold);
    transform: translateX(4px);
}
.hk-nav-list--mobile li a.is-active {
    background: rgba(229, 57, 53, 0.18);
    font-weight: 700;
}
.hk-nav-list--mobile li a:hover i,
.hk-nav-list--mobile li a.is-active i {
    transform: scale(1.1);
}
.hk-nav-mobile-cta {
    padding: 18px 16px 28px;
    margin-top: auto;
    border-top: 1px solid rgba(229, 57, 53, 0.15);
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.12) 100%);
}
.hk-nav-mobile-cta .hk-btn { margin-bottom: 10px; }
.hk-nav-mobile-cta .hk-btn:last-child { margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
    .hk-header-gold-line { animation: none; }
    .hk-header-desktop { animation: none; }
    .hk-mobile-drawer.open .hk-nav-list--mobile li { animation: none; opacity: 1; transform: none; }
    .hk-nav--desktop .hk-nav-list li a,
    .hk-menu-toggle,
    .hk-post-property-btn { transition: none; }
}

/* ═══ HERO — Full Screen ═══ */
.hk-hero {
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    background: linear-gradient(315deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 24px 0;
}
.hk-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--header-h) - 48px);
}
.hk-hero-layout {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--header-h) - 48px);
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    align-items: end;
    gap: clamp(12px, 2vw, 32px);
}
.hk-hero-main {
    position: relative;
    z-index: 4;
    max-width: none;
    padding-bottom: clamp(16px, 3vh, 32px);
    overflow: visible;
    order: 1;
    align-self: center;
}
/* Large model — VitalSpace style, points at search box */
@keyframes hkHeroModelRise {
    from {
        opacity: 0;
        transform: translateY(72px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hk-hero-model {
    order: 2;
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    align-self: end;
    margin-bottom: 0;
    z-index: 3;
    pointer-events: none;
    overflow: visible;
}
.hk-hero-model--rise {
    animation: hkHeroModelRise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
@media (prefers-reduced-motion: reduce) {
    .hk-hero-model--rise {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
.hk-hero-model picture {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background: transparent;
}
.hk-hero-model img {
    display: block;
    width: 100%;
    height: auto;
    max-height: calc(100vh - var(--header-h) - 32px);
    min-height: 0;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom center;
    filter: none;
    -webkit-filter: none;
    mix-blend-mode: normal;
}
.hk-hero-model-caption {
    margin-top: 10px;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.35;
    pointer-events: none;
}
.hk-hero-model-caption strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.hk-hero-model-caption span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 2px;
}
.hk-hero-content { position: relative; z-index: 2; }
.hk-hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 20px;
    color: var(--white);
}

/* Hero headline rotator */
.hk-hero-rotator {
    margin: 0 0 20px;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
}
.hk-hero-rotator-viewport {
    display: grid;
    position: relative;
}
.hk-hero-rotator-slide {
    grid-area: 1 / 1;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    pointer-events: none;
    font: inherit;
    color: inherit;
    line-height: inherit;
}
.hk-hero-rotator-slide.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.hk-hero-rotator-slide strong {
    color: var(--gold-light);
    font-weight: 700;
}
.hk-hero .hero-sub {
    font-size: 19px;
    line-height: 1.65;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    max-width: 600px;
}
.hk-hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }

/* Hero Search Glass Box */
.hk-hero-search {
    position: relative;
    z-index: 5;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 16px;
    padding: 27px 28px;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.18);
    max-width: 100%;
}
.hk-search-tabs { display: flex; gap: 8px; margin-bottom: 22px; }
.hk-search-tab {
    padding: 11px 28px;
    border-radius: 8px;
    background: rgba(255,255,255,0.5);
    border: 1px solid transparent;
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}
.hk-search-tab.active {
    background: var(--primary);
    color: var(--white);
}
.hk-search-fields { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 13px; align-items: end; }
.hk-search-fields-sell { grid-template-columns: repeat(5, 1fr) auto; }
.hk-search-field { min-width: 0; }
.hk-field-label { display: none; }
.hk-search-fields .form-control {
    height: 52px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 8px;
    background: rgba(255,255,255,0.9);
    font-size: 14px;
    padding: 0 15px;
}
.hk-hero-search .hk-btn-search {
    height: 52px;
    padding: 0 34px;
    font-size: 15px;
    width: auto;
    min-width: 176px;
    white-space: nowrap;
}
.hk-search-pane { display: none; }
.hk-search-pane.active { display: block; }

@media (min-width: 992px) {
    .hk-hero-search {
        width: calc(108% + clamp(12px, 2vw, 28px));
        max-width: none;
    }
    .hk-hero-model {
        margin-left: auto;
        padding-bottom: clamp(8px, 1.5vh, 20px);
    }
    .hk-hero-model picture {
        max-width: min(460px, 42vw);
    }
}

@media (min-width: 1200px) {
    .hk-hero-model picture {
        max-width: min(520px, 44vw);
    }
    .hk-hero-model img {
        max-height: calc(100vh - var(--header-h) - 24px);
    }
}

/* ═══ Area Chips ═══ */
.hk-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.hk-chip {
    padding: 10px 22px;
    border-radius: 50px;
    border: 2px solid var(--gold);
    background: var(--white);
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
}
.hk-chip:hover {
    border-color: var(--gold-light);
    background: var(--gold-gradient);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(153, 27, 27, 0.35);
}
.hk-chip-more {
    border-color: var(--primary);
    color: var(--primary);
}
.hk-chip-more:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

/* ═══ Why Cards ═══ */
.hk-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hk-why-card {
    background: var(--white);
    border: 1px solid rgba(232,237,242,0.8);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.hk-why-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.hk-why-icon {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(47,128,148,0.12), rgba(211,177,139,0.15));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--primary);
}
.hk-why-card h4 { font-size: 17px; margin: 0 0 10px; color: var(--secondary); }
.hk-why-card p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ═══ Property Cards ═══ */
.hk-prop-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(232,237,242,0.9);
    transition: transform 0.35s, box-shadow 0.35s;
}
.hk-prop-card:hover { transform: translateY(-10px); box-shadow: 0 20px 48px rgba(40,73,103,0.14); }
.hk-prop-img {
    height: 220px;
    background: var(--brand-gradient);
    position: relative;
    overflow: hidden;
}
.hk-prop-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hk-prop-badge {
    position: absolute; top: 16px; left: 16px;
    background: var(--gold-gradient);
    color: #FFFFFF;
    padding: 5px 14px; border-radius: 4px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.08em;
    box-shadow: 0 2px 10px rgba(153, 27, 27, 0.4);
}
.hk-prop-body { padding: 24px; }
.hk-prop-body h4 { font-size: 18px; margin: 0 0 6px; color: var(--secondary); }
.hk-prop-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.hk-prop-price {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 16px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hk-prop-actions { display: flex; gap: 10px; }
.hk-prop-actions .hk-btn { flex: 1; padding: 10px; font-size: 13px; }

/* Carousel */
.hk-carousel .owl-nav { margin-top: 24px; text-align: center; }
.hk-carousel .owl-prev, .hk-carousel .owl-next {
    display: inline-flex; width: 44px; height: 44px;
    align-items: center; justify-content: center;
    background: var(--white) !important;
    border: 1px solid var(--border-light, #E8D4D4) !important;
    border-radius: 50% !important;
    margin: 0 6px; font-size: 18px !important;
    color: var(--secondary) !important;
}

/* ═══ Category Cards ═══ */
.hk-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hk-cat-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(232,237,242,0.9);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    text-decoration: none !important;
    color: var(--secondary);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.hk-cat-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 16px 40px rgba(153, 27, 27, 0.22);
    color: var(--secondary);
}
.hk-cat-card:hover i { color: var(--gold-dark); }
.hk-cat-card i { font-size: 36px; color: var(--primary); margin-bottom: 16px; display: block; }
.hk-cat-card span { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 17px; }

/* ═══ List Property CTA ═══ */
.hk-sell-cta {
    padding: 72px 0;
    background: linear-gradient(180deg, #FAF0F0 0%, #FDF8F8 100%);
}
.hk-sell-cta-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 24px;
    align-items: stretch;
    padding: 34px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 52%, #991B1B 100%);
    box-shadow: 0 22px 50px rgba(13, 13, 13, 0.18);
    overflow: hidden;
    position: relative;
}
.hk-sell-cta-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(229, 57, 53, 0.14), transparent 36%),
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.08), transparent 32%);
    pointer-events: none;
}
.hk-sell-cta-main,
.hk-sell-cta-panel {
    position: relative;
    z-index: 1;
}
.hk-sell-cta-main .hk-label { color: #E53935; }
.hk-sell-cta-main h2 {
    margin: 10px 0 12px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    color: #fff;
}
.hk-sell-cta-main > p {
    margin: 0 0 24px;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1rem;
    line-height: 1.7;
}
.hk-sell-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.hk-sell-feature-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.hk-sell-feature-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(229, 57, 53, 0.16);
    color: #E53935;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.hk-sell-feature-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.92rem;
    color: #fff;
}
.hk-sell-feature-item span {
    display: block;
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
}
.hk-sell-cta-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px 24px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(13, 13, 13, 0.14);
}
.hk-sell-cta-badge {
    align-self: flex-start;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(47, 128, 148, 0.12);
    color: #991B1B;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.hk-sell-cta-panel h3 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: #1A1A1A;
}
.hk-sell-cta-panel > p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: #666;
}
.hk-sell-btns {
    display: grid;
    gap: 12px;
    margin-top: 4px;
}
.hk-sell-btns .btn-block {
    width: 100%;
    justify-content: center;
}
.hk-sell-cta-help {
    margin-top: auto;
    padding-top: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #991B1B;
    text-decoration: none !important;
    text-align: center;
}
.hk-sell-cta-help:hover { color: #C62828; }
.hk-sell-cta-help i { margin-right: 6px; }

/* ═══ Hotspots Map ═══ */
.hk-hotspot-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.hk-map-visual {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(47, 128, 148, 0.18);
    box-shadow: 0 16px 40px rgba(13, 13, 13, 0.12);
    background: #0D0D0D;
}
.hk-map-visual img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}
.hk-hotspot-list { display: flex; flex-direction: column; gap: 12px; }
.hk-hotspot-item {
    background: var(--white);
    border: 1px solid #E8D4D4;
    border-radius: 12px;
    padding: 18px 20px;
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 16px;
    align-items: center;
    transition: border-color 0.2s, transform 0.2s;
}
.hk-hotspot-item:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(153, 27, 27, 0.25); transform: translateX(4px); }
.hk-hotspot-item strong { color: var(--secondary); font-size: 15px; }
.hk-hotspot-stat { text-align: center; }
.hk-hotspot-stat small { display: block; font-size: 11px; color: var(--text-muted); text-transform: uppercase; }
.hk-hotspot-stat span { font-weight: 700; color: var(--primary); font-size: 14px; }

/* ═══ Luxury Section ═══ */
.hk-luxury-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hk-luxury-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s, background 0.3s;
}
.hk-luxury-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.1); }
.hk-luxury-card i { font-size: 32px; color: var(--gold-light); margin-bottom: 16px; filter: drop-shadow(0 2px 6px rgba(229, 57, 53, 0.4)); }
.hk-luxury-card h4 { color: var(--gold-light); margin: 0 0 10px; text-shadow: 0 1px 8px rgba(229, 57, 53, 0.25); }
.hk-luxury-card p { color: rgba(255,255,255,0.7); font-size: 14px; margin: 0 0 16px; }
.hk-luxury-card .hk-btn { font-size: 13px; padding: 10px 18px; }

/* ═══ Testimonials ═══ */
.hk-testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hk-testimonial {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #E8D4D4;
}
.hk-testimonial .stars { color: #EF5350; margin-bottom: 14px; text-shadow: 0 1px 4px rgba(153, 27, 27, 0.35); }
.hk-testimonial .quote { font-style: italic; color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
.hk-testimonial .author { display: flex; align-items: center; gap: 12px; }
.hk-testimonial .avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 700; font-size: 18px;
}
.hk-testimonial .author-name { font-weight: 600; color: var(--secondary); }

/* ═══ Stats Counter ═══ */
.hk-stats {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 72px 0;
}
.hk-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.hk-stat-item h3 {
    font-size: 48px; font-weight: 700;
    color: var(--white); margin: 0 0 8px;
}
.hk-stat-item p { color: rgba(255,255,255,0.85); margin: 0; font-size: 15px; }

/* ═══ Blog Cards ═══ */
.hk-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hk-blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E8D4D4;
    text-decoration: none !important;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
}
.hk-blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.hk-blog-thumb {
    height: 180px;
    background: linear-gradient(135deg, rgba(47,128,148,0.2), rgba(211,177,139,0.2));
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 40px;
}
.hk-blog-body { padding: 24px; }
.hk-blog-body h4 { font-size: 16px; color: var(--secondary); margin: 0 0 10px; line-height: 1.4; }
.hk-blog-body p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ═══ FAQ ═══ */
.hk-faq { max-width: 800px; margin: 0 auto; }
.hk-faq-item {
    background: var(--white);
    border: 1px solid #E8D4D4;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}
.hk-faq-q {
    padding: 18px 24px;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}
.hk-faq-q i { color: var(--primary); transition: transform 0.3s; }
.hk-faq-item.open .hk-faq-q i { transform: rotate(180deg); }
.hk-faq-a {
    display: none;
    padding: 0 24px 18px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}
.hk-faq-item.open .hk-faq-a { display: block; }

/* ═══ Contact Split ═══ */
.hk-contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.hk-contact-map {
    min-height: 480px;
    background: #E8D4D4;
}
.hk-contact-map iframe { width: 100%; height: 100%; min-height: 480px; border: 0; }

/* ═══ Site Location (global footer section) ═══ */
.hk-site-location { background: var(--section-alt, #FAF7F7); }
.hk-site-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}
.hk-site-location-info {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: var(--shadow);
}
.hk-site-location-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.hk-site-location-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
}
.hk-site-location-list li i {
    color: var(--primary);
    margin-top: 3px;
    min-width: 16px;
}
.hk-site-location-list a { color: var(--secondary); text-decoration: none; }
.hk-site-location-list a:hover { color: var(--primary); }
.hk-site-location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hk-site-location .hk-contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
@media (max-width: 991px) {
    .hk-site-location-grid { grid-template-columns: 1fr; }
    .hk-site-location .hk-contact-map { min-height: 360px; }
}

.hk-contact-form-wrap {
    background: var(--white);
    padding: 48px 40px;
}
.hk-contact-form-wrap h3 { margin: 0 0 8px; color: var(--secondary); }
.hk-contact-form-wrap .sub { color: var(--text-muted); margin-bottom: 28px; }
.hk-form-group { margin-bottom: 18px; }
.hk-form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--secondary); }
.hk-form-group input, .hk-form-group select, .hk-form-group textarea {
    width: 100%; height: 48px;
    border: 1px solid #E8D4D4;
    border-radius: 8px;
    padding: 0 16px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}
.hk-form-group textarea { height: 100px; padding: 12px 16px; resize: vertical; }

/* ═══ Footer ═══ */
.hk-footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.75);
    padding: 72px 0 0;
}
.hk-footer-col { margin-bottom: 32px; }
.hk-footer-col h5 {
    color: var(--white);
    font-size: 16px;
    margin: 0 0 20px;
    font-family: 'Poppins', sans-serif;
}
.hk-footer-col ul { list-style: none; padding: 0; margin: 0; }
.hk-footer-col ul li { margin-bottom: 10px; }
.hk-footer-col ul li a { color: rgba(255,255,255,0.7); text-decoration: none; }
.hk-footer-col ul li a:hover { color: var(--gold-light); }
.hk-footer-brand img { height: 48px; margin-bottom: 16px; }
.hk-footer-desc { font-size: 14px; line-height: 1.7; }
.hk-footer-contact li { font-size: 14px; line-height: 1.7; }
.hk-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}
.hk-footer-bottom p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.5); }
.hk-footer-bottom a { color: var(--gold-light); }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 9999;
    width: 56px; height: 56px; background: #25D366;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none !important;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.08); }

/* Launch grid */
.hk-launch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Inner pages fallback */
.page-head { background: var(--bg) !important; padding: 40px 0 !important; border-bottom: 4px solid var(--gold); }
.page-head .page-title { font-size: 28px !important; color: var(--secondary) !important; text-transform: none !important; letter-spacing: normal !important; padding: 0 !important; }
.seo-page-content { padding: 48px 0 72px; background: var(--bg); }

/* Visibility helpers */
.hk-mobile-only { display: none !important; }
.hk-desktop-only { display: block; }
section.hk-desktop-only { display: block; }

/* Mobile hero extras */
.hk-hero-mobile-headline {
    width: 100%;
    max-width: 100%;
    padding: 0 2px;
    box-sizing: border-box;
}
.hk-hero-mobile-headline h1 {
    font-size: clamp(17px, 4.6vw, 22px);
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 10px;
    color: var(--white);
    text-align: center;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}
.hk-hero-mobile-headline .hk-hero-rotator {
    margin: 0 0 10px;
    text-align: center;
}
.hk-hero-mobile-headline h1 strong,
.hk-hero-mobile-headline .hk-hero-rotator-slide strong {
    color: var(--gold-light);
    font-weight: 700;
}
.hk-hero-mobile-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 8px;
}
.hk-hero-mobile-block { margin-top: 10px; }
.hk-mobile-scroll-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.hk-mobile-scroll-row::-webkit-scrollbar { display: none; }
.hk-chip-sm {
    flex: 0 0 auto;
    padding: 7px 14px;
    font-size: 12px;
    white-space: nowrap;
}
.hk-hero-trend-card {
    flex: 0 0 148px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--white);
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.hk-hero-trend-card:hover,
.hk-hero-trend-card:focus {
    background: rgba(255, 255, 255, 0.22);
    border-color: var(--gold-light);
    color: var(--white);
    text-decoration: none;
}
.hk-hero-trend-name {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hk-hero-trend-loc {
    font-size: 11px;
    opacity: 0.82;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hk-hero-trend-price {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-light);
}
.hk-hero-trend-card--image {
    flex: 0 0 168px;
    padding: 0;
    overflow: hidden;
    background: rgba(8, 25, 40, 0.55);
    border-color: rgba(255, 255, 255, 0.18);
}
.hk-hero-trend-card--image:hover,
.hk-hero-trend-card--image:focus {
    background: rgba(8, 25, 40, 0.72);
}
.hk-hero-trend-img {
    display: block;
    height: 92px;
    overflow: hidden;
}
.hk-hero-trend-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.hk-hero-trend-card--image:hover .hk-hero-trend-img img {
    transform: scale(1.05);
}
.hk-hero-trend-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 10px 10px;
}

/* Trending Projects — below hero horizontal scroll */
.hk-trending-section {
    padding-top: 48px;
    padding-bottom: 48px;
    overflow: hidden;
}
.hk-trend-scroll-hint {
    color: var(--primary);
    margin-left: 4px;
    animation: hkTrendHint 1.2s ease-in-out infinite alternate;
}
@keyframes hkTrendHint {
    from { transform: translateX(0); opacity: 0.6; }
    to { transform: translateX(6px); opacity: 1; }
}
.hk-trending-scroll-wrap {
    margin: 8px 0 0;
    padding: 4px 0 12px;
    overflow: hidden;
}
.hk-trending-scroll-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px;
    scrollbar-width: none;
    padding: 4px 16px 16px;
}
.hk-trending-scroll-row::-webkit-scrollbar {
    display: none;
}
.hk-trend-card--section {
    flex: 0 0 72vw;
    max-width: 280px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--secondary);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.hk-trend-card--section:hover,
.hk-trend-card--section:focus {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(26, 26, 26, 0.14);
    border-color: var(--primary);
    text-decoration: none;
    color: var(--secondary);
}
.hk-trend-card-img {
    display: block;
    height: 160px;
    overflow: hidden;
    background: #E8D4D4;
}
.hk-trend-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.hk-trend-card--section:hover .hk-trend-card-img img {
    transform: scale(1.04);
}
.hk-trend-card-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hk-trend-card-name {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hk-trend-card-meta {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hk-trend-card-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 4px;
}
.hk-trending-actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
@media (min-width: 768px) {
    .hk-trending-scroll-row {
        scroll-padding-left: max(16px, calc((100vw - 1140px) / 2 + 15px));
        padding-left: max(16px, calc((100vw - 1140px) / 2 + 15px));
        padding-right: max(16px, calc((100vw - 1140px) / 2 + 15px));
    }
    .hk-trend-card--section {
        flex: 0 0 260px;
        max-width: 280px;
    }
}
@media (min-width: 992px) {
    .hk-trend-card--section {
        flex: 0 0 240px;
    }
}

@media (min-width: 1200px) {
    .hk-trend-card--section {
        flex: 0 0 240px;
    }
}
/* ═══ RESPONSIVE ═══ */
@media (max-width: 991px) {
    body.hk-body { padding-top: 73px; }
    :root { --header-h: 73px; }
    .hk-mobile-only { display: block !important; }
    .hk-desktop-only,
    section.hk-desktop-only { display: none !important; }

    .hk-header {
        z-index: 9999;
        background: rgba(255, 255, 255, 0.96);
        border-bottom: 1px solid rgba(153, 27, 27, 0.16);
        box-shadow: 0 4px 20px rgba(26, 26, 26, 0.1);
    }
    .hk-header-shell {
        height: calc(var(--header-h) - 3px);
    }
    .hk-header-desktop { display: none !important; }
    .hk-header-mobile {
        display: grid;
        grid-template-columns: 40px minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px;
        height: 100%;
        width: 100%;
    }
    .hk-header-mobile .hk-menu-toggle {
        justify-self: start;
        align-items: flex-start;
        width: 38px;
        height: 38px;
        padding: 8px;
        gap: 4px;
        border-radius: 10px;
    }
    .hk-header-mobile .hk-menu-toggle span {
        height: 2px;
    }
    .hk-header-mobile .hk-menu-toggle span:nth-child(1),
    .hk-header-mobile .hk-menu-toggle span:nth-child(3) { width: 18px; }
    .hk-header-mobile .hk-menu-toggle span:nth-child(2) { width: 11px; }
    .hk-header-mobile .hk-menu-toggle.active span { width: 18px; }
    .hk-header-mobile .hk-menu-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .hk-header-mobile .hk-menu-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .hk-header-mobile .hk-logo {
        justify-self: center;
        min-width: 0;
        text-align: center;
    }
    .hk-header-mobile .hk-logo img {
        height: 40px;
        max-width: min(170px, 48vw);
        margin: 0 auto;
    }
    .hk-header-mobile .hk-post-property-btn {
        justify-self: end;
        padding: 8px 12px;
        font-size: 11px;
    }
    .hk-nav-overlay { display: block; }
    .hk-mobile-drawer { display: flex; }

    .hk-search-fields { grid-template-columns: 1fr 1fr; }
    .hk-search-fields .hk-btn-search { grid-column: 1 / -1; }
    .hk-why-grid, .hk-cat-grid, .hk-luxury-grid, .hk-testimonial-grid, .hk-blog-grid { grid-template-columns: repeat(2, 1fr); }
    .hk-hotspot-wrap { grid-template-columns: 1fr; }
    .hk-launch-grid { grid-template-columns: repeat(2, 1fr); }
    .hk-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hk-contact-split { grid-template-columns: 1fr; }
    .hk-sell-cta-wrap { grid-template-columns: 1fr; }
    .hk-hero h1 { font-size: 36px; }
    .hk-hero {
        min-height: auto;
        padding: 18px 0 16px;
        overflow: visible;
    }
    .hk-hero .container {
        width: 100% !important;
        max-width: 100% !important;
        min-height: auto;
        display: block;
        padding-left: 16px;
        padding-right: 16px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
    .hk-hero-layout {
        min-height: auto;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .hk-hero-mobile-headline {
        order: 0;
        width: 100%;
        max-width: 100%;
        padding: 8px 4px 0;
        margin-bottom: 2px;
    }
    .hk-hero-model {
        order: 1;
        display: flex !important;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: auto;
        min-height: 0 !important;
        margin: 4px auto -24px;
        pointer-events: none;
        overflow: visible;
    }
    .hk-hero-model--rise {
        animation-name: hkHeroModelRiseMobile;
    }
    @keyframes hkHeroModelRiseMobile {
        from {
            opacity: 0;
            transform: translateY(110px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .hk-hero-model picture {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        width: 100%;
        max-width: min(340px, 88vw);
        margin: 0 auto;
        background: transparent;
    }
    .hk-hero-model img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: min(300px, 42vh);
        min-height: 0 !important;
        margin: 0 auto;
        object-fit: contain;
        object-position: center bottom;
        filter: none;
        -webkit-filter: none;
        mix-blend-mode: normal;
    }
    .hk-hero-model-caption { display: none !important; }
    .hk-hero-main {
        order: 2;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding-bottom: 0;
        margin-top: -2px;
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .hk-hero-search {
        order: 1;
        position: relative;
        z-index: 4;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        padding: 12px 14px;
        margin-bottom: 18px;
        border-radius: 12px;
    }
    .hk-hero-mobile-localities { order: 2; width: 100%; max-width: 100%; min-width: 0; margin-top: 4px; }
    .hk-hero-content { display: none; }
    .hk-search-tabs { margin-bottom: 10px; gap: 6px; }
    .hk-search-tab { padding: 8px 12px; font-size: 13px; flex: 1; text-align: center; min-width: 0; }
    .hk-search-fields,
    .hk-search-fields-buy {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
        max-width: 100%;
    }
    .hk-search-field { min-width: 0; width: 100%; }
    .hk-search-fields .form-control { width: 100%; max-width: 100%; box-sizing: border-box; }
    .hk-search-fields .hk-btn-search {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        white-space: nowrap;
    }
    .hk-field-label {
        display: block;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--secondary);
        margin-bottom: 4px;
    }
    .hk-search-fields .form-control { height: 40px; font-size: 13px; padding: 0 10px; }
    .hk-hero-search .hk-btn-search {
        height: 44px;
        font-size: 14px;
        padding: 0 12px;
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    body.hk-body { padding-top: 73px; }
    :root { --header-h: 73px; }
    .hk-logo img { height: 38px; max-width: 160px; }
    .hk-section { padding: 56px 0; }
    .hk-section-head h2 { font-size: 26px; }
    .hk-hero { padding: 14px 0 14px; }
    .hk-hero-model { margin: 2px auto -20px; }
    .hk-hero-model picture { max-width: min(320px, 90vw); }
    .hk-hero-model img { max-height: min(260px, 38vh); }
    .hk-hero-mobile-headline h1 { font-size: clamp(16px, 4.4vw, 20px); margin-bottom: 4px; }
    .hk-hero-search { padding: 10px 12px; margin-bottom: 22px; }
    .hk-hero-mobile-block { margin-top: 10px; }
    .hk-hero-mobile-localities { margin-top: 6px; }
    .hk-hero-trend-card { flex-basis: 136px; padding: 8px 10px; }
    .hk-hero-trend-card--image { flex-basis: 168px; padding: 0; }
    .hk-trending-actions {
        flex-wrap: nowrap;
        gap: 8px;
        justify-content: stretch;
    }
    .hk-trending-actions .hk-btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 10px 8px;
        font-size: 12px;
    }
    .hk-luxury-grid, .hk-testimonial-grid, .hk-blog-grid, .hk-launch-grid { grid-template-columns: 1fr; }
    .hk-why-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hk-why-card { padding: 22px 14px; }
    .hk-why-icon { width: 52px; height: 52px; font-size: 22px; margin-bottom: 14px; }
    .hk-why-card h4 { font-size: 14px; margin-bottom: 8px; }
    .hk-why-card p { font-size: 12px; line-height: 1.5; }
    .hk-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hk-cat-card { padding: 22px 14px; }
    .hk-cat-card i { font-size: 28px; margin-bottom: 10px; }
    .hk-cat-card span { font-size: 14px; }
    .hk-sell-cta { padding: 56px 0; }
    .hk-sell-cta-wrap {
        grid-template-columns: 1fr;
        padding: 24px 18px;
        gap: 18px;
    }
    .hk-sell-feature-grid { grid-template-columns: 1fr; }
    .hk-sell-cta-panel { padding: 22px 18px; }
    .hk-stats-grid { grid-template-columns: 1fr 1fr; }
    .hk-stat-item h3 { font-size: 36px; }
    .hk-hotspot-item { grid-template-columns: 1fr; gap: 8px; text-align: left; }
    .hk-hotspot-stat { text-align: left; }
    .hk-contact-form-wrap { padding: 32px 24px; }
    .hk-prop-actions { flex-direction: column; }
    body.nav-open { overflow: hidden; }
}

@media (max-width: 480px) {
    .hk-stats-grid { grid-template-columns: 1fr; }
    .hk-chips { gap: 8px; }
    .hk-chip { padding: 8px 16px; font-size: 13px; }
}

@media (max-width: 767px) and (max-height: 740px) {
    .hk-hero { padding: 10px 0 10px; }
    .hk-hero-mobile-headline { padding-top: 6px; }
    .hk-hero-model { margin: 0 auto -18px; }
    .hk-hero-model picture { max-width: min(300px, 92vw); }
    .hk-hero-model img { max-height: min(240px, 36vh); }
    .hk-hero-mobile-headline h1 { font-size: 16px; margin-bottom: 6px; }
    .hk-hero-search { padding: 8px 10px; }
    .hk-search-tabs { margin-bottom: 8px; }
    .hk-search-tab { padding: 7px 10px; font-size: 12px; }
    .hk-search-fields .form-control { height: 36px; font-size: 12px; }
    .hk-hero-search .hk-btn-search { height: 38px; font-size: 13px; }
    .hk-hero-mobile-block { margin-top: 6px; }
    .hk-hero-mobile-title { font-size: 11px; margin-bottom: 6px; }
    .hk-hero-trend-card { flex-basis: 124px; padding: 7px 9px; }
    .hk-hero-trend-card--image { flex-basis: 156px; padding: 0; }
    .hk-hero-trend-name { font-size: 12px; }
}

/* ═══ PROPERTY TOOLS ═══ */
.hk-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.hk-tools-grid-full { grid-template-columns: repeat(3, 1fr); }
.hk-tool-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 28px 24px;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid #E8D4D4;
    box-shadow: var(--shadow);
    text-decoration: none !important;
    color: var(--text);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    min-height: 100%;
}
.hk-tool-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26, 26, 26, 0.12);
    border-color: var(--gold);
    color: var(--text);
}
.hk-tool-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--brand-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
}
.hk-tool-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--secondary);
}
.hk-tool-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
    flex: 1;
}
.hk-tool-card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

/* ═══ Owner Services ═══ */
.hk-owner-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.hk-owner-service-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100%;
    padding: 30px 26px;
    background: var(--white);
    border: 1px solid rgba(232, 237, 242, 0.95);
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-decoration: none !important;
    color: var(--text);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.hk-owner-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(26, 26, 26, 0.12);
    border-color: rgba(47, 128, 148, 0.35);
    color: var(--text);
}
.hk-owner-service-card.is-featured {
    border-color: rgba(153, 27, 27, 0.45);
    background: linear-gradient(180deg, rgba(229, 57, 53, 0.08) 0%, #fff 42%);
}
.hk-owner-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--brand-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
}
.hk-owner-service-card.is-featured .hk-owner-service-icon {
    background: var(--gold-gradient);
    color: #FFFFFF;
}
.hk-owner-service-card h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
    color: var(--secondary);
}
.hk-owner-service-card p {
    margin: 0;
    flex: 1;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-muted);
}
.hk-owner-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}
.hk-owner-service-card.is-featured .hk-owner-service-link {
    color: var(--gold-dark);
}

.hk-tool-section { margin-bottom: 40px; }
.hk-tool-section h2 {
    font-size: 24px;
    color: var(--secondary);
    margin: 0 0 18px;
}
.hk-tool-intro p { margin-bottom: 16px; line-height: 1.75; color: var(--text); }
.hk-tool-calc-wrap {
    background: var(--white);
    border-radius: 14px;
    padding: 28px;
    border: 1px solid #E8D4D4;
    box-shadow: var(--shadow);
}
.hk-calc-form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.hk-calc-form .form-control { height: 46px; margin-bottom: 16px; border-radius: 8px; }
.hk-calc-result {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 8px;
    padding-top: 20px;
    border-top: 2px solid var(--gold);
}
.calc-result-item {
    background: linear-gradient(135deg, rgba(47,128,148,0.08), rgba(40,73,103,0.06));
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}
.calc-result-item span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.calc-result-item strong {
    display: block;
    font-size: 20px;
    color: var(--secondary);
    font-family: 'Poppins', sans-serif;
}
.hk-tool-formula ul { padding-left: 20px; }
.hk-tool-formula code { background: #f0f4f8; padding: 2px 8px; border-radius: 4px; }
.hk-tool-benefits { list-style: none; padding: 0; margin: 0; }
.hk-tool-benefits li {
    padding: 10px 0;
    border-bottom: 1px solid #E8D4D4;
    color: var(--text);
}
.hk-tool-benefits li i { color: var(--gold); margin-right: 10px; }
.hk-tools-related {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.hk-tool-related-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid #E8D4D4;
    border-radius: 10px;
    text-decoration: none !important;
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
}
.hk-tool-related-card:hover { border-color: var(--gold); color: var(--primary); }
.hk-tool-related-card i { color: var(--primary); width: 20px; text-align: center; }
.hk-tool-links { display: flex; flex-wrap: wrap; gap: 10px; }
.hk-tool-cta {
    background: var(--brand-gradient);
    color: var(--white);
    border-radius: 16px;
    padding: 36px 32px;
    text-align: center;
}
.hk-tool-cta h3 { color: var(--white); margin: 0 0 10px; font-size: 24px; }
.hk-tool-cta p { opacity: 0.9; margin-bottom: 20px; }
.hk-tool-cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.hk-tool-sidebar {
    background: var(--white);
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #E8D4D4;
    box-shadow: var(--shadow);
    position: sticky;
    top: calc(var(--header-h) + 20px);
}
.hk-tool-sidebar h4 { margin: 0 0 16px; color: var(--secondary); font-size: 16px; }
.hk-tool-sidebar ul { list-style: none; padding: 0; margin: 0; }
.hk-tool-sidebar li { border-bottom: 1px solid #E8D4D4; }
.hk-tool-sidebar li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
}
.hk-tool-sidebar li a.active,
.hk-tool-sidebar li a:hover { color: var(--primary); font-weight: 600; }
.hk-tool-sidebar li a i { width: 18px; text-align: center; color: var(--gold); }
.hk-breadcrumb { font-size: 13px; margin-bottom: 12px; opacity: 0.85; }
.hk-breadcrumb a { color: var(--secondary); }
.page-sub { font-size: 17px; opacity: 0.85; margin-top: 10px; max-width: 640px; }

@media (max-width: 991px) {
    .hk-tools-grid, .hk-tools-grid-full { grid-template-columns: repeat(2, 1fr); }
    .hk-owner-services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .hk-tools-grid, .hk-tools-grid-full { grid-template-columns: 1fr; }
    .hk-tools-related { grid-template-columns: 1fr; }
    .hk-tool-calc-wrap { padding: 20px 16px; }
    .hk-calc-result { grid-template-columns: 1fr; }
    .hk-tool-sidebar { position: static; margin-top: 32px; }
}

/* Admin login & leads */
.hk-admin-nav { position: relative; }
.hk-admin-nav-toggle { position: relative; }
.hk-admin-nav-badge,
.hk-admin-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    margin-left: 6px;
    border-radius: 999px;
    background: var(--gold);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}
.hk-admin-nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 210px;
    background: #fff;
    border: 1px solid #E8D4D4;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(26, 26, 26, 0.12);
    padding: 8px;
    z-index: 1200;
}
.hk-admin-nav-menu.is-open { display: block; }
.hk-admin-nav-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}
.hk-admin-nav-menu a:hover { background: #F4F8FA; color: var(--primary); }
.hk-admin-leads-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}
.hk-admin-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid #D7E2EA;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}
.hk-admin-tab.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.hk-admin-badge--muted { background: #94A3B8; }
.hk-admin-login-panel,
.hk-admin-leads-table-wrap {
    background: #fff;
    border: 1px solid #E8D4D4;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.06);
}
.hk-admin-login-panel .panel-body { padding: 28px; }
.hk-admin-leads-table-wrap { padding: 16px; }
.hk-admin-leads-table { margin-bottom: 0; }
.hk-admin-details { min-width: 220px; max-width: 360px; font-size: 13px; line-height: 1.5; }
.hk-admin-source {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: #EEF6F8;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
}
.hk-admin-empty { margin-top: 8px; }

.hk-admin-stats-section { padding-top: 0; }
.hk-admin-period-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 20px;
}
.hk-admin-period-tab {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #D8E3EA;
    background: #fff;
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}
.hk-admin-period-tab.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.hk-admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.hk-admin-stat-card {
    background: #fff;
    border: 1px solid #E8D4D4;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.06);
}
.hk-admin-stat-label {
    display: block;
    font-size: 13px;
    color: #64748B;
    margin-bottom: 8px;
}
.hk-admin-stat-value {
    display: block;
    font-size: 32px;
    line-height: 1.1;
    color: var(--secondary);
    margin-bottom: 6px;
}
.hk-admin-stat-note {
    display: block;
    font-size: 12px;
    color: #94A3B8;
}
.hk-admin-panel {
    background: #fff;
    border: 1px solid #E8D4D4;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.06);
}
.hk-admin-panel-head h2 {
    margin: 0 0 6px;
    font-size: 20px;
    color: var(--secondary);
}
.hk-admin-panel-head p {
    margin: 0 0 16px;
    color: #64748B;
    font-size: 14px;
}
.hk-admin-share-bar {
    position: relative;
    height: 8px;
    background: #EEF2F6;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 4px;
    min-width: 80px;
}
.hk-admin-share-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border-radius: 999px;
}
.hk-admin-daily-table { margin-bottom: 0; }
.hk-admin-referrer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.hk-admin-referrer-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #EEF2F6;
    font-size: 14px;
}
.hk-admin-referrer-list li:last-child { border-bottom: 0; }
.hk-admin-details code {
    display: inline-block;
    margin-top: 4px;
    padding: 2px 6px;
    border-radius: 6px;
    background: #FAFAFA;
    color: #64748B;
    font-size: 12px;
}
@media (max-width: 991px) {
    .hk-admin-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575px) {
    .hk-admin-stats-grid { grid-template-columns: 1fr; }
    .hk-admin-stat-value { font-size: 26px; }
}
