.header-whatsapp::before {
    color: #ffffff !important;
}

/* #header-section .header-whatsapp::before {
    color: #25D366 !important;
} */

/* FAQs section */
.faq-section {
  /* background-color: #EEF2F5; */
  background: rgba(255, 226, 153, 1);
}
.faq-section-common-padding{
  padding-inline: 20px;
  padding-top: 63px;
  padding-bottom: 97px;
}
.faq-container {
  /* padding:100px 0px; */
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-container h2 {
  text-align: center;
  font-family: Open Sans;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.4px;
  text-transform: capitalize;
  color: black;
}
.faq-container p{
  /* font-family: Open Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: -0.4px;
  text-transform: capitalize; */
  /* color: ; */
  /* color: #1977F3; */
}
.faq-first{
  color: #1977F3;
  font-family: Open Sans;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  letter-spacing: -0.4px;
  text-transform: capitalize;
}
.faq-accordion {
  width: 100%;
  margin-inline: auto;
  margin-top: 2rem;
}
.faq-accordion-item {
  /* border-bottom: 1px solid #ccc; */
  border-bottom: 1px solid rgba(156, 181, 199, 1)
}
.faq-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  /* padding: 1.4rem; */
  cursor: pointer;
}
.faq-accordion-header h5 {
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.2;
  font-family: Open Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 65px;
  letter-spacing: -0.4px;
  text-transform: capitalize;
  color: black;
}
.faq-accordion-header svg {
  width: 2.5rem;
  height: 2.5rem;
  transition: all 0.3s ease-out;
}
.faq-accordion-content {
  padding: 0px;
  overflow: hidden;
  transition: all 0.3s ease-out;
  padding-inline: 1rem;
  max-height: 0;
  color: #565656;
  font-size: 16px;
  line-height: 1.2;
}
.faq-accordion-content ul {
  list-style: decimal;
  margin-left: 1rem;
}
@media (max-width: 1024px) {
  .faq-section-common-padding{
    padding-inline: 108px;
    padding-top: 53px;
    padding-bottom: 67px;
  }
}
@media (max-width: 768px) {
  .faq-section-common-padding{
    padding-inline: 51px;
    padding-top: 50px;
    padding-bottom: 67px;
  }
}
@media (max-width: 612px) {
  .faq-container h2{
    font-family: Open Sans;
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: -0.4px;
    text-align: center;
    text-transform: capitalize;
  }
}
@media (max-width: 425px) {
  .faq-section-common-padding{
    padding-inline: 28px;
    padding-bottom: 67px;
  }
}

.faq-section .block-title-wrap{
  margin-bottom: 0px !important ;
}

/* Developer Information Section Styles */
.property-developer-info-wrap {
    background: #f8f6ff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid #e8e4f7;
}

.developer-info-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.developer-logo {
    flex-shrink: 0;
}

.developer-logo-img {
    width: 90px;
    height: 90px;
    object-fit: fill;
    border-radius: 8px;
    background: white;
    padding: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.developer-logo-placeholder {
    width: 60px;
    height: 40px;
    background: #ea3934;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    border-radius: 8px;
    text-transform: uppercase;
}

.developer-details {
    flex: 1;
    min-width: 200px;
}

.developer-label {
    font-size: 12px;
    color: #8b8b8b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.developer-name {
    font-size: 16px;
    font-weight: 600;
}

.developer-link {
    color: #ea3934;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.developer-link:hover {
    color: #97211e;
    text-decoration: none;
}

.developer-action {
    flex-shrink: 0;
}

.view-developer-link {
    color: #ea3934;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #ea3934;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.view-developer-link:hover {
    background: #97211e;
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .developer-info-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .developer-details {
        min-width: auto;
    }
    
    .developer-logo {
        order: 1;
    }
    
    .developer-details {
        order: 2;
    }
    
    .developer-action {
        order: 3;
    }
}

/* Simple Latest Posts Dropdown */
.latest-posts-dropdown {
    padding: 15px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-height: 300px;
    overflow-y: auto;
    position: relative;
}

.latest-posts-dropdown h6 {
    margin: 0 0 15px 0;
    color: #333;
    font-weight: 600;
    font-size: 16px;
}

.latest-posts-dropdown h6:not(:first-child) {
    margin-top: 20px;
}

.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.dropdown-header h6 {
    margin: 0;
}

.close-dropdown {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-dropdown:hover {
    background-color: #f0f0f0;
    color: #333;
}

.latest-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.latest-post-item {
    margin-bottom: 8px;
}

.latest-post-item:last-child {
    margin-bottom: 0;
}

.latest-post-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 8px 0;
    transition: all 0.3s ease;
    font-size: 14px;
}

.latest-post-item a:hover {
    color: #ea3934;
}

/* For properties with building logo */
.building-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
    margin-right: 12px;
    flex-shrink: 0;
}

.latest-post-item a span {
    flex: 1;
}

.newly-launched-tag{
  color: #ea3934;
}

/* For agents with images */
.item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 12px;
    flex-shrink: 0;
}

.item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.item-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.developers-widget,
.types-widget{
  background-color: #fff;
  margin-top: 20px;
  border-radius: 4px;
}

.developer-name a{
      color: #333;
}

.developer-name a:hover{
  color: #ea3934 !important;
}

.text-muted{
  font-size: 16px !important;
  font-weight: 500;
  padding-bottom: 10px;
}

@media (max-width: 1024px) {
#hubspot-messages-iframe-container.widget-align-right {
   bottom: 70px !important;
}
}

.swiper-slide-inner img{
  height: 160px !important;
  width: 160px !important;
}

/* 
Property Navigation Horizontal Scroll 
*/
.property-navigation-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.property-navigation-wrap::-webkit-scrollbar {
    display: none; /* WebKit */
}

.property-navigation {
    display: flex !important;
    flex-wrap: nowrap !important;
    min-width: max-content;
    white-space: nowrap;
    padding: 0 15px;
}

.property-navigation-item {
    flex-shrink: 0;
    white-space: nowrap;
}

.property-navigation-item .target {
    white-space: nowrap;
    padding: 12px 16px !important;
    display: inline-block;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    /* border-radius: 6px; */
    margin: 0 2px;
}

.property-navigation-item .target:hover {
    background-color: #f8f9fa;
    color: #ea3934;
}

.property-navigation-item .back-top {
    padding: 12px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ea3934;
    color: white !important;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 10px;
    min-width: 44px;
    height: 44px;
}

.property-navigation-item .back-top:hover {
    background-color: #005a87;
    transform: translateY(-2px);
}

/* Mobile specific adjustments */
@media (max-width: 767px) {
    .property-navigation {
        padding: 0 10px;
    }
    
    .property-navigation-item .target {
        padding: 10px 12px !important;
        font-size: 14px;
    }
    
    .property-navigation-item .back-top {
        padding: 10px !important;
        min-width: 40px;
        height: 40px;
        margin-right: 8px;
    }
}

/* Ensure smooth scrolling on touch devices */
@media (hover: none) and (pointer: coarse) {
    .property-navigation-wrap {
        -webkit-overflow-scrolling: touch;
    }
}

/* dropdown banner  */


/* Elementor Widget Dropdown Styling */
#filed-radius {
    position: relative;
    cursor: pointer;
}

/* Ensure dropdown appears above other elements */
.auto-complete {
    position: absolute !important;
    z-index: 9999 !important;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-height: 400px;
    overflow-y: auto;
    margin-top: 2px;
}

/* Specific styling for dropdowns triggered by input fields */
#filed-radius input[type="text"] + .auto-complete,
.auto-complete.position-absolute {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
    margin-top: 2px;
    width: auto !important;
    min-width: auto !important;
    max-width: none !important;
}

/* Mobile responsive adjustments for dropdown */
@media (max-width: 768px) {
    /* Mobile dropdown - positioned under input field */
    .auto-complete {
        position: absolute !important;
        z-index: 99999 !important;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        max-height: 60vh;
        overflow-y: auto;
        margin-top: 2px;
        /* width: auto !important; */
        min-width: auto !important;
        max-width: none !important;
    }
    
    /* Adjust content for mobile */
    .auto-complete .latest-posts-dropdown {
        padding: 15px;
        margin: 0;
        border: none;
        border-radius: 8px;
        box-shadow: none;
        max-height: none;
        width: 250px;
    }
    
    .auto-complete .latest-posts-dropdown h6 {
        font-size: 16px;
        margin-bottom: 12px;
        color: #333;
        font-weight: 600;
    }
    
    .auto-complete .latest-post-item {
        margin-bottom: 10px;
    }
    
    .auto-complete .latest-post-item a {
        padding: 10px 0;
        font-size: 14px;
        display: flex;
        align-items: center;
        text-decoration: none;
        color: #333;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .auto-complete .latest-post-item a:hover {
        background: #f8f9fa;
        color: #ea3934;
    }
    
    .auto-complete .item-image,
    .auto-complete .building-logo {
        width: 50px;
        height: 50px;
        margin-right: 12px;
        border-radius: 6px;
    }
    
    .auto-complete .item-content {
        flex: 1;
    }
    
    .auto-complete .item-title {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.4;
    }
    
    .auto-complete .newly-launched-tag {
        font-size: 10px;
        padding: 2px 6px;
        margin-top: 3px;
    }
}

/* Desktop responsive adjustments */
@media (min-width: 769px) {
    .auto-complete {
        max-height: 400px;
    }
}

/* Ensure dropdown doesn't get cut off by parent containers */
.elementor-widget .auto-complete,
.elementor-element .auto-complete {
    position: fixed !important;
    z-index: 99999 !important;
}

/* Adjust positioning for fixed dropdowns */
.auto-complete.position-fixed {
    position: fixed !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
}

@media (max-width: 992px) {
    .property-navigation-item {
        width: 20% !important;
    }

}

@media (max-width: 1024px) {
    #hubspot-messages-iframe-container {
        height: 330px !important;
    }

    #hubspot-messages-iframe-container .hs-shadow-container.active{
         height: 80px !important;
    }
}

/* style for homepage agents section */

.agents-custom-wrapper .rounded-circle{
    border-radius: 25% !important;
}
.agents-custom-wrapper .agent-body,
.agents-custom-wrapper .agent-info .agent-company{
    display: none !important;
}

/* Property PDF Widget Styling */
.widget-property-pdf {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.widget-property-pdf .widget-header {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.widget-property-pdf .widget-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.widget-property-pdf .widget-body {
    text-align: center;
}

.widget-property-pdf #download-property-pdf {
    background: #ea3934 !important;
    color: white !important;
    padding: 12px 20px !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.widget-property-pdf #download-property-pdf:hover {
    background: #005a87 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3);
}

.widget-property-pdf #download-property-pdf:disabled {
    background: #ccc !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.widget-property-pdf .fa {
    margin-right: 8px;
}

/* Mobile responsive for PDF widget */
@media (max-width: 768px) {
    .widget-property-pdf {
        margin-bottom: 20px;
    }
    
    .widget-property-pdf #download-property-pdf {
        font-size: 16px !important;
        padding: 15px 20px !important;
    }
}

.home .icon-messaging-whatsapp:before,
.item-wrap .icon-messaging-whatsapp:before {
    color: #ea3934 !important;
}

.icon-messaging-whatsapp:before{
    color: #fff;
}
.btn-secondary-outlined:hover{
    border-color: #ea3934 !important;
}

/* search dev and agent section side bar  */

/* Mobile responsive for PDF widget */
@media (max-width: 768px) {
    .widget-property-pdf {
        margin-bottom: 20px;
    }
    
    .widget-property-pdf #download-property-pdf {
        font-size: 16px !important;
        padding: 15px 20px !important;
    }
}

/* Search Results Page Custom Widget Styling */
.listing-wrap .widget-wrap {
    background: #fff;
    margin-bottom: 20px;
}

.listing-wrap .widget-header {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.listing-wrap .widget-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding-bottom: 8px;
}

.listing-wrap .widget-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.listing-wrap .widget-item:last-child {
    border-bottom: none;
}

.listing-wrap .widget-item:hover {
    padding: 12px 8px;
    margin: -8px;
    border-radius: 6px;
}

.listing-wrap .widget-item-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 5px 0;
}

.listing-wrap .widget-item-title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.listing-wrap .widget-item-title a:hover {
    color: #ea3934 !important;
}

.listing-wrap .widget-item-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

/* Mobile responsive for search results widgets */
@media (max-width: 768px) {
    .listing-wrap .widget-wrap {
        margin-bottom: 15px;
    }
    
    .listing-wrap .widget-title {
        font-size: 16px;
    }
    
    .listing-wrap .widget-item-title {
        font-size: 15px;
    }
    
    .listing-wrap .widget-item-desc {
        font-size: 13px;
    }
}  align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-dropdown:hover {
    background-color: #f0f0f0;
    color: #333;
}

.latest-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.latest-post-item {
    margin-bottom: 8px;
}

.latest-post-item:last-child {
    margin-bottom: 0;
}

.latest-post-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 8px 0;
    transition: all 0.3s ease;
    font-size: 14px;
}

.latest-post-item a:hover {
    color: #007cba;
}

/* For properties with building logo */
.building-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    margin-right: 12px;
    flex-shrink: 0;
}

.latest-post-item a span {
    flex: 1;
}

/* For agents with images */
.item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 12px;
    flex-shrink: 0;
}

.item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.item-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

/* Newly Launched Tag */
.newly-launched-tag {
    display: none;
    font-size: 10px;
    color: #007cba;
    background: #e3f2fd;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    align-self: flex-start;
}

/* Show tag on tablet and desktop */
@media (min-width: 768px) {
    .newly-launched-tag {
        display: inline-block;
    }
}

/* Property Navigation Horizontal Scroll */
.property-navigation-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.property-navigation-wrap::-webkit-scrollbar {
    display: none; /* WebKit */
}

.property-navigation {
    display: flex !important;
    flex-wrap: nowrap !important;
    min-width: max-content;
    white-space: nowrap;
    padding: 0 15px;
}

.property-navigation-item {
    flex-shrink: 0;
    white-space: nowrap;
}

.property-navigation-item .target {
    white-space: nowrap;
    padding: 12px 16px !important;
    display: inline-block;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    /* border-radius: 6px; */
    margin: 0 2px;
}

.property-navigation-item .target:hover {
    background-color: #f8f9fa;
    color: #ea3934;
}

.property-navigation-item .back-top {
    padding: 12px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #007cba;
    color: white !important;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 10px;
    min-width: 44px;
    height: 44px;
}

.property-navigation-item .back-top:hover {
    background-color: #005a87;
    transform: translateY(-2px);
}

/* Mobile specific adjustments */
@media (max-width: 767px) {
    .property-navigation {
        padding: 0 10px;
    }
    
    .property-navigation-item .target {
        padding: 10px 12px !important;
        font-size: 14px;
    }
    
    .property-navigation-item .back-top {
        padding: 10px !important;
        min-width: 40px;
        height: 40px;
        margin-right: 8px;
    }
}

/* Ensure smooth scrolling on touch devices */
@media (hover: none) and (pointer: coarse) {
    .property-navigation-wrap {
        -webkit-overflow-scrolling: touch;
    }
}

/* Elementor Widget Dropdown Styling */
#filed-radius {
    position: relative;
    cursor: pointer;
}

/* Ensure dropdown appears above other elements */
.auto-complete {
    position: absolute !important;
    z-index: 9999 !important;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-height: 400px;
    overflow-y: auto;
    margin-top: 2px;
}

/* Specific styling for dropdowns triggered by input fields */
#filed-radius input[type="text"] + .auto-complete,
.auto-complete.position-absolute {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
    margin-top: 2px;
    width: auto !important;
    min-width: auto !important;
    max-width: none !important;
}

/* Mobile responsive adjustments for dropdown */
@media (max-width: 768px) {
    /* Mobile dropdown - positioned under input field */
    .auto-complete {
        position: absolute !important;
        z-index: 99999 !important;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        max-height: 60vh;
        overflow-y: auto;
        margin-top: 2px;
        width: auto !important;
        min-width: auto !important;
        max-width: none !important;
    }
    
    /* Adjust content for mobile */
    .auto-complete .latest-posts-dropdown {
        padding: 15px;
        margin: 0;
        border: none;
        border-radius: 8px;
        box-shadow: none;
        max-height: none;
    }
    
    .auto-complete .latest-posts-dropdown h6 {
        font-size: 16px;
        margin-bottom: 12px;
        color: #333;
        font-weight: 600;
    }
    
    .auto-complete .latest-post-item {
        margin-bottom: 10px;
    }
    
    .auto-complete .latest-post-item a {
        padding: 10px 0;
        font-size: 14px;
        display: flex;
        align-items: center;
        text-decoration: none;
        color: #333;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .auto-complete .latest-post-item a:hover {
        background: #f8f9fa;
        color: #007cba;
    }
    
    .auto-complete .item-image,
    .auto-complete .building-logo {
        width: 50px;
        height: 50px;
        margin-right: 12px;
        border-radius: 6px;
    }
    
    .auto-complete .item-content {
        flex: 1;
    }
    
    .auto-complete .item-title {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.4;
    }
    
    .auto-complete .newly-launched-tag {
        font-size: 10px;
        padding: 2px 6px;
        margin-top: 3px;
    }
}

/* Desktop responsive adjustments */
@media (min-width: 769px) {
    .auto-complete {
        max-height: 400px;
    }
}

/* Ensure dropdown doesn't get cut off by parent containers */
.elementor-widget .auto-complete,
.elementor-element .auto-complete {
    position: fixed !important;
    z-index: 99999 !important;
}

/* Property PDF Widget Styling */
.widget-property-pdf {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.widget-property-pdf .widget-header {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.widget-property-pdf .widget-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.widget-property-pdf .widget-body {
    text-align: center;
}

.widget-property-pdf #download-property-pdf {
    background: #007cba !important;
    color: white !important;
    padding: 12px 20px !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.widget-property-pdf #download-property-pdf:hover {
    background: #005a87 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3);
}

.widget-property-pdf #download-property-pdf:disabled {
    background: #ccc !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.widget-property-pdf .fa {
    margin-right: 8px;
}

/* Mobile responsive for PDF widget */
@media (max-width: 768px) {
    .widget-property-pdf {
        margin-bottom: 20px;
    }
    
    .widget-property-pdf #download-property-pdf {
        font-size: 16px !important;
        padding: 15px 20px !important;
    }
}

/* Search Results Page Custom Widget Styling */
.listing-wrap .widget-wrap {
    background: #fff;
    margin-bottom: 20px;
}

.listing-wrap .widget-header {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.listing-wrap .widget-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding-bottom: 8px;
}

.listing-wrap .widget-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.listing-wrap .widget-item:last-child {
    border-bottom: none;
}

.listing-wrap .widget-item:hover {
    padding: 12px 8px;
    margin: -8px;
    border-radius: 6px;
}

.listing-wrap .widget-item-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 5px 0;
}

.listing-wrap .widget-item-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.listing-wrap .widget-item-title a:hover {
    color: #ea3934;
}

.listing-wrap .widget-item-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

/* Mobile responsive for search results widgets */
@media (max-width: 768px) {
    .listing-wrap .widget-wrap {
        margin-bottom: 15px;
    }
    
    .listing-wrap .widget-title {
        font-size: 16px;
    }
    
    .listing-wrap .widget-item-title {
        font-size: 15px;
    }
    
    .listing-wrap .widget-item-desc {
        font-size: 13px;
    }
    .mobile-nav-whatsapp{
        padding-top: 10px !important;
    }
    .item-preview{
        display: none !important;
    }
    .pl-actions{
        max-width: 110px;
    }
}


/* Adjust positioning for fixed dropdowns */
.auto-complete.position-fixed {
    position: fixed !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
}
.search-page #block-6,
.search-page #block-7{
    display: none !important;
}

.home .bs-title-option{
    display: none;
}

.para-scroll-y .hz-carousel-content p{
    max-height: 140px !important;
}

.mobile-nav-whatsapp .icon-messaging-whatsapp:before{
    color: #25D366 !important;
}

.mobile-nav-whatsapp.login-register-nav a{
    margin-left: 10px;
    padding: 0px 25px;
}

body .h-baths,
body .h-cars{
    display: none !important;
}
.dropdown-item .icon-messaging-whatsapp::before{
    color: #ffffff !important;
}
@media (max-width: 990px) {
    body .agent-information {
        display: flex !important;
        flex-direction: column !important;
    }
}

.grid-view .item-footer{
    display: none !important;
}

#chaty-widget-0 .chaty-widget{
    bottom: 80px !important;
}

/* style for search widget */
/* Basic styling for Houzez Smart Search widget */

.hz-smart-search-widget .hz-smart-search-bar {
    border-radius: 0px;
    /* border: 1px solid #dce0e0; */
    background-color: #ffffff;
    padding: 7px 8px;
}

.hz-smart-search-widget .hz-smart-search-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    min-height: 40px;
    flex-direction: row;
}

.hz-smart-search-widget .hz-smart-search-left-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: #ea4335;
    font-size: 16px;
}

.hz-smart-search-widget .hz-smart-search-chips {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    margin-right: 4px;
}

.hz-smart-search-widget .hz-chip {
    display: inline-flex;
    align-items: center;
    background-color: #f3f5f6;
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 12px;
    color: #444;
}

.hz-smart-search-widget .hz-chip-city {
    background-color: #e2f0ff;
    color: #1a4d8f;
}

.hz-smart-search-widget .hz-chip-project {
    background-color: #fff3cd;
    color: #856404;
    max-width: 180px ;
    width: 180px;
}

.hz-smart-search-widget .hz-chip-label {
    margin-right: 4px;
}

.hz-smart-search-widget .hz-chip-remove {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    padding: 0;
    color: #777;
}

.hz-smart-search-widget .hz-smart-search-input {
    border: 1px solid #dce0e0 !important;
    box-shadow: none !important;
    flex: 1 1 auto;
    min-width: 120px;
}

.hz-smart-search-widget .hz-smart-search-input:focus {
    outline: none;
}

.hz-smart-search-widget .hz-smart-search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    width: 100%;
    display: none;
    z-index: 9999;
}

.hz-smart-search-widget .hz-smart-search-suggestions.show {
    display: block;
}

.hz-smart-search-widget .hz-smart-search-suggestions > div {
    position: relative;
    width: 100%;
    max-height: 280px;
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid #dce0e0;
    border-radius: 4px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    margin-top: 4px;
}

.hz-smart-search-widget .hz-smart-group {
    padding: 6px 8px;
}

.hz-smart-search-widget .hz-smart-group-title {
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 4px;
}

.hz-smart-search-widget .hz-smart-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hz-smart-search-widget .hz-smart-item {
    padding: 6px 4px;
    cursor: pointer;
    border-radius: 3px;
}

.hz-smart-search-widget .hz-smart-item:hover {
    background-color: #f3f5f6;
}

.hz-smart-search-widget .hz-smart-item-label {
    font-size: 13px;
    color: #333;
}

/* Highlight matching letters in red */
.hz-smart-search-widget .hz-match-highlight {
    color: #ff0000;
    font-weight: 600;
    background-color: transparent;
}

/* Search row layout */
.hz-smart-search-widget .hz-smart-search-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    /* gap: 8px; */
}

.hz-smart-search-widget .hz-smart-main {
    flex: 1 1 auto;
    min-width: 0;
    position: relative;
}

/* Additional fields styling */
.hz-smart-search-widget .hz-smart-search-additional-fields {
    margin-top: 0;
    flex-wrap: nowrap;
    display: flex;
    gap: 8px;
    border-radius: 0px;
    /* border: 1px solid #dce0e0; */
    background-color: #ffffff;
    padding: 4px 8px;
}

.hz-smart-search-widget .hz-smart-search-additional-fields .elementor-field-group {
    flex: 0 0 auto;
    min-width: 140px;
}

.hz-smart-search-widget .hz-smart-search-additional-fields .elementor-select-wrapper {
    width: 100%;
}

.hz-smart-search-widget .elementor-form-fields-wrapper{
    justify-content: center;
}

/* Responsive: Tablet */
@media (max-width: 1024px) and (min-width: 768px) {
    .hz-smart-search-widget .hz-smart-search-additional-fields .elementor-field-group {
        min-width: 120px;
    }
}

/* Responsive: Mobile - Stack fields below search bar */
@media (max-width: 767px) {
    .hz-smart-search-widget.hz-fields-mobile-stack .hz-smart-search-row {
        flex-wrap: wrap;
    }
    
    .hz-smart-search-widget.hz-fields-mobile-stack .hz-smart-main {
        flex: 1 1 100%;
        margin-right: 0 !important;
        margin-bottom: 10px;
    }
    
    .hz-smart-search-widget.hz-fields-mobile-stack .hz-smart-search-additional-fields {
        flex: 1 1 100%;
        flex-wrap: wrap;
        width: 100%;
    }
    
    .hz-smart-search-widget.hz-fields-mobile-stack .hz-smart-search-additional-fields .elementor-field-group {
        flex: 1 1 auto;
        min-width: calc(33.333% - 6px);
    }
    
    /* On very small screens, stack all fields vertically */
    @media (max-width: 480px) {
        .hz-smart-search-widget.hz-fields-mobile-stack .hz-smart-search-additional-fields .elementor-field-group {
            flex: 1 1 100%;
            min-width: 100%;
            margin-bottom: 8px;
        }
    }
    
    /* Hide additional fields on mobile if option is set */
    .hz-smart-search-widget.hz-fields-mobile-hide .hz-smart-search-additional-fields {
        display: none !important;
    }
    
    /* Keep inline but allow horizontal scroll */
    .hz-smart-search-widget.hz-fields-mobile-inline .hz-smart-search-row {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .hz-smart-search-widget.hz-fields-mobile-inline .hz-smart-search-additional-fields {
        flex-shrink: 0;
    }

    
    /* On mobile, always hide additional fields for a clean bar-only layout */
    .hz-smart-search-widget .hz-smart-search-additional-fields {
        display: none !important;
    }

    /* Hide chips row on mobile to keep input clean
    .hz-smart-search-widget .hz-smart-search-chips {
        display: none !important;
    } */
    
    /* Hide tabs on mobile if option is enabled */
    .hz-smart-search-widget.hz-tabs-hide-mobile-yes #houzez-search-tabs-wrap {
        display: none !important;
    }
    
    /* Make tabs scrollable on mobile if they don't fit */
    .hz-smart-search-widget #houzez-search-tabs-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        white-space: nowrap;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .hz-smart-search-widget #houzez-search-tabs-wrap::-webkit-scrollbar {
        display: none;
    }
    
    .hz-smart-search-widget #houzez-search-tabs-wrap .nav-item {
        flex-shrink: 0;
    }
    
    /* Adjust search bar padding on mobile */
    .hz-smart-search-bar {
        padding: 6px 8px;
    }
    
    /* Ensure input doesn't overflow on mobile */
    .hz-smart-search-widget .hz-smart-search-input {
        font-size: 14px;
        min-width: 100px;
    }
    
    /* Make chips smaller on mobile */
    .hz-smart-search-widget .hz-chip {
        font-size: 11px;
        padding: 2px 6px;
    }
    
    /* Adjust search inner container */
    .hz-smart-search-widget .hz-smart-search-inner {
        min-height: 36px;
        flex-wrap: nowrap;
    }
    
    /* Make search button more compact on mobile */
    .hz-smart-search-widget .hz-smart-search-btn {
        /* padding: 10px 10px; */
        font-size: 14px;
        /* border-radius: 50%; */
    }
    
    /* Hide button text on mobile if option is enabled */
    .hz-smart-search-widget.hz-hide-btn-text-mobile-yes .hz-smart-search-btn span {
        display: none;
    }
    
    .hz-smart-search-widget.hz-hide-btn-text-mobile-yes .hz-smart-search-btn i {
        margin: 0;
    }

    .hz-smart-search-widget .hz-smart-search-btn span {
        display: none;
    }
}

/* Tabs styling */
.hz-smart-search-widget #houzez-search-tabs-wrap {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    /* gap: 8px; */
    list-style: none;
    padding: 0;
    justify-content: center;
}

@media (min-width: 768px) {
    .hz-smart-search-widget #houzez-search-tabs-wrap {
        flex-wrap: wrap;
    }
}

.hz-smart-search-widget #houzez-search-tabs-wrap .nav-item {
    margin: 0;
}

.hz-smart-search-widget #houzez-search-tabs-wrap .nav-link {
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.hz-smart-search-widget #houzez-search-tabs-wrap .nav-link.active {
    background-color: #007cba;
    color: #ffffff;
}

.hz-smart-search-widget #houzez-search-tabs-wrap .nav-link:not(.active) {
    background-color: #f3f5f6;
    color: #333;
}

.hz-smart-search-widget #houzez-search-tabs-wrap .nav-link:not(.active):hover {
    background-color: #e0e0e0;
}
.houzez-search-form-js .nav-pills .nav-link, .top-banner-wrap .nav-pills .nav-link{
    margin: 0px 0px !important;
}

/* agensts hide buttons */
.agents-custom-wrapper .property-carousel-buttons-wrap{
    display: none;
}

.home .header-whatsapp::before{
    color: #fff !important;
}

.hz-smart-search-btn {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.tabs-title-active-class .item-listing-wrap .listing-image-wrap img {
    height: 344px !important;
}