/* #================================================== */
/* BASIC RESET */
/* #================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* #================================================== */
/* GLOBAL PROFESSIONAL FONT */
/* #================================================== */

body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background: #f7f8fa;
    color: #172033;

    font-size: 15px;
    line-height: 1.5;

    -webkit-font-smoothing: antialiased;
}
/* #================================================== */
/* PROFESSIONAL TYPOGRAPHY */
/* #================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    letter-spacing: -0.02em;
}

button,
input,
select,
textarea {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

nav a {
    font-weight: 600;
}

.logo {
    letter-spacing: -1px;
}


/* #================================================== */
/* HEADER */
/* #================================================== */

.top-header {

    height: 60px;

    background: white;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 5%;

    border-bottom: 1px solid #e8edf0;

    box-shadow:
        0 1px 6px rgba(0,0,0,0.04);
}


/* #================================================== */
/* LOGO */
/* #================================================== */

/* #================================================== */
/* KL LIVING REAL LOGO */
/* #================================================== */

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main-logo {
    height: 65px;
    width: auto;
    display: block;
    object-fit: contain;
}


/* #================================================== */
/* NAVIGATION */
/* #================================================== */

nav {

    display: flex;

    align-items: center;

    gap: 28px;
}

nav a {

    text-decoration: none;

    color: #172033;

    font-weight: 600;

    font-size: 15px;
}

nav a:hover {

    color: #159447;
}


/* #================================================== */
/* HEADER BUTTONS */
/* #================================================== */

.post-ad-btn {

    border: none;

    background: #159447;

    color: white;

    padding: 12px 22px;

    border-radius: 8px;

    font-weight: bold;

    cursor: pointer;
}

.login-btn {

    background: white;

    border: 1px solid #d8dde6;

    padding: 11px 20px;

    border-radius: 8px;

    cursor: pointer;
}


/* #================================================== */
/* HOME HERO */
/* #================================================== */

.hero {
    min-height: 360px;

    position: relative;

    background-image:
        url("images/hero/hero1.jpg");

    background-size: cover;
    background-position: center;

    overflow: hidden;
}


/* DARK OVERLAY */

.hero-overlay {
    min-height: 360px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(8,27,47,0.78),
            rgba(8,27,47,0.18)
        );
}


/* HERO CONTENT */

.hero-content {
    width: 86%;
    max-width: 1400px;

    margin: auto;

    color: white;
}


.hero-content h1 {
    font-size: 46px;
    line-height: 1.1;

    margin-bottom: 12px;
}


.hero-content > p {
    max-width: 720px;

    font-size: 18px;

    margin-bottom: 20px;
}


/* #================================================== */
/* SEARCH BOX */
/* #================================================== */

.search-box {

    background: white;

    display: flex;

    width: 760px;

    max-width: 95%;

    padding: 7px;

    border-radius: 12px;
}

.search-box input {

    flex: 1;

    border: none;

    outline: none;

    padding: 17px;

    font-size: 16px;
}

.search-box button {

    border: none;

    background: #159447;

    color: white;

    padding: 0 30px;

    border-radius: 9px;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;
}


/* #================================================== */
/* POST FREE AD BUTTON */
/* #================================================== */

.free-ad-btn {

    margin-top: 20px;

    background: #159447;

    color: white;

    border: none;

    padding: 14px 28px;

    border-radius: 8px;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;
}


/* #================================================== */
/* SLIDER ARROWS */
/* #================================================== */

.slider-btn {

    position: absolute;

    top: 50%;

    transform:
        translateY(-50%);

    width: 48px;

    height: 48px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,0.7);

    background:
        rgba(0,0,0,0.30);

    color: white;

    font-size: 25px;

    cursor: pointer;

    z-index: 10;
}

.slider-btn:hover {

    background:
        rgba(0,0,0,0.55);
}

.left-btn {

    left: 25px;
}

.right-btn {

    right: 25px;
}


/* #================================================== */
/* SLIDER DOTS */
/* #================================================== */

.slider-dots {

    margin-top: 22px;

    display: flex;

    gap: 8px;
}

.dot {

    width: 9px;

    height: 9px;

    background:
        rgba(255,255,255,0.60);

    border-radius: 50%;
}

.dot.active {

    background: #17a75b;
}


/* #================================================== */
/* PLACE NAME */
/* #================================================== */

.place-name {

    position: absolute;

    right: 35px;

    bottom: 22px;

    color: white;

    background:
        rgba(0,0,0,0.35);

    padding: 8px 14px;

    border-radius: 20px;

    font-size: 14px;

    z-index: 10;
}


/* #================================================== */
/* CATEGORIES */
/* #================================================== */

.categories {

    max-width: 1400px;

    margin:
        -30px auto 0;

    position: relative;

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 15px;

    padding:
        0 25px;
}


/* #================================================== */
/* CATEGORY CARD */
/* #================================================== */

.category-card {

    background: white;

    min-height: 150px;

    border-radius: 13px;

    box-shadow:
        0 4px 20px rgba(0,0,0,0.07);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    transition: 0.2s;
}

.category-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 8px 25px rgba(0,0,0,0.12);
}


/* #================================================== */
/* CATEGORY ICON */
/* #================================================== */

.icon {

    font-size: 38px;

    margin-bottom: 8px;
}

.category-card h3 {

    font-size: 18px;

    margin-bottom: 6px;
}

.category-card p {

    color: #7a8496;

    font-size: 14px;
}


/* #================================================== */
/* FEATURED LISTINGS */
/* #================================================== */

.featured {

    max-width: 1350px;

    margin:
        55px auto;

    padding:
        0 25px;
}

.featured h2 {

    font-size: 28px;
}

.featured p {

    color: #7a8496;

    margin-top: 6px;
}


/* #================================================== */
/* MOBILE RESPONSIVE */
/* #================================================== */

@media(max-width: 900px) {

    nav a {

        display: none;
    }

    .hero h1 {

        font-size: 37px;
    }

    .categories {

        grid-template-columns:
            repeat(2, 1fr);
    }

}
/* #================================================== */
/* PROPERTY HERO SLIDER */
/* #================================================== */

.property-hero {

    min-height: 310px;

    position: relative;

    background-image:
        url("images/property-hero/property1.jpg");

    background-size: cover;

    background-position: center;

    transition:
        background-image 0.8s ease-in-out;
}


/* #================================================== */
/* PROPERTY HERO OVERLAY */
/* #================================================== */

.property-hero-overlay {

    min-height: 310px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(8,27,47,0.88),
            rgba(8,27,47,0.20)
        );
}


/* #================================================== */
/* PROPERTY HERO CONTENT */
/* #================================================== */

.property-hero-content {

    width: 86%;

    max-width: 1400px;

    margin: auto;

    color: white;
}

.property-small-title {

    font-size: 15px;

    font-weight: 700;

    margin-bottom: 10px;

    color: #d6f4df;
}

.property-hero-content h1 {

    font-size: 46px;

    margin-bottom: 12px;
}

.property-hero-content p {

    max-width: 700px;

    font-size: 18px;

    line-height: 1.6;
}


/* #================================================== */
/* PROPERTY SLIDER ARROWS */
/* #================================================== */

.property-slider-btn {

    position: absolute;

    top: 50%;

    transform:
        translateY(-50%);

    width: 46px;

    height: 46px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,0.75);

    background:
        rgba(0,0,0,0.28);

    color: white;

    font-size: 23px;

    cursor: pointer;

    z-index: 20;
}

.property-slider-btn:hover {

    background:
        rgba(0,0,0,0.55);
}

.property-left-btn {

    left: 25px;
}

.property-right-btn {

    right: 25px;
}


/* #================================================== */
/* PROPERTY SLIDER DOTS */
/* #================================================== */

.property-slider-dots {

    margin-top: 20px;

    display: flex;

    gap: 8px;
}

.property-dot {

    width: 9px;

    height: 9px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.55);
}

.property-dot.active {

    background: #17a75b;
}


/* #================================================== */
/* PROPERTY SLIDE NAME */
/* #================================================== */

.property-slide-name {

    position: absolute;

    right: 35px;

    bottom: 20px;

    color: white;

    background:
        rgba(0,0,0,0.35);

    padding: 8px 14px;

    border-radius: 20px;

    font-size: 13px;

    z-index: 20;
}

/* #================================================== */
/* PROPERTY SEARCH SECTION */
/* #================================================== */

.property-search-section {

    max-width: 1400px;

    margin: -55px auto 0;

    position: relative;

    z-index: 20;

    padding: 0 25px;
}

.property-search-card {

    background: white;

    border-radius: 16px;

    padding: 26px;

    box-shadow:
        0 10px 35px rgba(0,0,0,0.10);
}


/* #================================================== */
/* RENT / SALE BUTTONS */
/* #================================================== */

.property-purpose {

    display: flex;

    gap: 10px;

    margin-bottom: 24px;
}

.purpose-btn {

    border: 1px solid #d8dde6;

    background: white;

    color: #172033;

    padding: 12px 25px;

    border-radius: 8px;

    font-weight: 700;

    cursor: pointer;
}

.purpose-btn.active {

    background: #159447;

    border-color: #159447;

    color: white;
}


/* #================================================== */
/* PROPERTY FILTER GRID */
/* #================================================== */

.property-filter-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.filter-group {

    display: flex;

    flex-direction: column;

    gap: 8px;
}

.filter-group label {
    display: block;

    font-size: 12px;

    font-weight: 600;

    margin-bottom: 5px;

    color: #445066;
}

.filter-group select,
.filter-group input {
    width: 100%;

    height: 44px;

    border: 1px solid #dfe5ea;

    border-radius: 7px;

    padding: 0 12px;

    font-size: 14px;

    background: white;

    outline: none;
}

.filter-group select:focus,
.filter-group input:focus {

    border-color: #159447;
}


/* #================================================== */
/* PROPERTY SEARCH BUTTON */
/* #================================================== */

.property-search-btn {

    width: 100%;

    margin-top: 22px;

    height: 52px;

    border: none;

    border-radius: 9px;

    background: #159447;

    color: white;

    font-size: 17px;

    font-weight: 700;

    cursor: pointer;
}

.property-search-btn:hover {

    background: #117c3d;
}


/* #================================================== */
/* QUICK PROPERTY TYPES */
/* #================================================== */

.quick-property-section {

    max-width: 1400px;

    margin: 55px auto;

    padding: 0 25px;
}

.quick-property-grid {

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 16px;
}

.quick-property-card {

    min-height: 125px;

    background: white;

    border-radius: 13px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    box-shadow:
        0 4px 18px rgba(0,0,0,0.06);

    cursor: pointer;

    transition: 0.2s;
}

.quick-property-card:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 8px 24px rgba(0,0,0,0.10);
}

.quick-property-icon {

    font-size: 34px;

    margin-bottom: 8px;
}


/* #================================================== */
/* PROPERTY PAGE RESPONSIVE */
/* #================================================== */

@media(max-width: 900px) {

    .property-filter-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .quick-property-grid {

        grid-template-columns:
            repeat(3, 1fr);
    }

}


@media(max-width: 600px) {

    .property-filter-grid {

        grid-template-columns:
            1fr;
    }

    .quick-property-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .property-hero-content h1 {

        font-size: 35px;
    }

}
/* #================================================== */
/* VEHICLES PAGE HERO */
/* #================================================== */

.vehicle-hero {
    width: 100%;

    height: 390px;
    min-height: 390px;

    margin: 0;

    border-radius: 0;

    overflow: hidden;

    background-image: url("images/vehicles/r15.jpg");
    background-size: cover;
    background-position: center;

    position: relative;
}


/* #================================================== */
/* VEHICLE SEARCH */
/* #================================================== */

.vehicle-search-section {
    width: 90%;
    max-width: 1450px;

    margin: -70px auto 0;

    position: relative;

    z-index: 5;
}


.vehicle-search-card {
    width: 100%;

    background: white;

    padding: 24px;

    border-radius: 18px;

    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}


.vehicle-filter-grid {
    display: grid;

    grid-template-columns:
        1.6fr
        1fr
        1fr
        1fr
        1fr
        1fr;

    gap: 10px;

    align-items: end;
}


.vehicle-search-btn {
    width: 100%;

    height: 48px;

    margin-top: 12px;

    border: none;

    border-radius: 8px;

    background: #159447;

    color: white;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;
}


/* #================================================== */
/* VEHICLE TYPES */
/* #================================================== */

.vehicle-type-section {
    width: 90%;
    max-width: 1450px;

    margin: 28px auto 0;
    padding: 0;
}


.vehicle-type-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;

    width: 100%;
}


.vehicle-type-card {
    width: 90%;
    min-height: 120px;

    background: white;

    border-radius: 12px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    box-shadow: 0 4px 16px rgba(0,0,0,0.05);

    cursor: pointer;
}


.vehicle-type-card:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 8px 24px rgba(0,0,0,0.10);
}


.vehicle-type-icon {

    font-size: 38px;

    margin-bottom: 8px;
}


.vehicle-results-grid .vehicle-meta {
    font-size: 13px;

    color: #748198;

    margin: 0;
}


/* #================================================== */
/* VEHICLE PAGE RESPONSIVE */
/* #================================================== */

@media(max-width: 900px) {

    .vehicle-filter-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .vehicle-type-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media(max-width: 600px) {

    .vehicle-filter-grid {

        grid-template-columns:
            1fr;
    }

    .vehicle-type-grid {

        grid-template-columns:
            1fr;
    }

    .vehicle-hero-content h1 {

        font-size: 35px;
    }

}
/* #================================================== */
/* POST AD PAGE */
/* #================================================== */

.post-ad-section {

    max-width: 900px;

    margin: 50px auto;

    padding: 0 25px;
}

.post-ad-card {
position: relative;
overflow: hidden;
    background: white;

    padding: 35px;

    border-radius: 16px;

    box-shadow:
        0 8px 30px rgba(0,0,0,0.08);
}

.post-ad-card h1 {

    font-size: 30px;

    margin-bottom: 8px;
}

.post-ad-intro {

    color: #7a8496;

    margin-bottom: 30px;
}


/* #================================================== */
/* POST FORM */
/* #================================================== */

.post-form-group {

    margin-bottom: 24px;
}

.post-form-group label {

    display: block;

    font-weight: 700;

    margin-bottom: 8px;
}

.post-form-group input[type="text"],
.post-form-group input[type="number"] {

    width: 100%;

    min-height: 50px;

    border:
        1px solid #d8dde6;

    border-radius: 9px;

    padding: 12px 14px;

    font-size: 15px;
}

.photo-note {

    color: #7a8496;

    font-size: 14px;

    margin-bottom: 10px;
}


/* #================================================== */
/* PHOTO PREVIEW */
/* #================================================== */

.photo-preview {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 10px;

    margin-top: 15px;
}

.photo-preview img {

    width: 100%;

    height: 120px;

    object-fit: cover;

    border-radius: 9px;

    border:
        1px solid #e2e6eb;
}

.photo-message {

    margin-top: 10px;

    font-size: 14px;

    font-weight: 600;
}


/* #================================================== */
/* SUBMIT AD BUTTON */
/* #================================================== */

.submit-ad-btn {

    width: 100%;

    height: 52px;

    border: none;

    border-radius: 9px;

    background: #159447;

    color: white;

    font-size: 17px;

    font-weight: 700;

    cursor: pointer;
}
/* #================================================== */
/* POST AD - CATEGORY SELECTION */
/* #================================================== */

.post-category-card {

    max-width: 1180px;

    margin: 40px auto;

    background: white;

    padding: 35px;

    border-radius: 16px;

        position: relative;

border:
    1px solid rgba(24,182,90,0.25);

box-shadow:
    0 10px 30px rgba(0,0,0,0.08),
    0 0 18px rgba(24,182,90,0.10);
/* #================================================== */
/* POST AD CARD - SAME PREMIUM GREEN GLOW */
/* #================================================== */

.post-ad-card.luxury-split-card {

    border:
        1px solid rgba(24,182,90,0.25);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08),
        0 0 18px rgba(24,182,90,0.10);
}
}
/* #================================================== */
/* LUXURY MOVING BORDER HIGHLIGHT */
/* #================================================== */

.luxury-split-card::before {

    content: "";

    position: absolute;

    inset: -1px;

    border-radius: 17px;

    padding: 1px;

    background:
        conic-gradient(
            from var(--border-angle),
            transparent 0deg,
            transparent 325deg,
            rgba(24,182,90,0.20) 335deg,
            #18b65a 345deg,
            rgba(24,182,90,0.20) 355deg,
            transparent 360deg
        );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;

    animation:
        luxuryBorderMove 8s linear infinite;
}


@property --border-angle {

    syntax: "<angle>";

    initial-value: 0deg;

    inherits: false;
}


@keyframes luxuryBorderMove {

    from {
        --border-angle: 0deg;
    }

    to {
        --border-angle: 360deg;
    }

}

.post-category-card h1 {

    font-size: 30px;

    margin-bottom: 8px;

}


.post-category-card p {

    color: #7a8496;

    margin-bottom: 25px;
}


.post-category-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.post-category-option {

    min-height: 140px;

    border:
        1px solid #e1e5ea;

    border-radius: 14px;

    background: white;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 12px;

    font-size: 34px;

    cursor: pointer;

    transition: 0.2s;

    
}


.post-category-option span {

    font-size: 16px;

    font-weight: 700;

    color: #172033;
}


.post-category-option:hover {

    border-color: #159447;

    transform:
        translateY(-4px);

    box-shadow:
        0 8px 24px rgba(0,0,0,0.10);
}


@media(max-width: 700px) {

    .post-category-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}
/* #================================================== */
/* POST AD - ANIMATED KL LIVING BRAND */
/* #================================================== */

.post-brand-animation {

    position: absolute;

    top: 18px;
    right: 22px;

    width: 165px;

    z-index: 10;
}


/* #================================================== */
/* MAIN LOGO */
/* #================================================== */

.post-brand-logo {

    width: 100%;

    height: auto;

    display: block;
}


/* #================================================== */
/* BINOCULAR OVERLAY */
/* #================================================== */

.post-brand-binocular {

    position: absolute;

    width: 34px;

    top: 18px;
    left: 43%;

    transform-origin: center;

    animation:
        binocularStare 5.2s ease-in-out infinite;
}


/* #================================================== */
/* BINOCULAR WATCHING USER ANIMATION */
/* #================================================== */

@keyframes binocularStare {

    0%,
    12% {

        transform:
            translate(0, 0)
            rotate(0deg)
            scale(1);
    }

    22% {

        transform:
            translate(0, -5px)
            rotate(0deg)
            scale(1.02);
    }

    34% {

        transform:
            translate(-3px, -7px)
            rotate(-7deg)
            scale(1.08);
    }

    46% {

        transform:
            translate(-2px, -7px)
            rotate(-5deg)
            scale(1.03);
    }

    58% {

        transform:
            translate(3px, -7px)
            rotate(7deg)
            scale(1.08);
    }

    70% {

        transform:
            translate(2px, -7px)
            rotate(5deg)
            scale(1.03);
    }

    82% {

        transform:
            translate(0, -3px)
            rotate(0deg)
            scale(1.01);
    }

    90% {

        transform:
            translate(0, 0)
            rotate(0deg)
            scale(1);
    }

    100% {

        transform:
            translate(0, 0)
            rotate(0deg)
            scale(1);
    }
}


/* #================================================== */
/* MOBILE */
/* #================================================== */

@media(max-width: 700px) {

    .post-brand-animation {

        position: relative;

        top: auto;
        right: auto;

        width: 170px;

        margin:
            0 0 22px auto;
    }

}
/* #================================================== */
/* POST YOUR AD - PREMIUM GLOW SAFE OVERRIDE */
/* #================================================== */

#postAdFormCard {

    border:
        1px solid rgba(24,182,90,0.25);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08),
        0 0 18px rgba(24,182,90,0.10);
}
/* #================================================== */
/* VEHICLE PHOTO UPLOAD - PREMIUM KL LIVING STYLE */
/* #================================================== */

.photo-upload-box {

    position: relative;

    width: 100%;

    min-height: 180px;

    border:
        2px dashed rgba(24,182,90,0.35);

    border-radius: 16px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.98),
            rgba(247,251,248,0.98)
        );

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 8px;

    cursor: pointer;

    transition:
        0.25s ease;

    box-shadow:
        inset 0 0 18px rgba(24,182,90,0.04),
        0 8px 24px rgba(0,0,0,0.04);
}


.photo-upload-box:hover {

    border-color:
        rgba(24,182,90,0.70);

    box-shadow:
        inset 0 0 20px rgba(24,182,90,0.08),
        0 10px 28px rgba(0,0,0,0.06),
        0 0 20px rgba(24,182,90,0.08);

    transform:
        translateY(-2px);
}


.photo-upload-icon {

    font-size: 34px;

    line-height: 1;
}


.photo-upload-title {

    font-size: 18px;

    font-weight: 700;

    color: #172033;
}


.photo-upload-text {

    font-size: 14px;

    color: #7a8496;
}


.photo-upload-count {

    margin-top: 4px;

    font-size: 13px;

    font-weight: 700;

    color: #159447;
}
/* #================================================== */
/* TRIAL - ANIMATED KL LIVING PAGE BACKGROUND */
/* #================================================== */

body {
    position: relative;
    overflow-x: hidden;
    background:
        radial-gradient(
            circle,
            rgba(24,182,90,0.16) 1px,
            transparent 1.5px
        ),
        #f6f8fa;

    background-size: 32px 32px;

    animation:
        klBackgroundMove 18s linear infinite;
}


/* SOFT GREEN LIGHT */
body::before {

    content: "";

    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: -1;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(24,182,90,0.10),
            transparent 38%
        );

    animation:
        klBackgroundGlow 7s ease-in-out infinite alternate;
}


@keyframes klBackgroundMove {

    from {
        background-position:
            0 0;
    }

    to {
        background-position:
            32px 32px;
    }

}


@keyframes klBackgroundGlow {

    from {
        opacity: 0.45;
        transform: scale(1);
    }

    to {
        opacity: 0.85;
        transform: scale(1.08);
    }

}
/* #================================================== */
/* TRIAL - MOVING DOT BACKGROUND */
/* #================================================== */

body {
    position: relative;
    overflow-x: hidden;
    background: #f6f8fa;
}


/* MOVING DOT LAYER */
body::after {

    content: "";

    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: -1;

    background-image:
        radial-gradient(
            circle,
            rgba(24,182,90,0.18) 1.5px,
            transparent 1.5px
        );

    background-size:
        34px 34px;

    animation:
        klDotsMove 6s linear infinite;
}



/* GENTLE WAVE-LIKE MOTION */
@keyframes klSoftDotFlow {

    0% {
        transform:
            translate3d(-18px, -8px, 0)
            scale(1);
    }

    25% {
        transform:
            translate3d(10px, -18px, 0)
            scale(1.01);
    }

    50% {
        transform:
            translate3d(18px, 8px, 0)
            scale(1.015);
    }

    75% {
        transform:
            translate3d(-8px, 18px, 0)
            scale(1.01);
    }

    100% {
        transform:
            translate3d(-18px, -8px, 0)
            scale(1);
    }

}
/* #================================================== */
/* TWO DOT LAYERS MOVE AGAINST EACH OTHER */
/* #================================================== */

@keyframes klRoseDotsOne {

    0% {
        transform:
            translate(0, 0);
    }

    50% {
        transform:
            translate(19px, 10px);
    }

    100% {
        transform:
            translate(38px, 0);
    }
}


@keyframes klRoseDotsTwo {

    0% {
        transform:
            translate(0, 0);
    }

    50% {
        transform:
            translate(-19px, -10px);
    }

    100% {
        transform:
            translate(-38px, 0);
    }
}
/* #================================================== */
/* VEHICLE PHOTO PREVIEW CARDS */
/* #================================================== */

.photo-preview {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 18px;
}


/* EACH PHOTO CARD */
.photo-preview-card {
    position: relative;
    overflow: hidden;

    aspect-ratio: 1 / 1;

    border-radius: 14px;

    background: #ffffff;

    border:
        1px solid rgba(24,182,90,0.22);

    box-shadow:
        0 6px 18px rgba(0,0,0,0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.photo-preview-card:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(24,182,90,0.55);

    box-shadow:
        0 10px 24px rgba(0,0,0,0.10),
        0 0 16px rgba(24,182,90,0.10);
}


/* PHOTO ITSELF */
.photo-preview-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* COVER BADGE */
.photo-cover-badge {
    position: absolute;

    left: 8px;
    bottom: 8px;

    padding:
        5px 9px;

    border-radius: 20px;

    background:
        rgba(24,182,90,0.92);

    color: white;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.3px;

    box-shadow:
        0 3px 10px rgba(0,0,0,0.15);
}


/* REMOVE BUTTON */
.photo-remove-btn {
    position: absolute;

    top: 7px;
    right: 7px;

    width: 28px;
    height: 28px;

    border: none;
    border-radius: 50%;

    background:
        rgba(20,20,20,0.72);

    color: white;

    font-size: 20px;
    line-height: 26px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.photo-remove-btn:hover {
    background:
        rgba(190,45,60,0.92);

    transform:
        scale(1.08);
}


/* PHOTO MESSAGE */
.photo-message {
    margin-top: 10px;

    font-size: 13px;

    color: #687386;
}


/* RESPONSIVE */
@media (max-width: 850px) {

    .photo-preview {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


@media (max-width: 520px) {

    .photo-preview {
        grid-template-columns:
            repeat(2, 1fr);
    }

}
.photo-preview-card img {
    cursor: pointer;
}
/* #================================================== */
/* POST PAGE SIMPLE NAVIGATION */
/* #================================================== */

.post-page-nav {
    max-width: 1180px;
    margin: 18px auto 0;

    display: flex;
    align-items: center;
    gap: 10px;
}


.post-page-nav a {
    text-decoration: none;

    padding: 8px 14px;

    border-radius: 20px;

    font-size: 13px;
    font-weight: 600;

    color: #586273;

    background: white;

    border:
        1px solid #e1e6eb;

    transition:
        0.2s ease;
}


.post-page-nav a:hover {
    color: #18b65a;

    border-color:
        rgba(24,182,90,0.45);

    box-shadow:
        0 4px 12px rgba(24,182,90,0.08);
}


.post-page-nav a.active {
    color: white;

    background: #18b65a;

    border-color: #18b65a;
}
/* #================================================== */
/* HOMEPAGE CATEGORY CARD LINKS */
/* #================================================== */

.category-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}

.category-card-link .category-card {
    width: 100%;
    height: 100%;
}

.category-card-link .category-card {
    cursor: pointer;
}

.category-card-link:hover .category-card {
    transform: translateY(-4px);

    box-shadow:
        0 12px 28px rgba(0,0,0,0.10),
        0 0 18px rgba(24,182,90,0.10);
}
.free-ad-btn {
    display: inline-block;
    text-decoration: none;
    text-align: center;
}
/* ================================================== */
/* POST AD BUTTON - SILK GREEN GLOW */
/* ================================================== */

.post-submit-btn {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #169c45, #1fb655, #169c45);
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(31, 182, 85, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.post-submit-btn span {
    position: relative;
    z-index: 2;
}

.post-submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -35%;
    width: 35%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.10),
        rgba(255, 255, 255, 0.35),
        rgba(255, 255, 255, 0.10),
        transparent
    );
    transform: skewX(-20deg);
    filter: blur(4px);
    z-index: 1;
    animation: silkGreenGlow 2.8s linear infinite;
}

.post-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(31, 182, 85, 0.35);
}

@keyframes silkGreenGlow {
    0% {
        left: -35%;
    }
    100% {
        left: 120%;
    }
}
/* #================================================== */
/* KL LIVING - VEHICLE RESULTS PREMIUM LIST VIEW */
/* #================================================== */

.vehicle-results-section {
    width: 90%;
    max-width: 1450px;

    margin: 24px auto 0;
    padding: 0;
}


/* HEADER */
.vehicle-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 16px;
}

.vehicle-results-header h2 {
    font-size: 20px;
    font-weight: 800;
}

.vehicle-results-header select {
    min-width: 190px;
    height: 46px;

    padding: 0 15px;

    background: white;

    border:
        1px solid #d9dee5;

    border-radius: 7px;

    font-size: 14px;
}


/* LEFT + RIGHT */
.vehicle-results-layout {
    display: grid;
    grid-template-columns: 280px 1fr;

    gap: 18px;

    align-items: start;
}


/* FILTER SIDEBAR */
.vehicle-filter-panel {
    background: white;

    border-radius: 8px;

    padding: 18px;

    border:
        1px solid #e4e7eb;

    box-shadow: none;
}


/* RESULTS BECOME ONE COLUMN */
.vehicle-results-grid {
    display: flex;
    flex-direction: column;

    gap: 10px;
}


/* HORIZONTAL VEHICLE CARD */
.vehicle-results-grid .listing-card {
    display: grid;

    grid-template-columns:
        290px 1fr;

    min-height: 145px;

    background: white;

    border-radius: 10px;

    overflow: hidden;

    border:
        1px solid #edf0f2;

    box-shadow:
        0 3px 12px rgba(0,0,0,0.04);

    transition:
        box-shadow 0.2s ease,
        transform 0.2s ease;
}


.vehicle-results-grid .listing-card:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 24px rgba(0,0,0,0.08);
}


/* IMAGE SIDE */
.vehicle-results-grid .listing-image {
    width: 290px;
    height: 145px;

    position: relative;
    overflow: hidden;

    background: #f7f8fa;
}


.vehicle-results-grid .listing-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* DETAILS SIDE */
.vehicle-results-grid .listing-details {
    padding: 14px 18px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}


/* TITLE */
.vehicle-results-grid .listing-details h3 {
    font-size: 17px;
    font-weight: 700;

    color: #14213d;

    margin-bottom: 8px;
}


.vehicle-results-grid .listing-details p {
    font-size: 13px;

    color: #748198;

    margin-bottom: 6px;
}


/* PRICE */
.vehicle-results-grid .listing-price {
    font-size: 22px;
    font-weight: 800;

    color: #14213d;

    margin-bottom: 5px;
}


/* HEART BUTTON */
.vehicle-results-grid .heart-btn {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    border: none;

    background: #f8faf9;

    color: #159447;

    font-size: 22px;

    cursor: pointer;
}


/* SALE BADGE */
.vehicle-results-grid .listing-badge {
    position: absolute;

    top: 8px;
    left: 8px;

    padding: 5px 9px;

    border-radius: 5px;

    background: #159447;

    color: white;

    font-size: 11px;
    font-weight: 700;
}


/* MOBILE */
@media(max-width: 900px) {

    .vehicle-results-layout {
        grid-template-columns:
            1fr;
    }

    .vehicle-filter-panel {
        position: static;
    }

    .vehicle-results-grid .listing-card {
        grid-template-columns:
            1fr;
    }

    .vehicle-results-grid .listing-image {
        height: 240px;
    }

}
/* #================================================== */
/* VEHICLES PAGE - COMPACT PROFESSIONAL SPACING */
/* #================================================== */

.vehicle-type-section {
    margin:
        28px auto 22px;
}

.vehicle-type-grid {
    gap: 14px;
}

.vehicle-type-card {
    min-height: 115px;
}


/* FEATURED SECTION */
.featured {
    width: 90%;
    max-width: 1450px;

    margin: 28px auto 0;
    padding: 0;
}


/* RESULTS SECTION */
.vehicle-results-section {
    margin:
        18px auto 35px;
}


/* RESULT HEADER */
.vehicle-results-header {
    margin-bottom: 14px;
}
/* #================================================== */
/* PREMIUM VEHICLE FILTER PANEL */
/* #================================================== */

/* ========================================= */
/* VEHICLE FILTER PANEL */
/* ========================================= */

.vehicle-filter-panel {
    background: #ffffff;
    border: 1px solid #e5edf3;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

/* TOP HEADER */
.filter-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.filter-panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-panel-title h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #16233b;
}

.filter-icon {
    font-size: 18px;
    color: #159447;
}

.reset-all-btn {
    background: none;
    border: none;
    color: #159447;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

/* SAVED SEARCH CARD */
.saved-search-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    border: 1px solid #e4ebf1;
    border-radius: 12px;
    background: #fdfefe;
    margin-bottom: 20px;
}

.saved-search-icon {
    font-size: 18px;
    color: #159447;
}

.saved-search-text {
    flex: 1;
}

.saved-search-text strong {
    display: block;
    font-size: 15px;
    color: #16233b;
    margin-bottom: 4px;
}

.saved-search-text p {
    margin: 0;
    font-size: 13px;
    color: #7a8798;
}

.saved-search-arrow {
    font-size: 22px;
    color: #7a8798;
}

/* FILTER GROUP */
.filter-group {
    margin-bottom: 20px;
}

.filter-group h4 {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 800;
    color: #16233b;
}


.filter-count {
    margin-left: auto;

    font-size: 13px;
    font-weight: 600;
    color: #8290a3;
}

.filter-check-row:last-child {
    border-bottom: none;
}

.filter-check-left {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 15px;
    font-weight: 700;
    color: #243247;
}


.filter-count {
    display: block;

    margin-left: 27px;
    margin-top: 2px;

    font-size: 13px;
    font-weight: 600;
    color: #8290a3;
}
.filter-check-row:last-child {
    border-bottom: none;
}

/* DROPDOWN BLOCKS */
.filter-dropdown {
    border-top: 1px solid #edf2f6;
    padding: 14px 0;
}

.filter-dropdown:last-of-type {
    margin-bottom: 18px;
}

.filter-dropdown summary {
    list-style: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: #1c2940;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-dropdown summary::-webkit-details-marker {
    display: none;
}

.filter-dropdown summary::after {
    content: "+";
    font-size: 18px;
    color: #7b8794;
}

.filter-dropdown[open] summary::after {
    content: "–";
}

.filter-dropdown-body {
    padding-top: 12px;
}

.filter-dropdown-body p {
    margin: 0;
    font-size: 14px;
    color: #7b8794;
}

/* APPLY BUTTON */
.apply-filter-btn {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 10px;
    background: #159447;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.apply-filter-btn:hover {
    background: #117d3c;
}


.filter-checkbox-list label {
    display: flex;

    align-items: center;

    gap: 9px;

    padding:
        7px 3px;

    font-size: 14px;

    cursor: pointer;
}


.filter-checkbox-list input {
    width: 18px;
    height: 18px;

    accent-color: #159447;
}

/* REMOVE EXCESS GAP ABOVE RESULTS */
.vehicle-results-layout {
    margin-top: 0;
}
/* ==========================================
   VEHICLE RESULTS - TOP CONTROLS
========================================== */

.vehicle-results-top {
    width: 100%;
    margin-bottom: 14px;
}


/* CATEGORY TABS */

.vehicle-result-tabs {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 16px;
}

.vehicle-tab {
    height: 42px;

    padding: 0 18px;

    border: 1px solid #dfe5ea;
    border-radius: 8px;

    background: white;
    color: #172033;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
}

.vehicle-tab:hover {
    border-color: #159447;
    color: #159447;
}

.vehicle-tab.active {
    background: #159447;
    border-color: #159447;
    color: white;
}


/* RESULTS + SORT */

.vehicle-results-toolbar {
    display: flex;

    justify-content: space-between;
    align-items: center;

    margin-bottom: 14px;
}

.vehicle-results-toolbar h2 {
    font-size: 24px;
    font-weight: 800;

    margin: 0 0 3px;
}

.vehicle-results-toolbar p {
    margin: 0;

    color: #748198;

    font-size: 14px;
}


/* RIGHT TOOLS */

.vehicle-sort-tools {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #748198;

    font-size: 13px;
}

.vehicle-sort-tools select {
    height: 42px;

    padding: 0 14px;

    border: 1px solid #dfe5ea;
    border-radius: 8px;

    background: white;
}


/* GRID / LIST / MAP */

.view-mode {
    height: 42px;
    min-width: 42px;

    padding: 0 12px;

    border: 1px solid #dfe5ea;
    border-radius: 8px;

    background: white;

    cursor: pointer;
}

.view-mode.active {
    background: #159447;
    border-color: #159447;

    color: white;
}
/* FIX VEHICLE TYPE ROWS */

.vehicle-filter-panel .filter-group .filter-check-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    margin: 0;
    padding: 10px 0;

    border-bottom: 1px solid #eef1f4;
}

.vehicle-filter-panel .filter-check-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.vehicle-filter-panel .filter-count {
    margin-left: auto;
    font-size: 13px;
    color: #8290a3;
    font-weight: 600;
}
/* ========================================= */
/* KL LIVING HEADER WEATHER */
/* ========================================= */

.header-weather {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 7px 14px;

    background: #f7fbf8;

    border: 1px solid #e1eee6;
    border-radius: 12px;

    font-size: 13px;
    color: #243247;
}

.weather-icon {
    font-size: 24px;
}

.weather-main {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.weather-location {
    font-size: 11px;
    color: #7a8798;
}

.weather-temp {
    font-size: 16px;
    color: #172033;
}

.weather-extra {
    padding-left: 10px;
    border-left: 1px solid #dfe8e2;

    font-size: 12px;
    color: #667386;
}