body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.tab-btn {
    transition: all 0.3s ease;
}

.tab-btn.active {
    background-color: white;
    color: #1a1a2e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section {
    background: linear-gradient(135deg, rgb(26 26 46 / 49%) 0%, rgb(22 33 62 / 23%) 100%), url(https://storage.googleapis.com/theme-vessel-items/checking-sites/housy-html/HTML/img/banner/banner-4.jpg);
    background-size: cover;
    /* background-image: url('https://risingtheme.com/html/demo-newvilla/newvilla/assets/img/hero/hero-section-bg.png'); */
    background-position: center;
    /* background-attachment: fixed; */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 118, 82, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    filter: blur(40px);
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 118, 82, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
    filter: blur(40px);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }
}

.search-container {
    position: relative;
    z-index: 10;
}


/*
.main-header {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(26, 31, 53, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 118, 82, 0.15);
    position: fixed;
    top: 39px;
    width: 80%;
    z-index: 40;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    left: 10%;
    border-radius: 30px;

}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo-section {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}


.logo-img {
    height: 80px;
    width: auto;
    position: absolute;
    object-fit: contain;
    top: 20px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    flex: 1;
}

.nav-item {
    position: relative;
    color: #e2e8f0;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding-bottom: 8px;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff7652, #ff9970);
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: #ff7652;
}

.nav-item:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 2px solid #ff7652;
    border-radius: 8px;
    color: #ff7652;
    background: transparent;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.phone-btn:hover {
    background: #ff7652;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 118, 82, 0.3);
    transform: translateY(-2px);
}

.phone-btn i {
    font-size: 14px;
}

.list-property-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 2px solid #ff7652;
    border-radius: 8px;
    color: #ff7652;
    background: transparent;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.list-property-btn:hover {
    background: rgba(255, 118, 82, 0.1);
    box-shadow: 0 8px 20px rgba(255, 118, 82, 0.2);
    transform: translateY(-2px);
}

.list-property-btn i {
    font-size: 14px;
}

.login-btn {
    padding: 11px 28px;
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 118, 82, 0.3);
    white-space: nowrap;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 118, 82, 0.4);
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 30px;
    }

    .phone-btn span {
        display: none;
    }

    .list-property-btn span {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }

    .top-bar-left {
        gap: 15px;
        font-size: 11px;
    }

    .header-container {
        gap: 20px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 13px;
    }

    .header-actions {
        gap: 10px;
    }
}
*/
/*

.main-header {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(26, 31, 53, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 118, 82, 0.15);
    position: fixed;
    top: 39px;
    width: 80%;
    z-index: 40;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    left: 10%;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-header.header-sticky {
    top: 20px;
    padding: 12px 24px;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo-section {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    position: relative;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;

    transform: translateX(-50%);
    transition: all 0.4s ease;
}

.main-header.header-sticky .logo-img {
    height: 50px;
    top: -28px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    flex: 1;
}

.nav-item {
    position: relative;
    color: #e2e8f0;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding-bottom: 8px;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff7652, #ff9970);
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: #ff7652;
}

.nav-item:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 2px solid #ff7652;
    border-radius: 8px;
    color: #ff7652;
    background: transparent;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.phone-btn:hover {
    background: #ff7652;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 118, 82, 0.3);
    transform: translateY(-2px);
}

.phone-btn i {
    font-size: 14px;
}

.list-property-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 2px solid #ff7652;
    border-radius: 8px;
    color: #ff7652;
    background: transparent;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.list-property-btn:hover {
    background: rgba(255, 118, 82, 0.1);
    box-shadow: 0 8px 20px rgba(255, 118, 82, 0.2);
    transform: translateY(-2px);
}

.list-property-btn i {
    font-size: 14px;
}

.login-btn {
    padding: 11px 28px;
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 118, 82, 0.3);
    white-space: nowrap;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 118, 82, 0.4);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: 2px solid #ff7652;
    color: #ff7652;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
}




@media (max-width: 1200px) {
    .nav-menu {
        gap: 30px;
    }

    .header-actions {
        gap: 12px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        gap: 25px;
        font-size: 14px;
    }

    .phone-btn span,
    .list-property-btn span {
        display: none;
    }

    .phone-btn,
    .list-property-btn {
        padding: 10px 14px;
    }

    .logo-img {
        height: 65px;
    }

    .main-header.header-sticky .logo-img {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .main-header {
        width: 95%;
        left: 2.5%;
        top: 20px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .header-actions {
        gap: 10px;
    }

    .logo-img {
        height: 60px;
        top: -32px;
    }

    .main-header.header-sticky .logo-img {
        height: 50px;
        top: -26px;
    }
}
*/

/* Main Header */
.main-header {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(26, 31, 53, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-bottom: 1px solid rgba(255, 118, 82, 0.15);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 40;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    left: 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px; /* Ensures items don't touch edges on medium screens */
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

/* Logo Section */
.logo-section {
    /* position: absolute; */
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
    z-index: 50;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.main-header.header-sticky .logo-img {
    height: 40px;
    /* width: 70%; */
}

/*
.main-header.header-sticky {
    width: 60%;
} */

/* Navigation */
.nav-menu {
    display: flex;
    gap: 35px;
    justify-content: flex-start;
}

.nav-item {
    position: relative;
    color: #e2e8f0;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding-bottom: 8px;
    white-space: nowrap;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff7652, #ff9970);
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: #ff7652;
}

.nav-item:hover::after {
    width: 100%;
}

/* Right Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-end;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 2px solid #ff7652;
    border-radius: 8px;
    color: #fff;
    background: transparent;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.phone-btn:hover {
    background: #ff7652;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 118, 82, 0.3);
    transform: translateY(-2px);
}

.phone-btn i {
    font-size: 14px;
}

.list-property-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 2px solid #ff7652;
    border-radius: 8px;
    color: #fff;
    background: transparent;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.list-property-btn:hover {
    background: rgba(255, 118, 82, 0.1);
    box-shadow: 0 8px 20px rgba(255, 118, 82, 0.2);
    transform: translateY(-2px);
}

.list-property-btn i {
    font-size: 14px;
}

.login-btn {
    padding: 11px 28px;
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 118, 82, 0.3);
    white-space: nowrap;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 118, 82, 0.4);
}

/* Animated Hamburger Toggle */
.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #ff7652;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
}

.mobile-toggle:hover {
    background: rgba(255, 118, 82, 0.1);
}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    background: #ff7652;
    transition: all 0.3s ease;
    display: block;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(26, 31, 53, 0.98) 100%);
    backdrop-filter: blur(20px);
    z-index: 1024 !important;
    transition: right 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(255, 118, 82, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-logo {
    height: 50px;
}

.mobile-close {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #ff7652;
    border-radius: 8px;
    color: #ff7652;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}

.mobile-close:hover {
    background: #ff7652;
    color: white;
    transform: rotate(90deg);
}

.mobile-nav-items {
    padding: 20px 0;
}

.mobile-nav-item {
    padding: 18px 30px;
    color: #e2e8f0;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    animation: slideInRight 0.5s ease-out forwards;
    opacity: 0;
}

.mobile-menu.active .mobile-nav-item:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-menu.active .mobile-nav-item:nth-child(2) {
    animation-delay: 0.15s;
}

.mobile-menu.active .mobile-nav-item:nth-child(3) {
    animation-delay: 0.2s;
}

.mobile-menu.active .mobile-nav-item:nth-child(4) {
    animation-delay: 0.25s;
}

.mobile-menu.active .mobile-nav-item:nth-child(5) {
    animation-delay: 0.3s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav-item:hover {
    background: rgba(255, 118, 82, 0.1);
    border-left-color: #ff7652;
    color: #ff7652;
    padding-left: 35px;
}

.mobile-nav-item i {
    margin-right: 12px;
    width: 20px;
}

.mobile-actions {
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid rgba(255, 118, 82, 0.2);
}

.mobile-actions .phone-btn,
.mobile-actions .list-property-btn,
.mobile-actions .login-btn {
    width: 100%;
    justify-content: center;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* Responsive */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 25px;
    }

    .header-actions {
        gap: 12px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        gap: 20px;
    }

    .nav-item {
        font-size: 14px;
    }

    .phone-btn span,
    .list-property-btn span {
        display: none;
    }

    .phone-btn span.mobile_,
    .list-property-btn span.mobile_ {
        display: block;
    }

    .phone-btn,
    .list-property-btn {
        padding: 10px 14px;
    }

    .logo-img {
        height: 70px;
    }

    .main-header.header-sticky .logo-img {
        height: 55px;
    }
}

@media (max-width: 768px) {
    .mobile_none {
        display: none;
    }

    .main-header {
        width: 95%;
        top: 20px;
        padding: 12px 20px;
    }

    .header-container {
        grid-template-columns: 1fr auto;
        gap: 15px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .logo-img {
        height: 50px;
        top: -18px;
    }

    .main-header.header-sticky .logo-img {
        height: 40px;
        top: -15px;
    }

    .header-container {
        display: flex;
        max-width: 100%;
        margin: 0 auto;

        justify-content: space-between;
    }

    .logo-section {
        transform: none;
    }
}

@media (max-width: 480px) {
    .main-header {
        width: 98%;
        padding: 10px 15px;
    }

    .logo-img {
        height: 55px;
    }

    .main-header.header-sticky .logo-img {
        height: 45px;
    }

    .login-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .mobile-menu {
        max-width: 100%;
    }
}

/**********************************************/


.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 24px;
}



/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.section-header-left h2 {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}



.section-header-left p {
    font-size: 16px;
    color: #060708;
    font-weight: 500;
}

.nav-arrows {
    display: flex;
    gap: 12px;
}

.arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: white;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.arrow-btn:hover {
    border-color: #ff7652;
    color: white;
    background: linear-gradient(135deg, #ff7652, #ff9970);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 118, 82, 0.25);
}

/* Property Slider Container */
.properties-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Removed min-height to allow content to define height */
}

.properties-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.property-item {
    flex: 0 0 100%;
    width: 100%;
    opacity: 0.4;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: visible;
}

.property-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.property-image {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-item:hover .property-image {
    transform: scale(1.08);
}

.arrow-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.property-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
}

/* Removed fixed min-height media queries as Flexbox handles it better */

/* Ensure proper grid behavior on mobile */
@media (max-width: 1023px) {
    .property-item .grid {
        grid-template-rows: auto 1fr;
    }
}

/* Image container responsive heights */
@media (max-width: 640px) {
    .property-item .relative.h-72 {
        min-height: 288px;
        max-height: 350px;
    }
}

@media (min-width: 641px) and (max-width: 1023px) {
    .property-item .relative.sm\:h-80 {
        min-height: 320px;
        max-height: 400px;
    }
}

@media (min-width: 1024px) {
    .property-item .relative.lg\:h-full {
        height: 100%;
    }
}

/* Smooth transitions for all screen sizes */
.property-item * {
    box-sizing: border-box;
}

/* Prevent layout shift during transitions */
.properties-slider::after {
    content: '';
    display: block;
    clear: both;
}

/* Better touch handling on mobile */
@media (hover: none) and (pointer: coarse) {
    .property-item:hover .property-image {
        transform: scale(1.02);
    }
}

/* Optimize for tablets in landscape */
@media (min-width: 768px) and (max-width: 1023px) and (orientation: landscape) {
    .properties-wrapper {
        min-height: 450px;
    }
}

/* Extra large screens */
@media (min-width: 1536px) {
    .properties-wrapper {
        min-height: 550px;
    }
}

/**********************/

.ads-container {
    width: 100%;
    /* background: linear-gradient(135deg, #1a3a3a 0%, #0f2f3f 100%); */
    padding: 10px 24px;
    /* position: absolute; */
    bottom: 0;
}

.ads-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.ads-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ads-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 118, 82, 0.2);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.ads-box:hover {
    background: rgba(255, 118, 82, 0.08);
    border-color: rgba(255, 118, 82, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(255, 118, 82, 0.15);
}

.ads-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, rgba(255, 118, 82, 0.2), rgba(255, 118, 82, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ff7652;
}

.ads-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.ads-content p {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.5;
}

.ads-link {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #ff7652;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s ease;
}

.ads-box:hover .ads-link {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .ads-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ads-container {
        padding: 30px 16px;
        display: none;
    }

    .ads-box {
        padding: 20px;
    }

    .ads-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .ads-content h3 {
        font-size: 14px;
    }

    .ads-content p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .ads-grid {
        grid-template-columns: 1fr;
    }

    .ads-container {
        padding: 24px 12px;
    }

    .ads-box {
        padding: 16px;
    }
}


/**************************************************/
.premium-properties-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.premium-properties-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.premium-properties-header-left h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.premium-properties-header-left p {
    font-size: 16px;
    color: #060708;
    font-weight: 500;
}

.premium-carousel-nav-buttons {
    display: flex;
    gap: 12px;
}

.premium-carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: white;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);

}

.premium-carousel-btn:hover {
    background: #ff7652;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 118, 82, 0.3);
}

.premium-carousel-btn:active {
    transform: scale(0.95);
}

.premium-projects-carousel {
    margin-top: 0;
}

.premium-projects-carousel .owl-nav {
    display: none !important;
}

/* Project Card */
.premium-project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.premium-project-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
    border-color: rgba(255, 118, 82, 0.2);
}

.premium-project-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
}

.premium-project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-project-card:hover .premium-project-image {
    transform: scale(1.08);
}

.premium-project-badge {
    position: absolute;
    top: 0px;
    left: 0px;
    background: white;
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: max-content;
}

.premium-wishlist-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #94a3b8;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.premium-wishlist-btn:hover {
    background: #ff7652;
    color: white;
    transform: scale(1.1);
}

.premium-wishlist-btn.active {
    background: #ff7652;
    color: white;
}

.premium-project-content {
    padding: 24px;
    flex: 1;
    display: flex;
    min-height:300px !important;
    height:100%;
    flex-direction: column;
}

.premium-project-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* width: 200px; */
}

.premium-project-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #060708;
    margin-bottom: 16px;
}

.premium-project-location i {
    color: #ff7652;
    font-size: 14px;
}

.premium-project-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
}

.premium-spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #060708;
}

.premium-spec-item i {
    color: #ff7652;
    font-size: 14px;
}

.premium-project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    background-color: #fff;
}

.premium-footer-item {
    display: flex;
    flex-direction: column;
}

.premium-footer-label {
    font-size: 11px;
    color: #17191c;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.premium-footer-value {
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
}

.premium-footer-value.price {
    color: #ff7652;
}

/* Owl Dots */
.premium-projects-carousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.premium-projects-carousel .owl-dot {
    background: #cbd5e1 !important;
    border-radius: 50% !important;
    width: 10px !important;
    height: 10px !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
}

.premium-projects-carousel .owl-dot.active {
    background: #ff7652 !important;
}

.premium-projects-carousel .owl-dot:hover {
    background: #ff7652 !important;
}

.premium-view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    color: #060708;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.premium-view-all-btn:hover {
    color: #ff7652;
    gap: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
    .premium-properties-section {
        padding: 60px 20px;
    }

    .premium-properties-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .premium-project-image-wrapper {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .premium-properties-section {
        padding: 40px 16px;
    }

    .premium-properties-header-left h2 {
        font-size: 28px;
    }

    .premium-carousel-btn {
        width: 44px !important;
        height: 44px !important;
        font-size: 16px !important;
    }
}

/*****************************/
.gurugram-locations-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.gurugram-locations-header {
    text-align: center;
    margin-bottom: 60px;
}

.gurugram-locations-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.gurugram-locations-header p {
    font-size: 16px;
    color: #060708;
    font-weight: 500;
}

.gurugram-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.gurugram-location-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    cursor: pointer;
    position: relative;
}

.gurugram-location-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
    border-color: rgba(255, 118, 82, 0.2);
}

.gurugram-location-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
}

.gurugram-location-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gurugram-location-card:hover .gurugram-location-image {
    transform: scale(1.08);
}

.gurugram-location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px;
    color: white;
}

.gurugram-location-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gurugram-location-name i {
    color: #ff7652;
    font-size: 18px;
}

.gurugram-location-properties {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
}

.gurugram-location-content {
    padding: 20px;
}

.gurugram-location-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gurugram-location-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gurugram-location-stat-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gurugram-location-stat-value {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.gurugram-location-stat-value.price {
    color: #ff7652;
}

.gurugram-view-all-container {
    text-align: center;
}

.gurugram-view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: white;
    color: #ff7652;
    border: 2px solid #ff7652;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(255, 118, 82, 0.1);
}

.gurugram-view-all-btn:hover {
    background: #ff7652;
    color: white;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(255, 118, 82, 0.3);
    transform: translateY(-2px);
}

.gurugram-view-all-btn i {
    transition: transform 0.3s ease;
}

.gurugram-view-all-btn:hover i {
    transform: translateX(4px);
}




.featured-categories-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.featured-categories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.featured-categories-header-left h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.featured-categories-header-left p {
    font-size: 16px;
    color: #060708;
    font-weight: 500;
}

.featured-categories-nav-buttons {
    display: flex;
    gap: 12px;
}

.featured-categories-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: white;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);

}

.featured-categories-nav-btn:hover {
    background: #ff7652;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 118, 82, 0.3);
}

.featured-categories-nav-btn:active {
    transform: scale(0.95);
}

/* Owl Carousel */
.featured-categories-carousel {
    margin-top: 0;
}

/* Hide default owl nav */
.featured-categories-carousel .owl-nav {
    display: none !important;
}

/* Category Card */
.featured-category-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.featured-category-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
    border-color: rgba(255, 118, 82, 0.2);
}

.featured-category-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
}

.featured-category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-category-card:hover .featured-category-image {
    transform: scale(1.08);
}

.featured-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: white;
}

.featured-category-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.featured-category-card:hover .featured-category-icon {
    background: rgba(255, 118, 82, 0.9);
    transform: scale(1.1);
}

.featured-category-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.featured-category-count {
    font-size: 14px;
    opacity: 0.95;
    font-weight: 500;
}

.featured-category-content {
    padding: 24px;
}

.featured-category-description {
    font-size: 14px;
    color: #060708;
    line-height: 1.6;
    margin-bottom: 20px;
}

.featured-category-stats {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.featured-category-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.featured-category-stat-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-category-stat-value {
    font-size: 15px;
    font-weight: 700;
    color: #ff7652;
}

/* Owl Dots */
.featured-categories-carousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.featured-categories-carousel .owl-dot {
    background: #cbd5e1 !important;
    border-radius: 50% !important;
    width: 10px !important;
    height: 10px !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
}

.featured-categories-carousel .owl-dot.active {
    background: #ff7652 !important;
}

.featured-categories-carousel .owl-dot:hover {
    background: #ff7652 !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .featured-categories-section {
        padding: 60px 20px;
    }

    .featured-categories-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .featured-category-image-wrapper {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .featured-categories-section {
        padding: 40px 16px;
    }

    .featured-categories-header-left h2 {
        font-size: 28px;
    }

    .featured-categories-nav-btn {
        width: 44px !important;
        height: 44px !important;
        font-size: 16px !important;
    }

    .featured-category-image-wrapper {
        height: 220px;
    }
}

/***************************/

.budget-browse-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.budget-browse-container {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
}

/* Left Side - Images */
.budget-browse-images {
    position: relative;
    height: 600px;
}

.budget-image-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.budget-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.budget-image-card:hover img {
    transform: scale(1.05);
}


.budget-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #ff7652;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 4;
}

/* Right Side - Content */
.budget-browse-content {
    padding: 40px 0;
}

.budget-browse-header {
    margin-bottom: 24px;
}

.budget-browse-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.2;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.budget-browse-description {
    font-size: 16px;
    color: #060708;
    line-height: 1.8;
    margin-bottom: 40px;
}

.budget-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.budget-subtitle::before {
    content: '';
    width: 4px;
    height: 28px;
    background: linear-gradient(to bottom, #ff7652, #ff9a7b);
    border-radius: 10px;
}

/* Budget Options */
.budget-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.budget-option-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 2px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.budget-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 118, 82, 0.05) 0%, rgba(255, 154, 123, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.budget-option-card:hover {
    border-color: #ff7652;
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(255, 118, 82, 0.15);
}

.budget-option-card:hover::before {
    opacity: 1;
}

.budget-option-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.budget-option-icon i {
    font-size: 26px;
    color: #ff7652;
    transition: transform 0.4s ease;
}

.budget-option-card:hover .budget-option-icon {
    background: linear-gradient(135deg, #ff7652 0%, #ff9a7b 100%);
    transform: scale(1.1) rotate(5deg);
}

.budget-option-card:hover .budget-option-icon img {
   filter: brightness(0) invert(1);
    transform: scale(1.1);
}

.budget-option-info {
    position: relative;
    z-index: 1;
}

.budget-option-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.budget-option-arrow {
    width: 32px;
    height: 32px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7652;
    font-size: 14px;
    transition: all 0.3s ease;
}

.budget-option-card:hover .budget-option-arrow {
    background: #ff7652;
    color: white;
    transform: translateX(5px);
}

.budget-option-count {
    font-size: 14px;
    color: #060708;
    font-weight: 500;
    margin-bottom: 12px;
}

.budget-option-price {
    display: inline-block;
    background: #f8fafc;
    color: #ff7652;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .budget-browse-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .budget-browse-images {
        height: 400px;
        margin: 0 auto;
        max-width: 500px;
    }

    .budget-image-large {
        width: 220px;
        height: 280px;
    }

    .budget-image-medium {
        width: 180px;
        height: 220px;
    }

    .budget-image-small {
        width: 160px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .budget-browse-section {
        padding: 40px 16px;
    }

    .budget-browse-title {
        font-size: 32px;
    }

    .budget-options-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .budget-browse-images {
        height: 350px;
    }

    .budget-image-large {
        width: 180px;
        height: 240px;
    }

    .budget-image-medium {
        width: 150px;
        height: 190px;
    }

    .budget-image-small {
        width: 140px;
        height: 180px;
    }
}



@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}



.testimonials-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}



.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonials-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #ff7652;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonials-subtitle::before,
.testimonials-subtitle::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #ff7652;
}

.testimonials-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.testimonials-description {
    font-size: 16px;
    color: #060708;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Carousel */
.testimonials-carousel {
    position: relative;
    z-index: 2;
}

.testimonials-carousel .owl-nav {
    display: none !important;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    margin: 10px;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff7652 0%, #ff9a7b 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 118, 82, 0.15);
    border-color: rgba(255, 118, 82, 0.2);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.testimonial-quote-icon i {
    font-size: 24px;
    color: #ff7652;
}

.testimonial-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-rating {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 18px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-name {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.testimonial-author-role {
    font-size: 14px;
    color: #060708;
    font-weight: 500;
}

.testimonial-verified {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #10b981;
    font-size: 13px;
    font-weight: 600;
    margin-top: 6px;
}

.testimonial-verified i {
    font-size: 14px;
}

/* Navigation Dots */
.testimonials-carousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.testimonials-carousel .owl-dot {
    width: 12px !important;
    height: 12px !important;
    background: #cbd5e1 !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
    position: relative;
}

.testimonials-carousel .owl-dot.active {
    background: #ff7652 !important;
    width: 40px !important;
    border-radius: 20px !important;
}

.testimonials-carousel .owl-dot:hover {
    background: #ff7652 !important;
}

/* Stats Section */
.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #e2e8f0;
}

.testimonial-stat-item {
    text-align: center;
}

.testimonial-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #ff7652;
    margin-bottom: 8px;
    display: block;
}

.testimonial-stat-label {
    font-size: 14px;
    color: #060708;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 16px;
    }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonial-card {
        padding: 30px 24px;
    }

    .testimonials-stats {
        /* grid-template-columns: 1fr; */
        gap: 24px;
        margin-top: 40px;
        padding-top: 40px;
        position: relative;
    }

    .testimonials-stats::after {
        position: absolute;
        content: "";
        width: 80%;
        height: 1px;
        background-color: #ff8e66;
        top: 62%;
        left: 50%;
        transform: translate(-50%, -50%);
    }


    .testimonials-stats::before {
        position: absolute;
        content: "";
        width: 1px;
        height: 80%;
        background-color: #ff8e66;
        top: 62%;
        left: 50%;
        transform: translate(-50%, -50%);
    }


    .testimonial-stat-number {
        font-size: 28px;
    }
}




/******************/



/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Category Card */
.category-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 380px;
}

.category-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.category-image-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    transition: all 0.4s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(180deg, rgba(255, 118, 82, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 10;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.category-title {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    line-height: 1.2;
}

.category-count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}

.category-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ff7652;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {


    .section-title {
        font-size: 32px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-card {
        height: 320px;
    }

    .category-title {
        font-size: 20px;
    }
}


.promo-section-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 24px;
}

.promo-layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.promo-bottom-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Top Slider Box */
.promo-slider-container {
    position: relative;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.promo-slider-holder {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.promo-slide-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.promo-slide-item.promo-active {
    opacity: 1;
}

.promo-slide-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: promoKenburns 20s ease-in-out infinite;
}

@keyframes promoKenburns {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.promo-slide-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.promo-slide-text-wrapper {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 550px;
    z-index: 10;
}

.promo-slide-heading {
    font-size: 48px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(30px);
    animation: promoSlideUpAnim 0.8s ease forwards;
}

.promo-slide-item.promo-active .promo-slide-heading {
    animation: promoSlideUpAnim 0.8s ease forwards;
}

@keyframes promoSlideUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.promo-slide-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 28px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    animation: promoSlideUpAnim 0.8s ease 0.2s forwards;
}

.promo-slide-item.promo-active .promo-slide-description {
    animation: promoSlideUpAnim 0.8s ease 0.2s forwards;
}

.promo-slide-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff7652;
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 118, 82, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: promoSlideUpAnim 0.8s ease 0.4s forwards;
}

.promo-slide-item.promo-active .promo-slide-cta-button {
    animation: promoSlideUpAnim 0.8s ease 0.4s forwards;
}

.promo-slide-cta-button:hover {
    background: #ff9970;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 118, 82, 0.4);
}

/* Slider Dots */
.promo-slider-navigation {
    position: absolute;
    bottom: 30px;
    left: 60px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.promo-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-nav-dot.promo-active {
    width: 32px;
    border-radius: 6px;
    background: white;
}

/* Static Ad Boxes */
.promo-feature-box {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
    animation: promoFadeInUpAnim 0.8s ease forwards;
}

.promo-feature-box:nth-child(1) {
    animation-delay: 0.2s;
}

.promo-feature-box:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes promoFadeInUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.promo-feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.promo-feature-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.promo-feature-box:hover .promo-feature-background {
    transform: scale(1.08);
}

.promo-feature-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    transition: all 0.4s ease;
}

.promo-feature-box:hover .promo-feature-gradient {
    background: linear-gradient(135deg, rgba(255, 118, 82, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.promo-feature-text-wrapper {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 500px;
    z-index: 10;
}

.promo-feature-heading {
    font-size: 36px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 12px;
}

.promo-feature-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    line-height: 1.5;
}

.promo-feature-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff7652;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 118, 82, 0.3);
}

.promo-feature-cta-button:hover {
    background: #ff9970;
    transform: translateX(4px);
    box-shadow: 0 8px 28px rgba(255, 118, 82, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .promo-section-wrapper {
        padding: 60px 20px;
    }

    .promo-bottom-layout {
        grid-template-columns: 1fr;
    }

    .promo-slider-container {
        height: 380px;
    }

    .promo-feature-box {
        height: 360px;
    }

    .promo-slide-text-wrapper,
    .promo-feature-text-wrapper {
        left: 40px;
    }

    .promo-slide-heading {
        font-size: 38px;
    }

    .promo-feature-heading {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .promo-section-wrapper {
        padding: 40px 16px;
    }

    .promo-slider-container {
        height: 320px;
    }

    .promo-feature-box {
        height: 300px;
    }

    .promo-slide-text-wrapper,
    .promo-feature-text-wrapper {
        left: 24px;
        right: 24px;
        max-width: none;
    }

    .promo-slide-heading {
        font-size: 28px;
    }

    .promo-feature-heading {
        font-size: 24px;
    }

    .promo-slide-description,
    .promo-feature-description {
        font-size: 14px;
    }

    .promo-slider-navigation {
        left: 24px;
        bottom: 20px;
    }
}


/* Footer Main */
.footer-main-wrapper {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 80px 0 0 0;
}

.footer-content-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px 60px 24px;
}

.footer-grid-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

/* Footer Column */
.footer-column-item {
    display: flex;
    flex-direction: column;
}

.footer-brand-section {
    margin-bottom: 20px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #ff7652, #ff9970);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.footer-brand-name {
    font-size: 24px;
    font-weight: 900;
    color: white;
}

.footer-brand-tagline {
    font-size: 13px;
    color: #94a3b8;
    margin-top: -4px;
}

.footer-description-text {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-icon:hover {
    background: linear-gradient(135deg, #ff7652, #ff9970);
    color: white;
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(255, 118, 82, 0.3);
}

.footer-column-heading {
    font-size: 18px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff7652, #ff9970);
    border-radius: 2px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-link-item a {
    color: #cbd5e1;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-link-item a:hover {
    color: #ff7652;
    transform: translateX(4px);
}

.footer-link-item a i {
    font-size: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link-item a:hover i {
    opacity: 1;
}

/* Newsletter */
.footer-newsletter-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter-heading {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.footer-newsletter-text {
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-newsletter-form {
    display: flex;
    gap: 8px;
}

.footer-newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.footer-newsletter-input::placeholder {
    color: #94a3b8;
}

.footer-newsletter-input:focus {
    border-color: #ff7652;
    background: rgba(255, 255, 255, 0.12);
}

.footer-newsletter-button {
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff7652, #ff9970);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 118, 82, 0.3);
}

.footer-newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 118, 82, 0.4);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background: rgba(255, 118, 82, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7652;
    font-size: 14px;
}

.footer-contact-content {
    display: flex;
    flex-direction: column;
}

.footer-contact-label {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 2px;
}

.footer-contact-value {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom-wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright-text {
    font-size: 14px;
    color: #94a3b8;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-link {
    color: #cbd5e1;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-link:hover {
    color: #ff7652;
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-grid-layout {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .footer-column-item:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-main-wrapper {
        padding: 60px 0 0 0;
    }

    .footer-content-container {
        padding: 0 16px 40px 16px;
    }

    .footer-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-column-item:first-child {
        grid-column: auto;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 12px;
    }

    .footer-newsletter-form {
        flex-direction: column;
    }
}

.footer_logo {
    height: 100px;
    width: auto;
    object-fit: contain;
}

@keyframes devSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes devFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes devShimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes devPulseSlow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.dev-card-animate {
    animation: devSlideIn 0.6s ease-out forwards;
}

.dev-card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}



.dev-icon-rotate {
    transition: transform 0.6s ease;
}

.dev-badge {
    background: linear-gradient(135deg, #ff7652 0%, #ff9a76 100%);
    animation: devFloat 3s ease-in-out infinite;
}

.dev-shine {
    position: relative;
    overflow: hidden;
}

.dev-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: devShimmer 3s infinite;
}





.dev-gradient-bg {
    background: linear-gradient(135deg, #fff5f2 0%, #ffffff 100%);
}

.dev-decorative-circle {
    animation: devPulseSlow 4s ease-in-out infinite;
}

.dev-btn-primary {
    background: #ff7652;
    transition: all 0.3s ease;
}

.dev-btn-primary:hover {
    box-shadow: 0 10px 25px -5px rgba(255, 118, 82, 0.5);
    transform: translateY(-2px);
}

.dev-icon-box {
    background: linear-gradient(135deg, #fff5f2 0%, #ffe5dd 100%);
    color: #ff7652;
}

.dev-text-primary {
    color: #ff7652;
}

/**********************/

.interior-fade-in {
    animation: interiorFadeIn 0.8s ease-out forwards;
}

.interior-image-float {
    animation: interiorImageFloat 4s ease-in-out infinite;
}

.interior-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.interior-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(255, 118, 82, 0.3);
}

.interior-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 118, 82, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 1rem;
}

.interior-card:hover::before {
    opacity: 1;
}
.interior-card:hover img{
   filter: brightness(0) invert(1);
}
.interior-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    transition: all 0.5s ease;
}

.interior-image-wrapper:hover {
    animation: interiorGlow 2s ease-in-out infinite;
}

.interior-image-wrapper img {
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.interior-image-wrapper:hover img {
    transform: scale(1.1);
}

.interior-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.interior-image-wrapper:hover .interior-gradient-overlay {
    opacity: 1;
}

.interior-text-primary {
    color: #ff7652;
}

.interior-bg-primary {
    background: #ff7652;
}

.interior-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fff5f2 0%, #ffe5dd 100%);
    color: #ff7652;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.interior-card:hover .interior-service-icon {
    /* transform: rotate(360deg) scale(1.1); */
    background: linear-gradient(135deg, #ff7652 0%, #ff9a76 100%);
    color: white !important;
}

.interior-grid-pattern {
    background-image: radial-gradient(circle, #ff7652 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
}

/*********************/
@keyframes blogFadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blogPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes blogShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.blog-fade-up {
    animation: blogFadeUp 0.8s ease-out forwards;
}

.blog-card {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(255, 118, 82, 0.4);
}

.blog-image-container {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.blog-image-container img {
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image-container img {
    transform: scale(1.15) rotate(2deg);
}

.blog-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.blog-category-badge {
    background: linear-gradient(135deg, #ff7652 0%, #ff9a76 100%);
    transition: all 0.3s ease;
}

.blog-card:hover .blog-category-badge {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 118, 82, 0.4);
}



.blog-btn-primary {
    background: #ff7652;
    transition: all 0.3s ease;
}

.blog-btn-primary:hover {
    background: #ff5733;
    transform: translateX(5px);
}

.blog-read-more {
    position: relative;
    overflow: hidden;
}

.blog-read-more::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.blog-card:hover .blog-read-more::after {
    left: 100%;
}

.blog-author-avatar {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-author-avatar {
    transform: scale(1.1);
    animation: blogPulse 2s infinite;
}

.blog-pattern-bg {
    background-image: radial-gradient(circle, #ff7652 1px, transparent 1px);
    background-size: 25px 25px;
    opacity: 0.06;
}

/*
.logo-section {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(26, 31, 53, 0.95) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

    height: 150px;
    width: 150px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: -38px;
    transform: translate(-50%);
} */

.project_demand {
    background-image: url('../images/background/3-5.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom left;
}

.featured_bg {
    background-image: url('../images/background/1.png');
    /* background-repeat: no-repeat; */

}



/*************************************************/


/***************** DETAIL PAGE **************************/
.breadcrumb-section {
    background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1920&h=400&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0;
    position: relative;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 118, 82, 0.1), rgba(255, 153, 112, 0.05));
    pointer-events: none;
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.breadcrumb-content {
    text-align: center;
}

.breadcrumb-title {
    font-size: 42px;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
}

.breadcrumb-item:hover {
    color: #ff7652;
    background: rgba(255, 255, 255, 0.1);
}

.breadcrumb-item.active {
    color: white;
    font-weight: 700;
    background: rgba(255, 118, 82, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 40px 0;
    }

    .breadcrumb-title {
        font-size: 28px;
    }

    .breadcrumb-nav {
        font-size: 13px;
    }
}

/* Main Container */
.property-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 24px;
}

/* Property Header */
.property-header {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.property-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 16px;
}

.property-title-left {
    flex: 1;
}

.property-status-badge {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.property-main-title {
    font-size: 40px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #060708;
    font-size: 16px;
}

.property-location i {
    color: #ff7652;
    font-size: 18px;
}

.property-price-box {
    text-align: right;
}

.price-label {
    font-size: 14px;
    color: #060708;
    margin-bottom: 4px;
    font-weight: 600;
}

.price-value {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff7652, #ff9970);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-note {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 4px;
}

.property-quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    padding-top: 24px;
    border-top: 2px solid #f1f5f9;
}

.quick-info-item {
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.quick-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.quick-info-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, rgba(255, 118, 82, 0.1), rgba(255, 118, 82, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7652;
    font-size: 20px;
}

.quick-info-value {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.quick-info-label {
    font-size: 13px;
    color: #060708;
    font-weight: 500;
}

/* Main Grid Layout */
.property-main-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 24px;
}

/* Gallery Section */
.property-gallery {
    background: white;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.gallery-carousel {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.gallery-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.owl-prev,
.owl-next {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    color: #0f172a !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    pointer-events: auto !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.owl-prev:hover,
.owl-next:hover {
    background: #ff7652 !important;
    color: white !important;
    transform: scale(1.1);
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: #cbd5e1 !important;
    margin: 0 5px !important;
    transition: all 0.3s ease !important;
}

.owl-dot.active {
    width: 32px !important;
    border-radius: 6px !important;
    background: #ff7652 !important;
}

/* Property Description */
.property-description {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.section-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 3px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: #ff7652;
    font-size: 24px;
}

.description-text {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

/* Property Features */
.property-features {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #ff7652;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 118, 82, 0.15);
}

.feature-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255, 118, 82, 0.15), rgba(255, 118, 82, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7652;
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-card-value {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.feature-card-label {
    font-size: 14px;
    color: #060708;
    font-weight: 500;
}

/* Amenities Section */
.property-amenities {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.amenity-item:hover {
    background: #fff5f2;
    border-color: #ff7652;
}

.amenity-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7652;
    font-size: 18px;
}

.amenity-text {
    font-size: 15px;
    color: #475569;
    font-weight: 500;
}

/* Additional Info Section */
.additional-info {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-item {
    padding: 16px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #ff7652;
}

.info-label {
    font-size: 13px;
    color: #060708;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.info-value {
    font-size: 16px;
    color: #0f172a;
    font-weight: 700;
}

/* Location Map Section */
.location-section {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.map-container {
    width: 100%;
    height: 400px;
    background: #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #060708;
    font-size: 16px;
}

/* Sidebar */
.property-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    margin-bottom: 24px;
}

.form-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 14px;
    color: #060708;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #0f172a;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ff7652;
    background: #fff5f2;
    box-shadow: 0 0 0 4px rgba(255, 118, 82, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff7652, #ff9970);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(255, 118, 82, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 118, 82, 0.4);
}







/* Key Highlights Card */
/* Key Highlights Card - Redesigned for better readability */
.highlights-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    color: #0f172a;
    transition: all 0.3s ease;
}

.highlights-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.highlights-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0f172a;
}

.highlights-title i {
    color: #ff7652;
    background: rgba(255, 118, 82, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.highlight-item:hover {
    background: #f1f5f9;
    transform: translateX(4px);
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-icon {
    width: 38px;
    height: 38px;
    background: #ff7652;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.highlight-text {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

/* Video & Documents Sections */
.video-container {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 30px 0;
}

.video-container iframe, 
.video-container video {
    display: block;
    width: 100%;
}

.video-title-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 30px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.document-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.document-card:hover {
    border-color: #ff7652;
    box-shadow: 0 10px 20px rgba(255, 118, 82, 0.05);
    transform: translateY(-2px);
}

.document-icon {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    color: #ff7652;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.document-info {
    flex: 1;
}

.document-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 14px;
    margin-bottom: 2px;
}

.document-size {
    font-size: 12px;
    color: #060708;
}

.document-download {
    color: #94a3b8;
    font-size: 18px;
}

.document-card:hover .document-download {
    color: #ff7652;
}

/* Floor Plans & Layouts Section */
.floor-plans-section {
    margin-top: 40px;
}

.floor-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.floor-plan-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.floor-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #ff7652;
}

.floor-plan-image-wrapper {
    position: relative;
    height: 200px;
    background: #f8fafc;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.floor-plan-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.floor-plan-card:hover .floor-plan-image-wrapper img {
    transform: scale(1.05);
}

.floor-plan-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 118, 82, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    gap: 8px;
}

.floor-plan-card:hover .floor-plan-overlay {
    opacity: 1;
}

.floor-plan-overlay i {
    font-size: 24px;
}

.floor-plan-overlay span {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floor-plan-details {
    padding: 20px;
    border-top: 1px solid #f1f5f9;
}

.floor-plan-name {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    display: block;
}

.floor-plan-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.floor-meta-item {
    font-size: 12px;
    color: #060708;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.floor-meta-item i {
    color: #ff7652;
}

/* Custom Modal / Lightbox */
.nox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    inset: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    overflow: hidden;
    padding: 20px;
    align-items: center;
    justify-content: center;
}

.nox-modal.active {
    display: flex;
    animation: fadeInModal 0.3s ease-out;
}

@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

.nox-modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    background: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.nox-modal-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.nox-modal-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: white;
    color: #0f172a;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-size: 18px;
    transition: all 0.2s ease;
}

.nox-modal-close:hover {
    transform: rotate(90deg);
    background: #ff7652;
    color: white;
}

.nox-modal-caption {
    color: #0f172a;
    padding: 15px 5px 5px;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 768px) {
    .nox-modal-close {
        top: 10px;
        right: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .property-main-grid {
        grid-template-columns: 1fr;
    }

    .property-sidebar {
        position: static;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .property-quick-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .property-detail-container {
        padding: 20px 16px;
    }

    .property-header {
        padding: 24px;
    }

    .property-main-title {
        font-size: 28px;
    }

    .price-value {
        font-size: 32px;
    }

    .property-title-row {
        flex-direction: column;
    }

    .property-price-box {
        text-align: left;
    }

    .gallery-image {
        height: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .property-quick-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .agent-contact-buttons {
        grid-template-columns: 1fr;
    }
}

.property-left-content {
    overflow: hidden;
}

.inquiry-card .form-label {
    color: #fff;
}
.inquiry-card .form-input::placeholder{
    color: #1a1919 !important;
}
.inquiry-card .form-input,
.form-textarea {
    background-color: transparent;
    color: #000;
}

/**************************** ABOUT PAGE CSS ***************/
/* About Hero Section */
.about-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-hero-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 900;
    color: #1a202c;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-hero-highlight {
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero-description {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about-stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    border-radius: 12px;
    color: white;
    font-size: 24px;
}

.about-stat-number {
    font-size: 24px;
    font-weight: 900;
    color: #1a202c;
    /* margin-bottom: 4px; */
}

.about-stat-label {
    font-size: 13px;
    color: #6c757d;
    font-weight: 600;
}

.about-hero-image {
    position: relative;
}

.about-hero-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-hero-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-hero-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
}

.about-hero-experience-card {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: white;
    padding: 28px 32px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-exp-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    border-radius: 16px;
    color: white;
    font-size: 32px;
}

.about-exp-number {
    font-size: 30px;
    font-weight: 900;
    color: #1a202c;
    /* margin-bottom: 4px; */
}

.about-exp-text {
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
}

/* Mission Vision Section */
.about-mission-section {
    padding: 100px 0;
    background: white;
}

.about-mission-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-mission-card {
    text-align: center;
    padding: 48px 32px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
    border-radius: 20px;
    transition: all 0.4s;
    border-bottom: 5px solid #ff8c65;
    border-top: 2px solid #ff8c65;
}

.about-mission-card:hover {
    transform: translateY(-10px);

    background: white;
}

.about-mission-icon-wrapper {
    margin-bottom: 28px;
}

.about-mission-icon {
    width: 100px;
    height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    border-radius: 50%;
    color: white;
    font-size: 40px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.about-mission-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 16px;
}

.about-mission-text {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.8;
}

/* Why Choose Us Section */
.about-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-choose-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-choose-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-choose-title {
    font-size: 42px;
    font-weight: 900;
    color: #1a202c;
    margin-bottom: 16px;
}

.about-choose-highlight {
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-choose-subtitle {
    font-size: 18px;
    color: #6c757d;
}

.about-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-choose-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s;
    text-align: center;
}

.about-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
}

.about-choose-icon {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    border-radius: 16px;
    color: white;
    font-size: 32px;
    margin-bottom: 24px;
}

.about-choose-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 12px;
}

.about-choose-card-text {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
}

/* Team Section */
.about-team-section {
    padding: 100px 0;
    background: white;
}

.about-team-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-team-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-team-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-team-title {
    font-size: 42px;
    font-weight: 900;
    color: #1a202c;
    margin-bottom: 16px;
}

.about-team-highlight {
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-team-subtitle {
    font-size: 18px;
    color: #6c757d;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.about-team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s;
}

.about-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
}

.about-team-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.about-team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.about-team-card:hover .about-team-img {
    transform: scale(1.1);
}

.about-team-social {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.4s;
}

.about-team-card:hover .about-team-social {
    opacity: 1;
}

.about-team-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #ff946b;
    border-radius: 50%;
    transition: all 0.3s;
}

.about-team-social-link:hover {
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    color: white;
}

.about-team-info {
    padding: 24px;
    text-align: center;
}

.about-team-name {
    font-size: 20px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 6px;
}

.about-team-role {
    font-size: 14px;
    color: #ff946b;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-team-desc {
    font-size: 13px;
    color: #6c757d;
}

/* Testimonials Section */
.about-testimonials-section {
    padding: 100px 0;
    /* background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%); */
    background-image: url('../images/background/20.jpg');
}

.about-testimonials-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-testimonials-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.about-testimonials-title {
    font-size: 42px;
    font-weight: 900;
    color: black;
    margin-bottom: 16px;
}

.about-testimonials-highlight {
    color: #ff9970;
}

.about-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    transition: all 0.4s;
}

.about-testimonial-rating {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}


.about-testimonial-rating i {
    color: #ffd700;
    font-size: 18px;
}

.about-testimonial-text {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.about-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 2px solid #f1f3f5;
}

.about-testimonial-img {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    flex-shrink: 0 !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 3px solid #667eea !important;
    display: inline-block !important;
}

.about-testimonial-name {
    font-size: 18px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 4px;
}

.about-testimonial-location {
    font-size: 14px;
    color: #6c757d;
}

/* CTA Section */
.about-cta-section {
    padding: 100px 0;
    background: white;
}

.about-cta-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-cta-content {
    /* background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%); */
    background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('http://findhouse-nextjs.netlify.app/_next/static/media/4.2db97449.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 60px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}


.about-cta-title {
    font-size: 42px;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
}

.about-cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.about-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.about-cta-primary {
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    color: #fff;
}

.about-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 118, 82, 0.4);
}

.about-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.about-cta-secondary:hover {
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 118, 82, 0.4);
    /* border: transparent; */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-hero-title {
        font-size: 38px;
    }

    .about-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-mission-grid {
        grid-template-columns: 1fr;
    }

    .about-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 60px 0;
    }

    .about-hero-title {
        font-size: 32px;
    }

   

    .about-stat-card {
        flex-direction: column;
        text-align: center;
    }

    .about-hero-img {
        height: 400px;
    }

    .about-hero-experience-card {
        bottom: 20px;
        right: 20px;
        padding: 20px 24px;
    }

    .about-exp-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .about-exp-number {
        font-size: 28px;
    }

    .about-mission-section,
    .about-choose-section,
    .about-team-section,
    .about-testimonials-section,
    .about-cta-section {
        padding: 60px 0;
    }

    .about-choose-title,
    .about-team-title,
    .about-testimonials-title,
    .about-cta-title {
        font-size: 32px;
    }

    .about-choose-grid {
        grid-template-columns: 1fr;
    }

    .about-team-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-content {
        padding: 60px 30px;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .about-hero-badge,
    .about-choose-badge,
    .about-team-badge,
    .about-testimonials-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .about-hero-title {
        font-size: 28px;
    }

    .about-hero-description {
        font-size: 16px;
    }

    .about-mission-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .about-choose-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .about-testimonial-card {
        padding: 28px;
    }
}

/*********************** SERVICE PAGE ****************/

.services-hero-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.services-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.services-hero-title {
    font-size: 52px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 24px;
}

.services-hero-highlight {
    color: #ff926a;
}

.services-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

/* Main Services Section */
.services-main-section {
    padding: 100px 0;
    background: white;
}

.services-main-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.services-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.services-main-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    border: 2px solid transparent;
}

.services-main-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
    border-color: #ff926a;
}

.services-main-icon-wrapper {
    position: relative;
    margin-bottom: 28px;
}

.services-main-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    border-radius: 16px;
    color: white;
    font-size: 50px;
    position: relative;
    z-index: 2;
}

.services-main-icon-bg {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 80px;
    height: 80px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 16px;
    z-index: 1;
}

.services-main-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 16px;
}

.services-main-description {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 24px;
}

.services-main-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.services-main-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: #495057;
    font-weight: 600;
}

.services-main-feature-item i {
    color: #ff926a;
    font-size: 16px;
}

.services-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}

.services-main-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* Additional Services Section */
.services-additional-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-additional-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.services-additional-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-additional-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.services-additional-title {
    font-size: 42px;
    font-weight: 900;
    color: #1a202c;
    margin-bottom: 16px;
}

.services-additional-highlight {
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-additional-subtitle {
    font-size: 18px;
    color: #6c757d;
}

.services-additional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.services-additional-card {
    background: white;
    padding: 36px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s;
    text-align: center;
}

.services-additional-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
}

.services-additional-icon {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    border-radius: 50%;
    color: white;
    font-size: 40px;
    margin-bottom: 20px;
}

.services-additional-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 12px;
}

.services-additional-card-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
}

/* Pricing Section */
.services-pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-pricing-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.services-pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.services-pricing-title {
    font-size: 42px;
    font-weight: 900;
    color: #1a202c;
    margin-bottom: 16px;
}

.services-pricing-highlight {
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-pricing-subtitle {
    font-size: 18px;
    color: #6c757d;
}

.services-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.services-pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    border: 2px solid transparent;
    position: relative;
}

.services-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
    border-color: #ff926a;
}

.services-pricing-card-featured {
    border-color: #ff926a;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.services-pricing-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.services-pricing-header-card {
    text-align: center;
    margin-bottom: 28px;
}

.services-pricing-plan-name {
    font-size: 28px;
    font-weight: 900;
    color: #1a202c;
    margin-bottom: 8px;
}

.services-pricing-plan-desc {
    font-size: 14px;
    color: #6c757d;
}

.services-pricing-price-wrapper {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid #f1f3f5;
}

.services-pricing-currency {
    font-size: 24px;
    font-weight: 700;
    color: #ff926a;
    vertical-align: top;
}

.services-pricing-amount {
    font-size: 52px;
    font-weight: 900;
    color: #1a202c;
}

.services-pricing-period {
    font-size: 16px;
    color: #6c757d;
}

.services-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.services-pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: #495057;
    font-weight: 600;
}

.services-pricing-feature i {
    color: #ff926a;
    font-size: 16px;
}

.services-pricing-feature-disabled {
    opacity: 0.4;
}

.services-pricing-feature-disabled i {
    color: #dc3545;
}

.services-pricing-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: transparent;
    color: #ff926a;
    border: 2px solid #ff926a;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.services-pricing-btn:hover {
    background: #ff926a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.services-pricing-btn-featured {
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    color: white;
    border: none;
}

.services-pricing-btn-featured:hover {
    background: linear-gradient(135deg, #764ba2 0%, #ff926a 100%);
}

/* FAQ Section */
.services-faq-section {
    padding: 100px 0;
    background: white;
}

.services-faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.services-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-faq-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.services-faq-title {
    font-size: 42px;
    font-weight: 900;
    color: #1a202c;
    margin-bottom: 16px;
}

.services-faq-highlight {
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-faq-subtitle {
    font-size: 18px;
    color: #6c757d;
}

.services-faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.services-faq-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s;
}

.services-faq-item:hover {
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
}

.services-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    user-select: none;
}

.services-faq-question-text {
    font-size: 18px;
    font-weight: 800;
    color: #1a202c;
    margin: 0;
}

.services-faq-icon {
    color: #ff926a;
    font-size: 18px;
    transition: transform 0.3s;
}

.services-faq-item.active .services-faq-icon {
    transform: rotate(180deg);
}

.services-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.services-faq-item.active .services-faq-answer {
    max-height: 300px;
}

.services-faq-answer p {
    padding: 0 32px 24px 32px;
    margin: 0;
    font-size: 15px;
    color: #6c757d;
    line-height: 1.8;
}

/* CTA Section */
.services-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff7652 0%, #ff9970 100%);
}

.services-cta-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.services-cta-content {
    text-align: center;
}

.services-cta-title {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
}

.services-cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.services-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.services-cta-primary {
    background: white;
    color: #ff926a;
}

.services-cta-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.services-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.services-cta-secondary:hover {
    background: white;
    color: #ff926a;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-hero-title {
        font-size: 42px;
    }

    .services-main-grid,
    .services-additional-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-process-step:nth-child(2) .services-process-line {
        display: none;
    }

    .services-pricing-grid {
        grid-template-columns: 1fr;
    }

    .services-pricing-card-featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .services-hero-section {
        padding: 60px 0;
    }

    .services-hero-title {
        font-size: 36px;
    }

    .services-hero-description {
        font-size: 16px;
    }

    .services-main-section,
    .services-additional-section,
    .services-process-section,
    .services-pricing-section,
    .services-faq-section,
    .services-cta-section {
        padding: 60px 0;
    }

    .services-main-grid,
    .services-additional-grid {
        grid-template-columns: 1fr;
    }

    .services-process-timeline {
        grid-template-columns: 1fr;
    }

    .services-process-line {
        display: none;
    }

    .services-additional-title,
    .services-process-title,
    .services-pricing-title,
    .services-faq-title,
    .services-cta-title {
        font-size: 32px;
    }

    .services-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-hero-title {
        font-size: 28px;
    }

    .services-main-card,
    .services-additional-card {
        padding: 28px 20px;
    }

    .services-pricing-card {
        padding: 28px 20px;
    }

    .services-faq-question {
        padding: 20px;
    }

    .services-faq-answer p {
        padding: 0 20px 20px 20px;
    }
}

.search_home {
    border-top: 5px solid #ff5733;
    border-bottom: 2px solid #ff5733;
}

/**********************************/
.bg_feature_section {
    background: #ff8b6421;
    color: #2d3748;
    padding: 80px 20px 20px 20px;
}

.about-feature-section {
    max-width: 1320px;
    margin: 0 auto;
}

/* Feature Item */
.about-feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    /* align-items: center; */
    margin-bottom: 0;
    position: relative;
    padding-bottom: 0;
}

/* Image Container */
.about-feature-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-feature-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* Content Container */
.about-feature-content {
    padding: 20px 0;
}

.about-feature-tag {
    font-size: 12px;
    font-weight: 700;
    color: #8b7355;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    display: block;
}

.about-feature-title {
    font-size: 38px;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-feature-title .highlight {
    color: #ff8b64;
}

.about-feature-description {
    font-size: 16px;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 32px;
}

.about-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
    text-decoration: none;
    transition: all 0.3s;
    padding: 12px 0;
}

.about-feature-link i {
    font-size: 14px;
    transition: transform 0.3s;
}

.about-feature-link:hover {
    color: #dc2626;
}

.about-feature-link:hover i {
    transform: translateX(5px);
}

/* SVG Dotted Line Wrapper */
.featured-card__dotted-line-wrapper {
    position: absolute;
    bottom: -175px;
    right: 19.5%;
    width: 433px;
    height: 326px;
    pointer-events: none;
    z-index: 1;
}

.featured-card__dotted-line {
    width: 100%;
    height: 100%;
}

.featured-card__dotted-line--flipped {
    transform: scaleX(-1);
}

/* Alternating Layout */
.about-feature-item:nth-child(even) {
    direction: rtl;
}

.about-feature-item:nth-child(even) .about-feature-content {
    direction: ltr;
}

.about-feature-item:nth-child(even) .featured-card__dotted-line-wrapper {
    right: auto;
    left: 19.5%;
}

.about-feature-item:nth-child(even) .featured-card__dotted-line {
    transform: scaleX(-1);
}

/* Hide SVG on last item */
.about-feature-item:last-child .featured-card__dotted-line-wrapper {
    display: none;
}

/* Responsive */
@media (max-width: 968px) {
    .about-feature-item {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .about-feature-item:nth-child(even) {
        direction: ltr;
    }

    .featured-card__dotted-line-wrapper {
        display: none;
    }

    .about-feature-title {
        font-size: 30px;
    }

    .about-feature-image img {
        height: 350px;
    }
}

@media (min-width: 969px) {
    .about-feature-item {
        margin-bottom: 180px;
    }
}

/******************************/
.agent-card {
    background: white;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    margin-bottom: 24px;
}

.agent-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.agent-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ff7652;
}

.agent-info {
    flex: 1;
}

.agent-name {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.agent-title {
    font-size: 14px;
    color: #060708;
    margin-bottom: 6px;
}

.agent-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fbbf24;
    font-size: 14px;
}

.agent-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
}

.agent-stat {
    text-align: center;
}

.agent-stat-value {
    font-size: 20px;
    font-weight: 800;
    color: #ff7652;
    margin-bottom: 4px;
}

.agent-stat-label {
    font-size: 12px;
    color: #060708;
}

.agent-contact-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.agent-btn {
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.agent-btn-primary {
    background: #ff7652;
    color: white;
    border: none;
}

.agent-btn-secondary {
    background: white;
    color: #ff7652;
    border: 2px solid #ff7652;
}

.agent-btn-primary:hover {
    background: #ff5a33;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 118, 82, 0.3);
}

.agent-btn-secondary:hover {
    background: #fff5f2;
    transform: translateY(-2px);
}


@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.dotted-line {
    stroke-dasharray: 2, 4;
}

.option-card:hover .option-icon {
    transform: scale(1.1) rotate(5deg);
}

.option-icon {
    transition: all 0.3s ease;
}

.search-suggestions {
    border: 1px solid #e5e7eb;
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: #f9fafb;
}

.suggestion-icon {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7652;
}



/**************************/


@media (max-width: 480px) {
    .section-header-left h2 {
        font-size: 28px;
        margin-bottom: 6px;
        line-height: 1.25;
    }

    .gurugram-locations-header h2 {
        font-size: 28px;
    }

    .gurugram-locations-section {
        padding: 40px 20px;
        max-width: 1400px;
        margin: 0 auto;
    }


}

@media (min-width: 481px) and (max-width: 640px) {
    .section-header-left h2 {
        font-size: 32px;
        margin-bottom: 7px;

    }

    .gurugram-locations-header h2 {
        font-size: 32px;
    }

    .gurugram-locations-section {
        padding: 40px 20px;
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* Tablets (641px - 768px) */
@media (min-width: 641px) and (max-width: 768px) {
    .section-header-left h2 {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .gurugram-locations-header h2 {
        font-size: 36px;
    }

    .gurugram-locations-section {
        padding: 40px 20px;
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* Large Tablets / Small Laptops (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .section-header-left h2 {
        font-size: 40px;
        margin-bottom: 8px;
    }

    .gurugram-locations-header h2 {
        font-size: 40px;
    }

    .gurugram-locations-section {
        padding: 40px 20px;
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* Desktops (1025px - 1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {
    .section-header-left h2 {
        font-size: 44px;
        margin-bottom: 8px;
    }


}

/* Large Desktops (1281px+) */
@media (min-width: 1281px) {
    .section-header-left h2 {
        font-size: 48px;
        margin-bottom: 8px;
    }
}

/* Prevent text from breaking awkwardly */
.section-header-left h2 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Optimize for very small screens */
@media (max-width: 360px) {
    .section-header-left h2 {
        font-size: 24px;
        margin-bottom: 6px;
    }
}

/* Tablet landscape orientation */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .section-header-left h2 {
        font-size: 38px;
    }

    .gurugram-locations-header h2 {
        font-size: 28px;
    }

    .gurugram-locations-section {
        padding: 60px 20px;
    }

    .gurugram-locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

}

@media (max-width:1024px) {
    .budget-browse-images {
        display: none;
    }

    .mobile_filter {
        display: none;
    }
}

/* Inner Header Styles */
.header-inner {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(26, 31, 53, 0.98) 100%);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 118, 82, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header-inner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inner-logo-img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.header-inner .nav-menu {  
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (max-width: 768px) {
    .header-inner {
        padding: 12px 0;
    }
    
    .header-inner-container {
        padding: 0 20px;
    }
    
    .inner-logo-img {
        height: 35px;
    }
}

.grid-view .grid_view_div{
    flex-direction:column !important;
}
.text-slate-500, .text-slate-400, .text-slate-600{
    color: #060708 !important;
}

.property-image-placeholder-global {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    gap: 5px;
}

.white_icons{
  filter: brightness(0) invert(1);
}