/* ==========================================================================
   RENTELLOR POST PROPERTY - CLEAN CSS (Duplicates Removed)
   ========================================================================== */

/* Root Variables & General Setup */
:root {
    --brand-orange: #ff6a2e;
    --primary-color: #535CE8;
    --success-color: #10b981;
    --error-color: #ef4444;
}
/* html,body{
    height: 100%;
    overflow: hidden;
} */

/* Page Background & Layout */
.property-listing-workspace {
    background: linear-gradient(180deg, #5a67d8, #7f9cf5);
    height:100vh; 
    padding: 32px 0 60px;
    font-family: 'Poppins', sans-serif;
    overflow-y: auto;
    overflow-x:hidden ;
    margin-top: 0px;
}

.workspace-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.main-flex-layout-wrapper {
    display: flex;
    gap: 32px;
    align-items: stretch;    /* both columns fill full height */
    min-height: 100%;
}

/* ========================================================================== 
   LEFT SIDEBAR (Sticky)
   ========================================================================== */

.layout-sidebar-panel {
    flex: 0 0 35%;
    max-width: 35%;
    position: sticky;
    top: 0;
    height: fit-content;
    max-height: 100vh;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-self: flex-start;
}

.layout-sidebar-panel::-webkit-scrollbar {
    display: none;
}

.design-stepper-sidebar {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 30px;
    margin-top: 16px;
    border-radius: 20px;
}

.sidebar-main-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 30px;
}

.dynamic-title-category {
    color: #ffffff;
    text-transform: capitalize;
}

/* Stepper Nodes */
.stepper-nodes-stack {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 8px;
}

.stepper-nodes-stack::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.stepper-node-row {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 12px 14px;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.stepper-node-row.active-node {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stepper-node-row.active-node::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    border-radius: 10px;
    background: linear-gradient(180deg, #6ea8fe, #4dabf7);
    box-shadow: 0 0 12px rgba(77, 171, 247, 0.7);
}

.stepper-node-row.active-node::after {
    display: none;
}

.node-index-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #6c7cff;
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
    z-index: 2;
}

.node-index-circle.active {
    background: #6c7cff;
    border: none;
    box-shadow: none;
    color: #ffffff;
}

.node-index-circle.completed {
    background: #34d399;
    border: none;
    color: #ffffff;
}

.node-text-payload {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.node-header {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.stepper-node-row.active-node .node-header {
    color: #ffffff;
}

.node-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Score Card */
.property-score-box-card {
    margin-top: 32px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #ffffff;
    box-shadow: none;
}

.score-circular-canvas {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: conic-gradient(#10b981 var(--score-percentage, 0%), rgba(255, 255, 255, 0.2) 0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.score-inner-text-mask {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: #ffffff;
}

.score-metadata-payload {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.score-title-label {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.score-helper-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.4;
}

/* ========================================================================== 
   RIGHT FORM PANEL
   ========================================================================== */

.layout-form-panel {
    flex: 1;
    min-width: 0;
    margin-top: 16px;
    align-self: flex-start;
}

.form-workspace-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(226, 232, 240, 0.8);
    margin-bottom: 40px;
    margin-top: 40px;
    scroll-behavior: smooth;
}

.workspace-main-heading {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 32px;
    position: relative;
    padding-bottom: 12px;
}

.workspace-main-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #FF6F43;
    border-radius: 2px;
}

/* Form Grid */
.flex-grid-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 20px;
}

.flex-field-item {
    display: flex;
    flex-direction: column;
}

.flex-field-item.width-50 {
    flex: 0 0 calc(50% - 10px);
    width: calc(50% - 10px);
}

.flex-field-item.width-100 {
    flex: 0 0 100%;
    width: 50%;
}

.form-field-group-container {
    width: 100%;
    padding: 24px;
    background: #f8fafc;
    border-radius: 16px;
    margin-bottom: 8px;
}

/* Form Labels & Fields */
.section-field-label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
}

.custom-form-field {
    width: 100%;
    height: 48px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    /* background-color: #ffffff; */
    /* border-bottom: 1px solid #cbd5e1; */
    /* border-radius: 10px; */
    transition: all 0.2s ease;
    outline: none;
}




.custom-form-field.select-field-element {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

/* Date Inputs */
.date-input-container {
    display: flex;
    flex-direction: column;
}

.field-date-label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
}

.custom-date-field {
    width: 100%;
    height: 48px;
    padding: 10px 16px;
    font-size: 14px;
    color: #1e293b;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    outline: none;
    transition: all 0.2s ease;
}

.custom-date-field:focus {
    border-color: #535CE8;
    box-shadow: 0 0 0 3px rgba(83, 92, 232, 0.12);
}

/* Search Fields */
.search-info-block {
    margin-bottom: 12px;
}

.search-block-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.search-block-desc {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

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

.search-input-wrapper .search-icon-left {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
    pointer-events: none;
}

.search-field-element {
    padding-left: 44px !important;
}

/* Error Handling */
.error-text-msg {
    font-size: 12px;
    color: #ef4444;
    font-weight: 500;
    margin-top: 6px;
}

.input-error-border {
    border-color: #ef4444 !important;
}

.input-error-border:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12) !important;
}

/* Radio Buttons */
.custom-radio-row {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.radio-label-container {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.radio-label-container input[type="radio"] {
    display: none;
}

.radio-custom-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
}

.radio-label-container input[type="radio"]:checked + .radio-custom-circle {
    border-color: #535CE8;
}

.radio-label-container input[type="radio"]:checked + .radio-custom-circle::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #535CE8;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.radio-text-string {
    font-size: 14px;
    font-weight: 500;
    color: #334155;
}

/* Capsule Pills */
.capsule-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.capsule-pill-btn {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
    border-radius: 9999px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.capsule-pill-btn:hover {
    border-color: #94a3b8;
    background: #f8fafc;
}

.capsule-pill-btn.active {
    background: #535CE8;
    border-color: #535CE8;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(83, 92, 232, 0.2);
}

/* Checkbox Cards */
.checkbox-flex-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 8px;
    width: 100%;
}

.checkbox-card-wrapper {
    width: 100%;
}

.custom-checkbox-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.custom-checkbox-card:hover {
    border-color: #cbd5e1;
    background-color: #f8fafc;
}

.custom-checkbox-card.selected {
    border-color: #535CE8;
    background-color: #f0f2ff;
}

.custom-checkbox-card span {
    font-size: 13px;
    font-weight: 550;
    color: #334155;
}

.custom-checkbox-card.selected span {
    color: #535CE8;
}

.visual-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #535CE8;
    border-radius: 4px;
    cursor: pointer;
}

/* Media Upload Section */
.media-step-wrapper {
    display: flex;
    flex-direction: column;
    gap: 36px;
    width: 100%;
}

.media-section-block {
    display: flex;
    flex-direction: column;
}

.media-input-heading {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.media-dropzone-box {
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    background-color: #f8fafc;
    padding: 40px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.media-dropzone-box:hover {
    border-color: #535CE8;
    background-color: #f0f2ff;
}

.dropzone-icon {
    font-size: 32px;
    color: #64748b;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.media-dropzone-box:hover .dropzone-icon {
    color: #535CE8;
}

.dropzone-text-main {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin: 0;
}

.dropzone-text-sub {
    font-size: 11px;
    color: #64748b;
    margin: 0;
}

/* Media Preview Grid */
.media-preview-flex-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 16px;
    margin-top: 24px;
    width: 100%;
}

.preview-thumbnail-item {
    position: relative;
    width: 100%;
}

.thumbnail-inner-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #cbd5e1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.thumbnail-inner-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail-inner-wrapper:hover img {
    transform: scale(1.05);
}

.thumbnail-inner-wrapper.video-height {
    aspect-ratio: 16 / 9;
}

.thumbnail-inner-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #000;
}

.remove-media-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: rgba(239, 68, 68, 0.9);
    color: #ffffff;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.remove-media-badge:hover {
    background-color: rgba(220, 38, 38, 1);
    transform: scale(1.1);
}

/* ========================================================================== 
   CONTROL BUTTONS
   ========================================================================== */

.control-deck-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid #e2e8f0;
}

.custom-btn {
    height: 48px;
    padding: 0 32px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.custom-btn.btn-prev {
    background-color: transparent;
    border: 1px solid #535CE8;
    color: #535CE8;
}

.custom-btn.btn-prev:hover {
    background-color: rgba(83, 92, 232, 0.06);
    border-color: #535CE8;
    color: #535CE8;
}

.custom-btn.btn-next {
    background: linear-gradient(135deg, #ff8a5b 0%, #ff7e4b 50%, #ff6a2e 100%);
    border: none;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(255, 126, 75, 0.32), 0 2px 6px rgba(255, 126, 75, 0.18);
}

.custom-btn.btn-next:hover {
    background: linear-gradient(135deg, #ff8a5b 0%, #ff7e4b 50%, #ff6a2e 100%);
    filter: brightness(1.04);
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(255, 126, 75, 0.38);
}

.custom-btn.btn-next:active {
    transform: translateY(0);
}

.visibility-hidden {
    visibility: hidden;
    pointer-events: none;
}

/* ========================================================================== 
   MODAL STYLES
   ========================================================================== */

.custom-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 24px;
}

.custom-modal-content {
    background: #ffffff;
    border-radius: 24px;
    padding: 36px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    text-align: center;
    animation: modalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.custom-modal-content .modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.custom-modal-content .modal-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 28px 0;
}

.modal-actions-wrapper {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.custom-modal-content .custom-btn {
    flex: 1;
}

.custom-modal-content .btn-outline {
    background-color: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #475569;
}

.custom-modal-content .btn-outline:hover {
    background-color: #f8fafc;
    border-color: #94a3b8;
    color: #1e293b;
}

.custom-modal-content .btn-primary {
    background-color: #535CE8;
    border: 1.5px solid #535CE8;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(83, 92, 232, 0.2);
}

.custom-modal-content .btn-primary:hover {
    background-color: #4049cf;
    border-color: #4049cf;
    box-shadow: 0 6px 16px rgba(83, 92, 232, 0.3);
}

/* ========================================================================== 
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1024px) {
    .main-flex-layout-wrapper {
        flex-direction: column;
        gap: 24px;
    }
    
    .layout-sidebar-panel {
        flex: 0 0 100%;
        max-width: 100%;
        position: static;
        max-height: none;
        overflow-y: visible;
    }
    
    .design-stepper-sidebar {
        padding: 24px;
    }
    
    .layout-form-panel {
        margin-top: 0;
    }
    
    .form-workspace-card {
        padding: 28px 20px;
    }
}

@media (max-width: 768px) {
    .flex-field-item.width-50 {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .stepper-nodes-stack {
        display: flex;
    }
    
    .property-score-box-card {
        margin-top: 0;
    }

    .property-listing-workspace {
        padding-top: 16px;
    }

    .sidebar-main-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

/* ========================================================================== 
   LEGACY PHP STYLES (Keep for compatibility)
   ========================================================================== */

.drag-box {
    position: relative;
    border: 1.5px dashed #cfd7e6;
    border-radius: 16px;
    padding: 34px 22px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(16, 24, 40, 0.04);
    color: #334155;
    font-weight: 500;
}

.drag-box.dragover {
    border-color: #2563eb;
    background: #eff5ff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
    transform: translateY(-1px);
}

.icon-checkbox-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid #e4eaf3;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 2px 8px rgba(17, 24, 39, 0.04);
    transition: all 0.22s ease;
    cursor: pointer;
}

.icon-checkbox-row:hover {
    border-color: #cbd8ea;
    box-shadow: 0 10px 20px rgba(30, 64, 175, 0.08);
    transform: translateY(-1px);
}

.icon-checkbox-row.active {
    border-color: #f97316;
    background: linear-gradient(180deg, #fff7ed 0%, #fff3e8 100%);
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.14), 0 10px 20px rgba(249, 115, 22, 0.12);
}

.icon-checkbox-row input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.icon-checkbox-row .icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef4ff;
    color: #1d4ed8;
    font-size: 16px;
    flex: 0 0 auto;
}

.icon-checkbox-row.active .icon-wrap {
    background: #ffedd5;
    color: #c2410c;
}

.icon-checkbox-row .option-text {
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    padding-right: 2px;
    flex: 1;
}

.amenity-cart-mini {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 6px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.amenity-cart-btn {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    border: 1px solid #cfd8e3;
    background: #ffffff;
    color: #0f172a;
    font-weight: 700;
    line-height: 1;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    touch-action: manipulation;
}

.amenity-cart-btn:hover {
    border-color: #94a3b8;
    background: #f8fafc;
}

.amenity-cart-btn:active {
    transform: scale(0.97);
}

.amenity-cart-btn.plus {
    background: #f97316;
    border-color: #f97316;
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(249, 115, 22, 0.3);
}

.amenity-cart-btn.plus:hover {
    background: #ea580c;
    border-color: #ea580c;
}

.amenity-cart-count {
    min-width: 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.amenity-cart-check-wrap {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: auto;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 4px 10px;
}

.amenity-cart-check {
    width: 16px;
    height: 16px;
    accent-color: #f97316;
}

.amenity-cart-check-label {
    font-size: 12px;
    color: #334155;
    font-weight: 700;
    letter-spacing: 0.1px;
}

/* Autocomplete Dropdown */
.location-wrapper {
    position: relative;
}

.custom-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 6px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
    border-top: none;
    border-radius: 12px;
    box-shadow: 0 18px 32px rgba(26, 33, 61, 0.12);
    max-height: 260px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
}

.custom-item {
    padding: 12px 14px;
    cursor: pointer;
    border-bottom: 1px solid #eff2fa;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.custom-item:hover {
    background-color: #f3f7ff;
    transform: translateX(2px);
}

.custom-item:last-child {
    border-bottom: none;
}

.custom-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1f2a44;
    margin-bottom: 2px;
}

.custom-item small {
    color: #6b7280;
    font-size: 12px;
}

/* Quick Location Field */
.quick-location-field {
    position: relative;
}

.quick-location-field__hint {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.5;
    color: #64748b;
}

.quick-location-field__control {
    position: relative;
    display: flex;
    align-items: center;
}

.quick-location-field__icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #94a3b8;
    font-size: 15px;
    pointer-events: none;
}

.quick-location-field__input {
    padding: 12px 44px 12px 42px;
    min-height: 48px;
    border-radius: 12px;
    border: 1px solid #dfe4f3;
    background: #fff;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quick-location-field__input:focus {
    border-color: #ff7e4b;
    box-shadow: 0 0 0 3px rgba(255, 126, 75, 0.18);
}

.quick-location-field__input.is-open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-color: transparent;
}

.quick-location-field__spinner {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #ff7e4b;
    font-size: 16px;
}

.quick-location-dropdown {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 6px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
    border: 1px solid #dfe4f3;
    border-top: none;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 18px 36px rgba(26, 33, 61, 0.14);
    max-height: min(320px, 50vh);
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
}

.quick-location-dropdown__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
    border-bottom: 1px solid #eff2fa;
    margin-bottom: 4px;
}

.quick-location-dropdown__empty,
.quick-location-dropdown__status {
    padding: 16px 12px;
    text-align: center;
    font-size: 14px;
    color: #64748b;
    line-height: 1.45;
}

.quick-unified-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 12px 12px;
    border: none;
    border-radius: 10px;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.quick-unified-item:hover,
.quick-unified-item.active,
.quick-unified-item:focus-visible {
    background: #f3f7ff;
    outline: none;
}

.quick-unified-item__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 15px;
}

.quick-unified-item--society_db .quick-unified-item__icon {
    background: #fff7ed;
    color: #ea580c;
}

.quick-unified-item--locality_db .quick-unified-item__icon {
    background: #eff6ff;
    color: #2563eb;
}

.quick-unified-item--google .quick-unified-item__icon {
    background: #f0fdf4;
    color: #16a34a;
}

.quick-unified-item__body {
    flex: 1;
    min-width: 0;
}

.quick-unified-item__title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.35;
    word-break: break-word;
}

.quick-unified-item__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.quick-unified-item__badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
}

.quick-unified-item__badge--society {
    background: #ffedd5;
    color: #c2410c;
}

.quick-unified-item__badge--locality {
    background: #dbeafe;
    color: #1d4ed8;
}

.quick-unified-item__badge--google {
    background: #dcfce7;
    color: #15803d;
}

.quick-unified-item__sub {
    font-size: 12px;
    color: #64748b;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* Scrollbar Styles */
.custom-autocomplete::-webkit-scrollbar,
.quick-location-dropdown::-webkit-scrollbar {
    width: 8px;
}

.custom-autocomplete::-webkit-scrollbar-track,
.quick-location-dropdown::-webkit-scrollbar-track {
    background: #f6f7fb;
    border-radius: 999px;
}

.custom-autocomplete::-webkit-scrollbar-thumb,
.quick-location-dropdown::-webkit-scrollbar-thumb {
    background: #cfd6ea;
    border-radius: 999px;
}

@media (max-width: 575.98px) {
    .quick-location-field__input {
        font-size: 16px;
        min-height: 44px;
        padding-left: 40px;
    }

    .quick-location-dropdown {
        max-height: min(280px, 45vh);
        border-radius: 0 0 12px 12px;
    }

    .quick-unified-item {
        padding: 14px 10px;
        min-height: 48px;
    }

    .icon-checkbox-row {
        min-height: 60px;
        padding: 10px 12px;
        gap: 10px;
    }

    .icon-checkbox-row .icon-wrap {
        width: 34px;
        height: 34px;
    }

    .icon-checkbox-row .option-text {
        font-size: 13px;
    }

    .amenity-cart-btn {
        width: 34px;
        height: 34px;
    }
}

/* ==========================================================================
   CUSTOM REDESIGNED STYLES FOR BASIC STEP & PROPERTY TYPE COLLAPSIBLES
   ========================================================================== */

.post-property-page .workspace-main-heading {
    color: #FF6F3C !important;
}

.post-property-page .workspace-main-heading::after {
    background: #FF6F3C !important;
}

.post-property-page .custom-form-field {
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    background-color: #ffffff !important;
    padding: 12px 16px !important;
    height: auto !important;
    font-size: 14px !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.post-property-page .custom-form-field:focus {
    border-color: #FF6F3C !important;
    box-shadow: 0 0 0 3px rgba(255, 111, 60, 0.15) !important;
}

.post-property-page .modern-radio-group {
    display: flex;
    gap: 24px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.post-property-page .modern-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    color: #475569;
    font-size: 14px;
    user-select: none;
}

.post-property-page .modern-radio-input {
    display: none;
}

.post-property-page .modern-radio-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
}

.post-property-page .modern-radio-label:hover .modern-radio-circle {
    border-color: #94a3b8;
}

.post-property-page .modern-radio-input:checked + .modern-radio-circle {
    border-color: #FF6F3C;
}

.post-property-page .modern-radio-input:checked + .modern-radio-circle::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #FF6F3C;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.post-property-page .search-input-container {
    position: relative;
    width: 100%;
}

.post-property-page .search-input-container .search-icon-element {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
    pointer-events: none;
}

.post-property-page .search-input-container input {
    padding-left: 44px !important;
}

.post-property-page .collapsible-section {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out, padding 0.3s ease-out;
    opacity: 0;
    width: 100%;
    background: #f8fafc;
    border-radius: 16px;
    padding: 0 20px;
    border: 1px solid transparent;
}

.post-property-page .collapsible-section.open {
    max-height: 2500px;
    opacity: 1;
    padding: 24px 20px;
    margin-top: 16px;
    margin-bottom: 24px;
    border: 1px solid #e2e8f0;
    transition: max-height 0.6s ease-in, opacity 0.4s ease-in, padding 0.3s ease-in;
}

.post-property-page .custom-btn.btn-next {
    background: #FF6F3C !important;
    box-shadow: 0 12px 24px rgba(255, 111, 60, 0.32) !important;
}

.post-property-page .custom-btn.btn-next:hover {
    background: #ff5b20 !important;
    box-shadow: 0 16px 30px rgba(255, 111, 60, 0.38) !important;
}
