/* =========================================================
   KIAAN PROPERTIES
   PREMIUM PROPERTY DETAIL PAGE
   STEP 1 - VISUAL DESIGN SYSTEM
   ========================================================= */

:root {
    --kp-primary: #172b4d;
    --kp-primary-dark: #0d1b32;
    --kp-gold: #c69a55;
    --kp-gold-light: #e3c58e;
    --kp-text: #1d2433;
    --kp-muted: #697386;
    --kp-light: #f6f7f9;
    --kp-white: #ffffff;
    --kp-border: #e7e9ee;
    --kp-success: #16845b;
    --kp-whatsapp: #25d366;
    --kp-shadow: 0 12px 35px rgba(15, 23, 42, .08);
    --kp-shadow-lg: 0 22px 60px rgba(15, 23, 42, .14);
    --kp-radius: 18px;
    --kp-radius-sm: 12px;
}


/* =========================================================
   GLOBAL PREMIUM DETAIL PAGE
   ========================================================= */

.premium-detail-page {
    color: var(--kp-text);
    background: #f8f9fb;
    font-family: "Inter", "Poppins", Arial, sans-serif;
    line-height: 1.65;
}

.premium-detail-page *,
.premium-detail-page *::before,
.premium-detail-page *::after {
    box-sizing: border-box;
}

.premium-detail-page img {
    max-width: 100%;
}

.premium-detail-page a {
    transition: all .25s ease;
}

.premium-detail-page h1,
.premium-detail-page h2,
.premium-detail-page h3,
.premium-detail-page h4,
.premium-detail-page h5,
.premium-detail-page h6 {
    color: var(--kp-text);
    font-weight: 700;
    line-height: 1.25;
}


/* =========================================================
   PREMIUM CONTAINER
   ========================================================= */

.kp-container {
    width: min(1380px, calc(100% - 40px));
    margin: 0 auto;
}

.kp-section {
    margin-bottom: 28px;
}


/* =========================================================
   PREMIUM CARDS
   ========================================================= */

.kp-card {
    background: var(--kp-white);
    border: 1px solid rgba(20, 30, 50, .06);
    border-radius: var(--kp-radius);
    box-shadow: var(--kp-shadow);
    overflow: hidden;
}

.kp-card:hover {
    box-shadow: var(--kp-shadow-lg);
}


/* =========================================================
   PREMIUM HERO
   ========================================================= */

.kp-hero {
    position: relative;
    overflow: hidden;
    background: var(--kp-primary-dark);
    border-radius: 0 0 24px 24px;
}

.kp-hero-gallery {
    position: relative;
    min-height: 560px;
    background: #101827;
}

.kp-hero-gallery img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

.kp-hero-gallery::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(5, 12, 24, .12) 0%,
            rgba(5, 12, 24, .10) 35%,
            rgba(5, 12, 24, .78) 100%
        );
    pointer-events: none;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.kp-hero-content {
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 45px 0 42px;
    color: #fff;
}

.kp-hero-content h1 {
    color: #fff;
    font-size: clamp(30px, 4vw, 52px);
    margin: 0 0 10px;
    letter-spacing: -.8px;
}

.kp-hero-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.88);
    font-size: 15px;
    margin-bottom: 20px;
}

.kp-hero-location i {
    color: var(--kp-gold-light);
}

.kp-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.kp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 50px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.kp-hero-badge.gold {
    background: rgba(198,154,85,.92);
    border-color: rgba(255,255,255,.15);
}


/* =========================================================
   HERO ACTIONS
   ========================================================= */

.kp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.kp-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 20px;
    border: 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    cursor: pointer;
    transition: all .25s ease;
}

.kp-btn-primary {
    color: #fff !important;
    background: var(--kp-gold);
}

.kp-btn-primary:hover {
    color: #fff !important;
    background: #ae823f;
    transform: translateY(-2px);
}

.kp-btn-dark {
    color: #fff !important;
    background: var(--kp-primary);
}

.kp-btn-dark:hover {
    color: #fff !important;
    background: var(--kp-primary-dark);
    transform: translateY(-2px);
}

.kp-btn-white {
    color: var(--kp-primary) !important;
    background: #fff;
}

.kp-btn-white:hover {
    color: var(--kp-primary) !important;
    transform: translateY(-2px);
}

.kp-btn-whatsapp {
    color: #fff !important;
    background: var(--kp-whatsapp);
}

.kp-btn-whatsapp:hover {
    color: #fff !important;
    background: #1ebc59;
    transform: translateY(-2px);
}


/* =========================================================
   HERO GALLERY CONTROLS
   ========================================================= */

.kp-gallery-counter {
    position: absolute;
    z-index: 10;
    right: 24px;
    top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 50px;
    background: rgba(0,0,0,.48);
    color: #fff;
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 600;
}

.kp-gallery-thumbnails {
    position: absolute;
    z-index: 10;
    right: 24px;
    bottom: 28px;
    display: flex;
    gap: 8px;
}

.kp-gallery-thumb {
    width: 70px;
    height: 52px;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,.7);
    cursor: pointer;
    opacity: .82;
    transition: all .25s ease;
}

.kp-gallery-thumb:hover,
.kp-gallery-thumb.active {
    opacity: 1;
    border-color: var(--kp-gold-light);
    transform: translateY(-3px);
}

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


/* =========================================================
   QUICK FACTS
   ========================================================= */

.kp-quick-facts {
    position: relative;
    z-index: 20;
    margin-top: -34px;
}

.kp-facts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--kp-shadow-lg);
    border: 1px solid var(--kp-border);
    overflow: hidden;
}

.kp-fact {
    position: relative;
    min-height: 108px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kp-fact:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: var(--kp-border);
}

.kp-fact-icon {
    color: var(--kp-gold);
    font-size: 17px;
    margin-bottom: 7px;
}

.kp-fact-label {
    color: var(--kp-muted);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 3px;
}

.kp-fact-value {
    color: var(--kp-text);
    font-size: 15px;
    font-weight: 700;
}


/* =========================================================
   CONTENT + SIDEBAR
   ========================================================= */

.kp-main-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.kp-content-column {
    min-width: 0;
}

.kp-sidebar-column {
    min-width: 0;
}


/* =========================================================
   SECTION HEADER
   ========================================================= */

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

.kp-section-title {
    margin: 0;
    font-size: 25px;
    letter-spacing: -.3px;
}

.kp-section-title::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin-top: 9px;
    border-radius: 4px;
    background: var(--kp-gold);
}

.kp-section-subtitle {
    color: var(--kp-muted);
    font-size: 14px;
    margin: 6px 0 0;
}


/* =========================================================
   PREMIUM CONTENT BOX
   ========================================================= */

.kp-content-box {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--kp-border);
    border-radius: var(--kp-radius);
    box-shadow: var(--kp-shadow);
}

.kp-content-box + .kp-content-box {
    margin-top: 24px;
}


/* =========================================================
   HIGHLIGHTS
   ========================================================= */

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

.kp-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--kp-light);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all .25s ease;
}

.kp-highlight:hover {
    background: #fff;
    border-color: var(--kp-gold-light);
    transform: translateY(-2px);
}

.kp-highlight-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(198,154,85,.12);
    color: var(--kp-gold);
}

.kp-highlight strong {
    display: block;
    font-size: 14px;
}

.kp-highlight span {
    color: var(--kp-muted);
    font-size: 12px;
}


/* =========================================================
   AMENITIES
   ========================================================= */

.kp-amenities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.kp-amenity {
    min-height: 105px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--kp-border);
    border-radius: 13px;
    transition: all .25s ease;
}

.kp-amenity:hover {
    border-color: var(--kp-gold-light);
    box-shadow: var(--kp-shadow);
    transform: translateY(-3px);
}

.kp-amenity i {
    color: var(--kp-gold);
    font-size: 23px;
    margin-bottom: 9px;
}

.kp-amenity span {
    color: var(--kp-text);
    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   PRICE CARD
   ========================================================= */

.kp-price-card {
    padding: 25px;
    color: #fff;
    background:
        linear-gradient(
            135deg,
            var(--kp-primary-dark),
            var(--kp-primary)
        );
    border-radius: var(--kp-radius);
    box-shadow: var(--kp-shadow-lg);
}

.kp-price-card-label {
    color: rgba(255,255,255,.68);
    font-size: 12px;
    margin-bottom: 5px;
}

.kp-price {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
}

.kp-price-note {
    color: rgba(255,255,255,.68);
    font-size: 12px;
    margin-top: 7px;
}


/* =========================================================
   PREMIUM ENQUIRY CARD
   ========================================================= */

.kp-enquiry-card {
    position: sticky;
    top: 85px;
    background: #fff;
    border: 1px solid var(--kp-border);
    border-radius: var(--kp-radius);
    box-shadow: var(--kp-shadow-lg);
    overflow: hidden;
}

.kp-enquiry-head {
    padding: 25px;
    color: #fff;
    background:
        linear-gradient(
            135deg,
            var(--kp-primary-dark),
            var(--kp-primary)
        );
}

.kp-enquiry-head h3 {
    color: #fff;
    margin: 0 0 6px;
    font-size: 21px;
}

.kp-enquiry-head p {
    color: rgba(255,255,255,.7);
    margin: 0;
    font-size: 13px;
}

.kp-enquiry-body {
    padding: 23px;
}

.kp-form-group {
    margin-bottom: 13px;
}

.kp-form-label {
    display: block;
    color: var(--kp-text);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
}

.kp-form-control {
    width: 100%;
    min-height: 47px;
    padding: 10px 13px;
    border: 1px solid #dfe3ea;
    border-radius: 9px;
    outline: none;
    background: #fff;
    color: var(--kp-text);
    font-size: 13px;
    transition: all .2s ease;
}

.kp-form-control:focus {
    border-color: var(--kp-gold);
    box-shadow: 0 0 0 3px rgba(198,154,85,.12);
}

.kp-form-control::placeholder {
    color: #9aa2b1;
}

.kp-submit {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 10px;
    background: var(--kp-gold);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s ease;
}

.kp-submit:hover {
    background: #ae823f;
    transform: translateY(-2px);
}


/* =========================================================
   SIDEBAR CONTACT ACTIONS
   ========================================================= */

.kp-contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 14px;
}

.kp-contact-action {
    min-height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 9px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
}

.kp-contact-call {
    color: var(--kp-primary) !important;
    background: #edf1f7;
}

.kp-contact-whatsapp {
    color: #fff !important;
    background: var(--kp-whatsapp);
}


/* =========================================================
   STICKY CTA
   ========================================================= */

.kp-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9990;
    padding: 10px 15px;
    background: rgba(255,255,255,.96);
    border-top: 1px solid var(--kp-border);
    box-shadow: 0 -8px 30px rgba(0,0,0,.09);
    backdrop-filter: blur(14px);
}

.kp-sticky-cta-inner {
    width: min(1100px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.kp-sticky-btn {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 9px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
}

.kp-sticky-call {
    background: var(--kp-primary);
    color: #fff !important;
}

.kp-sticky-whatsapp {
    background: var(--kp-whatsapp);
    color: #fff !important;
}

.kp-sticky-visit {
    background: var(--kp-gold);
    color: #fff !important;
}

.kp-sticky-enquire {
    background: #edf1f7;
    color: var(--kp-primary) !important;
}


/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */

.kp-whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 85px;
    z-index: 9980;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--kp-whatsapp);
    color: #fff !important;
    font-size: 27px;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(37,211,102,.35);
    transition: all .25s ease;
}

.kp-whatsapp-float:hover {
    color: #fff !important;
    transform: scale(1.08);
}


/* =========================================================
   CALL FLOAT
   ========================================================= */

.kp-call-float {
    position: fixed;
    right: 22px;
    bottom: 155px;
    z-index: 9980;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--kp-primary);
    color: #fff !important;
    font-size: 20px;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(23,43,77,.25);
    transition: all .25s ease;
}

.kp-call-float:hover {
    color: #fff !important;
    transform: scale(1.08);
}


/* =========================================================
   GALLERY GRID
   ========================================================= */

.kp-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 210px 210px;
    gap: 8px;
    overflow: hidden;
    border-radius: var(--kp-radius);
}

.kp-gallery-grid .kp-gallery-main {
    grid-row: span 2;
}

.kp-gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #e9ebef;
}

.kp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.kp-gallery-item:hover img {
    transform: scale(1.05);
}

.kp-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.28);
    color: #fff;
    opacity: 0;
    transition: opacity .25s ease;
}

.kp-gallery-item:hover .kp-gallery-overlay {
    opacity: 1;
}


/* =========================================================
   FLOOR PLANS
   ========================================================= */

.kp-floorplans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.kp-floorplan {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--kp-border);
    border-radius: 13px;
}

.kp-floorplan img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #f8f9fb;
}

.kp-floorplan-caption {
    padding: 13px 15px;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   LOCATION / MAP
   ========================================================= */

.kp-map-box {
    overflow: hidden;
    border-radius: var(--kp-radius);
    border: 1px solid var(--kp-border);
}

.kp-map-box iframe {
    width: 100%;
    min-height: 400px;
    border: 0;
    display: block;
}


/* =========================================================
   DOWNLOAD CARDS
   ========================================================= */

.kp-download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.kp-download {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 1px solid var(--kp-border);
    border-radius: 12px;
    color: var(--kp-text) !important;
    text-decoration: none !important;
    transition: all .25s ease;
}

.kp-download:hover {
    border-color: var(--kp-gold-light);
    box-shadow: var(--kp-shadow);
    transform: translateY(-2px);
}

.kp-download-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(198,154,85,.12);
    color: var(--kp-gold);
}

.kp-download strong {
    display: block;
    font-size: 13px;
}

.kp-download span {
    color: var(--kp-muted);
    font-size: 11px;
}


/* =========================================================
   FAQ
   ========================================================= */

.kp-faq-item {
    border-bottom: 1px solid var(--kp-border);
}

.kp-faq-item:last-child {
    border-bottom: 0;
}

.kp-faq-question {
    position: relative;
    width: 100%;
    padding: 17px 38px 17px 0;
    border: 0;
    background: transparent;
    text-align: left;
    color: var(--kp-text);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.kp-faq-question::after {
    content: "+";
    position: absolute;
    right: 5px;
    top: 14px;
    color: var(--kp-gold);
    font-size: 21px;
}

.kp-faq-answer {
    padding: 0 0 17px;
    color: var(--kp-muted);
    font-size: 13px;
}


/* =========================================================
   BUILDER CARD
   ========================================================= */

.kp-builder-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.kp-builder-logo {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid var(--kp-border);
    border-radius: 13px;
    background: #fff;
}

.kp-builder-logo img {
    max-height: 70px;
    object-fit: contain;
}

.kp-builder-name {
    margin: 0 0 5px;
    font-size: 18px;
}

.kp-builder-label {
    color: var(--kp-muted);
    margin: 0;
    font-size: 12px;
}


/* =========================================================
   TRUST STRIP
   ========================================================= */

.kp-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.kp-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 12px;
    border-radius: 9px;
    background: #f6faf8;
    color: var(--kp-success);
    font-size: 11px;
    font-weight: 600;
}


/* =========================================================
   MODAL
   ========================================================= */

.kp-premium-modal .modal-content {
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0,0,0,.25);
}

.kp-premium-modal .modal-header {
    border-bottom: 1px solid var(--kp-border);
    padding: 20px 25px;
}

.kp-premium-modal .modal-body {
    padding: 25px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 1199px) {

    .kp-facts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .kp-fact:nth-child(3)::after {
        display: none;
    }

    .kp-main-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
    }

    .kp-amenities {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 991px) {

    .kp-container {
        width: min(100% - 30px, 760px);
    }

    .kp-hero-gallery,
    .kp-hero-gallery img {
        min-height: 470px;
        height: 470px;
    }

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

    .kp-sidebar-column {
        order: -1;
    }

    .kp-enquiry-card {
        position: relative;
        top: auto;
    }

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

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

}


@media (max-width: 767px) {

    .kp-container {
        width: calc(100% - 24px);
    }

    .kp-hero {
        border-radius: 0;
    }

    .kp-hero-gallery,
    .kp-hero-gallery img {
        min-height: 430px;
        height: 430px;
    }

    .kp-hero-content {
        padding: 25px 0 28px;
    }

    .kp-hero-content h1 {
        font-size: 30px;
    }

    .kp-hero-meta {
        gap: 6px;
    }

    .kp-hero-badge {
        padding: 6px 10px;
        font-size: 11px;
    }

    .kp-hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .kp-btn {
        width: 100%;
        min-height: 44px;
        padding: 0 10px;
        font-size: 12px;
    }

    .kp-gallery-thumbnails {
        display: none;
    }

    .kp-gallery-counter {
        top: 15px;
        right: 15px;
    }

    .kp-quick-facts {
        margin-top: -20px;
    }

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

    .kp-fact {
        min-height: 90px;
        padding: 16px;
    }

    .kp-fact:nth-child(even)::after {
        display: none;
    }

    .kp-fact:nth-child(odd)::after {
        display: block;
    }

    .kp-content-box {
        padding: 20px;
    }

    .kp-section-title {
        font-size: 21px;
    }

    .kp-highlights {
        grid-template-columns: 1fr;
    }

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

    .kp-floorplans {
        grid-template-columns: 1fr;
    }

    .kp-download-grid {
        grid-template-columns: 1fr;
    }

    .kp-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 120px;
    }

    .kp-gallery-grid .kp-gallery-main {
        grid-column: span 2;
        grid-row: auto;
    }

    .kp-trust-strip {
        grid-template-columns: 1fr;
    }

    .kp-sticky-cta {
        padding: 7px 8px;
    }

    .kp-sticky-cta-inner {
        gap: 5px;
    }

    .kp-sticky-btn {
        min-height: 45px;
        font-size: 10px;
        flex-direction: column;
        gap: 2px;
    }

    .kp-sticky-btn i {
        font-size: 15px;
    }

    .kp-whatsapp-float {
        right: 13px;
        bottom: 70px;
        width: 50px;
        height: 50px;
        font-size: 23px;
    }

    .kp-call-float {
        display: none;
    }

}


@media (max-width: 420px) {

    .kp-facts-grid {
        grid-template-columns: 1fr 1fr;
    }

    .kp-fact {
        padding: 13px;
    }

    .kp-fact-value {
        font-size: 13px;
    }

    .kp-amenities {
        gap: 8px;
    }

    .kp-amenity {
        min-height: 90px;
        padding: 10px;
    }

    .kp-sticky-btn {
        font-size: 9px;
    }

}


/* =========================================================
   PRINT
   ========================================================= */

@media print {

    .kp-sticky-cta,
    .kp-whatsapp-float,
    .kp-call-float {
        display: none !important;
    }

    .kp-enquiry-card {
        position: static;
        box-shadow: none;
    }

}

/* =========================================================
   PREMIUM VISIT FORM
========================================================= */

.kp-visit-form {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
}

.kp-visit-form h3 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 700;
}

.kp-visit-form p {
    margin: 0 0 22px;
    color: #777;
}

.kp-visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.kp-visit-field {
    margin-bottom: 15px;
}

.kp-visit-field.full {
    grid-column: 1 / -1;
}

.kp-visit-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 7px;
}

.kp-visit-field input,
.kp-visit-field select,
.kp-visit-field textarea {
    width: 100%;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    padding: 13px 14px;
    font-size: 14px;
    background: #fff;
    outline: none;
    transition: .2s;
    box-sizing: border-box;
}

.kp-visit-field input:focus,
.kp-visit-field select:focus,
.kp-visit-field textarea:focus {
    border-color: #b08d57;
    box-shadow: 0 0 0 3px rgba(176,141,87,.10);
}

.kp-visit-field textarea {
    min-height: 90px;
    resize: vertical;
}

.kp-visit-submit {
    width: 100%;
    border: 0;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    background: #111;
    color: #fff;
    transition: .2s;
}

.kp-visit-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.kp-visit-submit:disabled {
    opacity: .65;
    cursor: not-allowed;
}

.kp-visit-message {
    margin-bottom: 15px;
    padding: 12px 15px;
    border-radius: 9px;
    font-size: 14px;
    line-height: 1.5;
}

.kp-visit-message.success {
    background: #eaf8ef;
    color: #18733b;
}

.kp-visit-message.error {
    background: #fff0f0;
    color: #b42318;
}

.kp-spinner {
    display: inline-block;
    width: 13px;
    height: 13px;
    border: 2px solid rgba(255,255,255,.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: kpSpin .7s linear infinite;
    vertical-align: -2px;
    margin-right: 6px;
}

@keyframes kpSpin {
    to {
        transform: rotate(360deg);
    }
}

@media(max-width:600px) {

    .kp-visit-form {
        padding: 20px;
        border-radius: 15px;
    }

    .kp-visit-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .kp-visit-field.full {
        grid-column: auto;
    }

}