/* POst Property */

#nextBtn{
 background-color: var(--brand-orange);
 outline: none;
 border: none;
}

#prevBtn{
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

/* Success CSS */

 .success-check svg {
    width: 90px;
    height: 90px;
    stroke: #28a745;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .success-check circle {
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: circle 0.6s ease-out forwards;
  }

  .success-check path {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: check 0.4s 0.6s ease-out forwards;
  }

  @keyframes circle {
    to { stroke-dashoffset: 0; }
  }

  @keyframes check {
    to { stroke-dashoffset: 0; }
  }



  /* ------------------------ */

.form{
    padding: 20px 25px;
}

.whatsapp-icon {
  color: #25D366;
  font-size: 24px !important;
}

/* media section */

.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);
}

.preview-item{
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e7ecf5;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.preview-item:hover{
    transform: translateY(-2px);
    border-color: #d7dfed;
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.1);
}

.preview-item img,
.preview-item video{
    width: 100%;
    height: 188px;
    object-fit: cover;
    background: #f3f6fb;
    display: block;
}

.delete-btn{
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ef4444;
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 14px rgba(239, 68, 68, 0.32);
    transition: transform 0.18s ease, background-color 0.18s ease;
}

.delete-btn:hover{
    background: #dc2626;
    transform: scale(1.06);
}

.cover-btn{
    position: absolute;
    left: 10px;
    bottom: 44px;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 0;
    background: #0f172a;
    color: #fff;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.32);
}

.cover-badge{
    position: absolute;
    left: 10px;
    bottom: 44px;
    background: linear-gradient(90deg, #f59e0b, #f97316);
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 8px 16px rgba(249, 115, 22, 0.32);
}

.cover-active{
    border-color: #f59e0b;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.22), 0 14px 26px rgba(15, 23, 42, 0.1);
}

.location-select{
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 9px;
    border: 1px solid #d6deeb;
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
}


/* Progress ----------------*/
/* .property-progress-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}


.progress-title {
    font-weight: 600;
    margin-bottom: 18px;
    color: #111827;
}

.progress-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.progress {
    flex: 1;
    height: 15px;
    background: #f3f4f6;
    border-radius: 30px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff7a18, #ffb347);
    border-radius: 30px;
    transition: width 0.8s cubic-bezier(.4,0,.2,1);
}

.progress-percentage {
    font-size: 13px;
    font-weight: 600;
    color: #ff7a18;
} */











/* Amenities professional touch UI */
.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-wrap.has-cart-controls {
    margin-right: 0;
}

.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;
}

@media (max-width: 576px) {
    .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;
    }

    .carousel-control-next{
        right: 0px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .carousel-control-prev{
        left: 0px !important;   
        top: 50% !important;
    }

}




/* breadcrumb */

.propertyPost-Step-1{
    /* background: linear-gradient(
        135deg,
        #6f77f5 0%,
        #626be8 35%,
        #545dde 65%,
        #4c55d2 100%
    ); */

    background: linear-gradient(180deg, #5a67d8, #7f9cf5);
    min-height: 100vh;
}

.custom-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
}

.crumb-link {
    text-decoration: none;
    /* color: #6c757d; */
    color: #ffffff;
    transition: 0.2s ease;
}

.crumb-link:hover {
    color: #0d6efd;
}

.crumb-separator {
    /* color: #adb5bd; */
    color: #ffffff;
}

.crumb-active {
    color: #ffffff;
    /* color: #111827; */
    font-weight: 600;
}



/* Start page testimonials */

.py-80 {
    padding: 80px 0;
}

.rent-title {
    font-size: 34px;
    font-weight: 700;
    /* color: #2d2d2d; */
    color: #f1f5f9;
    line-height: 1.4;
}

.highlight {
    color: var(--brand-orange)
}

.rent-features {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.rent-features li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: 18px;
    /* color: #555; */
    color: #f1f5f9;
}

.rent-features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand-orange);
    font-weight: bold;
    font-size: 20px;
}


.testimonial-slider {
    position: relative;
    padding: 40px 0 50px;
}

/* Card */
.testimonial-card {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    border: 1px solid #eef1f6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    min-height: 100px;
    height : 100%;
}

.testimonial-card:hover {
    transform: translateY(-6px);
}

.card-header-flex {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.user-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #f1f5f9;
}
.user-info {
    display: flex;
    flex-direction: column;
}

.user-info strong {
    font-size: 16px;
    color: #1e293b;
}

.user-info span {
    font-size: 13px;
    color: #64748b;
}

.verified-badge {
    margin-left: auto;
    color: #0a66c2;
}

.testimonial-text {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom : 0 !important;
}

.carousel-control-prev,
.carousel-control-next {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 50%;
    top: 45%;
    transform: translateY(-50%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 1;
}

.carousel-control-prev{
    left: -30px;
}
.carousel-control-next{
    right: -30px;
}

.custom-arrow {
    font-size: 18px;
    color: var(--brand-orange);
}

/* Steps  on start*/

.steps-title-wrapper{
    max-width: 600px;
    margin: 0 auto 40px;
}
.steps-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* .step-img{
    height: 200px;
}
.step-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-card h5{
    font-weight: 800;
    color: var(--text-dark);
}
.step-card p{
    font-weight: 500;
    color: var(--text-dark);
} */



.step-image img{

    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* image hover effect (premium feel) */
.step-image img {
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    border-radius: 20px;
}

.step-card:hover img {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

















/* Popup */

.draft-modal {
  border-radius: 18px;
  border: none;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Title */
.modal-title {
  font-weight: 600;
  font-size: 22px;
}

.modal-description {
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

.draft-modal .btn-primary {
  border-radius: 10px;
  font-weight: 500;
}

.draft-modal .btn-outline-secondary {
  border-radius: 10px;
}



/* SUGGESSt */

.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: 1px solid #e5e9f5; */
    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;
}

.custom-autocomplete::-webkit-scrollbar,
.propertyPost-Step-1 .scrollable-options::-webkit-scrollbar,
.propertyPost-Step-1 .select2-results__options::-webkit-scrollbar {
    width: 8px;
}

.custom-autocomplete::-webkit-scrollbar-track,
.propertyPost-Step-1 .scrollable-options::-webkit-scrollbar-track,
.propertyPost-Step-1 .select2-results__options::-webkit-scrollbar-track {
    background: #f6f7fb;
    border-radius: 999px;
}

.custom-autocomplete::-webkit-scrollbar-thumb,
.propertyPost-Step-1 .scrollable-options::-webkit-scrollbar-thumb,
.propertyPost-Step-1 .select2-results__options::-webkit-scrollbar-thumb {
    background: #cfd6ea;
    border-radius: 999px;
}

.propertyPost-Step-1 .scrollable-options {
    max-height: 220px;
    overflow-y: auto;
    align-content: flex-start;
    padding: 10px;
    padding-right: 6px;
    border: 1px solid #e8ecf6;
    border-radius: 12px;
    background: #fbfcff;
    gap: 10px !important;
}

.propertyPost-Step-1 .scrollable-options .up-label {
    margin: 0;
}

.propertyPost-Step-1 .scrollable-options .up {
    min-height: 38px;
    border-radius: 10px;
    border-color: #dfe4f3;
    padding: 8px 12px;
    justify-content: flex-start;
    font-weight: 500;
}

.propertyPost-Step-1 .scrollable-options .up-label input:checked + .up {
    box-shadow: 0 8px 20px rgba(255, 126, 75, 0.28);
}

.propertyPost-Step-1 .select2-dropdown {
    border-radius: 14px;
    border-color: #e5e9f5;
    box-shadow: 0 18px 34px rgba(26, 33, 61, 0.12);
    padding: 8px;
}

.propertyPost-Step-1 .select2-results__options {
    max-height: 220px !important;
    overflow-y: auto !important;
}

.propertyPost-Step-1 .select2-results__option {
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 14px !important;
}

.propertyPost-Step-1 .select2-results__option--highlighted {
    background: #edf3ff !important;
    color: #2d3b63 !important;
}



/* new changes */


.sidebar-ui {
    width: 100%;
    height: 100%;
    padding: 30px;
    color: white;
    /* background: linear-gradient(180deg, #5a67d8, #7f9cf5); */
    border-radius: 0;
}

.sidebar-ui h2 {
    font-size: 22px;
    margin-bottom: 30px;
}

.steps-wrap {
    position: relative;
}

.line {
    position: absolute;
    left: 31px;
    top: 18px;
    bottom: 18px;
    width: 2px;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.2);
    z-index: 1;
}

.line-active {
    position: absolute;
    left: 31px;
    top: 18px;
    width: 2px;
    height: calc(100% - 36px);
    background: #34d399;

    transform: translateX(-50%) scaleY(0);

    transform-origin: top;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding: 12px 14px;
    border-radius: 30px;
    transition: all 18s ease;

    z-index: 2;
    position: relative;
    cursor: pointer;
}


.step.active {
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step.active::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);
}

.circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #6c7cff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
}

.step.completed .circle {
    background: #34d399;
}

.title {
    font-weight: 600;
}

.desc {
    font-size: 13px;
    opacity: 0.85;
}

.score-card {
    margin-top: 40px;
    background: rgba(255,255,255,0.12);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    gap: 15px;
}

.progress-ring {
    position: relative;
}

.progress-ring svg {
    transform: rotate(-90deg);
}

.progress-ring circle {
    fill: none;
    stroke-width: 5;
}

.progress-ring .bg {
    stroke: rgba(255,255,255,0.2);
}

.progress-ring .progress {
    stroke: #7ee787;
    stroke-dasharray: 188;
    stroke-dashoffset: 188;
    transition: stroke-dashoffset 0.6s ease;
}

.progress-ring {
    position: relative;
    width: 80px;
    height: 80px;
}

.progress-ring span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    font-size: 18px;
    font-weight: bold;
}


/* responsive */

.simple-counter {
  /* border-bottom: 1px solid #eee; */
  padding: 8px 0;
}

.simple-counter .label {
  font-size: 14px;
  color: #333;
}

.counter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #f3f4f5;
}

.counter-box button {
  width: 25px;
  height: 25px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
}

.counter-box .count {
  min-width: 20px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}