/* Hari Kisna Realty — Premium Luxury Brand */

:root {
    --primary: #2F8094;
    --secondary: #284967;
    --gold: #C9941A;
    --gold-light: #F2C94C;
    --gold-dark: #8B6914;
    --gold-gradient: linear-gradient(135deg, #F0C850 0%, #C9941A 45%, #9A7209 100%);
    --white: #FFFFFF;
    --bg: #F8FAFC;
    --text: #284967;
    --text-muted: #5A6B7D;
    --glass: rgba(255, 255, 255, 0.82);
    --glass-border: rgba(255, 255, 255, 0.45);
    --shadow: 0 8px 32px rgba(40, 73, 103, 0.08);
    --header-h: 80px;
    --brand-gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

*, *::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: #1a2f42 !important;
    box-shadow: 0 4px 18px rgba(201, 148, 26, 0.45);
    border: 1px solid rgba(154, 114, 9, 0.35);
}
.hk-btn-gold:hover {
    background: linear-gradient(135deg, #FFD966 0%, #E0AD2A 50%, #B8860B 100%);
    box-shadow: 0 6px 24px rgba(201, 148, 26, 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-white { background: var(--white); color: var(--secondary) !important; }
.hk-btn-white:hover { background: var(--gold-light); color: #1a2f42 !important; }
.hk-btn-lg { padding: 14px 32px; font-size: 15px; }
.hk-btn-search {
    background: var(--gold-gradient);
    color: #1a2f42 !important;
    padding: 14px 36px;
    font-size: 15px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(201, 148, 26, 0.4);
    border: 1px solid rgba(154, 114, 9, 0.3);
}
.hk-btn-search:hover {
    background: linear-gradient(135deg, #FFD966 0%, #E0AD2A 50%, #B8860B 100%);
    box-shadow: 0 6px 26px rgba(201, 148, 26, 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: #1a2f42;
    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(201, 148, 26, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.35);
}
.hk-hero .hk-label-gold {
    display: inline-block;
    margin-bottom: 18px;
    color: #1a2f42 !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(242, 201, 76, 0.35); }

/* ═══ HEADER — Glass Sticky ═══ */
.hk-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid rgba(40, 73, 103, 0.08);
    box-shadow: 0 2px 16px rgba(40, 73, 103, 0.06);
    transition: box-shadow 0.3s;
}
.hk-header.scrolled {
    box-shadow: var(--shadow);
}
.hk-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    position: relative;
}
.hk-header-shell {
    position: relative;
    height: var(--header-h);
    overflow: hidden;
}
.hk-header-desktop {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 12px;
    width: 100%;
    height: var(--header-h);
}
.hk-header-mobile {
    display: none;
}
.hk-header-desktop .hk-logo { flex-shrink: 0; min-width: 0; }
.hk-header-desktop .hk-logo img {
    height: 44px;
    max-width: 180px;
}
.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: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    max-width: 100%;
}
.hk-nav--desktop .hk-nav-list li a {
    display: block;
    padding: 10px 8px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    border-radius: 6px;
    white-space: nowrap;
}
.hk-nav--desktop .hk-nav-list li a:hover {
    color: var(--primary);
    background: rgba(47, 128, 148, 0.08);
}
.hk-header-desktop .hk-header-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    background: #fff;
    padding-left: 6px;
}
.hk-header-desktop .hk-header-actions .hk-btn {
    padding-left: 14px;
    padding-right: 14px;
    font-size: 13px;
}

@media (min-width: 1200px) and (max-width: 1360px) {
    .hk-header-desktop .hk-logo img {
        height: 40px;
        max-width: 150px;
    }
    .hk-nav--desktop .hk-nav-list li a {
        padding: 10px 7px;
        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 10px;
        font-size: 12px;
    }
}

.hk-logo img { height: 48px; width: auto; max-width: 200px; }
.hk-menu-toggle {
    background: none;
    border: none;
    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;
}
.hk-menu-toggle span {
    display: block;
    height: 3px;
    background: #333645;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.25s ease, width 0.3s 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; }
.hk-menu-toggle.active span { width: 26px; }
.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 — mobile header CTA */
.hk-post-property-btn {
    display: inline-flex;
    position: relative;
    align-items: center;
    gap: 6px;
    padding: 8px 11px;
    background: #fff;
    color: #2F5D7C;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.2;
    border: 1px solid rgba(47, 93, 124, 0.22);
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 1px 4px rgba(40, 73, 103, 0.06);
    transition: border-color 0.2s, box-shadow 0.2s;
    overflow: visible;
    animation: pulsePostBtn 2.2s infinite ease-in-out;
}
.hk-pp-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28A745 0%, #20c997 100%);
    color: #fff;
    font-size: 10px;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(40, 167, 69, 0.35);
    animation: pulsePlus 1.6s infinite ease-in-out;
}
.hk-pp-plus .fa { font-size: 10px; }
@keyframes pulsePostBtn {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 1px 4px rgba(40, 73, 103, 0.06);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 0 14px rgba(40, 167, 69, 0.28), 0 2px 10px rgba(47, 128, 148, 0.12);
    }
}
@keyframes pulsePlus {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}
.hk-post-property-btn:hover,
.hk-post-property-btn:focus {
    color: #2F5D7C;
    text-decoration: none;
    border-color: rgba(47, 93, 124, 0.4);
    box-shadow: 0 0 16px rgba(40, 167, 69, 0.35), 0 2px 10px rgba(40, 73, 103, 0.12);
    animation: none;
    transform: scale(1.02);
}
.hk-header-desktop .hk-post-property-btn--desktop {
    padding: 9px 13px;
    font-size: 13px;
}

/* FREE badge — 99acres style */
@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(8, 19, 31, 0.45);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
body.nav-open .hk-nav-overlay {
    opacity: 1;
    visibility: visible;
}
.hk-mobile-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(300px, 86vw);
    background: #fff;
    border-right: 1px solid #E8EDF2;
    box-shadow: 8px 0 32px rgba(8, 19, 31, 0.12);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    overflow-x: hidden;
    overflow-y: auto;
    flex-direction: column;
    visibility: hidden;
    pointer-events: none;
}
.hk-mobile-drawer.open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

/* Navbar — tablet & mobile (hamburger menu up to 1199px) */
@media (max-width: 1199px) {
    body.hk-body { padding-top: 70px; }
    :root { --header-h: 70px; }

    .hk-header {
        z-index: 9999;
        height: 70px;
        background: #fff;
        border-bottom: none;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        padding-left: env(safe-area-inset-left, 0);
        padding-right: env(safe-area-inset-right, 0);
    }
    .hk-header .hk-header-shell.container {
        width: 100%;
        max-width: 100%;
        padding-left: max(16px, env(safe-area-inset-left, 0px));
        padding-right: max(16px, env(safe-area-inset-right, 0px));
        overflow: visible;
    }
    .hk-header-desktop { display: none !important; }
    .hk-header-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: clamp(10px, 2.8vw, 14px);
        height: 70px;
        width: 100%;
        min-width: 0;
    }
    .hk-header-mobile > .hk-menu-toggle,
    .hk-header-mobile > .hk-post-property-btn--mobile,
    .hk-header-mobile > .hk-account-toggle {
        flex-shrink: 0;
    }
    .hk-header-mobile > .hk-logo--mobile {
        flex: 1 1 auto;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 0;
        max-width: 48%;
    }
    .hk-header-mobile .hk-menu-toggle {
        align-items: flex-start;
        width: 40px;
        height: 40px;
        padding: 8px;
        gap: 5px;
        margin: 0;
        flex-shrink: 0;
    }
    .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 { align-items: center; }
    .hk-header-mobile .hk-menu-toggle.active span { width: 18px; }
    .hk-header-mobile .hk-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hk-header-mobile .hk-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .hk-header-mobile .hk-logo--mobile img {
        display: block;
        height: clamp(42px, 6.4vw, 48px);
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }
    .hk-header-mobile .hk-post-property-btn--mobile {
        padding: 8px 11px;
        font-size: clamp(10px, 2.8vw, 12px);
        white-space: nowrap;
        gap: 5px;
    }
    .hk-header-mobile .hk-pp-plus {
        width: 16px;
        height: 16px;
        font-size: 9px;
    }
    .hk-header-mobile .hk-pp-plus .fa { font-size: 9px; }
    .hk-header-mobile .hk-account-toggle {
        flex-shrink: 0;
    }
    .hk-nav-overlay { display: block; }
    .hk-mobile-drawer { display: flex; }

    .hk-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 16px 12px;
        border-bottom: 1px solid #EEF2F6;
        background: linear-gradient(180deg, #f8fafb 0%, #fff 100%);
        position: sticky;
        top: 0;
        z-index: 2;
    }
    .hk-drawer-title {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 16px;
        color: var(--secondary);
    }
    .hk-drawer-close {
        width: 36px;
        height: 36px;
        border: none;
        background: rgba(47, 128, 148, 0.1);
        color: var(--secondary);
        border-radius: 50%;
        font-size: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    .hk-nav-list--mobile {
        list-style: none;
        margin: 0;
        padding: 8px 12px 0;
        width: 100%;
    }
    .hk-nav-list--mobile li { width: 100%; }
    .hk-nav-list--mobile li a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 12px;
        color: var(--secondary);
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        border-radius: 10px;
    }
    .hk-nav-list--mobile li a i {
        width: 20px;
        text-align: center;
        color: var(--primary);
        font-size: 16px;
    }
    .hk-nav-list--mobile li a:hover,
    .hk-nav-list--mobile li a:focus {
        background: rgba(47, 128, 148, 0.08);
        color: var(--primary);
    }
    .hk-drawer-section-label {
        padding: 14px 20px 6px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: #94A3B8;
        list-style: none;
    }
    .hk-drawer-section-label:first-child {
        padding-top: 4px;
    }
    .hk-drawer-badge-new {
        display: inline-block;
        margin-left: 6px;
        padding: 2px 7px;
        border-radius: 999px;
        background: #FEE2E2;
        color: #DC2626;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        vertical-align: middle;
    }
    .hk-nav-list--mobile .free-badge--inline {
        margin-left: 6px;
    }
    .hk-nav-mobile-cta {
        padding: 16px 16px 24px;
        margin-top: auto;
        border-top: 1px solid #EEF2F6;
    }
    .hk-nav-mobile-cta .hk-btn { margin-bottom: 10px; }
    .hk-nav-mobile-cta .hk-btn:last-child { margin-bottom: 0; }
}

@media (max-width: 767px) {
    .hk-header .hk-header-shell.container {
        padding-left: max(14px, env(safe-area-inset-left, 0px));
        padding-right: max(14px, env(safe-area-inset-right, 0px));
    }
    .hk-header-mobile {
        gap: clamp(10px, 3vw, 14px);
    }
    .hk-header-mobile > .hk-logo--mobile {
        max-width: 48%;
    }
}

@media (max-width: 576px) {
    .hk-header .hk-header-shell.container {
        padding-left: max(12px, env(safe-area-inset-left, 0px));
        padding-right: max(12px, env(safe-area-inset-right, 0px));
    }
    .hk-header-mobile {
        gap: 10px;
    }
    .hk-header-mobile > .hk-logo--mobile {
        max-width: 44%;
    }
    .hk-header-mobile .hk-logo--mobile img {
        height: clamp(38px, 5.8vw, 42px);
    }
    .hk-header-mobile .hk-post-property-btn--mobile {
        padding: 7px 10px;
        font-size: 10px;
        gap: 4px;
    }
    .hk-header-mobile .hk-pp-plus {
        width: 15px;
        height: 15px;
    }
    .hk-header-mobile .hk-pp-plus .fa { font-size: 8px; }
    .hk-header-mobile .hk-menu-toggle {
        width: 38px;
        height: 38px;
        padding: 7px;
    }
    .hk-account-toggle--icon-only .hk-account-toggle-avatar {
        width: 34px;
        height: 34px;
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    .hk-header-mobile {
        gap: 8px;
    }
    .hk-header-mobile > .hk-logo--mobile {
        max-width: 42%;
    }
    .hk-header-mobile .hk-logo--mobile img {
        height: clamp(36px, 5.4vw, 40px);
    }
    .hk-header-mobile .hk-post-property-btn--mobile {
        padding: 7px 9px;
        font-size: 9.5px;
        gap: 4px;
    }
    .hk-header-mobile .hk-pp-plus {
        width: 14px;
        height: 14px;
    }
    .hk-header-mobile .hk-pp-plus .fa { font-size: 8px; }
    .hk-header-mobile .free-badge {
        top: -6px;
        right: -7px;
        font-size: 7px;
        padding: 1px 3px;
    }
    .hk-account-toggle--icon-only .hk-account-toggle-avatar {
        width: 32px;
        height: 32px;
        font-size: 10px;
    }
}

@media (max-width: 360px) {
    .hk-header .hk-header-shell.container {
        padding-left: max(10px, env(safe-area-inset-left, 0px));
        padding-right: max(10px, env(safe-area-inset-right, 0px));
    }
    .hk-header-mobile {
        gap: 7px;
    }
    .hk-header-mobile > .hk-logo--mobile {
        max-width: 40%;
    }
}

@media (min-width: 1200px) {
    .hk-header-mobile { display: none !important; }
    .hk-header-desktop { display: grid !important; }
    .hk-mobile-drawer,
    .hk-nav-overlay {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

/* ═══ 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, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
}
.hk-hero-main {
    position: relative;
    z-index: 4;
    max-width: none;
    padding-bottom: 0;
    overflow: visible;
    order: 1;
}
/* 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: 100%;
    min-height: calc(100vh - var(--header-h) - 48px);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    align-self: end;
    margin-bottom: -24px;
    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: flex-start;
    width: 100%;
    height: 100%;
}
.hk-hero-model img {
    width: auto;
    height: calc(100vh - var(--header-h) - 24px);
    max-height: 900px;
    min-height: 480px;
    max-width: 130%;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(0 24px 56px rgba(0, 0, 0, 0.28));
}
.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(120% + clamp(20px, 3vw, 40px));
        max-width: none;
    }
}

/* ═══ 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: #1a2f42;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(201, 148, 26, 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: #1a2f42;
    padding: 5px 14px; border-radius: 4px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.08em;
    box-shadow: 0 2px 10px rgba(201, 148, 26, 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, #E8EDF2) !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(201, 148, 26, 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, #eef3f7 0%, #f8fafb 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, #08131F 0%, #284967 52%, #2F8094 100%);
    box-shadow: 0 22px 50px rgba(8, 19, 31, 0.18);
    overflow: hidden;
    position: relative;
}
.hk-sell-cta-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(242, 201, 76, 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: #F2C94C; }
.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(242, 201, 76, 0.16);
    color: #F2C94C;
    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(8, 19, 31, 0.14);
}
.hk-sell-cta-badge {
    align-self: flex-start;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(47, 128, 148, 0.12);
    color: #2F8094;
    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: #284967;
}
.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: #2F8094;
    text-decoration: none !important;
    text-align: center;
}
.hk-sell-cta-help:hover { color: #C9941A; }
.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(8, 19, 31, 0.12);
    background: #08131F;
}
.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 #E8EDF2;
    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(201, 148, 26, 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(242, 201, 76, 0.4)); }
.hk-luxury-card h4 { color: var(--gold-light); margin: 0 0 10px; text-shadow: 0 1px 8px rgba(242, 201, 76, 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 #E8EDF2;
}
.hk-testimonial .stars { color: #F0C850; margin-bottom: 14px; text-shadow: 0 1px 4px rgba(201, 148, 26, 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 #E8EDF2;
    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 #E8EDF2;
    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: #e8edf2;
}
.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, #f6f8fa); }
.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; }
}

/* Branches — Head Office (Bhadaj) + Gota */
.hk-branches-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.hk-branch-card {
    background: var(--white);
    border-radius: 18px;
    padding: 28px 26px;
    border: 1px solid rgba(232, 237, 242, 0.95);
    box-shadow: 0 10px 36px rgba(40, 73, 103, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hk-branch-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(47, 128, 148, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.hk-branch-card h3 {
    margin: 0;
    font-size: 20px;
    color: var(--secondary);
}
.hk-branch-address,
.hk-branch-phone,
.hk-branch-hours {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text);
}
.hk-branch-address a,
.hk-branch-phone a {
    color: var(--secondary);
    text-decoration: none;
}
.hk-branch-address a:hover,
.hk-branch-phone a:hover {
    color: var(--primary);
}
.hk-branch-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}
.hk-branch-card .hk-contact-map {
    margin-top: 8px;
    border-radius: 14px;
    overflow: hidden;
    min-height: 220px;
}
.hk-branch-card .hk-contact-map iframe {
    min-height: 220px;
}
.hk-site-location-shared {
    margin-bottom: 28px;
}
.hk-site-location-list--inline {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin-bottom: 0;
}
.hk-branch-same-phone,
.hk-nap-note,
.hk-footer-branch-note,
.brand-seo-nap-note {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}
.hk-nap-branches {
    margin: 12px 0;
}
.hk-branch-address-line {
    margin-bottom: 12px;
}
.hk-branch-address-line strong {
    display: block;
    font-size: 13px;
    color: var(--secondary);
    margin-bottom: 4px;
}
.hk-branch-address-line a,
.hk-branch-address-line span {
    display: block;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text);
    text-decoration: none;
}
.hk-branch-address-line a:hover {
    color: var(--primary);
}
.hk-branches-compact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hk-branches-compact-item {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.hk-branches-compact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}
.hk-branches-compact-item strong {
    display: block;
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 6px;
}
.hk-branches-compact-item a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
}
.hk-branches-compact-item a:hover {
    color: var(--gold-light);
}
.hk-contact-shared-phone {
    margin: 0 0 18px;
    font-size: 15px;
}
.hk-contact-shared-phone a {
    color: var(--white);
    font-weight: 700;
}
.hk-footer-branch {
    margin-top: 10px;
}
.hk-footer-branch strong {
    display: block;
    color: var(--gold-light);
    font-size: 12px;
    margin-bottom: 4px;
}
.hk-footer-branch a {
    display: block;
    line-height: 1.55;
}
.brand-seo-branch-block {
    grid-column: 1 / -1;
    padding-top: 8px;
    border-top: 1px solid rgba(232, 237, 242, 0.95);
}
.brand-seo-contact-grid--branches {
    gap: 16px;
}
@media (max-width: 991px) {
    .hk-branches-grid { grid-template-columns: 1fr; }
}

.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 #E8EDF2;
    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 {
    display: inline-block;
    background: var(--white);
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}
.hk-footer-brand img {
    height: 48px;
    margin-bottom: 0;
    display: block;
    width: auto;
}
.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: 0;
    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); }

/* Footer SEO block — multi-location local SEO */
.hk-footer-seo {
    background: rgba(0, 0, 0, 0.22);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 36px 0 28px;
    margin-top: 8px;
}
.hk-footer-seo-brand {
    font-size: 16px;
    color: var(--white);
    margin: 0 0 22px;
}
.hk-footer-seo-offices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}
.hk-footer-seo-office {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 18px 16px;
}
.hk-footer-seo-office h6 {
    margin: 0 0 8px;
    color: var(--gold-light);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.hk-footer-seo-office-name {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}
.hk-footer-seo-address,
.hk-footer-seo-phone {
    margin: 0 0 6px;
    font-size: 13px;
    line-height: 1.55;
}
.hk-footer-seo-address a,
.hk-footer-seo-phone a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}
.hk-footer-seo-address a:hover,
.hk-footer-seo-phone a:hover {
    color: var(--gold-light);
}
.hk-footer-seo-zones {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-bottom: 18px;
}
.hk-footer-seo-zone {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}
.hk-footer-seo-zone strong {
    color: var(--gold-light);
    margin-right: 6px;
}
.hk-footer-seo-zone--wide {
    flex: 1 1 100%;
}
.hk-footer-seo-serving {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 14px;
}
.hk-footer-seo-area-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.hk-footer-seo-area-links a {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.hk-footer-seo-area-links a:hover {
    background: rgba(47, 128, 148, 0.35);
    color: var(--white);
    text-decoration: none;
}
.hk-footer-seo-copy {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 18px;
    max-width: 980px;
}
.hk-footer-seo-copy a {
    color: var(--gold-light);
}
.hk-footer-seo-brand-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}
.hk-footer-seo-brand-links a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
.hk-footer-seo-brand-links a:hover {
    color: var(--gold-light);
    text-decoration: none;
}
@media (max-width: 767px) {
    .hk-footer-seo-offices {
        grid-template-columns: 1fr;
    }
}

/* 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(40, 73, 103, 0.14);
    border-color: var(--primary);
    text-decoration: none;
    color: var(--secondary);
}
.hk-trend-card-img {
    display: block;
    height: 160px;
    overflow: hidden;
    background: #e8edf2;
}
.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-hero-model img {
        height: calc(100vh - var(--header-h));
        max-height: 920px;
    }
}
/* ═══ RESPONSIVE ═══ */
@media (max-width: 991px) {
    .hk-mobile-only { display: block !important; }
    .hk-desktop-only,
    section.hk-desktop-only { display: none !important; }

    .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;
        justify-content: center;
        align-items: flex-end;
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: auto;
        min-height: 0 !important;
        margin: 0 auto -18px;
        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: 100%;
    }
    .hk-hero-model img {
        display: block;
        width: auto;
        max-width: min(460px, 98vw);
        height: auto;
        max-height: 275px;
        min-height: 0 !important;
        margin: 0 auto;
        object-fit: contain;
        object-position: center bottom;
        transform: none;
        filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.22));
    }
    .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: 70px; }
    :root { --header-h: 70px; }
    .hk-section { padding: 56px 0; }
    .hk-section-head h2 { font-size: 26px; }
    .hk-hero { padding: 14px 0 14px; }
    .hk-hero-model { margin: 0 auto -16px; }
    .hk-hero-model img { max-height: 260px; max-width: min(440px, 97vw); }
    .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 -14px; }
    .hk-hero-model img { max-height: 228px; max-width: min(420px, 96vw); }
    .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 #E8EDF2;
    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(40, 73, 103, 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(40, 73, 103, 0.12);
    border-color: rgba(47, 128, 148, 0.35);
    color: var(--text);
}
.hk-owner-service-card.is-featured {
    border-color: rgba(201, 148, 26, 0.45);
    background: linear-gradient(180deg, rgba(242, 201, 76, 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: #1a2f42;
}
.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 #E8EDF2;
    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 #E8EDF2;
    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 #E8EDF2;
    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 #E8EDF2;
    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 #E8EDF2; }
.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 #E8EDF2;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(40, 73, 103, 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 #E8EDF2;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(40, 73, 103, 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 #E8EDF2;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(40, 73, 103, 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 #E8EDF2;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(40, 73, 103, 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: #F8FAFC;
    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; }
}
