:root {
    --kg-navy: #00172d;
    --kg-navy-soft: #082642;
    --kg-gold: #d79a16;
    --kg-gold-2: #f4bd3b;
    --kg-text: #152033;
    --kg-muted: #6f7887;
    --kg-border: #e5e9ee;
    --kg-bg: #f7f8fa;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #fff;
    color: var(--kg-text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--kg-gold);
}

button,
input,
select,
textarea,
.btn,
.post-listing-btn,
.btn-gold,
.btn-outline-gold,
.search-submit {
    letter-spacing: 0;
}

main > section,
.site-footer {
    scroll-margin-top: 120px;
}

.site-header {
    position: absolute;
    z-index: 30;
    width: 100%;
    color: #fff;
}

.top-strip {
    min-height: 42px;
    display: flex;
    align-items: center;
    background: rgba(0, 18, 35, .9);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-size: 13px;
}

.top-contact,
.top-social {
    display: flex;
    align-items: center;
    gap: 22px;
}

.top-contact i,
.top-social i {
    color: var(--kg-gold-2);
}

.main-nav {
    min-height: 112px;
    background: rgba(0, 23, 45, .92);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.navbar-brand img {
    width: 110px;
    height: auto;
}

.main-nav .nav-link {
    position: relative;
    color: #fff;
    font-weight: 800;
}

.main-nav .nav-link.active,
.main-nav .nav-link:hover {
    color: var(--kg-gold-2);
}

.main-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -18px;
    height: 2px;
    background: var(--kg-gold);
}

.post-listing-btn,
.btn-gold,
.search-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 26px;
    border: 0;
    border-radius: 5px;
    color: #111827;
    background: linear-gradient(180deg, #f7bd38, #d99712);
    font-weight: 900;
    line-height: 1.2;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.post-listing-btn:hover,
.btn-gold:hover,
.search-submit:hover {
    color: #111827;
    filter: brightness(.98);
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 26px;
    border: 1px solid var(--kg-gold);
    border-radius: 5px;
    color: #fff;
    font-weight: 900;
}

.home-hero {
    position: relative;
    min-height: 590px;
    padding-top: 158px;
    color: #fff;
    background: var(--kg-navy);
    overflow: hidden;
}

.hero-slide-stack,
.hero-slide-bg,
.hero-slide-bg::after {
    position: absolute;
    inset: 0;
}

.hero-slide-stack {
    z-index: 0;
}

.hero-slide-bg {
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity .7s ease, transform 6s ease;
}

.hero-slide-bg::after {
    content: "";
    background:
        linear-gradient(90deg, rgba(0, 18, 35, .96) 0%, rgba(0, 18, 35, .76) 34%, rgba(0, 18, 35, .28) 66%, rgba(0, 18, 35, .84) 100%),
        linear-gradient(180deg, rgba(0, 18, 35, .14), rgba(0, 18, 35, .32));
}

.hero-slide-bg.active {
    opacity: 1;
    transform: scale(1);
}

.page-slider-hero {
    position: relative;
    min-height: 330px;
    display: grid;
    align-items: center;
    padding-top: 200px;
    padding-bottom: 46px;
    color: #fff;
    background: var(--kg-navy);
    overflow: hidden;
}

.page-slider-content {
    position: relative;
    z-index: 2;
}

.page-slider-content h1 {
    max-width: 720px;
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5vw, 68px);
    font-weight: 900;
    line-height: .95;
}

.page-slider-content p {
    max-width: 560px;
    margin: 0;
    line-height: 1.65;
    font-weight: 700;
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 430px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 32px;
}

.hero-copy {
    max-width: 680px;
}

.eyebrow {
    color: var(--kg-gold-2);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.hero-copy h1 {
    max-width: 620px;
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 900;
    line-height: .9;
}

.hero-copy [data-hero-eyebrow],
.hero-copy [data-hero-title],
.hero-copy [data-hero-text],
.hero-actions a {
    transition: opacity .18s ease, transform .18s ease;
}

.home-hero.is-changing .hero-copy [data-hero-eyebrow],
.home-hero.is-changing .hero-copy [data-hero-title],
.home-hero.is-changing .hero-copy [data-hero-text],
.home-hero.is-changing .hero-actions a {
    opacity: .35;
    transform: translateY(4px);
}

.hero-copy p:not(.eyebrow) {
    max-width: 520px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 18, 35, .35);
    backdrop-filter: blur(5px);
    transform: translateY(-50%);
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.hero-arrow:hover {
    border-color: var(--kg-gold-2);
    background: rgba(0, 18, 35, .62);
    transform: translateY(-50%) scale(1.04);
}

.hero-arrow.left { left: 18px; }
.hero-arrow.right { right: 18px; }

.hero-dots {
    position: absolute;
    bottom: 34px;
    left: 50%;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dots button {
    width: 13px;
    height: 13px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, .88);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: width .18s ease, background .18s ease, border-color .18s ease;
}

.hero-dots button.active {
    width: 30px;
    border-radius: 999px;
    border-color: var(--kg-gold);
    background: var(--kg-gold);
}

.filter-wrap {
    position: relative;
    z-index: 10;
    margin-top: 28px;
}

.filter-panel {
    padding: 14px 20px 18px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(0, 0, 0, .14);
}

.category-tabs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.category-tabs a {
    min-height: 34px;
    display: grid;
    place-items: center;
    color: #253046;
    background: #f4f5f7;
    border-radius: 5px;
    font-weight: 800;
}

.category-tabs a.active {
    color: #fff;
    background: var(--kg-navy);
}

.filter-grid {
    display: grid;
    grid-template-columns: 2fr 1.15fr 1.15fr 1.15fr 1.15fr 1fr;
    gap: 12px;
}

.filter-grid input,
.filter-grid select {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid #d9dee5;
    border-radius: 5px;
    background: #fff;
    color: #344052;
}

.search-field {
    position: relative;
}

.search-field i {
    position: absolute;
    top: 50%;
    right: 14px;
    color: #667085;
    transform: translateY(-50%);
}

.featured-section,
.about-video-grid,
.services-section,
.all-listings-section {
    padding-top: 30px;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
}

.section-head h2,
.services-section h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 900;
}

.section-head a,
.section-head span {
    color: #1f2937;
    font-weight: 800;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.home-listing-card,
.about-card,
.video-card,
.service-grid article,
.empty-state {
    border: 1px solid var(--kg-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
    overflow: hidden;
}

.home-listing-image {
    position: relative;
    display: block;
    height: 126px;
    overflow: hidden;
}

.home-listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-listing-image span {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 11px;
    border-radius: 5px;
    color: #fff;
    background: #229452;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-listing-card > div {
    padding: 14px 14px 15px;
}

.home-listing-card h3 {
    min-height: 36px;
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 900;
}

.home-listing-card p {
    margin: 0 0 8px;
    color: var(--kg-muted);
    font-size: 13px;
}

.listing-price-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.listing-price-row strong {
    font-weight: 900;
}

.listing-price-row em {
    color: #374151;
    font-style: normal;
    font-weight: 800;
}

.stats-band {
    margin-top: 36px;
    background: transparent;
    padding: 30px 0;
}

.stats-grid {
    background: #001b33;
    border-radius: 8px;
    padding: 24px 35px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.stats-grid div {
    display: grid;
    grid-template-columns: 48px auto;
    align-content: center;
    justify-content: center;
    column-gap: 16px;
    padding: 0 22px;
    color: #fff;
    border-right: 1px solid rgba(255,255,255,.45);
}

.stats-grid div:last-child {
    border-right: 0;
}

.stats-grid i {
    grid-row: span 2;
    align-self: center;
    justify-self: center;
    color: var(--kg-gold-2);
    font-size: 34px;
}

.stats-grid strong {
    font-size: 25px;
    line-height: 1;
}

.stats-grid span {
    color: rgba(255,255,255,.76);
}


.about-video-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 22px;
}

.about-card {
    padding: 20px;
}

.about-card h2 {
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 900;
}

.about-card p {
    color: #344052;
    line-height: 1.55;
}

.about-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 18px;
}

.about-icons span {
    display: grid;
    place-items: center;
    gap: 6px;
    min-height: 58px;
    color: #263244;
    border-right: 1px solid var(--kg-border);
    text-align: center;
    font-size: 12px;
    font-weight: 800;
}

.about-icons span:last-child {
    border-right: 0;
}

.about-icons i {
    color: var(--kg-navy);
    font-size: 21px;
}

.video-card {
    position: relative;
    min-height: 166px;
    color: #fff;
}

.video-card img {
    width: 100%;
    height: 100%;
    min-height: 166px;
    object-fit: cover;
    filter: brightness(.55);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border: 3px solid var(--kg-gold-2);
    border-radius: 50%;
    color: #fff;
    font-size: 38px;
    transform: translate(-50%, -50%);
}

.video-card div {
    position: absolute;
    left: 24px;
    bottom: 18px;
}

.video-card strong,
.video-card span {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1.1;
}

.services-section {
    padding-bottom: 8px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 14px;
}

.service-grid article {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-areas:
        "icon title"
        "icon text";
    align-items: center;
    column-gap: 16px;
    row-gap: 6px;
    min-height: 108px;
    padding: 18px 18px;
}

.service-grid i {
    grid-area: icon;
    color: var(--kg-gold);
    font-size: 34px;
    align-self: start;
    padding-top: 4px;
}

.service-grid strong {
    grid-area: title;
    display: block;
    min-width: 0;
    font-size: 16px;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: anywhere;
}

.service-grid span {
    grid-area: text;
    display: block;
    color: var(--kg-muted);
    font-size: 14px;
    line-height: 1.4;
    max-width: none;
    white-space: normal;
}

.all-listings-section {
    padding-bottom: 44px;
}

.listing-section-action {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.listing-section-action a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 28px;
    border: 1px solid var(--kg-gold);
    border-radius: 6px;
    background: linear-gradient(135deg, var(--kg-gold), var(--kg-gold-2));
    color: #07192b;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(196, 139, 22, .18);
}

.listing-section-action a:hover {
    color: #07192b;
    transform: translateY(-1px);
}

.site-header + main > .container.py-5 {
    padding-top: 190px !important;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 30px;
    color: var(--kg-muted);
    text-align: center;
}

.site-footer {
    margin-top: 24px;
    padding-top: 32px;
    color: #fff;
    background: var(--kg-navy);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr 1fr 1.45fr 1.35fr;
    gap: 28px;
}

.footer-logo {
    width: 142px;
    display: block;
    margin-bottom: 18px;
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 14px;
}

.footer-grid h3 {
    margin: 0 0 12px;
    color: var(--kg-gold-2);
    font-size: 16px;
    font-weight: 900;
}

.footer-grid a,
.footer-grid p {
    display: block;
    margin: 0 0 7px;
    color: rgba(255,255,255,.78);
    font-size: 13px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 22px;
    padding: 12px 0;
    color: rgba(255,255,255,.76);
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 13px;
}

.whatsapp-float {
    position: fixed;
    right: 26px;
    bottom: 74px;
    z-index: 1040;
    min-width: 286px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-radius: 999px;
    color: var(--wa-color, #fff);
    background: var(--wa-bg, #40c95b);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(64, 201, 91, .38);
}

.whatsapp-float.left-bottom {
    right: auto;
    left: 26px;
}

.whatsapp-float.right-middle {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}

.whatsapp-float.left-middle {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 26px;
    transform: translateY(-50%);
}

.whatsapp-float i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-size: 27px;
}

.whatsapp-float.icon-square i {
    border-radius: 8px;
}

.whatsapp-float.icon-bubble i {
    border-radius: 50% 50% 50% 8px;
}

.whatsapp-float.icon-minimal i {
    width: auto;
    height: auto;
    border: 0;
}

.whatsapp-float span,
.whatsapp-float strong,
.whatsapp-float small {
    display: block;
}

.whatsapp-float span {
    line-height: 1.2;
}

.whatsapp-float small {
    margin-top: 2px;
    opacity: .9;
    font-size: 12px;
    font-weight: 700;
}

.whatsapp-float em {
    margin-left: auto;
    padding: 9px 13px;
    border-radius: 999px;
    color: var(--wa-bg, #25d366);
    background: var(--wa-color, #fff);
    font-size: 12px;
    font-style: normal;
    white-space: nowrap;
}

.whatsapp-float:hover {
    color: var(--wa-color, #fff);
    filter: brightness(.96);
}

.whatsapp-float-close {
    position: fixed;
    right: 18px;
    bottom: 142px;
    z-index: 1041;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(15, 23, 42, .12);
    border-radius: 50%;
    color: #6b7280;
    background: #fff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .12);
}

.whatsapp-float-close.left-bottom {
    right: auto;
    left: 18px;
}

.whatsapp-float-close.right-middle {
    top: calc(50% - 54px);
    bottom: auto;
}

.whatsapp-float-close.left-middle {
    top: calc(50% - 54px);
    right: auto;
    bottom: auto;
    left: 18px;
}

.detail-panel,
.listing-card {
    border: 1px solid var(--kg-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(23, 32, 42, 0.06);
}

.listing-detail-page {
    padding-top: 190px;
    background: #fff;
}

.detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #5f6b7a;
    font-size: 13px;
    font-weight: 700;
}

.detail-breadcrumb strong {
    color: #243044;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(360px, .82fr);
    gap: 24px;
}

.gallery-card,
.detail-content-card,
.price-card,
.advisor-card {
    border: 1px solid var(--kg-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}

.gallery-card {
    padding: 0;
    box-shadow: none;
    border: 0;
}

.gallery-stage {
    position: relative;
    height: 520px;
    overflow: hidden;
    border-radius: 8px;
    background: #e9edf2;
}

.gallery-stage > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    gap: 8px;
}

.gallery-badges span {
    padding: 6px 12px;
    border-radius: 5px;
    color: #fff;
    background: #209452;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.gallery-badges span + span {
    background: #344153;
}

.gallery-nav,
.all-photos {
    position: absolute;
    border: 0;
}

.gallery-nav {
    top: 50%;
    z-index: 5;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #263244;
    background: rgba(255, 255, 255, .95);
    transform: translateY(-50%);
    cursor: pointer;
}

.gallery-nav.prev { left: 18px; }
.gallery-nav.next { right: 18px; }

.gallery-count {
    position: absolute;
    left: 18px;
    bottom: 16px;
    padding: 5px 10px;
    border-radius: 4px;
    color: #fff;
    background: rgba(0, 0, 0, .55);
    font-weight: 900;
}

.all-photos {
    right: 16px;
    bottom: 14px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 4px;
    color: #fff;
    background: rgba(0, 18, 35, .82);
    font-weight: 800;
}

.thumb-strip {
    display: grid;
    grid-template-columns: 26px repeat(6, minmax(0, 1fr)) 26px;
    gap: 10px;
    align-items: center;
    margin-top: 12px;
}

.thumb-nav {
    width: 26px;
    height: 74px;
    padding: 0;
    border: 0;
    border-radius: 6px;
    display: grid;
    place-items: center;
    color: #111827;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    transition: color .2s ease, background .2s ease;
}

.thumb-nav:hover {
    color: var(--kg-gold);
    background: rgba(198, 132, 7, .08);
}

.thumb-button {
    height: 74px;
    padding: 0;
    border: 3px solid transparent;
    border-radius: 7px;
    background: transparent;
    overflow: hidden;
    cursor: pointer;
}

.thumb-button:nth-of-type(n+8) {
    display: none;
}

.thumb-button.active {
    border-color: var(--kg-gold);
}

.thumb-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-link-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 14px 0;
}

.video-link-grid a {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid var(--kg-border);
    border-radius: 7px;
    background: #fff;
    font-weight: 800;
}

.video-link-grid i {
    color: #f21111;
    font-size: 35px;
}

.video-link-grid i.instagram {
    color: #d62976;
}

.video-link-grid span,
.video-link-grid strong {
    display: block;
}

.video-link-grid span {
    color: #667085;
    font-size: 13px;
}

.video-link-grid strong {
    color: #182235;
    font-size: 14px;
}

.detail-content-card {
    padding: 22px;
}

.detail-content-card h2,
.map-feature-grid h3,
.similar-section h2 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 900;
}

.detail-content-card h2 small {
    color: #5d6674;
    font-family: inherit;
    font-size: 15px;
}

.detail-content-card p {
    color: #2f3b4d;
    line-height: 1.65;
}

.description-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 28px;
    margin: 14px 0 22px;
    padding-bottom: 22px;
    border-bottom: 1px dashed #d9dee5;
}

.description-points span {
    color: #2d3748;
    font-weight: 700;
}

.description-points i {
    margin-right: 8px;
    color: #3cad65;
}

.map-feature-grid {
    display: grid;
    grid-template-columns: 1fr .82fr;
    gap: 28px;
}

.mini-map {
    position: relative;
    min-height: 130px;
    overflow: hidden;
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(226, 241, 235, .9), rgba(239, 244, 250, .92)),
        repeating-linear-gradient(35deg, transparent 0 22px, rgba(31, 41, 55, .08) 22px 24px);
}

.mini-map > i {
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--kg-navy);
    font-size: 48px;
    transform: translate(-50%, -50%);
}

.mini-map a {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 7px 12px;
    border-radius: 4px;
    color: #fff;
    background: rgba(0, 23, 45, .82);
    font-size: 12px;
    font-weight: 800;
}

.feature-pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.feature-pills span {
    min-height: 34px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid var(--kg-border);
    border-radius: 6px;
    color: #334155;
    font-weight: 800;
    font-size: 13px;
}

.feature-pills i {
    color: #57708d;
}

.price-card {
    padding: 22px;
}

.title-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.title-row h1 {
    margin: 0 0 6px;
    font-size: 25px;
    font-weight: 900;
}

.title-row p,
.title-row span {
    color: #5f6b7a;
    font-weight: 700;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}

.tag-row span {
    padding: 5px 10px;
    border: 1px solid #e4b658;
    border-radius: 4px;
    color: #2f3b4d;
    background: #fff8e8;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin: 12px 0 16px;
}

.price-row strong {
    font-size: 30px;
    font-weight: 900;
}

.price-row em {
    color: #0f172a;
    font-style: normal;
    font-size: 19px;
    font-weight: 900;
    text-align: right;
}

.price-row small {
    display: block;
    color: #6b7280;
    font-size: 12px;
}

.cta {
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
    border-radius: 5px;
    font-weight: 900;
}

.cta.whatsapp {
    color: #fff;
    background: #29a947;
}

.cta.phone {
    color: #fff;
    background: var(--kg-navy);
}

.cta.mail {
    color: var(--kg-gold);
    border: 1px solid var(--kg-gold);
    background: #fff;
}

.compact-detail-list {
    margin: 14px 0;
}

.compact-detail-list div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    min-height: 24px;
    border-bottom: 1px solid #e5e9ee;
}

.compact-detail-list dt {
    color: #4b5563;
    font-weight: 700;
}

.compact-detail-list dd {
    margin: 0;
    color: #111827;
    font-weight: 900;
    text-align: right;
}

.sidebar-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.sidebar-actions a {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 5px;
    color: #fff;
    background: var(--kg-navy);
    font-weight: 900;
}

.sidebar-actions a.gold {
    color: #fff;
    background: var(--kg-gold);
}

.advisor-card {
    position: relative;
    margin-top: 16px;
    padding: 22px;
    color: #fff;
    background: linear-gradient(140deg, #00172d, #082747);
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 142px;
    align-items: start;
    column-gap: 18px;
    row-gap: 8px;
}

.advisor-card h2 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
}

.advisor-card p {
    max-width: none;
    margin: 0 0 10px;
    color: rgba(255,255,255,.82);
    font-size: 13px;
    line-height: 1.55;
}

.advisor-card p i {
    color: var(--kg-gold-2);
    margin-right: 8px;
}

.advisor-avatar {
    width: 142px;
    height: 142px;
    border-radius: 7px;
    overflow: hidden;
    background: rgba(255,255,255,.96);
    box-shadow: 0 14px 30px rgba(0,0,0,.22);
}

.advisor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.advisor-card > strong {
    grid-column: 2;
    width: 142px;
    margin-top: -50px;
    padding: 8px 7px;
    border: 1px solid rgba(244, 189, 59, .6);
    border-radius: 5px;
    color: var(--kg-gold-2);
    text-align: center;
    font-size: 12px;
    line-height: 1.35;
}

.advisor-card footer {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 2px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.advisor-card footer span {
    color: rgba(255,255,255,.86);
    font-weight: 800;
}

.advisor-card footer i {
    color: var(--kg-gold-2);
    margin-right: 8px;
}

.similar-section {
    padding-top: 24px;
    padding-bottom: 28px;
}

.listings-page {
    background: #fff;
}

.listings-filter-shell {
    position: relative;
    z-index: 4;
    margin-top: 24px;
    margin-bottom: 22px;
}

.listings-filter-panel {
    padding: 16px 18px 18px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .16);
}

.listing-tabs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.listing-tabs a {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 5px;
    color: #263244;
    background: #f4f5f7;
    font-weight: 900;
}

.listing-tabs a.active {
    color: #fff;
    background: var(--kg-navy);
}

.listing-filter-grid {
    display: grid;
    grid-template-columns: 2fr 1.15fr 1.15fr 1.15fr 1.15fr .9fr;
    gap: 12px;
}

.listing-filter-grid input,
.listing-filter-grid select {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid #d9dee5;
    border-radius: 5px;
    background: #fff;
    color: #344052;
}

.listings-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding-top: 0;
    padding-bottom: 16px;
}

.listings-toolbar.clean {
    justify-content: flex-end;
    color: #1f2937;
    font-weight: 900;
}

.listing-index-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.listings-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 26px 0;
}

.listings-pagination a,
.listings-pagination span {
    min-width: 44px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid var(--kg-border);
    border-radius: 5px;
    color: #1f2937;
    background: #fff;
    font-weight: 900;
}

.listings-pagination a.active {
    color: #fff;
    background: var(--kg-navy);
}

.region-cta {
    display: grid;
    grid-template-columns: 82px 1fr 150px;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 16px;
    padding: 18px 28px;
    border: 1px solid var(--kg-gold);
    border-radius: 8px;
    background: #fff;
}

.region-cta > div:first-child {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    color: var(--kg-gold);
    font-size: 42px;
}

.region-cta h2 {
    margin: 0 0 5px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 900;
}

.region-cta p {
    margin: 0;
    color: #475569;
}

.region-cta a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 5px;
    color: #fff;
    background: var(--kg-gold);
    font-weight: 900;
}

.corporate-page {
    background: #fff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.55fr repeat(4, 1fr);
    gap: 18px;
    padding-top: 26px;
}

.gold-label {
    margin: 0 0 4px;
    color: var(--kg-gold);
    font-weight: 900;
}

.about-intro-grid h2 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.05;
}

.about-intro-grid p {
    color: #354155;
    line-height: 1.6;
}

.small-gold-btn {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 18px;
    border: 1px solid var(--kg-gold);
    border-radius: 4px;
    color: var(--kg-gold);
    font-weight: 900;
}

.value-card,
.contact-info-card,
.contact-form-card,
.whatsapp-contact,
.faq-card,
.why-card {
    border: 1px solid var(--kg-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
}

.value-card {
    min-height: 190px;
    padding: 26px 20px;
    text-align: center;
}

.value-card i {
    color: var(--kg-gold);
    font-size: 42px;
}

.value-card h3 {
    margin: 12px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 900;
}

.value-card p,
.value-card li {
    color: #354155;
}

.value-card ul {
    padding-left: 18px;
    text-align: left;
}

.corporate-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    margin-top: 26px;
    min-height: 82px;
    overflow: hidden;
    border-radius: 8px;
    color: #fff;
    background: var(--kg-navy);
}

.corporate-stats div {
    display: grid;
    grid-template-columns: 48px auto;
    align-content: center;
    justify-content: center;
    align-items: center;
    column-gap: 16px;
    padding: 0 22px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.35);
}

.corporate-stats div:last-child {
    border-right: 0;
}

.corporate-stats i {
    grid-row: span 2;
    align-self: center;
    justify-self: center;
    color: var(--kg-gold-2);
    font-size: 34px;
}

.corporate-stats strong {
    font-size: 25px;
    line-height: 1;
}

.corporate-stats span {
    color: rgba(255,255,255,.76);
}

.timeline-video-grid {
    display: grid;
    grid-template-columns: 1.25fr .9fr;
    gap: 24px;
    padding-top: 18px;
}

.timeline-video-grid h2,
.office-gallery h2,
.team-trust-grid h2,
.service-category-section h2,
.process-benefit-grid h2 {
    margin: 0 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 900;
}

.timeline-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    position: relative;
}

.timeline-row div {
    text-align: center;
}

.timeline-row i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin: 0 auto 10px;
    border: 1px solid #d9dee5;
    border-radius: 50%;
    color: var(--kg-navy);
    background: #fff;
}

.timeline-row strong {
    display: block;
    color: #2f3b4d;
    font-size: 18px;
}

.timeline-row span {
    color: #5f6b7a;
    font-size: 12px;
}

.corporate-video {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    color: #fff;
}

.corporate-video img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    filter: brightness(.52);
}

.corporate-video a {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 48px;
}

.corporate-video a i {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border: 3px solid var(--kg-gold);
    border-radius: 50%;
}

.corporate-video strong {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
}

.office-gallery,
.team-trust-grid,
.service-category-section,
.process-benefit-grid,
.contact-bottom-grid {
    padding-top: 22px;
}

.office-gallery > div {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.office-gallery img {
    width: 100%;
    height: 92px;
    object-fit: cover;
    border-radius: 6px;
}


.team-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.team-grid,
.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.trust-grid {
    grid-template-columns: repeat(4, 1fr);
}

.team-grid article,
.trust-grid article {
    padding: 12px;
    border: 1px solid var(--kg-border);
    border-radius: 8px;
    text-align: center;
}

.team-grid article div {
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: #eef2f6;
    color: var(--kg-navy);
    font-size: 46px;
}

.team-grid strong,
.team-grid span,
.trust-grid strong,
.trust-grid span,
.trust-grid em {
    display: block;
}

.trust-grid span {
    color: var(--kg-gold);
    font-weight: 900;
}


.service-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-category-grid article {
    min-height: 145px;
    padding: 22px 18px;
    border: 1px solid var(--kg-border);
    border-radius: 8px;
    background:
        linear-gradient(90deg, #fff 0%, rgba(255,255,255,.86) 52%, rgba(255,255,255,.35) 100%),
        var(--bg) center / cover no-repeat;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
}

.service-category-grid i {
    color: var(--kg-gold);
    font-size: 29px;
}

.service-category-grid h3 {
    margin: 8px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 900;
}

.service-category-grid p {
    max-width: 220px;
    color: #263244;
}

.process-benefit-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .9fr;
    gap: 26px;
}

.process-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.process-row article {
    text-align: center;
}

.process-row strong {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin: 0 auto 10px;
    border: 1px solid var(--kg-gold);
    border-radius: 50%;
    font-size: 22px;
}

.check-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.check-list li::before {
    content: "\F26A";
    margin-right: 8px;
    color: var(--kg-gold);
    font-family: bootstrap-icons;
}

.service-cta {
    display: grid;
    grid-template-columns: 1fr 230px;
    align-items: center;
    gap: 24px;
    margin-top: 22px;
    padding: 22px 270px 22px 260px;
    border-radius: 8px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(0,23,45,.94), rgba(0,23,45,.78)),
        url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1400&q=80") center / cover no-repeat;
}

.service-cta h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 900;
}

.service-cta a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 6px;
    color: #111827;
    background: var(--kg-gold-2);
    font-weight: 900;
}

.contact-grid {
    display: grid;
    grid-template-columns: .82fr 2fr;
    gap: 18px;
    padding-top: 22px;
}

.contact-info-card,
.contact-form-card,
.whatsapp-contact {
    padding: 22px;
}

.contact-info-card h2,
.contact-form-card h2,
.whatsapp-contact h2,
.faq-card h2,
.why-card h2 {
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 900;
}

.contact-info-card > div {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-info-card i,
.contact-cta-grid article > i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    color: var(--kg-gold);
    background: var(--kg-navy);
    font-size: 24px;
}

.contact-info-card strong,
.contact-info-card small {
    display: block;
}

.contact-info-card small {
    color: #6b7280;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid #d9dee5;
    border-radius: 5px;
}

.form-grid textarea {
    grid-column: 1 / -1;
    min-height: 110px;
    padding-top: 14px;
}

.kvkk {
    display: flex;
    gap: 8px;
    margin: 12px 0;
    color: #4b5563;
}

.contact-form-card button {
    width: 280px;
    min-height: 42px;
    float: right;
    border: 0;
    border-radius: 5px;
    color: #111827;
    background: var(--kg-gold);
    font-weight: 900;
}

.whatsapp-contact {
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: center;
}

.whatsapp-contact i {
    grid-row: span 3;
    color: #32bd55;
    font-size: 70px;
}

.whatsapp-contact a {
    max-width: 230px;
    min-height: 36px;
    display: grid;
    place-items: center;
    border-radius: 5px;
    color: #fff;
    background: #29a947;
    font-weight: 900;
}

.contact-map {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-radius: 8px;
    background: #e8edf3;
}

.contact-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-map div {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    max-width: 380px;
    padding: 10px 14px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 10px 22px rgba(15, 23, 42, .12);
}

.contact-map strong,
.contact-map span,
.contact-map a {
    display: block;
}

.contact-map a {
    margin-top: 6px;
    color: var(--kg-gold);
    font-weight: 900;
}

.contact-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding-top: 18px;
}

.contact-cta-grid article {
    display: grid;
    grid-template-columns: 72px 1fr;
    grid-template-areas:
        "icon title"
        "icon text"
        "icon action";
    gap: 12px;
    align-items: center;
    padding: 24px;
    border-radius: 8px;
    color: #fff;
    background: var(--kg-navy);
}

.contact-cta-grid article > i {
    grid-area: icon;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 2px solid var(--kg-gold);
    border-radius: 50%;
    background: rgba(215,154,22,.12);
    color: var(--kg-gold-2);
    font-size: 30px;
}

.contact-cta-grid h2 {
    grid-area: title;
    margin: 0;
    font-size: 21px;
    line-height: 1.15;
}

.contact-cta-grid p {
    grid-area: text;
    margin: 0;
    color: rgba(255,255,255,.82);
    line-height: 1.45;
}

.contact-cta-grid a {
    grid-area: action;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--kg-gold);
    border-radius: 6px;
    color: var(--kg-gold-2);
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.contact-bottom-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: 20px;
    padding-bottom: 30px;
}

.faq-card,
.why-card {
    padding: 22px;
    box-shadow: 0 12px 34px rgba(8, 25, 43, .07);
}

.contact-card-head {
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.contact-card-head > i {
    width: 52px;
    height: 52px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(196, 139, 22, .12);
    color: var(--kg-gold-2);
    font-size: 24px;
}

.contact-card-head h2 {
    margin: 0 0 4px;
}

.contact-card-head p {
    margin: 0;
    color: var(--kg-muted);
    line-height: 1.5;
}

.faq-card details {
    padding: 13px 14px;
    border: 1px solid var(--kg-border);
    border-radius: 8px;
    margin-bottom: 10px;
    background: #fff;
}

.faq-card summary {
    cursor: pointer;
    color: var(--kg-dark);
    font-weight: 800;
}

.faq-card details p {
    margin: 10px 0 0;
    color: var(--kg-muted);
    line-height: 1.6;
}

.why-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    align-content: start;
}

.why-card .contact-card-head {
    grid-column: 1 / -1;
}

.why-card span {
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--kg-border);
    border-radius: 8px;
    background: #fff;
    color: var(--kg-dark);
    font-weight: 800;
}

.why-card span i {
    color: var(--kg-gold-2);
    font-size: 18px;
    flex: 0 0 auto;
}


.listing-slider {
    overflow: hidden;
    border-radius: 8px;
    background: #eef1f3;
}

.listing-slider .carousel-item {
    height: min(60vh, 560px);
    min-height: 360px;
}

.listing-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.listing-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #17202a, #31465e);
    color: #d8b66a;
    font-size: 42px;
    font-weight: 800;
}

.listing-placeholder.large {
    min-height: 520px;
}

.detail-price,
.price {
    color: var(--kg-gold);
    font-weight: 900;
}

.content-text {
    color: #394552;
    line-height: 1.8;
}

.detail-list {
    display: grid;
    gap: 10px;
    margin: 0;
}

.detail-list div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #edf0f2;
}

.detail-list dt {
    color: #6c757d;
    font-weight: 600;
}

.detail-list dd {
    margin: 0;
    text-align: right;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .featured-grid,
    .stats-grid,
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-layout {
        grid-template-columns: 1fr;
    }

    .listing-index-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .listing-tabs,
    .listing-filter-grid,
    .about-intro-grid,
    .service-category-grid,
    .process-benefit-grid,
    .contact-grid,
    .contact-cta-grid,
    .contact-bottom-grid,
    .team-trust-grid,
    .timeline-video-grid,
    .region-cta {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-stage {
        height: 440px;
    }
}

@media (max-width: 900px) {
    .site-header {
        position: static;
        background: var(--kg-navy);
    }

    .top-strip .container,
    .top-contact,
    .top-social,
    .section-head,
    .footer-bottom {
        flex-direction: row;
        font-size: x-small;
    }

    .home-hero {
        padding-top: 30px;
    }

    .hero-content,
    .about-video-grid,
    .map-feature-grid,
    .filter-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .category-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .listing-detail-page {
        padding-top: 28px;
    }

    .page-slider-hero {
        min-height: 300px;
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .listings-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .listing-tabs,
    .listing-filter-grid,
    .about-intro-grid,
    .corporate-stats,
    .timeline-row,
    .office-gallery > div,
    .team-grid,
    .trust-grid,
    .service-category-grid,
    .process-benefit-grid,
    .process-row,
    .contact-grid,
    .form-grid,
    .contact-cta-grid,
    .contact-bottom-grid,
    .why-card,
    .region-cta {
        grid-template-columns: 1fr;
    }

    .corporate-stats div,
    .service-cta {
        grid-template-columns: 1fr;
    }

    .service-cta {
        padding: 22px;
    }

    .contact-form-card button {
        width: 100%;
        float: none;
    }

    .detail-breadcrumb {
        flex-wrap: wrap;
    }

    .gallery-stage {
        height: 320px;
    }

    .thumb-strip {
        grid-template-columns: 32px repeat(3, minmax(0, 1fr)) 32px;
    }

    .thumb-button:nth-of-type(n+5) {
        display: none;
    }

    .thumb-nav {
        width: 32px;
        height: 68px;
    }

    .video-link-grid,
    .description-points,
    .feature-pills,
    .sidebar-actions {
        grid-template-columns: 1fr;
    }

    .advisor-card p {
        max-width: none;
    }

    .advisor-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        row-gap: 8px;
    }

    .advisor-card > div:first-child {
        width: 100%;
    }

    .advisor-card p {
        justify-content: center;
    }

    .advisor-card p i {
        margin-right: 6px;
    }

    .advisor-avatar {
        width: 148px;
        height: 148px;
    }

    .advisor-card > strong {
        grid-column: 1;
        width: min(220px, 100%);
        margin-top: -2px;
    }

    .advisor-card footer {
        justify-content: center;
        gap: 14px 22px;
    }
}

@media (max-width: 576px) {
    .featured-grid,
    .stats-grid,
    .service-grid,
    .about-icons,

    .hero-actions {
        flex-direction: column;
    }

    .home-hero {
        min-height: auto;
    }
}

.title-meta-stack {
    display: grid;
    justify-items: end;
    gap: 5px;
    min-width: max-content;
}

.detail-view-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #536172;
    font-size: 13px;
    font-weight: 800;
}

.detail-view-count i {
    color: var(--kg-gold);
}

.listing-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 10px;
    color: #536172;
    font-size: 12px;
    font-weight: 800;
}

.listing-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.listing-card-meta i {
    color: var(--kg-gold);
}
/* top-strip-mobile-fix */
@media (max-width: 900px) {
    .top-strip {
        min-height: auto;
        padding: 7px 0;
    }

    .top-strip .container {
        flex-wrap: wrap;
        justify-content: center !important;
        row-gap: 6px !important;
        column-gap: 14px !important;
        text-align: center;
    }

    .top-contact,
    .top-social {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 14px;
        min-width: 0;
    }

    .top-contact a,
    .top-social a,
    .top-social span {
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .top-strip .container {
        flex-direction: column !important;
        align-items: center !important;
        gap: 6px !important;
    }

    .top-contact {
        width: 100%;
        gap: 5px 10px;
        font-size: 11px;
        line-height: 1.25;
    }

    .top-social {
        width: 100%;
        gap: 8px;
        font-size: 11px;
    }
}
.captcha-field {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto minmax(140px, 220px);
    align-items: center;
    gap: 10px;
    margin: 12px 0 4px;
    color: #334155;
    font-weight: 900;
}

.captcha-field span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 5px;
    color: var(--kg-navy);
    background: #fff8e8;
    border: 1px solid rgba(215, 154, 22, .32);
}

.captcha-field input {
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid #d9dee5;
    border-radius: 5px;
}

/* Global responsive hardening */
img,
svg,
video,
iframe {
    max-width: 100%;
}

input,
select,
textarea,
button {
    max-width: 100%;
}

@media (max-width: 1200px) {
    .filter-panel,
    .listing-filter-panel {
        overflow: hidden;
    }
}

@media (max-width: 900px) {
    .container {
        max-width: 100%;
    }

    .main-nav {
        min-height: auto;
    }

    .navbar-brand img {
        width: 92px;
    }

    .navbar-toggler {
        border-color: rgba(255,255,255,.28);
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 .18rem rgba(244, 189, 59, .25);
    }

    .navbar-toggler-icon {
        filter: invert(1) grayscale(1) brightness(1.8);
    }

    .navbar-collapse {
        padding: 14px 0 18px;
    }

    .navbar-nav {
        align-items: stretch !important;
        gap: 4px !important;
    }

    .main-nav .nav-link {
        padding: 10px 0;
    }

    .main-nav .nav-link.active::after {
        display: none;
    }

    .hero-arrow {
        width: 42px;
        height: 42px;
    }

    .hero-arrow.left {
        left: 10px;
    }

    .hero-arrow.right {
        right: 10px;
    }

    .hero-copy h1,
    .page-slider-content h1 {
        font-size: clamp(38px, 12vw, 54px);
        line-height: 1;
    }

    .hero-copy {
        max-width: min(100%, 620px);
        padding-inline: 20px;
    }

    .filter-wrap {
        margin-top: 18px;
    }

    .filter-panel,
    .listing-filter-panel {
        padding: 14px;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .home-listing-image {
        height: 180px;
    }

    .listing-price-row,
    .listing-card-meta,
    .detail-title-row {
        flex-wrap: wrap;
    }

    .title-meta-stack {
        justify-items: start;
        min-width: 0;
    }

    .detail-list div {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .detail-list dd {
        text-align: left;
    }

    .contact-card-head {
        grid-template-columns: 44px 1fr;
    }

    .contact-card-head > i {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    body {
        overflow-x: hidden;
    }

    .top-contact a,
    .top-social a,
    .top-social span,
    .footer-grid a,
    .footer-grid p {
        overflow-wrap: anywhere;
        white-space: normal;
    }

    .hero-content {
        min-height: 390px;
    }

    .hero-copy {
        padding-inline: 10px;
    }

    .hero-actions a,
    .btn-gold,
    .btn-outline-gold,
    .search-submit,
    .listing-section-action a {
        width: 100%;
    }

    .category-tabs {
        grid-template-columns: 1fr;
    }

    .filter-grid,
    .listing-filter-grid {
        gap: 10px;
    }

    .featured-grid,
    .service-grid,
    .corporate-stats,
    .office-gallery > div,
    .trust-grid,
    .team-grid,
    .why-card,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .home-listing-image {
        height: 210px;
    }

    .contact-cta-grid article,
    .whatsapp-contact,
    .region-cta,
    .service-cta {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .contact-info-card > div {
        grid-template-columns: 44px 1fr;
    }

    .contact-map div {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }

    .captcha-field {
        grid-template-columns: 1fr;
    }

    .site-footer {
        text-align: center;
    }

}
