
    .related-property-slider .splide__slide {
    padding: 10px;
}

.homec-property {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
}

.homec-property:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.homec-property__head img {
    height: 200px;
    object-fit: cover;
}


.accordion-button:not(.collapsed) {
    background: #0B1F3A;
    color:#fff;
}
.accordion-button {
    background: #132F52;
    color:#fff;
}
.main-image-wrapper {
    position: relative;
    height: 600px;
    background-image: var(--main-img);
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blur-bg {
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(25px) brightness(0.5);
    z-index: 1;
}

.main-image {
    position: relative;
    z-index: 2;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.6);
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
}

.nav-arrow:hover {
    background: rgba(255,255,255,0.9);
}

.left-arrow {
    left: 20px;
}

.right-arrow {
    right: 20px;
}

/* ===== GALLERY ===== */
.gallery-wrapper {
    display: flex;
    gap: 10px;
    height: 420px;
}

/* LEFT */
.gallery-left {
    width: 70%;
    cursor: pointer;
}

.gallery-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* RIGHT */
.gallery-right {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gallery-right div {
    height: 49%;
    cursor: pointer;
}

.gallery-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* ===== MODAL ===== */
#galleryModal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

/* SHOW */
#galleryModal.active {
    opacity: 1;
    visibility: visible;
}

/* IMAGE */
#modalImage {
    max-width: 90%;
    max-height: 85%;
    border-radius: 10px;

    transform: scale(0.85);
    transition: 0.3s;
}

#galleryModal.active #modalImage {
    transform: scale(1);
}

/* CLOSE */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

/* NAV */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}

.nav.prev { left: 20px; }
.nav.next { right: 20px; }

#property-tab-nav {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000; /* higher than your header's z-index */
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    transition: box-shadow 0.2s;
}
#property-tab-nav.is-sticky { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
#property-tabs::-webkit-scrollbar { display: none; }

.prop-tab-link {
    display: inline-block;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.prop-tab-link:hover { color: #111827; text-decoration: none; }
.prop-tab-link.active { color: #2563eb; border-bottom-color: #2563eb; }
.prop-tab-link--dropdown {
    display: block;
    padding: 8px 16px;
    border-bottom: none;
    color: #374151;
    font-weight: 400;
}
.prop-tab-link--dropdown.active { color: #2563eb; background: #eff6ff; border-bottom: none; }
.prop-tab-link--dropdown:hover { background: #f9fafb; color: #111827; }


.pd-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 per row */
    gap: 20px;
}

.pd-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
    transition: 0.3s;
}

.pd-feature-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.pd-feature-item .icon img {
    width: 50px;
    height: 50px;
}

.pd-feature-item .content {
    display: flex;
    flex-direction: column;
}

.pd-feature-item .title {
    font-size: 13px;
    color: #777;
}

.pd-feature-item .value {
    font-size: 14px;
    font-weight: 500;
    color: #222;
}

@media (max-width: 992px) {
    .pd-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pd-features {
        grid-template-columns: 1fr;
    }
}

.amenities-section {
    padding-top: 20px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* GRID */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
}

/* ITEM */
.amenity-item {
    text-align: center;
    transition: 0.3s;
}

.amenity-item .icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-bottom: 10px;
}

.amenity-item .name {
    font-size: 14px;
    color: #333;
}

/* HOVER EFFECT (premium feel) */
.amenity-item:hover {
    transform: translateY(-5px);
}
.homec-location-card
{
    min-height:20px;
}
.homec-location-card__text {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}
.section-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #0B1F3A;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    width: 40px;
    height: 3px;
    background: #F97316;
    position: absolute;
    bottom: -5px;
    left: 0;
}
.row { align-items: flex-start; }
