.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #dee2e6;
    z-index: -1;
}

.step-item.completed:not(:last-child)::after {
    background: #28a745;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #dee2e6;
    color: #6c757d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 5px;
}

.step-item.active .step-number {
    background: #0d6efd;
    color: white;
}

.step-item.completed .step-number {
    background: #28a745;
    color: white;
}

.step-title {
    font-size: 0.875rem;
    color: #6c757d;
}

.step-item.active .step-title {
    color: #0d6efd;
    font-weight: 600;
}

.dynamic-list-item {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    background: #f8f9fa;
}

.remove-item-btn {
    cursor: pointer;
}

.image-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.image-preview-item {
    position: relative;
    width: 100px;
    height: 100px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-preview-item .remove-image {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selection-card {
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.selection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.selection-card.selected {
    border-color: #0d6efd;
    background-color: #e7f1ff;
}

.card {
    transition: transform 0.2s;
}

/* Modern Design System */
:root {
    --primary-gradient: rgb(0, 85, 85);
    --success-gradient: rgb(0, 85, 85);
    --danger-gradient: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.modern-card:hover {
    box-shadow: var(--hover-shadow);
}

.bg-gradient-primary {
    background: var(--primary-gradient);
}

.modern-input {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 16px;
    transition: var(--transition);
}

.modern-input:focus {
    border-color: rgb(0, 85, 85);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 20px 0;
}

.progress-steps::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: #e9ecef;
    transform: translateY(-50%);
    z-index: 0;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #6c757d;
    transition: var(--transition);
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-item.active .step-circle {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1);
}

.step-item.completed .step-circle {
    background: var(--success-gradient);
    color: white;
}

.step-label {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
    text-align: center;
}

.step-item.active .step-label {
    color: rgb(0, 85, 85);
}

/* Option Cards */
.option-card {
    position: relative;
    padding: 30px 20px;
    border: 3px solid #e9ecef;
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: white;
    overflow: hidden;
    height: 100%;
}

.option-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.option-card.selected {
    border-color: rgb(0, 85, 85);
}

.option-card.selected::before {
    opacity: 0.05;
}

.option-icon {
    font-size: 4rem;
    color: rgba(0, 85, 85, 0.265);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.option-card h4,
.option-card h5 {
    position: relative;
    z-index: 1;
    color: black;
}

.option-card p {
    position: relative;
    z-index: 1;
}

.option-check {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    color: #38ef7d;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
}

.option-card.selected .option-check {
    opacity: 1;
    transform: scale(1);
}

/* Period Cards */
.period-card {
    padding: 25px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.period-card i {
    font-size: 2.5rem;
    color: rgb(0, 85, 85);
}

.period-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.period-card.selected {
    border-color: rgb(0, 85, 85);
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.1) 0%,
        rgba(118, 75, 162, 0.1) 100%
    );
}

/* Service Checkbox - IMPROVED */
.service-checkbox {
    position: relative;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    user-select: none;
}

.service-checkbox:hover {
    border-color: rgb(0, 85, 85);
    background: rgba(102, 126, 234, 0.05);
}

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

.service-checkbox input[type="checkbox"]:checked + label {
    color: rgb(0, 85, 85);
    font-weight: 600;
}

.service-checkbox input[type="checkbox"]:checked + label i {
    color: rgb(0, 85, 85);
}

.service-checkbox input[type="checkbox"]:checked ~ * {
    color: rgb(0, 85, 85);
}

.service-checkbox.selected {
    border-color: rgb(0, 85, 85);
    background: rgba(102, 126, 234, 0.1);
}

.service-checkbox.selected label {
    color: rgb(0, 85, 85);
    font-weight: 600;
}

.service-checkbox.selected label i {
    color: rgb(0, 85, 85);
}

.service-checkbox label {
    cursor: pointer;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}

.service-checkbox label i {
    color: #e9ecef;
    transition: var(--transition);
}

/* Dynamic Item */
.dynamic-item {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 20px;
    position: relative;
    transition: var(--transition);
}

.dynamic-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.remove-item-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* FilePond Custom Styling */
.filepond--root {
    font-family: inherit;
    margin-bottom: 0;
}

/* Main property images - same compact size as rooms */
#property_images + .filepond--root .filepond--drop-label {
    min-height: 100px;
}

/* Room/Bed images - compact drop area */
.dynamic-item .filepond--root .filepond--drop-label {
    min-height: 100px;
}

.filepond--drop-label {
    min-height: 100px;
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
    background: #f8f9fa;
    transition: var(--transition);
}

.filepond--drop-label label {
    cursor: pointer;
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

.filepond--drop-label:hover {
    border-color: rgb(0, 85, 85);
    background: rgba(0, 85, 85, 0.03);
}

.filepond--panel-root {
    background-color: transparent;
    border-radius: 12px;
}

.filepond--item-panel {
    background-color: rgba(0, 85, 85, 0.08);
    border-radius: 8px;
}

.filepond--drip-blob {
    background-color: rgb(0, 85, 85);
}

.filepond--credits {
    display: none;
}

/* Adjust FilePond item size */
.filepond--item {
    width: calc(50% - 0.5em);
}

@media (min-width: 768px) {
    .filepond--item {
        width: calc(33.333% - 0.5em);
    }
}

@media (min-width: 1024px) {
    .filepond--item {
        width: calc(25% - 0.5em);
    }
}

/* Compact styling for room/bed images */
.dynamic-item .filepond--item {
    width: calc(50% - 0.5em);
}

@media (min-width: 768px) {
    .dynamic-item .filepond--item {
        width: calc(33.333% - 0.5em);
    }
}

/* Image preview height adjustments */
.filepond--image-preview-wrapper {
    background: rgba(0, 0, 0, 0.02);
}

.filepond--file {
    padding: 0.5em;
}

/* Ensure FilePond shows properly */
.filepond--list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
}

.filepond--root .filepond--drop-label {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tips List */
.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 30px;
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38ef7d;
    font-weight: bold;
    font-size: 18px;
}

/* Summary Content */
.summary-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.summary-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.summary-item-label {
    font-size: 13px;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-item-value {
    font-size: 18px;
    font-weight: bold;
    color: #212529;
    margin-top: 5px;
}

/* Contact Option Cards */
.contact-option-card {
    position: relative;
    padding: 30px 20px;
    border: 3px solid #e9ecef;
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: white;
    height: 100%;
}

.contact-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.contact-option-card input[type="radio"]:checked ~ label {
    color: var(--primary-color);
}

.contact-option-card:has(input:checked) {
    border-color: var(--primary-color);
    background: rgba(0, 85, 85, 0.05);
}

.contact-option-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

.contact-option-card label {
    cursor: pointer;
    margin: 0;
    display: block;
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 85, 85, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 32px;
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-icon.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.contact-icon.other {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.contact-option-card:has(input:checked) .contact-icon {
    transform: scale(1.1);
}

/* Review Hierarchy */
.review-hierarchy {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-section {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.review-header {
    background: var(--primary-gradient);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-header i {
    font-size: 24px;
}

.review-header h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.review-content {
    padding: 20px;
    background: white;
}

.review-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f5;
}

.review-row:last-child {
    border-bottom: none;
}

.review-label {
    font-weight: 600;
    color: #495057;
    font-size: 14px;
}

.review-value {
    color: #212529;
    font-size: 15px;
    text-align: right;
}

.review-value .badge {
    font-size: 13px;
    padding: 6px 12px;
}

/* Pricing Badge */
.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-badge.sale-badge {
    background: var(--success-gradient);
    color: white;
}

.pricing-badge.rent-badge {
    background: var(--primary-gradient);
    color: white;
}

.pricing-badge i {
    font-size: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .progress-steps {
        flex-direction: column;
        gap: 15px;
    }

    .progress-steps::before {
        display: none;
    }

    .step-item {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
    }

    .step-label {
        margin-top: 0;
        text-align: left;
    }

    .option-card {
        margin-bottom: 15px;
    }

    .review-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .review-value {
        text-align: left;
    }
}

/* Wizard Steps */
.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
.logo {
    font-family: "Work Sans", sans-serif;
    color: white!important;
}

.option-icon h4 {
    color: #6c757d !important;
}


.property-create-title {
    color:#13131470 !important;
}

.property-image{
    min-width:412px;
    max-width:412px;
    min-height:412px;
    max-height:412px;
}
/* fix popular properties carousel */
[dir="rtl"] .property-slider-wrap,
[dir="rtl"] .property-slider-wrap * {
    direction: ltr !important;
}

/* But keep the content inside each slide RTL */
[dir="rtl"] .property-slider .property-item {
    direction: rtl;
}

[dir="rtl"] .property-slider .property-content {
    direction: rtl;
    text-align: right;
}

/* Fix Hero Slider for RTL */
[dir="rtl"] .hero,
[dir="rtl"] .hero-slide,
[dir="rtl"] .hero-slide .tns-outer,
[dir="rtl"] .hero-slide .tns-ovh,
[dir="rtl"] .hero-slide .tns-inner {
    direction: ltr !important;
}

/* Keep hero content (heading, form) RTL */
[dir="rtl"] .hero .container {
    direction: rtl;
}

[dir="rtl"] .hero .heading,
[dir="rtl"] .hero .lead {
    text-align: center;
}

/* Fix search form for RTL */
[dir="rtl"] .hero .form-search {
    direction: rtl;
}

[dir="rtl"] .hero .form-search .form-control {
    text-align: right;
}

/* ── Property show — feature stat cards ───────────────────────── */
.pv-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.pv-feat {
    background: #fff;
    border-radius: 14px;
    padding: 1.4rem 1rem 1.2rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    border: 1px solid #f0f0f0;
    border-top: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .55rem;
    transition: transform .2s ease, box-shadow .2s ease;
}

.pv-feat:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.11);
}

.pv-feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--color-primary, #005555) 12%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-primary, #005555);
    flex-shrink: 0;
}

.pv-feat-val {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

@media (max-width: 575px) {
    .pv-features {
        grid-template-columns: 1fr;
        gap: .75rem;
    }

    .pv-feat {
        padding: 1.1rem .75rem 1rem;
    }

    .pv-feat-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .pv-feat-val {
        font-size: .9rem;
    }
}