html,
body {
    overflow-x: hidden;
}

/* Heading font */
.heading-font {
    font-family: 'Felix', serif;
    letter-spacing: 2px;
}

/* Body font */
.body-font {
    font-family: 'Montserrat', sans-serif;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 4rem !important;
}

/* SECTION */
.property-section {
    padding: 50px 111px;
}

.property-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADINGS */
.sub-title {
    color: #999;
    font-size: 13px;
}

.main-title {
    font-size: 28px;
    font-weight: 700;
}

.swiper-3d {
    perspective: 114em !important;
}

/* TOP TABS */
/* ============================= */

.top-tabs {
    display: flex;
    justify-content: center;
    margin: 2px 0;
}

.top-tabs ul {
    display: flex;
    background: #14181c;
    /* theme dark */
    position: relative;
}

/* NORMAL TAB */
.top-tabs li {
    padding: 14px 35px;
    color: #aaa;
    cursor: pointer;
    position: relative;
}

/* ACTIVE */
.top-tabs li.active {
    background: #E19C25;
    color: #fff;
    font-weight: 600;
}

/* ============================= */
/* LEFT TRIANGLE (ONLY FIRST) */
/* ============================= */

.top-tabs ul li:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: -29px;

    width: 0;
    height: 0;

    border-top: 52px solid transparent;
    border-right: 28px solid #14181c;
    border-bottom: 0px solid transparent;
}

/* ============================= */
/* RIGHT TRIANGLE (ONLY LAST) */
/* ============================= */

.top-tabs ul li:last-child::after {
    content: '';
    position: absolute;
    top: 0;
    right: -29px;

    width: 0;
    height: 0;

    border-top: 52px solid transparent;
    border-left: 28px solid #14181c;
    border-bottom: 0px solid transparent;
}

/* GRID */
.property-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1);
}

/* LEFT */
.left-tabs {
    background: #eee;
}

.left-item {
    padding: 22px 15px;
    line-height: 20px;
    position: relative;
    border-top: 1px solid #ddd;
    color: #777;
    cursor: pointer;
    position: relative;
}

.left-item.active {
    background: #E19C25;
    color: #fff;
}

.left-item.active::after {
    content: '' !important;
    display: block !important;
    position: absolute;
    width: 0;
    height: 0;
    border-top: 32px solid transparent;
    border-left: 35px solid #E19C25;
    border-bottom: 33px solid transparent;
    border-right: none;
    left: auto;
    right: 0;
    top: 0;
    margin-right: -35px;
    z-index: 2;
}

/* IMAGE */
.property-image {
    position: relative;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-icon {
    position: absolute;
    top: 10px;
    right: 9px;
    background: #E19C25;
    padding: 4px 8px;
    color: #fff;
}

/* RIGHT */
.property-box {
    background: #eee;
}

.property-header {
    background: #ddd;
    padding: 20px;
}

.property-header h2 {
    font-size: 28px;
}

.property-features {
    padding: 15px;
}

.feature-item {
    border-bottom: 1px dashed #ccc;
    padding: 10px 0;
    font-size: 14px;
}

.feature-item i {
    color: #E19C25;
    margin-right: 8px;
}

.property-btn {
    width: 100%;
    background: #111;
    color: #fff;
    padding: 12px;
    margin-top: 10px;
}

.property-btn:hover {
    background: #E19C25;
}

.bg-texture {
    background: #E19C25;
    background-size: cover;
}

/* ============================= */
/* WHY CHOOSE US */
/* ============================= */

.why-card {
    background: #ffffff;
    padding: 40px 25px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.4s ease;
    position: relative;
}

/* subtle gold top border */
.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #E19C25;
    transition: 0.4s;
}

.why-card:hover::before {
    width: 60px;
}

/* HOVER EFFECT */
.why-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

/* ICON */
.why-card .icon {
    width: 70px;
    height: 70px;
    margin: auto;
    background: #E19C25;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card .icon i {
    color: #fff;
    font-size: 22px;
}

/* TITLE */
.why-card h3 {
    font-family: 'Felix', serif;
    letter-spacing: 1px;
    font-size: 18px;
    margin-top: 18px;
    color: #111;
}

/* TEXT */
.why-card p {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    line-height: 1.6;
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 991px) {

    /* SECTION */
    .why-section {
        padding: 50px 0;
    }

    /* HEADING */
    .why-section h2 {
        font-size: 30px !important;
        line-height: 1.3;
    }

    .why-section p {
        font-size: 14px;
    }

    /* GRID SPACING */
    .why-grid {
        gap: 18px !important;
        padding: 0 10px !important;
    }

    /* CARD */
    .why-card {
        padding: 28px 20px;
    }

    /* ICON */
    .why-card .icon {
        width: 60px;
        height: 60px;
    }

    .why-card .icon i {
        font-size: 18px;
    }

    /* TITLE */
    .why-card h3 {
        font-size: 17px;
        line-height: 1.4;
        margin-top: 15px;
    }

    /* TEXT */
    .why-card p {
        font-size: 13px;
        line-height: 1.7;
    }

}

@media (max-width: 576px) {

    /* SECTION */
        .why-section {
        padding: 0;
      
    }
    

    /* HEADING */
    .why-section h2 {
        font-size: 26px !important;
    }

    /* CARD */
    .why-card {
        padding: 24px 18px;
    }

    /* TITLE */
    .why-card h3 {
        font-size: 18px;
        line-height: 1.4;
    }

    /* TEXT */
    .why-card p {
        font-size: 13px;
    }

    .why-card p,
    .why-card li {
        font-size: 13px;
    }


}

/* BUTTON WRAPPER */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* COMMON BUTTON */
.btn-cta {
    background: #E19C25;
    color: #020202;
    border: none;
    border-radius: 50px;
    padding: 5px 33px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

/* HOVER */
.btn-cta:hover {
    background: #ffffff;
}

/* CALL BUTTON */
.btn-call {
    display: flex;
    align-items: center;
    padding-left: 9px;
    padding-right: 30px;
}

/* ICON CIRCLE */
.btn-call .icon {
    width: 43px;
    height: 43px;
    background: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    position: relative;
}

/* GOLD RING EFFECT */
.btn-call .icon::before {
    content: "";
    position: absolute;
    width: 46px;
    height: 48px;
    border: 3px solid #E19C25;
    border-radius: 50%;
}

/* ICON */
.btn-call .icon i {
    color: #fff;
    font-size: 16px;
}

/* =========================================
   CTA SECTION MOBILE RESPONSIVE
========================================= */

@media (max-width: 991px) {

    /* SECTION */
    .cta-section {
        padding: 70px 0 !important;
    }

    /* HEADING */
    .cta-section h2 {
        font-size: 42px !important;
        line-height: 1.2;
    }

    /* TEXT */
    .cta-section p {
        font-size: 14px;
        margin-bottom: 35px;
    }

    /* BUTTON WRAPPER */
    .cta-buttons {
        gap: 18px;
    }

    /* BUTTON */
    .btn-cta {
        font-size: 13px;
        padding: 5px 24px;
    }

}

@media (max-width: 576px) {

    /* SECTION */
    .cta-section {
        padding: 60px 0 !important;
    }

    /* CONTENT */
    .cta-section .content-wrapper {
        padding: 0 18px;
    }

    /* HEADING */
    .cta-section h2 {
        font-size: 30px !important;
        line-height: 1.25;
        margin-bottom: 18px;
    }

    /* DESCRIPTION */
    .cta-section p {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    /* BUTTON WRAPPER */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    /* BUTTON */
    .btn-cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;

        font-size: 13px;

        padding: 6px 20px;
    }

    /* ICON */
    .btn-call .icon {
        width: 40px;
        height: 40px;
    }

    .btn-call .icon::before {
        width: 43px;
        height: 43px;
    }

    .btn-call .icon i {
        font-size: 14px;
    }

}

.video-text-section {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

.video-text-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;

}

/* =========================================
   COUNTER SECTION WITH BACKGROUND IMAGE
========================================= */

.counter-section {
    position: relative;
    padding: 90px 20px;
    background-image: url('../images/project-banner.webp');
    background-size: cover;
    background-position: top-center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

/* DARK OVERLAY */
.counter-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.68);
    z-index: 1;
}

/* GOLD GRADIENT */
.counter-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(225, 156, 37, 0.22),
            rgba(0, 0, 0, 0.45));
    z-index: 2;
}

/* KEEP CONTENT ABOVE OVERLAY */
.counter-section .jk-intro,
.counter-container {
    position: relative;
    z-index: 3;
}

/* CONTAINER */
.counter-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    text-align: center;
}

/* BOX */
.counter-box {
    flex: 1;
    padding: 35px 25px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: 0.4s ease;
}

.counter-box:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.13);
}

/* ICON */
.counter-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: #E19C25;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-icon i {
    color: #fff;
    font-size: 26px;
}

/* COUNTER NUMBER */
.counter-box h2 {
    font-size: 52px;
    color: #fff;
    font-family: 'Felix', serif;
}

.counter-box h2::after {
    content: "+";
    color: #E19C25;
}

/* TEXT */
.counter-box p {
    margin-top: 10px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
}

/* TABLET */
@media (max-width: 991px) {
    .counter-section {
        padding: 70px 20px;
        background-attachment: scroll;
    }

    .counter-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .counter-box {
        flex: 0 0 calc(50% - 15px);
    }

    .counter-box h2 {
        font-size: 42px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .counter-section {
        padding: 60px 15px;
        background-position: center;
    }

    .counter-container {
        gap: 18px;
    }

    .counter-box {
        flex: 0 0 100%;
        padding: 30px 20px;
    }

    .counter-icon {
        width: 60px;
        height: 60px;
    }

    .counter-icon i {
        font-size: 22px;
    }

    .counter-box h2 {
        font-size: 38px;
    }

    .counter-box p {
        font-size: 14px;
    }
.jk-hero-content
{padding-top:5em!important;}

    .jk-hero-title {
        
        font-size: 25px !important;
    }

    .jk-eyebrow::after {
        display: none !important;
    }

    .jk-eyebrow {
        display: none !important;
    }

    .jk-feat {
        padding: 30px 0 !important;
    }

}

/* ================= BRAND SECTION ================= */

.brand-section {
    background: #f8f8f8;
    padding: 40px 0 15px;
    /* bottom gap kam */
    border-top: 1px solid #746f6f33;
}

.brand-header {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.brand-header h2 {
    font-size: 40px;
    font-family: 'Felix', serif;
    color: #111;
}

/* ================= ARROWS ================= */

.brand-nav {
    display: flex;
    gap: 10px;
}

.brand-prev,
.brand-next {
    width: 45px;
    height: 45px;
    border: 2px solid #E19C25;
    color: #E19C25;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
}

.brand-prev:hover,
.brand-next:hover {
    background: #E19C25;
    color: #fff;
}

/* ================= SLIDER ================= */

.brandSwiper {
    max-width: 1200px;
    margin: auto;
    overflow: visible !important;
}

.brandSwiper .swiper-wrapper {
    align-items: center;
}

.brandSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* ================= IMAGE ================= */

.brandSwiper img {
    height: 60px;
}

/* =========================================
   BRAND SECTION MOBILE RESPONSIVE
========================================= */

@media (max-width: 991px) {

    /* SECTION */
    .brand-section {
        padding: 50px 20px;
    }

    /* HEADER */
    .brand-header {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .brand-header h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    /* ARROWS */
    .brand-prev,
    .brand-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    /* SWIPER */
    .brandSwiper {
        max-width: 100%;
    }

    /* LOGO */
    .brandSwiper img {
        height: 50px;
    }

}

@media (max-width: 576px) {

    /* SECTION */
    .brand-section {
        padding: 45px 15px;
    }

    /* HEADER */
    .brand-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 25px;
    }

    .brand-header h2 {
        font-size: 26px;
    }

    /* NAV */
    .brand-nav {
        gap: 8px;
    }

    /* ARROWS */
    .brand-prev,
    .brand-next {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    /* LOGO */
    .brandSwiper img {
        height: 42px;
    }

}

/* ================= BLOG SECTION ================= */

.blog-section {
    background: #f8f8f8;
    padding: 80px 0;
}

.blog-container {
    max-width: 903px;
    margin: auto;
}

/* HEADING */
.blog-heading {
    text-align: center;
    margin-bottom: 50px;
}

.blog-heading p {
    color: #888;
    font-size: 14px;
}

.blog-heading h2 {
    font-family: 'Felix', serif;
    font-size: 34px;
    margin-top: 8px;
}

/* GRID */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* CARD */
.blog-card {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* IMAGE */
.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* CATEGORY */
.blog-category {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #E19C25;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
}

/* OVERLAY */
.blog-img.overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(225, 156, 37, 0.6);
}

/* PLUS ICON */
.plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #fff;
    z-index: 2;
}

/* CONTENT */
.blog-content {
    display: flex;
    padding: 20px;
}

/* DATE BOX */
.blog-date {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 10px;
    min-width: 60px;
    margin-right: 15px;
    height: 68px;
}

.blog-date span {
    font-size: 20px;
    font-weight: bold;
    display: block;
}

.blog-date small {
    font-size: 12px;
}

/* TEXT */
.blog-text h3 {
    font-size: 18px;
    margin: 5px 0;
}

.blog-text .meta {
    font-size: 12px;
    color: #888;
}

.blog-text .desc {
    font-size: 14px;
    color: #666;
    margin: 8px 0;
}

/* BUTTON */
.blog-btn {
    display: inline-block;
    background: #E19C25;
    color: #fff;
    padding: 8px 15px;
    font-size: 12px;
    text-decoration: none;
    margin-top: 10px;
    transition: 0.3s;
}

.blog-btn:hover {
    background: #111;
}


.blog-footer {
    text-align: center;
    margin-top: 70px;
}

.blog-footer a {
    border: 1px solid #ccc;
    padding: 10px 25px;
    text-decoration: none;
    color: #333;
}

.blog-footer a:hover {
    background: #111;
    color: #fff;
}

/* =========================================
   BLOG SECTION MOBILE RESPONSIVE
========================================= */

@media (max-width: 991px) {

    /* SECTION */
    .blog-section {
        padding: 60px 20px;
    }

    /* CONTAINER */
    .blog-container {
        max-width: 100%;
    }

    /* GRID */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* HEADING */
    .blog-heading {
        margin-bottom: 40px;
    }

    .blog-heading h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .blog-heading p {
        font-size: 14px;
        line-height: 1.7;
        padding: 0 10px;
    }

    /* IMAGE */
    .blog-img img {
        height: 230px;
    }

    /* CONTENT */
    .blog-content {
        padding: 18px;
    }

    /* TITLE */
    .blog-text h3 {
        font-size: 17px;
        line-height: 1.5;
    }

    /* DESC */
    .blog-text .desc {
        font-size: 13px;
        line-height: 1.7;
    }

    /* BUTTON */
    .blog-btn {
        font-size: 11px;
        padding: 8px 14px;
    }

    /* FOOTER */
    .blog-footer {
        margin-top: 50px;
    }

}

@media (max-width: 1024px) {

    .heading-font {
        letter-spacing: 1px;
    }

    .why-card {
        padding: 28px 22px;
    }

}

@media (max-width: 768px) {

    .blog-card {
        border-radius: 12px;
        overflow: hidden;
    }

    .jk-city {
        padding: 60px 0 38px;
    }

    .property-section {
        display: none;
    }

    .video-text-section {
       display:none;
    }

    .why-card {
        padding: 24px 20px;
    }

    .why-card ul {
        margin-top: 12px;
    }

    .why-card li {
        line-height: 1.7;
    }


}

@media (max-width: 576px) {

    /* SECTION */
    .blog-section {
        padding: 50px 15px;
    }

    /* HEADING */
    .blog-heading h2 {
        font-size: 26px;
    }

    .blog-heading p {
        font-size: 13px;
    }

    /* CARD */
    .blog-card {
        overflow: hidden;
    }

    /* IMAGE */
    .blog-img img {
        height: 210px;
    }

    /* CONTENT */
    .blog-content {
        flex-direction: column;
        padding: 18px 16px;
    }

    /* DATE */
    .blog-date {
        margin-right: 0;
        margin-bottom: 15px;
        width: 65px;
        height: 65px;
    }

    /* META */
    .blog-text .meta {
        font-size: 11px;
        line-height: 1.6;
    }

    /* TITLE */
    .blog-text h3 {
        font-size: 16px;
    }

    /* DESC */
    .blog-text .desc {
        font-size: 13px;
        margin: 10px 0;
    }

    /* FOOTER BUTTON */
    .blog-footer a {
        display: inline-block;
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .blog-card h3 {
        line-height: 1.4;
    }

}

/* =========================================
       GALLERY SECTION
    ========================================= */

.luxury-gallery-section {

    background: #f8f8f8;

    padding: 90px 0;

    overflow: hidden;
}

/* TOP CONTENT */

.gallery-top {

    text-align: center;

    max-width: 750px;

    margin: auto auto 60px;
}

.gallery-subtitle {

    color: #E19C25;

    font-size: 14px;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 10px;
}

.gallery-title {

    font-size: 46px;

    color: #111;

    margin-bottom: 18px;
}

.gallery-desc {

    color: #666;

    font-size: 15px;

    line-height: 1.8;
}

/* SWIPER */

.luxuryGallerySwiper {

    width: 100%;

    padding-bottom: 20px;
}

/* SLIDE */

.luxuryGallerySwiper .swiper-slide {

    width: 420px;

    height: 520px;

    transition: 0.4s ease;
}

/* CARD */

.gallery-card {

    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* IMAGE */

.gallery-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s ease;
}

/* OVERLAY */

.gallery-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.1));

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 30px;

    opacity: 0;

    transition: 0.4s ease;
}

.gallery-overlay h3 {

    color: #fff;

    font-size: 26px;

    margin-bottom: 8px;
    font-family: 'Felix', serif;
}

.gallery-overlay span {

    color: #E19C25;

    font-size: 14px;

    letter-spacing: 1px;
}

/* HOVER */

.gallery-card:hover img {

    transform: scale(1.08);
}

.gallery-card:hover .gallery-overlay {

    opacity: 1;
}

/* ACTIVE SLIDE */

.luxuryGallerySwiper .swiper-slide-active {

    transform: scale(1.03);
}

/* =========================================
       MOBILE RESPONSIVE
    ========================================= */

@media (max-width: 991px) {

    .luxury-gallery-section {

        padding: 70px 0;
    }

    .gallery-top {

        margin-bottom: 45px;

        padding: 0 20px;
    }

    .gallery-title {

        font-size: 36px;
    }

    .gallery-desc {

        font-size: 14px;
    }

    .luxuryGallerySwiper .swiper-slide {

        width: 320px;

        height: 420px;
    }

}

@media (max-width: 576px) {

    .luxury-gallery-section {

        padding: 55px 0;
    }

    .gallery-top {

        margin-bottom: 35px;

        padding: 0 15px;
    }

    .gallery-subtitle {

        font-size: 12px;
    }

    .gallery-title {

        font-size: 28px;

        margin-bottom: 14px;
    }

    .gallery-desc {

        font-size: 13px;

        line-height: 1.7;
    }

    .luxuryGallerySwiper .swiper-slide {

        width: 260px;

        height: 340px;
    }

    .gallery-overlay {

        opacity: 1;

        padding: 18px;
    }

    .gallery-overlay h3 {

        font-size: 18px;
    }

    .gallery-overlay span {

        font-size: 12px;
    }

}

/* FAQ SECTION */

details summary::-webkit-details-marker {
    display: none;
}

details {
    overflow: hidden;
}

details[open] {
    border-left: 4px solid #E19C25;
}

@media (max-width: 1024px) {

    .heading-font {
        letter-spacing: 1px;
    }

}

@media (max-width: 768px) {

    details summary {
        align-items: flex-start;
    }

}

@media (max-width: 576px) {

    details summary {
        font-size: 15px;
        line-height: 1.6;
    }

    details p {
        font-size: 13px;
        line-height: 1.8;
    }

}


/* HERO */
.jk-hero-content {
    max-width: 760px;
}

.jk-hero-eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #E19C25;
    margin-bottom: 20px;
}

.jk-hero-eyebrow::before,
.jk-hero-eyebrow::after {
    content: "";
    display: inline-block;
    width: 34px;
    height: 1px;
    background: #E19C25;
    vertical-align: middle;
    margin: 0 14px;
    opacity: .7;
}

.jk-hero-title {
    font-family: 'Felix', serif;
    color: #fff;
    letter-spacing: 2px;
    font-size: clamp(34px, 6vw, 66px);
    line-height: 1.08;
    text-transform: uppercase;
}

.jk-hero-title em {
    font-style: normal;
    color: #E19C25;
}

.jk-hero-sub {
    color: #ececec;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 1.6vw, 17px);
    line-height: 1.8;
    max-width: 560px;
    margin: 22px auto 0;
}

.jk-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 34px;
}

.jk-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 15px 30px;
    text-decoration: none;
    transition: .3s ease;
    border-radius: 50px;
}

.jk-hero-btn.primary {
    background: #E19C25;
    color: #fff;
}

.jk-hero-btn.primary:hover {
    background: #fff;
    color: #111;
}

.jk-hero-btn.ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .55);
}

.jk-hero-btn.ghost:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
}

.jk-hero-btn i {
    transition: .3s;
}

.jk-hero-btn:hover i {
    transform: translateX(4px);
}


.jk-feat {
    background: #faf8f4;
    padding: 90px 0;
}

.jk-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.jk-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.jk-eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #E19C25;
    margin-bottom: 16px;
}

.jk-eyebrow::before,
.jk-eyebrow::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: #E19C25;
    vertical-align: middle;
    margin: 0 12px;
    opacity: .6;
}

.jk-title {
    font-family: 'Felix', serif;
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.15;
    color: #111;
    letter-spacing: 1.5px;
}

.jk-sub {
    margin-top: 16px;
    color: #7a7a7a;
    font-size: 15px;
    line-height: 1.8;
}

.jk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.jk-card {
    background: #fff;
    border: 1px solid #ece4d4;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
}

.jk-media {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.jk-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s ease;
}

.jk-card:hover .jk-media img {
    transform: scale(1.07);
}

.jk-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .4), transparent 45%);
}

.jk-price {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #E19C25;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .5px;
    padding: 9px 16px;
}

.jk-status {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: rgba(17, 17, 17, .8);
    color: #fff;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 12px;
}

.jk-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.jk-dev {
    font-family: 'Montserrat', sans-serif;
    font-size: 10.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b08828;
    margin-bottom: 9px;
}

.jk-name {
    font-family: 'Felix', serif;
    font-size: 21px;
    color: #111;
    line-height: 1.25;
    margin-bottom: 9px;
    letter-spacing: .5px;
}

.jk-loc {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

.jk-loc i {
    color: #E19C25;
    margin-top: 3px;
    font-size: 12px;
}

.jk-divider {
    height: 1px;
    background: #eee;
    margin: 18px 0;
}

.jk-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 20px;
}

.jk-meta-item {
    text-align: center;
    padding: 0 4px;
}

.jk-meta-item+.jk-meta-item {
    border-left: 1px solid #f0ece2;
}

.jk-meta-item .lbl {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #b3b3b3;
    margin-bottom: 5px;
}

.jk-meta-item .val {
    font-size: 12.5px;
    color: #333;
    font-weight: 500;
}

.jk-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #111;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    padding: 13px 20px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: .3s;
}

.jk-btn:hover {
    background: #E19C25;
}

.jk-btn i {
    transition: .3s;
}

.jk-btn:hover i {
    transform: translateX(4px);
}

.jk-foot {
    text-align: center;
    margin-top: 50px;
}

.jk-foot a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #111;
    color: #111;
    font-family: 'Montserrat', sans-serif;
    padding: 14px 34px;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: .3s;
}

.jk-foot a:hover {
    background: #111;
    color: #fff;
}

.jk-foot a i {
    transition: .3s;
}

.jk-foot a:hover i {
    transform: translateX(4px);
}

@media(max-width:1024px) {
    .jk-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:640px) {
    .jk-grid {
        grid-template-columns: 1fr;
    }

    .jk-feat {
        padding: 64px 0;
    }
}

/* ===== ABOUT ===== */
.jk-about-eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, .55);
}

.jk-about-frame {
    position: relative;
}

.jk-about-frame::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, .45);
    z-index: 3;
    pointer-events: none;
}

.jk-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #111;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 15px 30px;
    text-decoration: none;
    transition: .3s;
     border-radius: 30px;
}

.jk-about-btn:hover {
    background: #fff;
    color: #111;
}

.jk-about-btn i {
    transition: .3s;
}

.jk-about-btn:hover i {
    transform: translateX(4px);
}

.jk-intro.on-dark .jk-eyebrow {
    color: #fff;
}

.jk-intro.on-dark .jk-eyebrow::before,
.jk-intro.on-dark .jk-eyebrow::after {
    background: #fff;
    opacity: .6;
}

.jk-intro.on-dark .jk-title {
    color: #fff;
}

.jk-intro.on-dark .jk-sub {
    color: rgba(255, 255, 255, .8);
}

.jk-eyebrow-plain {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #E19C25;
    margin-bottom: 6px;
}

/* CTA eyebrow */
.jk-cta-eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #E19C25;
    margin-bottom: 18px;
}

.jk-cta-eyebrow::before,
.jk-cta-eyebrow::after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 1px;
    background: #E19C25;
    vertical-align: middle;
    margin: 0 12px;
    opacity: .7;
}

.why-card {
    border: 1px solid #ece4d4;
    border-radius: 0;
    text-align: left;
    padding: 36px 30px;
    background: #fff;
}

.why-card::before {
    left: 30px;
    transform: none;
    width: 38px;
}

.why-card:hover::before {
    width: 66px;
}

.why-card:hover {
    box-shadow: 0 18px 42px rgba(17, 17, 17, .10);
    border-color: #e0d2b4;
}

.why-card .icon {
    width: 58px;
    height: 58px;
    margin: 14px 0 20px;
    background: transparent;
    border: 1.5px solid #E19C25;
    border-radius: 0;
}

.why-card .icon i {
    color: #E19C25;
}

.why-card h3 {
    margin-top: 0;
}

/* BLOG cards -> hairline border, gold date, hover lift */
.blog-card {
    box-shadow: none;
    border: 1px solid #ece4d4;
    transition: .35s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(17, 17, 17, .10);
    border-color: #e0d2b4;
}

.blog-category {
    position: absolute;
    top: 9px;
    left: 10px;
    background: #E19C25;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    height: 28px;
    display: flex;
    align-items: center;
    border-radius: 20px;
}

.blog-date {
    background: #E19C25;
}

.blog-btn {
    background: #111;
    letter-spacing: 1px;
}

.blog-btn:hover {
    background: #E19C25;
}

.blog-footer a {
    border-color: #111;
    color: #111;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 12px;
}

/* CTA buttons -> classic squared with gold ring kept */
.cta-section .btn-cta {
    border-radius: 30px;
}

/* CATEGORY GRID -> har tab/project pe same height */
.property-grid {
    min-height: 460px;
}

.property-image {
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-box {
    display: flex;
    flex-direction: column;
}

.property-features {
    flex: 1;
    overflow: auto;
}

@media (max-width: 991px) {
    .property-grid {
        min-height: 0;
    }
}

@media (prefers-reduced-motion: reduce) {

    .jk-card,
    .jk-media img,
    .jk-btn i,
    .jk-hero-btn i,
    .jk-foot a i {
        transition: none !important;
    }
}

/* ================= FEATURED PROJECTS — redesigned ================= */

.jk-feat-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 14px;
}

.jk-viewall {
    color: #111;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
    white-space: nowrap;
}

.jk-viewall:hover {
    color: #E19C25;
}

.jk-viewall i {
    transition: .3s;
}

.jk-viewall:hover i {
    transform: translateX(4px);
}

/* card ab poora clickable <a> hai */
.jk-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* purana top-left orange price-badge -> ab plain gold text body me */
.jk-price {
    position: static;
    background: none;
    color: #E19C25;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: normal;
    padding: 0;
    margin: 0 0 8px;
    z-index: auto;
}

.jk-tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #999;
    font-size: 13px;
    letter-spacing: normal;
}

/* status/RERA/Featured badges — image ke top-left, multiple pills */
.jk-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    max-width: calc(100% - 28px);
}

.jk-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 20px;
    color: #fff;
    white-space: nowrap;
}

.badge-blue {
    background: #2d3a4f;
}

.badge-gold {
    background: #c99a2e;
}

.badge-purple {
    background: #7b4fae;
}

.badge-green {
    background: #2f9e5b;
}

.badge-featured {
    background: #E19C25;
}

.badge-default {
    background: #555;
}

/* purana 3-column grid meta -> ab bed/area left, type-pill right */
.jk-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.jk-meta-left {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    color: #555;
}

.jk-meta-left i {
    color: #E19C25;
    margin-right: 5px;
}

.jk-meta-type {
    font-family: 'Montserrat', sans-serif;
    background: #f2f2f2;
    color: #666;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .jk-meta {
        flex-wrap: wrap;
    }

    .jk-meta-left {
        gap: 12px;
    }
}

/* ================= PROPERTIES BY CITY ================= */

.jk-city {
    background: #fff;
    padding: 40px;
}

.jk-city-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px;
}

.jk-city-card {
    flex: 0 1 260px;
    max-width: 260px;
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .1);
}

.jk-city-img {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.jk-city-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .5s ease;
}

.jk-city-card:hover .jk-city-img img {
    transform: scale(1.07);
}

.jk-city-pin {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
}

.jk-city-pin i {
    color: #E19C25;
    font-size: 14px;
}

.jk-city-body {
    padding: 16px 18px 18px;
}

.jk-city-body h3 {
    font-family: 'Felix', serif;
    font-size: 18px;
    color: #111;
    margin: 0 0 10px;
    letter-spacing: .5px;
}

.jk-city-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px dashed #eee;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
}

.jk-city-count {
    color: #888;
}

.jk-city-price {
    color: #E19C25;
    font-weight: 700;
}

/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {
    .jk-city-card {
        flex-basis: 220px;
    }
}

@media (max-width: 480px) {
    .jk-city {
        padding: 30px 0 !important;
    }

    .jk-city-grid {
        gap: 18px;
        margin-top: -30px;
    }

    .jk-city-card {
        flex: 0 1 100%;
        max-width: 340px;
    }

    .jk-city-img {
        height: 170px;
    }

    .max-w-7xl {
        max-width: 80rem;
        margin-top: 0;
    }
}

/* ================= BUILT ON TRUST SECTION ================= */
.jk-trust-section {
    background: linear-gradient(180deg, #fffaf0 0%, #fff 100%);
    padding: 90px 0;
}

.jk-trust-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
    padding: 0 20px;
}

.jk-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #faf1dc;
    color: #c9861f;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.jk-trust-badge i {
    color: #E19C25;
}

.jk-trust-title {
    font-family: 'Felix', serif;
    font-size: clamp(30px, 4vw, 44px);
    color: #111;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.jk-trust-sub {
    color: #7a7a7a;
    font-size: 15px;
    line-height: 1.7;
}

.jk-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.jk-trust-card {
    background: #fff;
    border: 1px solid #f0ece2;
    border-radius: 16px;
    padding: 26px 22px;
    transition: .3s;
}

.jk-trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .07);
    border-color: #e6d9b8;
}

.jk-trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #faf1dc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.jk-trust-icon i {
    color: #E19C25;
    font-size: 19px;
}

.jk-trust-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

.jk-trust-card p {
    font-size: 13px;
    color: #888;
}

@media (max-width: 1024px) {
    .jk-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .jk-trust-section {
        padding: 60px 0;
    }

    .jk-trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

}