.hr-breadcrumb{display:none}
.text-gold { color: #c2a165 !important; }
.bg-gold { background-color: #c2a165 !important; }

.btn-outline-light {
    border-radius: 0;
    letter-spacing: 1px;
    font-size: 0.8rem;
    padding: 10px 20px;
}

/* Hero Banner */
.hero-banner {
    height: 420px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&w=1920&q=80') center/cover;
    position: relative;
    display: flex;
    align-items: flex-end;
}
.hero-banner:after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #0e3552 0%, #000 70%);
    background: radial-gradient(circle at center, #0e3552 0%, #000 70%);
    opacity: .7;
}
.property-stats-bar {
    background-color: rgba(0, 0, 0, 0.85);
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 15px 0;
    width: 100%;
    z-index: 1;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 300;
    color: #fff;
    font-family: var(--font-01);
}

.stat-price {
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    font-family: var(--font-01);
}

/* Description Section */
.description-section {
    position: relative;
    padding: 80px 0;
    background-color: #000;
}

/* Watermark Background */
.watermark-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 45rem;
    color: rgba(255, 255, 255, 0.02);
    font-weight: 900;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: -20px;
}

.desc-content {
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
    line-height: 1.8;
    color: #aaa;
}
.desc-content p{
    font-size: 18px;
}
.property-details-section ul li{
    font-size: 18px;
}
.section-title-block {
    padding-left: 15px;
    margin-bottom: 30px;
}
.section-title-block p{
    font-size: 16px;
    font-family: var(--font-01);
}
/* Swiper Gallery */
.gallery-section {
    background-color: #000;
    padding-bottom: 50px;
}

.swiper-main {
    width: 100%;
    height: 60vh;
}

.swiper-main .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-thumbs {
    width: 100%;
    height: 100px;
    box-sizing: border-box;
    padding: 10px 0;
}

.swiper-thumbs .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s;
}

.swiper-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #c2a165;
}

.swiper-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Amenities Section */
.amenities-section {
    background-color: #f8f8f8;
    color: #111;
    padding: 80px 0;
    position: relative;
}

.amenities-list {
    column-count: 3;
    column-gap: 40px;
    list-style: none;
    padding: 0;
}

@media (max-width: 768px) {
    .amenities-list { column-count: 1; }
    .description-section {overflow-x: hidden;}
}

.amenities-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 18px;
    break-inside: avoid;
    font-family: var(--font-01);
}
.features-section h5{
    font-size: 18px;
}
.features-section ul li{
    font-size: 18px;
}
.btn:hover{
    background-color: #cda85f;
}
.amenities-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 2px;
    background-color: #c2a165;
}

/* Form Section */
.form-section {
    position: relative;
    background-color: #050505;
    padding: 80px 0;
    overflow: hidden;
}

.custom-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    border-radius: 0;
    color: #fff;
    padding: 10px 0;
    margin-bottom: 25px;
    box-shadow: none !important;
    font-size: 18px;
}

.custom-input:focus {
    border-color: #c2a165;
    background: transparent;
    color: #fff;
}

.custom-input::placeholder {
    color: #666;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.btn-submit {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    padding: 12px 40px;
    border-radius: 0;
    transition: 0.3s ease;
}

.btn-submit:hover {
    background: #cda85f;
    color: #000;
}

/* Similar Listings */
.similar-listings {
    background-color: #fff;
    padding: 60px 0;
}

.listing-card {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 15px;
    text-decoration: none;
}

.listing-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.listing-card h5 {
    position: relative;
    z-index: 11;
    margin: 0;
    font-size: 18px;
    color: #fff!important;
}
/*slider css start*/
.custom-main-prev, .custom-main-next,
.custom-thumbs-prev, .custom-thumbs-next {
    position: absolute;
    z-index: 9999; /* Forces them to the very front */
    cursor: pointer;
    color: #ffffff; /* White icon color */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

/* Hover effect for a nice UI touch */
.custom-main-prev:hover, .custom-main-next:hover,
.custom-thumbs-prev:hover, .custom-thumbs-next:hover {
    color: #c9a45c; /* Highlights golden on hover */
}

/* --- MAIN SLIDER ARROWS --- */
.custom-main-prev, .custom-main-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px; /* Size of the main arrow */
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.4); /* Subtle dark circle background so it pops on light images */
    border-radius: 50%;
}
.custom-main-prev { left: 20px; }
.custom-main-next { right: 20px; }

/* --- THUMBNAIL ARROWS --- */
.custom-thumbs-prev, .custom-thumbs-next {
    top: 25.6%; /* Centers them vertically against the thumbnail images */
    font-size: 22px; /* Slightly smaller for thumbs */
}
.custom-thumbs-prev { left: 15px; }
.custom-thumbs-next { right: 15px; }
.thumbs-wrapper {
    position: relative;
    padding-bottom: 45px !important; /* Forces extra space at the bottom */
}

/* 2. Position the pagination container */
.thumbs-wrapper .swiper-pagination {
    position: absolute;
    bottom: 10px !important; /* Locks it to the bottom of the black strip */
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

/* 3. Style the inactive dots */
.thumbs-wrapper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    background: #ffffff !important; /* White dots */
    opacity: 0.4 !important;        /* Dimmed when not active */
    margin: 0 6px !important;       /* Spacing between dots */
    cursor: pointer;
    transition: all 0.3s ease;
}

/* 4. Style the active dot */
.thumbs-wrapper .swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: #c9a45c !important; /* Golden color to match your theme */
    
    /* Optional: Makes the active dot look like a modern pill shape */
    width: 25px; 
    border-radius: 5px;
}
/*slider css end*/
@media(max-width:767.98px){
    .hero-banner{
        height: 500px;
    }
}