/* ================================================================
   MAIN SECTION WRAPPER
================================================================ */
.iman-properties {
    position: relative;
    width: 100%;
}

/* ================================================================
   MAIN SWIPER
================================================================ */
.swiper-main {
    width: 100%;
    height: 80vh;
    overflow: hidden;
    position: relative;
}

.img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* ================================================================
   TEXT CONTENT
================================================================ */
.property-content {
    position: absolute;
    top: 37%;
    left: 5%;
    max-width: 420px;
    color: #fff;
    z-index: 2;
}

.property-title {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif !important;
}

.property-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #e7e7e7;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    background: #04384E !important;
    padding: 10px 15px !important;
    color: #fff !important;
    border-radius: 6px !important;
    text-decoration: none;
    font-size: 15px !important;
}
.read-more-btn:hover {
    background: #04384E !important;
    color: #fff !important;
}

/* ================================================================
   THUMB GLASS WRAPPER (UNCHANGED)
================================================================ */
.swiper-thumbs-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: -80px;
    padding: 20px;
    position: relative;
    z-index: 20;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.2);
}

/* ================================================================
   LEFT ARROWS (ONE LINE)
================================================================ */
.thumb-arrows {
    display: flex;
    flex-direction: row; /* ONE LINE */
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.thumb-nav {
    position: static;
    width: 46px;
    height: 46px;
    background: #04384E;
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* ================================================================
   THUMB SWIPER
================================================================ */
.swiper-thumbs {
    flex: 1;
}

.property-thumb-slide {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 128px;
    cursor: pointer;
}

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

.thumb-title {
    position: absolute;
    bottom: 12px;
    left: 12px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    text-shadow: 0px 1px 4px rgba(0,0,0,0.8);
}

.swiper-slide-thumb-active .thumb-img {
    outline: 3px solid #1D2655;
    transform: scale(1.07);
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(29,38,85,0.3);
    height: 125px !important;
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media(max-width: 768px) {
    .swiper-main {
        height: 450px;
    }

    .property-content {
        top: 15%;
        max-width: 85%;
    }

    .swiper-thumbs-wrapper {
        margin-top: -40px;
    }
    
    .property-thumb-slide {
    	height: 113px;
	}

	.swiper-slide-thumb-active .thumb-img {
    	height: 110px !important;
	}
    .main-img {
    height: 450px !important;
    }
}