
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poetsen+One&display=swap');

.home-banner {
    position: relative !important;
    min-height: calc(100vh - 75px);
    background: url("../images/buildng-3.png") center/cover no-repeat;

    display: flex;
    /* align-items: center; */
}

.home-banner::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(84, 93, 222, 0.85),
        rgba(106, 115, 255, 0.85),
        rgba(255, 126, 75, 0.85)
    );

    z-index: 1;
}


.home-banner-2 {
    position: relative !important;
    min-height: calc(100vh - 75px);

    background: url("../images/building-4.png") center/cover no-repeat;

    display: flex;
    align-items: center;
}

.home-banner-2::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(255, 126, 75, 0.85),
        rgba(106, 115, 255, 0.85),
        rgba(84, 93, 222, 0.85)
    );


    z-index: 1;
}

.home-banner-2 > * {
    position: relative;
    z-index: 2;
}

.z-index-999{
    z-index: 999 !important;
}

/* .hero-images {
  position: absolute;
  right: 10px;
  top: 55%;
  transform: translateY(-50%);
  display: flex;
  gap: 28px;
  width: 380px;
  height: 520px;
  z-index: 99;
}
 
.arch {
  position: absolute;
  width: 130px;
  height: 380px;
  border-radius: 120px;
  background-size: cover;
  background-position: center;

  border: 2px solid rgba(255, 215, 120, 0.7);

  box-shadow:
    0 0 12px rgba(255, 200, 100, 0.6),
    0 0 25px rgba(255, 180, 80, 0.5),
    0 30px 60px rgba(0,0,0,0.25);
  overflow: hidden;

}

.img-1 {
  background-image: url("../images/hero-1.png");
  left: 50px;
  top:  10%;
  height: 340px;
  z-index: 2;
}

.img-2 {
  background-image: url("../images/hero-2.png");
  right: 50px;
  top: 22%;
  height: 320px;
  z-index: 2;
}

.img-3 {
  background-image: url("../images/hero-3.png");
  left: 30%;
  bottom: -5px;
  height: 230px;
  z-index: 3;
}

.img-4 {
  background-image: url("../images/hero-4.jpeg");
  right: 5px;
  bottom: -52px;
  height: 200px;
  z-index: 4;
}

  */


.hero-bottom-images {
    position: absolute;
    right: 30px;
    bottom: 20px;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    z-index: 99;
    flex-direction: column;
}

.bottom-img {
    width: 180px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
       animation:
        microZoom 1s ease-out,
        floatImage 5s ease-in-out infinite;
}


.img-left {
    transform: translateY(20px);
    width: 220px;
}

.img-right {
    transform: translateY(0);
}

@keyframes microZoom {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.tabs-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: -5px;
    padding-left: 20px;
    position: relative;
    z-index: 99999;
}

.tab {
    border: none;
    padding: 12px 24px !important;
    border-radius: 12px 12px 0 0;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;

    transition: 
        all 0.1s cubic-bezier(0.22, 1, 0.36, 1);
    outline: none;
}

.tab:focus {
    outline: none;
}

.tabs-container {
    overflow: hidden;
}

.tab.active {
    position: relative;
    background: #fff;
    color: #000;
    border: 2px solid #ff7a45;
    border-bottom: none;
    border-radius: 22px 22px 0 0;
    z-index: 5;
    box-shadow: 
        0 6px 0 #fff,
        0 2px 0 #ff7a45;
}

.tab.active::before,
.tab.active::after {

    content: "";
    position: absolute;
    bottom: 1px;

    width: 40px;
    height: 40px;

    background: white;
    z-index: 2;

    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab.active::before {
    left: -40px;
      background:
      radial-gradient(circle at 0 0,
        transparent 40px,
        #ff7a45 44px,
        #fff 40px
      );
}

.tab.active::after {
    right: -40px;
    background:
      radial-gradient(circle at 100% 0,
        transparent 40px,
        #ff7a45 44px,
        #fff 40px
      );
}


.tab.active::before,
.tab.active::after {
    opacity: 1;
}


.tab.inactive {
    background: rgba(255, 255, 255, 0.06);
    color: white;
    backdrop-filter: none;
}

.tab.inactive:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.tab.active {
    animation: tabPop 0.25s ease;
}

@keyframes tabPop {
    0% {
        transform: scale(0.96);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


.f-title {
    font-family: 'Poetsen One', cursive;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0.03em;
     color: #f0f0f0;
}

.f-sub-title {
    font-size: 20px;
    color: #f0f0f0;
}



/* Search box */


.search-card {
    border: 2px solid #ff7a45;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    z-index: 1001;
    position: relative;
    overflow: visible;
}

.search-header {
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    z-index: 1002;
    position: relative;
}

.location-drop {
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    min-width: 190px;
    max-width: 240px;
    position: relative;
}

#selectedCity {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.location-drop i{
    margin-left: auto;
    flex-shrink: 0;
}

.vertical-divider {
    width: 1px;
    height: 30px;
    background: var(--primary-orange);
    opacity: 0.6;
}

.search-input {
    flex: 1;
    padding: 0 15px;
    position: relative;
}

.search-input input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    color: var(--text-dark);
}

.search-btn {
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 12px 40px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover {
    background: #ff6b3d;
}

/* content body */

.search-body {
    position: absolute;
    width: 100%;
    z-index: 997;
    margin-top: -28px;
    padding: 0 25px;
    padding-bottom: 10px !important;
    padding-top: 40px !important;
    height: 400px;
    border-radius: 0 0 1rem 1rem;
    overflow: hidden;

    /* ✨ Animation add */
    opacity: 0;
    transform: translateY(-15px) scaleY(0.96);
    transform-origin: top;

    transition: 
        opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);

    pointer-events: none;
    will-change: transform, opacity;
}

.search-body.show {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    pointer-events: auto;
}

.search-body-recent {
    margin-top: 16px;
    position: relative;
    z-index: 100;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.search-body-recent.is-hidden {
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    pointer-events: none;
}

.recent-search-inline {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 22px;
    padding: 14px 16px 16px;
    box-shadow: 0 16px 38px rgba(13, 38, 59, 0.08);
}

.recent-search-inline-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #8c8fa0;
    margin-bottom: 12px;
}

.recent-search-inline-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.recent-search-inline-strip::-webkit-scrollbar {
    display: none;
}

.recent-location-pill-inline {
    flex: 0 0 auto;
}

.filters-section{
    max-height: 320px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.filters-section::-webkit-scrollbar {
    display: none;
}


.filter-header {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Row Split (Price + Bedrooms) */
.row-split {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Price Slider */
.price-group {
    flex: 1;
    min-width: 250px;
}

.slider-container {
    position: relative;
    padding: 10px 0;
}

.slider {
    width: 100%;
    height: 8px;
    background: #d3d3d3;
    outline: none;
    border-radius: 4px;
    background: linear-gradient(to right, #9fa8da 0%, var(--primary-purple) 60%, #eee 60%, #eee 100%);
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-purple);
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.slider-value-badge {
    position: absolute;
    top: 13px;
    left: 58%; /* Match slider value */
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    pointer-events: none;
    z-index: 3;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 5px;
}


.pill-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pill-check input {
    display: none;
}

.pill {
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 8px 16px;
    min-width: 45px;
    height: 40px;
    cursor: pointer;
    background: #fff;
    color: #333;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.pill:hover {
    border-color: var(--primary-purple);
}

.pill-check input:checked + .pill {
    background: var(--active-pill-bg);
    color: var(--active-pill-text);
    border-color: var(--active-pill-bg);
    font-weight: 600;
}

.wide-pill {
    padding: 8px 20px;
    gap: 8px;
    min-width: auto;
}

.pill i {
    font-size: 14px;
}

.card-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 10px;
}

.icon-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.icon-card input {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

.icon-card:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.icon-card:has(input:checked) {
    border-color: var(--primary-purple);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    background: rgba(128, 90, 213, 0.05);
}

.icon-card i {
    font-size: 22px;
    color: #555;
}

.icon-card span {
    font-size: 12px;
    color: var(--text-dark);
    line-height: 1.2;
}


/* --- Sidebar --- */
.sidebar-nav {
    position: relative;
    height: 100%;
    /* overflow: hidden; */
}

.sidebar-scroll {
    max-height: 320px;
    overflow-y: auto;
    padding-left: 20px;
    padding-top: 12px;
    border-left: 1px solid #ddd;
    padding-bottom: 40px !important;
}

.sidebar-scroll::-webkit-scrollbar {
    display: none !important;
}
.sidebar-scroll::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.2);
    border-radius: 4px;
}

.sidebar-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-nav li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 14px;
    cursor: pointer;
    position: relative;
}

.sidebar-nav li:first-child{
    padding-top: 0;
}

.sidebar-nav li.active {
    font-weight: 500;
}

.sidebar-nav li.active::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    height: 25px;
    width: 4px;
    background: var(--primary-purple);
    border-radius: 0 4px 4px 0;
}

.city-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%; /* 👈 match parent width */
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    padding: 12px;
    z-index: 9999;
    display: block;
    animation: fadeSlide 0.2s ease;
}

/* Smooth open animation */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.city-search-box input {
    border-radius: 10px;
    padding: 10px;
    font-size: 14px;
}

.city-list {
    max-height: 220px;
    overflow-y: auto;
    margin-top: 8px;
}

.city-list li {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.2s;
}

.city-list li:hover {
    background: #f3f4f8;
}

.city-list::-webkit-scrollbar {
    width: 6px;
}
.city-list::-webkit-scrollbar-thumb {
    background: #d0d3ff;
    border-radius: 20px;
}



/* suggest item */

.suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 9999;
    animation: fadeSlide 0.2s ease;
    padding: 20px 0 0 0;
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.suggestion-item {
    padding: 12px 15px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 14px;
    border-top:  1px solid #f4f5f7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #333;
}

.suggestion-item:hover {
    background: #f3f4f8;
}

.suggestion-item.active {
    background: #eef1ff;
}

.suggestion-item strong mark {
    background: #ffeaa7;
    padding: 0 2px;
}

.suggestion-group-title {
    padding: 10px 15px 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #8c8fa0;
}

.suggestion-meta {
    color: #999;
    font-size: 11px;
    white-space: nowrap;
}

.suggestion-empty {
    padding: 14px 16px;
    font-size: 14px;
    color: #666;
}

.suggestions.suggestions-has-recents {
    max-height: none;
    overflow-x: hidden;
    overflow-y: visible;
    padding-top: 0;
}

.recent-suggestion-panel {
    position: relative;
    padding: 14px 15px 16px;
}

.recent-suggestion-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #8c8fa0;
    margin-bottom: 12px;
}

.recent-suggestion-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.recent-carousel-btn {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: #fff3ea;
    color: var(--brand-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    box-shadow: inset 0 0 0 1px rgba(255, 126, 75, 0.18);
}

.recent-carousel-btn:hover {
    background: #ffe8d8;
}

.recent-suggestion-strip {
    display: flex;
    flex: 1 1 auto;
    width: 100%;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
    cursor: grab;
    user-select: none;
}

.recent-suggestion-strip:active,
.recent-suggestion-strip.is-dragging {
    cursor: grabbing;
}

.recent-suggestion-strip::-webkit-scrollbar {
    display: none;
}

.recent-location-pill {
    border: 0;
    background: linear-gradient(180deg, #fff8f2 0%, #fff3ea 100%);
    color: #2a2f45;
    border-radius: 999px;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    white-space: nowrap;
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 600;
    box-shadow: inset 0 0 0 1px rgba(255, 126, 75, 0.15);
    text-align: left;
}

.recent-location-pill i {
    color: var(--brand-orange);
    font-size: 13px;
}

.recent-location-pill:hover {
    background: linear-gradient(180deg, #fff3ea 0%, #ffe8d8 100%);
}

@media (max-width: 767.98px) {
    .recent-suggestion-carousel {
        display: block;
    }

    .recent-carousel-btn {
        display: none;
    }

    .recent-suggestion-strip {
        width: 100%;
    }
}

.suggestions::-webkit-scrollbar {
    display: none;
}



/* new images search bar */

/* .hero-corner-image {
    position: absolute;
    top: 0;
    left: 45px;
    right: 60px;
    z-index: 5;
}

.hero-corner-image img {
    width: 420px;
    height: auto;
    max-width: 100%;
    position: relative;
    z-index: 2;
}

.hero-corner-image::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 30%;
    transform: translateX(-50%);
    width: 70%;
    height: 55px;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.15) 40%,
        transparent 70%
    );
    filter: blur(8px);
    z-index: 1;
} */


@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-corner-image img {
    animation: floatImage 5s ease-in-out infinite;
}



/* Why renter */

.gold-text {
  color: #ffffff; /* keep text white */
  text-shadow:
    0 1px 0 #d4af37,
    0 2px 0 #c9a227,
    0 3px 0 #b8961d,
    0 4px 4px rgba(212, 175, 55, 0.4);
}


.why-rentellor {
  background: radial-gradient(circle at center, #0bbcd6, #d35400);
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 60px;
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.center-image img {
  width: 370px;
  z-index: 2;
  position: relative;
}

.why-choose-text{
    font-size: 32px !important;
    font-family: 'Poetsen One', cursive;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 250px;
}

.features.left, .features.right {
  text-align: right;
  margin-right: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  flex-direction: column;
}

.feature-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.feature-item p {
  font-size: 16px;
  margin: 0;
  text-align: left !important;
}



/* ===== Zoom In Animation ===== */
@keyframes zoomIn {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ===== Bounce Animation (smooth floating) ===== */
@keyframes floatBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.feature-item {
  animation: zoomIn 0.6s ease forwards;
  opacity: 0;
}


.features.left .feature-item:nth-child(1),
.features.right .feature-item:nth-child(1) {
  animation-delay: 0.2s;
}
.features.left .feature-item:nth-child(2),
.features.right .feature-item:nth-child(2) {
  animation-delay: 0.4s;
}
.features.left .feature-item:nth-child(3),
.features.right .feature-item:nth-child(3) {
  animation-delay: 0.6s;
}

.center-image img {
  animation: floatBounce 3s ease-in-out infinite;
}




@media (max-width: 767px) {
    .tabs-container {
        gap: 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tabs-container::-webkit-scrollbar {
        display: none;
    }

    .tab {
        padding: 10px 16px;
    }

    .tab.active::before,
    .tab.active::after {
        display: none;
    }

    .hero-images {
        display: none;
    }
}

@media(min-width: 1420px) {
    .center-image img {
        width: 430px;
    }
    .why-choose-text{
        font-size: 36px !important;
    }
}

@media (max-width: 991px) {
    .hero-corner-image {
        position: relative;
        right: 0;
        margin: 20px auto;
        text-align: center;
    }

    .hero-corner-image img {
        width: 280px;
    }
}

@media (max-width: 1420px) {

    .hero-corner-image::after {
       width: 30% !important;
       left: 10% !important;
    }
}

@media(min-width: 1368px) {
    .image-warp-index, .image-warp-index img
    {
        width: 500px !important;
        height: 350px !important;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1600px !important;
    }
}

@media (max-width: 900px) {
  .content-wrapper {
    flex-direction: column;
    gap : 30px !important;
  }

  .features {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 20px 0;
  }

  .features.left,
  .features.right {
    text-align: center;
    margin: 0;
  }

  .feature-item {
    flex-direction: column;
  }

  .features.left .feature-item {
    flex-direction: column;
  }

  .center-image img {
    width: 260px;
  }
}


@media (max-width: 767px) {

    .custom-container{
        max-width: 650px !important;
    }

    .tabs-container {
        gap: 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tabs-container::-webkit-scrollbar {
        display: none;
    }

    .tab {
        padding: 10px 16px;
    }

    .tab.active::before,
    .tab.active::after {
        display: none;
    }


    .tabs-container {
        gap: 12px !important;
        margin-bottom: -2px !important;
        padding-left: 0 !important;
    }

    .search-card {
        border-radius: 18px !important;
    }

    .search-header {
        flex-direction: column;
        align-items: stretch !important;
        gap: 10px;
        padding: 12px;
        border-radius: 18px;
    }

    .location-drop {
        width: 100%;
        justify-content: space-between;
        padding: 12px 14px;
        border: 1px solid #eee;
        border-radius: 12px;
        max-width: 100% !important;
    }

    .location-drop i {
        padding-left: 0;
    }

    .vertical-divider {
        display: none;
    }

    .search-input {
        padding: 0;
    }

    .search-input input {
        padding: 12px 15px 12px 40px; 
        border-radius: 12px;
        background: #f6f6f6;
        font-size: 15px;
    }

    .search-btn {
        width: 100%;
        padding: 14px;
        font-size: 15px;
        border-radius: 14px;
    }

    .search-header{
        border: none !important;
    }

}


@media (max-width: 576px) {
  .home-banner{
    padding: 40px 11px !important;
  }

  /* .search-card{
    border-radius: 0 0 15px 15px !important;
  } */

  .location-drop{
    max-width: 100% !important;
  }

    .tabs-container {
        gap: 8px !important;
    }

}

@media (min-width: 576px) {
  .custom-container .hero-heading {
    font-size: 36px;
  }
}

@media (min-width: 768px) {
  .custom-container .hero-heading {
    font-size: 42px;
  }
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-orange);
    font-size: 16px;
}


.placeholder-slider {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    overflow: hidden;
    height: 20px;
    color: #999;
    font-size: 16px;
}

.placeholder-slider span {
    display: block;
    height: 20px;
    animation: slideText 6s infinite;
}

@keyframes slideText {
    0% { transform: translateY(0); }
    20% { transform: translateY(0); }

    25% { transform: translateY(-20px); }
    45% { transform: translateY(-20px); }

    50% { transform: translateY(-40px); }
    70% { transform: translateY(-40px); }

    75% { transform: translateY(-60px); }
    95% { transform: translateY(-60px); }

    100% { transform: translateY(0); }
}




.full-offcanvas {
    height: 100vh !important;
}

.custom-header {
    background: var(--primary-color);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    min-height: 105px;
    padding: 20px 20px;
    position: relative;
}

.tabs {
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 5px;
    border-radius: 25px;
}

.tab{
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    background: transparent;
    color: #cfe2ff;
}

.mobile{
    padding: 6px 14px !important;
}

.tab.active {
    background: #fff;
    color: #000;
}

.tab.mobile.active {
    border: none;
    box-shadow: none;
    border-radius: 20px;
}

.close-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
}

.search-bar {
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 13px;
    /* position: absolute;
    top: 85px;
    left: 50%; */
    position: relative;
    margin-bottom: -38px;
    /* transform: translateX(-50%); */
    width: 100%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: #fff;
    z-index: 5;
}

.search-bar input {
    border: none;
    flex: 1;
    outline: none;
    font-size: 14px;
    padding: 2px 2px 2px 2px;
    margin-left: 30px;
}

.search-bar:focus-within {
    border: 1px solid var(--primary-color);
}

.search-icons {
    display: flex;
    gap: 12px;
    color: var(--primary-color);
}


.bottom-section {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 20px;
}

.offcanvas-body {
    background-color: rgb(244,245,247);
}
.section {
    align-items: stretch;
    display: flex;
    flex-basis: auto;
    flex-direction: column;
    flex-shrink: 0;
    list-style: none;
    margin: 0px;
    min-height: 0px;
    min-width: 0px;
    padding: 20px;
    border-radius: 12px;
    width: 100%;
    position: relative;
    background-color: #fff;
}

.section-title {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
}

.recent-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 11px;
    margin-bottom: 8px;
    background: #f7f7f7;
    font-size: 14px;
    color: #333;
}

.recent-item i{
    color: var(--brand-orange);
}

.chips {
    gap: 10px;
}

.chip {
    padding: 8px 12px;
    border-radius: 20px;
    background: #f1f5ff;
    font-size: 13px;
    cursor: pointer;
}

.chip span{
    font-weight: bold;
    margin-right: 6px;
    color: var(--primary-color);
}

/* FOOTER */
.offcanvas-footer {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 12px;
    border-top: 1px solid #ddd;
}

.offcanvas-footer .clear-btn {
    color: var(--primary-color);
    cursor: pointer;
    font-size: 14px;
}

.offcanvas-footer .btn-primary {
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    background: var(--primary-color);
    border: none;
    box-shadow: none;
}

.offcanvas-bottom {
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.offcanvas-bottom.show {
    transform: translateY(0);
}

@media(max-width: 576px) {
    .custom-header {
        padding: 10px 10px;
    }
}


/* New dleet */

.chip-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    align-items: center;
    position: absolute;
    left: 50px;
    max-width: calc(100% - 60px);
    overflow: hidden;
}

.chip-location {
    display: inline-flex;
    align-items: center;
    background: #f1f3f5;
    color: #333;
    border-radius: 20px;
    padding: 6px 10px;
    font-size: 13px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chip-location .remove-location-chip {
    flex-shrink: 0;
    margin-left: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}


.dual-range-wrapper {
    position: relative;
    width: 100%;
    height: 50px;
}

.slider-track {
    position: absolute;
    height: 12px;
    width: 100%;
    background: #e0e0e0;
    border-radius: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.dual-range-wrapper input[type="range"] {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    background: none;
    -webkit-appearance: none;
}

.dual-range-wrapper input::-webkit-slider-thumb {
    pointer-events: auto;
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    background: #fff;
    border: 3px solid var(--primary-purple);
    border-radius: 50%;
    cursor: pointer;
}

.range-min { z-index: 2; }
.range-max { z-index: 3; }

.range-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}



