/* =====================================
   GLOBAL PREMIUM UI STYLING  
===================================== */
:root {
    --primary: #0078ff;
    --primary-dark: #005fcc;
    --text-dark: #222;
    --text-light: #666;
    --bg-light: #f8faff;
    --border-light: #e8efff;
    --shadow: 0 3px 12px rgba(0,0,0,0.06);
}

body {
    background: #f5f7fb;
    font-family: "Inter", sans-serif;
}

/* =====================================
   PAGE LAYOUT
===================================== */
.page-wrapper {
    /*margin-left: 6%;*/
    /*margin-right: 6%;*/
    padding: 24px 0;
}

/*.left-content {*/
/*    padding-right: 22px;*/
/*}*/

@media(max-width:991px){
    .left-content { 
        /*padding-right:0; */
        padding: 0 10px;
        width: 100%;
    }
}

/* =====================================
   TITLE SECTION
===================================== */
.property-title-box {
    background: #fff;
    padding: 24px;
    margin-top: 10px;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.property-title-box h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.title-location {
    font-size: 16px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.title-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 10px;
}

/* =====================================
   CONTENT CARDS
===================================== */
.content-card {
    background: #fff;
    padding: 22px;
    border-radius: 14px;
    margin-top: 22px;
    box-shadow: var(--shadow);
}

.content-card h3 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 16px;
    text-align: center;
    color: var(--text-dark);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
}

/*.details-grid div {*/
/*    background: var(--bg-light);*/
/*    padding: 14px;*/
/*    border-radius: 10px;*/
/*    font-size: 15px;*/
/*    border: 1px solid var(--border-light);*/
/*}*/

@media(max-width:768px){
    .details-grid { grid-template-columns:1fr; }
}

/* =====================================
   AMENITIES TAGS
===================================== */
.amenity-item {
    background: #eef6ff;
    padding: 10px 14px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 6px;
    border: 1px solid #d7e9ff;
    color: #004aad;
    font-weight: 500;
}

/* =====================================
   RIGHT SIDEBAR
===================================== */
/* ===========================================
   RIGHT SIDEBAR — CLEAN PRODUCTION UI
===========================================*/

.right-sidebar {
    position: sticky;
    top: 95px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}


/* ===========================================
   ENQUIRY BOX
===========================================*/

.enquiry-box {
    background: #fff;
    padding: 20px 18px;
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
    margin-top: 25px;
    margin-bottom: 22px;
}

.enquiry-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #222;
}

/* Input + Textarea */
.enquiry-box .form-control {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    font-size: 15px;
    background: #fff;
    color: #333;
    box-sizing: border-box;
    transition: 0.25s;
}

.enquiry-box .form-control:focus {
    border-color: #0078ff;
    box-shadow: 0 0 0 3px rgba(0,120,255,0.15);
    outline: none;
}

.enquiry-box textarea.form-control {
    min-height: 110px;
    resize: vertical;
}

/* Button */
.btn-submit {
    width: 100%;
    padding: 12px;
    background: #0078ff;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.25s ease;
    font-size: 16px;
}

.btn-submit:hover {
    background: #005fcc;
}



/* ===========================================
   NEED ASSISTANCE BOX
===========================================*/

.help-box {
    background: #fff;
    padding: 20px 18px;
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
    text-align: center;
}

.help-box h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.assist-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
}

/* Contact Number */
.help-phone-box {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0 18px;
    color: #111;
}

/* Buttons */
.assist-btn {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    color: #fff !important;
    margin-bottom: 10px;
    transition: 0.25s ease;
    font-size: 15px;
}





/* ===========================================
   RESPONSIVE FIXES
===========================================*/

@media (max-width: 991px) {
    .right-sidebar {
        position: relative;
        top: 0;
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .enquiry-box, .help-box {
        padding: 18px 14px;
    }
}






/* =====================================
   IMAGE GALLERY (Flickity)
===================================== */
.gallery-card {
    background: #fff;
    padding: 14px;
    border-radius: 14px;
    margin-top: 20px;
    box-shadow: var(--shadow);
}

.gallery-cell img {
    width: 100%;
    /*height: 600px;*/
    border-radius: 14px;
    display: block;
    object-fit: contain;
}

/* =====================================
   PREMIUM NEARBY LOCATIONS
===================================== */
.nearby-card {
    background: #fff;
    padding: 22px;
    border-radius: 14px;
    margin-top: 22px;
    box-shadow: var(--shadow);
}

.nearby-title-main {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
}

.nearby-box {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    padding: 14px 16px;
    border-radius: 12px;
    transition: .2s;
}
.nearby-box:hover {
    background: #eef4ff;
    border-color: #cddfff;
}

.nearby-icon {
    background: #e6efff;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
}
.nearby-icon i {
    color: var(--primary);
    font-size: 22px;
}

.nearby-location-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.nearby-meta {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    margin-top: 2px;
}

.nearby-meta .dot {
    width: 6px;
    height: 6px;
    background: #777;
    border-radius: 50%;
    margin: 0 8px;
}

@media(max-width:768px){
    .nearby-grid { grid-template-columns:1fr; }
}
