.header .header-logo img {
    width: 272px;
    height: 84px;
}
#footer .footer-logo img {
    width: 272px;
    height: 84px;
}

/* Menu count styling */
.menu-count {
    font-size: 11px;
    color: var(--Note);
    background: rgba(0, 0, 0, 0.08);
    padding: 2px 5px;
    border-radius: 10px;
    margin-left: 0px;
    display: inline-block;
    font-weight: normal;
}

.navigation .submenu {
    padding: 15px !important;
}

/* Category items styling */
.navigation .submenu li.has-child > a {
    font-weight: 600;
    color: var(--Primary) !important;
    background: rgba(241, 145, 61, 0.08);
    border-radius: 8px;
    margin: 2px 0;
    padding: 10px 5px !important;
    font-size: 13px;
}

.navigation .submenu li.has-child > a:hover {
    background: var(--Primary);
    color: var(--White) !important;
}

.navigation .submenu li.has-child > a:hover .menu-count {
    background: rgba(255, 255, 255, 0.3);
    color: var(--White);
}

/* Brand items in nested submenu */
.navigation .submenu .submenu li a {
    padding: 8px 0px !important;
    font-size: 14px;
    color: var(--Text) !important;
    border-radius: 6px;
    margin: 1px 0;
    transition: all 0.3s ease;
}

.navigation .submenu .submenu li a:hover {
    background-color: rgba(241, 145, 61, 0.1);
    color: var(--Primary) !important;
    transform: translateX(4px);
}

.navigation .submenu .submenu li a strong {
    color: var(--Primary) !important;
}

.navigation .submenu .submenu li a small {
    font-size: 10px;
    color: var(--Note);
    background: rgba(0, 0, 0, 0.05);
    padding: 1px 5px;
    border-radius: 8px;
    margin-left: 6px;
}

.navigation .submenu .submenu li a:hover small {
    background: var(--Primary);
    color: var(--White);
}

/* Standalone brand items */
.navigation .submenu > li > a .menu-count {
    background: rgba(241, 145, 61, 0.15);
    color: var(--Primary);
    font-weight: 600;
}

.navigation .submenu > li:hover > a .menu-count {
    background: rgba(255, 255, 255, 0.3);
    color: var(--White);
}

.navigation li.has-child > a::after {
    padding: 0 5px !important;
}

/* Mobile menu improvements */
.inner-mobile-nav .item-menu-mobile small,
.inner-mobile-nav .menu-count {
    font-size: 10px;
    color: var(--Note);
    background: rgba(0, 0, 0, 0.08);
    padding: 2px 5px;
    border-radius: 8px;
    margin-left: 6px;
    display: inline-block;
}

.inner-mobile-nav .sub-mobile .item-menu-mobile {
    padding-left: 25px;
    font-size: 14px !important;
}

.inner-mobile-nav .sub-mobile .item-menu-mobile strong {
    color: var(--Primary) !important;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .inner-mobile-nav .item-menu-mobile {
        padding: 10px 15px;
    }

    .inner-mobile-nav .menu-count,
    .inner-mobile-nav small {
        font-size: 9px;
        padding: 1px 4px;
    }
}

/* Corporate Content Styles */
.corporate-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--Text);
}

.corporate-content h2,
.corporate-content h3,
.corporate-content h4 {
    color: var(--Heading);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.corporate-content p {
    margin-bottom: 1.5rem;
}

.corporate-content ul,
.corporate-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.corporate-content li {
    margin-bottom: 0.5rem;
}

.corporate-content blockquote {
    border-left: 4px solid var(--Primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--Text-3);
}

/* About Stats Section */
.about-stats {
    background: linear-gradient(135deg, var(--Primary) 0%, var(--Secondary) 100%);
    position: relative;
    overflow: hidden;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.about-stats .tf-container {
    position: relative;
    z-index: 2;
}

/* Contact CTA */
.contact-cta {
    background: var(--Sub-primary-1);
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    margin-top: 48px;
}

/* Service and Reference Item Styles */
.service-item, .reference-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover, .reference-item:hover {
    transform: translateY(-5px);
}

.service-image img, .reference-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content, .reference-content {
    padding: 20px;
}

.service-title, .reference-title {
    margin-bottom: 10px;
}

.service-description, .reference-description {
    color: #666;
    margin-bottom: 15px;
}

/* Counter Styles */
.counter-item {
    padding: 30px 20px;
}

.number-counter {
    font-size: 3rem;
    font-weight: bold;
    color: #F1913D;
    margin-bottom: 10px;
}

.hero-actions .tf-btn {
    display: inline-block;
    margin-bottom: 10px;
}

/* Stats Section with Background */
.section-stats {
    position: relative;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 500px;
    padding: 80px 0;
    margin-top: 104px;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.section-stats .tf-container {
    position: relative;
    z-index: 2;
}

.counter-item.style-1 {
    padding: 40px 25px;
    margin-bottom: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.counter-item.style-1:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.counter-number {
    margin-bottom: 20px;
    margin-left: 10px;
}

.odometer {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Target the counter-number container instead */
.counter-number:has(.odometer.style-1-3)::after {
    content: "+";
    color: white;
    font-size: inherit;
    font-weight: inherit;
    margin-left: 5px;
    display: inline;
}

/* Alternative approach if :has() doesn't work in your browser */
.style-1-3 {
    display: inline-block;
}

.counter-item:nth-child(3) .counter-number::after {
    content: "+";
    color: white;
    font-size: 30px;
    font-weight: inherit;
    margin-left: 5px;
    display: inline;
}

/* Make sure the counter-number displays inline */
.counter-item:nth-child(3) .counter-number {
    display: inline-flex;
    align-items: center;
}

.counter-item .text_white {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.tf-grid-layout-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.heading-section .title {
    margin-bottom: 25px;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.text-color3 {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.7rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Animation for background */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.counter-item.style-1:nth-child(1) { animation: float 6s ease-in-out infinite; }
.counter-item.style-1:nth-child(2) { animation: float 6s ease-in-out infinite 1.5s; }
.counter-item.style-1:nth-child(3) { animation: float 6s ease-in-out infinite 3s; }
.counter-item.style-1:nth-child(4) { animation: float 6s ease-in-out infinite 4.5s; }

/* About Section Styles */
.section-about {
    background-color: #f8f9fa;
}

.about-content {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Values Section - Equal Height Boxes */
.about-stats .row {
    display: flex;
    flex-wrap: wrap;
}

.about-stats .col-lg-3,
.about-stats .col-md-6 {
    display: flex;
    margin-bottom: 24px;
}

.about-stats .icons-box.style-3 {
    padding: 32px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid #f0f0f0;
    min-height: 280px;
}

.about-stats .icons-box.style-3:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(241, 145, 61, 0.2);
}

.about-stats .icons-box.style-3 .tf-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(241, 145, 61, 0.1);
    color: #F1913D;
    border-radius: 50%;
    margin: 0 auto 24px;
    font-size: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-stats .icons-box.style-3:hover .tf-icon {
    background-color: #F1913D;
    color: #fff;
    transform: scale(1.1);
}

.about-stats .icons-box.style-3 .title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c2e33;
    flex-shrink: 0;
}

.about-stats .icons-box.style-3 p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.7;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Other About Features */
.about-features .icons-box.style-3 {
    padding: 25px 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.about-features .icons-box.style-3:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.about-features .icons-box.style-3 .tf-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(241, 145, 61, 0.1);
    color: #F1913D;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-features .icons-box.style-3 .title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c2e33;
}

.about-features .icons-box.style-3 p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Brand Logo Styles */
.brand-logo {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}

.categories-item .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form Enhancements */
.form-get-in-touch fieldset.focused {
    transform: scale(1.02);
}

.form-get-in-touch .form-control:focus {
    border-color: #F1913D;
    box-shadow: 0 0 0 0.2rem rgba(241, 145, 61, 0.25);
}

/* Loading States */
.tf-btn.loading {
    position: relative;
    color: transparent;
}

.tf-btn.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

/* Filter Section Styles */
.wg-filter.style-2 .form-title {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    background-color: var(--White);
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
}

.wg-filter.style-2 .form-title > * {
    flex-shrink: 0;
}

.wg-filter.style-2 .form-title .box-item {
    flex: 1;
    min-width: 250px;
    max-width: 100%;
}

.wg-filter.style-2 .form-title .box-item input {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border: 1px solid var(--Line);
    border-radius: 16px;
    font-size: 15px;
    line-height: 18.75px;
    box-sizing: border-box;
}

.wg-filter.style-2 .form-title .nice-select {
    width: 200px;
    height: 54px;
    border: 1px solid var(--Line);
    border-radius: 16px;
    padding: 0 16px;
    font-size: 15px;
    line-height: 18.75px;
    background-color: var(--White);
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.wg-filter.style-2 .form-title .nice-select::after {
    right: 16px;
}

.wg-filter.style-2 .form-title .wrap-btn,
.wg-filter.style-3 .form-title .wrap-btn {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    justify-content: flex-end;
    margin-left: auto;
}

.wg-filter.style-2 .form-title .wrap-btn .tf-btn {
    height: 54px;
    padding: 0 24px;
    border-radius: 16px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Nice Select Improvements */
.nice-select {
    position: relative;
    background-color: var(--White);
    border: 1px solid var(--Line);
    border-radius: 16px;
    cursor: pointer;
    display: block;
    outline: none;
    padding: 16px;
    transition: all 0.2s ease-in-out;
    user-select: none;
    white-space: nowrap;
    min-height: 54px;
    box-sizing: border-box;
}

.nice-select:hover {
    border-color: var(--Primary);
}

.nice-select:focus,
.nice-select.open {
    border-color: var(--Primary);
    box-shadow: 0 0 0 0.2rem rgba(241, 145, 61, 0.25);
}

.nice-select::after {
    border-bottom: 2px solid var(--Heading);
    border-right: 2px solid var(--Heading);
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    transform-origin: 66% 66%;
    transform: rotate(45deg);
    transition: all 0.15s ease-in-out;
    width: 5px;
}

.nice-select.open::after {
    transform: rotate(-135deg);
}

.nice-select .list {
    background-color: var(--White);
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transform: scale(0.75) translateY(-21px);
    transform-origin: 50% 0;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
    max-height: 200px;
    overflow-y: auto;
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: var(--Sub-primary-1);
    color: var(--Primary);
}

.nice-select .option.selected {
    font-weight: 600;
    color: var(--Primary);
}

/* Product Grid Layout Toggle */
.box-title.style-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--Line);
    flex-wrap: wrap;
    gap: 15px;
}

.box-title.style-2 .left h6 {
    font-size: 18px;
    font-weight: 600;
    color: var(--Heading);
    margin: 0;
}

.box-title.style-2 .left p {
    margin: 0;
    color: var(--Text);
    font-size: 14px;
}

.box-title.style-2 .right .group-layout {
    display: flex;
    gap: 8px;
}

.box-title.style-2 .btn-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--Line);
    border-radius: 10px;
    color: var(--Text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.box-title.style-2 .btn-layout:hover,
.box-title.style-2 .btn-layout.active {
    background-color: var(--Primary);
    color: var(--White);
    border-color: var(--Primary);
}

/* List View Styles */
.tf-layout-list .box-house {
    display: flex;
    background: var(--White);
    border: 1px solid var(--Line);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.tf-layout-list .box-house:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.tf-layout-list .box-house .image-wrap {
    width: 280px;
    flex-shrink: 0;
}

.tf-layout-list .box-house .image-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tf-layout-list .box-house .content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Empty State Styles */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state .icons-box.style-3 {
    max-width: 400px;
    margin: 0 auto;
    padding: 40px 20px;
    background: var(--White);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.empty-state .tf-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(241, 145, 61, 0.1);
    color: var(--Primary);
    border-radius: 50%;
    margin: 0 auto 24px;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-state .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--Heading);
}

.empty-state p {
    color: var(--Text);
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.6;
}

/* ===============================
   GALLERY & SWIPER STYLES
   =============================== */

/* Service Gallery Styles */
.single-property-gallery {
    position: relative;
    margin-bottom: 30px;
}

.sw-single {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 16px;
}

.sw-single .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.sw-single .swiper-slide {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sw-single .swiper-slide .image-wrap {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
}

.sw-single .swiper-slide img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* Product Gallery specific styles */
.section-property-detail .sw-single {
    border-radius: 8px;
}

.section-property-detail .sw-single .swiper-slide img {
    max-height: 500px;
    border-radius: 0;
}

/* Navigation buttons styling */
.box-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 10;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
}

.section-property-detail .box-navigation {
    padding: 0 20px;
}

.sw-button {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.section-property-detail .sw-button {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.sw-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

.sw-button i {
    font-size: 14px;
    color: #333;
}

.section-property-detail .sw-button i {
    font-size: 16px;
}

/* Disable default swiper navigation */
.swiper-button-prev,
.swiper-button-next {
    display: none !important;
}

/* Thumbnails styling */
.thumbs-sw-pagi {
    margin-top: 12px;
    padding: 0;
}

.section-property-detail .thumbs-sw-pagi {
    margin-top: 15px;
}

.thumbs-sw-pagi .swiper-slide {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    border-radius: 8px;
    overflow: hidden;
}

.section-property-detail .thumbs-sw-pagi .swiper-slide {
    transition: opacity 0.3s ease;
    border-radius: 6px;
}

.thumbs-sw-pagi .swiper-slide:hover,
.thumbs-sw-pagi .swiper-slide-thumb-active {
    opacity: 1;
}

/* ===============================
   SERVICE SPECIFIC STYLES
   =============================== */

.service-hero {
    background: linear-gradient(135deg, var(--Sub-primary-1) 0%, var(--White) 100%);
    padding: 80px 0;
}

.service-contact-form {
    background: var(--White);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: sticky;
    top: 104px;
}

.service-features {
    background: var(--Sub-primary-1);
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
}

.service-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.service-features .feature-item:last-child {
    margin-bottom: 0;
}

.service-features .feature-icon {
    width: 40px;
    height: 40px;
    background: var(--Primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--White);
    font-size: 18px;
    flex-shrink: 0;
}

.service-process {
    background: var(--White);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    border: 1px solid var(--Line);
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 50px;
    width: 2px;
    height: 40px;
    background: var(--Line);
}

.process-number {
    width: 48px;
    height: 48px;
    background: var(--Primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--White);
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.process-content h4 {
    margin-bottom: 8px;
    color: var(--Heading);
}

.process-content p {
    color: var(--Text);
    margin: 0;
}

/* ===============================
   RESPONSIVE STYLES
   =============================== */

/* Responsive behavior for filter */
@media (max-width: 1200px) {
    .wg-filter.style-2 .form-title {
        flex-wrap: wrap;
        gap: 12px;
    }

    .wg-filter.style-2 .form-title .box-item {
        min-width: 200px;
        flex: 1 1 200px;
    }

    .wg-filter.style-2 .form-title .nice-select {
        width: 180px;
        flex: 0 0 180px;
    }
}

@media (max-width: 768px) {
    .section-stats {
        background-attachment: scroll;
        padding: 60px 0;
        min-height: 400px;
    }

    .odometer {
        font-size: 2.5rem;
    }

    .tf-grid-layout-2 {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .counter-item.style-1 {
        padding: 30px 20px;
    }

    .heading-section .title {
        font-size: 2.2rem;
    }

    .section-about .col-lg-6:first-child {
        margin-bottom: 50px;
    }

    .about-features .row .col-sm-6,
    .about-stats .col-lg-3,
    .about-stats .col-md-6 {
        margin-bottom: 20px;
    }

    .about-stats .icons-box.style-3 {
        min-height: 260px;
        padding: 28px 20px;
    }

    .about-stats .icons-box.style-3 .tf-icon {
        width: 70px;
        height: 70px;
        font-size: 36px;
        margin-bottom: 20px;
    }

    .about-stats .icons-box.style-3 .title {
        font-size: 1.2rem;
        margin-bottom: 14px;
    }

    .about-stats .icons-box.style-3 p {
        font-size: 0.95rem;
    }

    .brand-logo {
        max-width: 60px;
        max-height: 60px;
    }

    /* Gallery responsive */
    .sw-single .swiper-slide img {
        max-height: 250px;
    }

    .section-property-detail .sw-single .swiper-slide img {
        max-height: 300px;
    }

    .box-navigation {
        padding: 0 10px;
    }

    .sw-button {
        width: 35px;
        height: 35px;
    }

    .section-property-detail .sw-button {
        width: 40px;
        height: 40px;
    }

    .thumbs-sw-pagi-service {
        margin-top: 10px;
        padding: 0 5px;
    }

    .section-property-detail .thumbs-sw-pagi {
        margin-top: 10px;
        padding: 0 5px;
    }

    /* Filter responsive */
    .wg-filter.style-2 .form-title {
        flex-direction: column;
        align-items: stretch;
    }

    .wg-filter.style-2 .form-title .box-item,
    .wg-filter.style-2 .form-title .nice-select {
        width: 100%;
        max-width: none;
        flex: none;
    }

    .wg-filter.style-2 .form-title .wrap-btn {
        width: 100%;
        justify-content: center;
    }

    .wg-filter.style-2 .form-title .wrap-btn .tf-btn {
        flex: 1;
        max-width: 150px;
    }
}

@media (max-width: 575px) {
    .tf-grid-layout-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .odometer {
        font-size: 2rem;
    }

    .about-features .row .col-sm-6,
    .about-stats .col-lg-3,
    .about-stats .col-md-6 {
        width: 100%;
        margin-bottom: 20px;
    }

    .about-features .icons-box.style-3,
    .about-stats .icons-box.style-3 {
        padding: 24px 16px;
        min-height: 240px;
    }

    .about-stats .icons-box.style-3 .tf-icon {
        width: 65px;
        height: 65px;
        font-size: 32px;
        margin-bottom: 18px;
    }

    .about-stats .icons-box.style-3 .title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .about-stats .icons-box.style-3 p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .brand-logo {
        max-width: 50px;
        max-height: 50px;
    }

    .hero-actions {
        text-align: center;
    }

    .hero-actions .tf-btn {
        display: block;
        margin: 10px auto;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .about-content {
        font-size: 1rem;
    }

    .about-features .icons-box.style-3 .tf-icon,
    .about-stats .icons-box.style-3 .tf-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 16px;
    }

    .about-features .icons-box.style-3 .title,
    .about-stats .icons-box.style-3 .title {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .about-features .icons-box.style-3 p,
    .about-stats .icons-box.style-3 p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .about-stats .icons-box.style-3 {
        min-height: 220px;
        padding: 20px 12px;
    }

    /* Gallery responsive small screens */
    .sw-single .swiper-slide img {
        max-height: 200px;
    }

    .section-property-detail .sw-single .swiper-slide img {
        max-height: 250px;
    }
}

/* Icon Badge Style - Premium Look */
.catalog-btn-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--White);
    color: var(--Primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 2px solid var(--Line);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.catalog-btn-badge:hover {
    border-color: var(--Primary);
    color: var(--Primary);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(241, 145, 61, 0.15);
    transform: translateY(-1px);
}

.catalog-btn-badge .icon-bg {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--Primary), #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--White);
    font-size: 12px;
}
