/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    padding-top: 76px; /* To account for fixed navbar */
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Light Orange Theme Colors */
:root {
    --primary-color: #ff8c42; /* Main light orange */
    --primary-dark: #e67e22; /* Darker orange for hover */
    --primary-light: #ffb347; /* Lighter orange */
    --secondary-color: #2c3e50; /* Dark blue-gray for text */
    --light-bg: #fff9f2; /* Very light orange background */
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
    --shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);
    /* Additional Theme Colors */
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --info-color: #3498db;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
}

/* Override Bootstrap Colors */
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-primary:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 66, 0.25) !important;
}
.text-theme {
    color: var(--primary-color) !important;
}

.bg-primary {
     color: var(--primary-color) !important;
}

.badge {
    padding: 5px 12px;
    font-weight: 500;
    border-radius: 20px;
    font-size: 13px;
}

/* Theme-Based Badges */
.badge-theme {
    background-color: var(--primary-color);
    color: white;
}

/* Custom Badge Colors for Light Orange Theme */
.badge-theme-primary {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.badge-theme-secondary {
    background-color: var(--secondary-color) !important;
    color: white !important;
}

.badge-theme-light {
    background-color: var(--light-bg) !important;
    color: var(--primary-color) !important;
    border: 1px solid rgba(255, 140, 66, 0.2);
}

.badge-theme-success {
    background-color: rgba(46, 204, 113, 0.1) !important;
    color: #27ae60 !important;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.badge-theme-warning {
    background-color: rgba(241, 196, 15, 0.1) !important;
    color: #f39c12 !important;
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.badge-theme-danger {
    background-color: rgba(231, 76, 60, 0.1) !important;
    color: #e74c3c !important;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.badge-theme-info {
    background-color: rgba(52, 152, 219, 0.1) !important;
    color: #3498db !important;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.badge-theme-dark {
    background-color: #2c3e50 !important;
    color: white !important;
}

/* Property Specific Badges */
.property-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.property-badge.featured {
    background-color: #ff6b6b;
    color: white;
}

.property-badge.premium {
    background-color: #ff8c42;
    color: white;
}

.property-badge.new {
    background-color: #2ecc71;
    color: white;
}

.property-badge.trending {
    background-color: #9b59b6;
    color: white;
}

.property-badge.hot {
    background-color: #e74c3c;
    color: white;
}

/* Blog Badges */
.blog-badge {
    background-color: rgba(255, 140, 66, 0.1);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 140, 66, 0.3);
}

/* Locality Stats Badge */
.locality-stats .badge {
    background-color: rgba(255, 140, 66, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 13px;
}

/* Quick Search Badge */
.quick-search-badge {
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid rgba(255, 140, 66, 0.2);
}

.quick-search-badge:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* .bg-primary {
    color: var(--primary-color) !important;
} */

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.logo-icon {
    color: var(--primary-color);
    font-size: 28px;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--secondary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--secondary-color) !important;
    margin: 0 0.5rem;
    transition: color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}
/* Navbar Dropdown Styles */
/* .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
} */



/* Main dropdown styling */
.dropdown-menu {
    border: 1px solid rgba(255, 140, 66, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    padding: 8px 0;
    border-radius: 10px;
    margin-top: 10px;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: rgba(255, 140, 66, 0.1);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
    color: var(--primary-color);
}

.dropdown-divider {
    margin: 8px 0;
    border-color: rgba(255, 140, 66, 0.1);
}

/* Active nav link */
.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* @media (mas-width: 992px){
    .dropdown-menu{
right: -20px;
    }

} */

/* @media (max-width: 992px) {
    .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin-top: 5px !important;
        border: 1px solid rgba(255, 140, 66, 0.1) !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
    }

    .navbar-collapse.show {
        overflow: visible;
    }
    
   
    .dropdown-menu.show {
        display: block !important;
        position: absolute !important;
        z-index: 1050 !important;
        background: white !important;
        margin-top: 5px !important;
        width: calc(100% - 30px) !important;
        left: 15px !important;
    }
} */

/* @media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
} */

@media (max-width: 992px) {
    .navbar-nav .nav-link:not(.dropdown-toggle) {
        padding: 10px 15px;
    }
}



/* Mobile responsive */


/* Main Content */
.hero-section {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 60px 0 100px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
}

.hero-subtitle {
    color: #666;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Search Container */
.search-container {
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    width:84%;
    margin:0 90px;
}

@media (max-width: 768px) {
    .search-container {
        margin: 0 0 0 35px;
    }
}

.search-tabs {
    background-color: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
}

.search-tab {
    padding: 18px 24px;
    font-weight: 600;
    cursor: pointer;
    color: #666;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.search-tab:hover {
    color: var(--primary-color);
}

.search-tab.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    background-color: white;
}

.search-input {
    position: relative;
}

.search-input i {
    z-index: 10;
}

.suggestions-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border-radius: 0 0 8px 8px;
    box-shadow: var(--shadow);
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 2px;
}

.search-input:focus-within .suggestions-dropdown {
    display: block;
}

.suggestion-item {
    padding: 14px 20px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
}

.suggestion-item:hover {
    background-color: var(--light-bg);
}

.suggestion-item i {
    color: var(--primary-color);
}

.search-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button:hover {
    background-color: var(--primary-dark);
}

.quick-search-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    background-color: var(--light-bg);
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.2s;
}

.quick-search-link:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
}

/* Property Listings */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.property-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow:rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    position: relative;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.property-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.property-details {
    padding: 20px;
}

.property-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.property-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.4;
}

.property-location {
    color: #666;
    font-size: 14px;
}

.property-location i {
    color: var(--primary-color);
}

.property-features {
    border-bottom: 1px solid var(--border-color);
}

.property-features span {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.property-features i {
    color: var(--primary-color);
}

/* Services Section */
.services-section {
    background-color: var(--light-bg);
}

.service-card {
    padding: 30px 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 140, 66, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.service-card h4 {
    font-size: 20px;
    color: var(--secondary-color);
}

.service-card p {
    color: #666;
    font-size: 15px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #fff;
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #ffc107;
}

/* Localities Section */
.locality-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    height: 100%;
}

.locality-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.locality-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 140, 66, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.locality-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

/* Blog Section */
.blog-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 20px;
}

/* Partners Section */
.partner-logo {
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    height: 100%;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.partner-logo i {
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    color: white;
}

/* Stats Section */
.stat-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

/* FAQ Section */
.accordion-button {
    font-weight: 600;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(255, 140, 66, 0.1);
    color: var(--primary-color);
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 66, 0.25);
}

.accordion-body {
    padding: 1.5rem;
}

/* Newsletter Section */
.newsletter-form .form-control:focus {
    border-color: var(--primary-color);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 1rem;
    }
    
    .locality-card {
        margin-bottom: 1rem;
    }
    
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .partner-logo {
        margin-bottom: 1rem;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
    
    .cta-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Trusted Developers Section Styles */
.trusted-developers {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.trusted-developers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.developer-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 140, 66, 0.1);
    border-radius: 12px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.developer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 140, 66, 0.3);
}

.developer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--light-bg);
    transition: all 0.3s ease;
}

.developer-card:hover .developer-logo {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.developer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-size: 30px;
}

.developer-name {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
}

.rating {
    margin-bottom: 10px;
}

.rating i {
    font-size: 14px;
}

.projects-badge {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.projects-badge .badge {
    font-size: 11px;
    padding: 4px 10px;
    font-weight: 500;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 14px;
}

.benefit-card {
    background-color: var(--light-bg);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 140, 66, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    color: var(--primary-color);
    font-size: 24px;
}

.bg-theme-light {
    background-color: var(--light-bg) !important;
    border: 1px solid rgba(255, 140, 66, 0.1);
}

.btn-theme {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    font-weight: 600;
}

.btn-theme:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-2px);
}

.btn-outline-theme {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    background-color: transparent;
    font-weight: 600;
}

.btn-outline-theme:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .developer-card {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .benefit-card {
        padding: 20px;
        margin-bottom: 15px;
    }
}

/* Why Choose Us Section Styles */
.why-choose-us {
    background-color: var(--light-bg);
    position: relative;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.feature-card {
    background: white;
    border: 1px solid rgba(255, 140, 66, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
    transition: height 0.3s ease;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 140, 66, 0.3);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(255, 179, 71, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transform: scale(1.1);
}

.icon-wrapper i {
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper i {
    color: white;
}

.feature-title {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
    font-size: 14px;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list i {
    color: #27ae60;
    font-size: 14px;
    margin-right: 10px;
}

.experience-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 15px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.experience-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
    animation: float 20s linear infinite;
}

.testimonial-highlight {
    background: white;
    border-radius: 15px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 140, 66, 0.1);
}

.testimonial-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.testimonial-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.process-step {
    padding: 20px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.number-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
    position: relative;
}

.number-circle::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 140, 66, 0.3);
    animation: spin 10s linear infinite;
}

.cta-box {
    background-color: var(--light-bg);
    border-radius: 15px;
    padding: 50px 40px;
    border: 2px dashed rgba(255, 140, 66, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), transparent, var(--primary-dark));
    border-radius: inherit;
    z-index: -1;
    opacity: 0.3;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(100px) translateY(100px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .feature-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .icon-wrapper i {
        font-size: 28px;
    }
    
    .experience-card,
    .testimonial-highlight {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .process-step {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .number-circle {
        width: 60px;
        height: 60px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .feature-title {
        font-size: 18px;
    }
    
    .feature-text {
        font-size: 14px;
    }
}

/* City Snapshot Section Styles */
.city-snapshot {
    background-color: #fff;
    position: relative;
}

.city-snapshot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.city-header {
    position: relative;
    padding-bottom: 15px;
}

.city-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.city-tagline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.city-stat-badge {
    background-color: var(--light-bg);
    border: 1px solid rgba(255, 140, 66, 0.2);
    font-size: 14px;
}

.city-stat-badge strong {
    color: var(--primary-color);
}

.city-description-card {
    background-color: var(--light-bg);
    border: 1px solid rgba(255, 140, 66, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.city-description-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 140, 66, 0.3);
}

.city-description {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
    margin: 20px 0;
}

.city-highlights h6,
.city-landmarks h6 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.city-highlights h6::after,
.city-landmarks h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.city-highlights .row {
    margin-top: 15px;
}

.city-highlights .col-md-6 {
    margin-bottom: 10px;
}

.city-highlights i {
    color: #27ae60;
    font-size: 14px;
    min-width: 20px;
}

.city-landmarks .badge {
    font-size: 12px;
    padding: 6px 14px;
    margin: 3px;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 140, 66, 0.2);
}

.city-landmarks .badge:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

.city-stats-grid .stat-card {
    background: white;
    border: 1px solid rgba(255, 140, 66, 0.1);
    border-radius: 12px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.city-stats-grid .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 140, 66, 0.3);
}

.city-stats-grid .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.city-stats-grid .stat-card:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 14px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.stat-icon {
    opacity: 0.7;
}

.property-type-card {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid transparent;
}

.property-type-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 140, 66, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background-color: var(--light-bg);
}

.property-type-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(255, 179, 71, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.property-type-card:hover .property-type-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transform: scale(1.1);
}

.property-type-card:hover .property-type-icon i {
    color: white !important;
}

.property-type-card h6 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.property-type-card small {
    font-size: 13px;
    color: #666;
}

.price-trends-card {
    background-color: var(--light-bg);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 140, 66, 0.2);
    position: relative;
    overflow: hidden;
}

.price-trends-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,140,66,0.05) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.3;
    animation: float 20s linear infinite;
}

.price-trends-card h5 {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(100px) translateY(100px);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .city-description-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .city-stats-grid .stat-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .property-type-card {
        padding: 15px 10px;
        margin-bottom: 15px;
    }
    
    .property-type-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .property-type-icon i {
        font-size: 1.5rem !important;
    }
    
    .price-trends-card {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .city-tagline {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .city-description {
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .city-landmarks .badge {
        font-size: 11px;
        padding: 5px 10px;
        margin: 2px;
    }
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
}

.footer .logo-icon {
    color: var(--primary-color);
}

.footer .brand-name {
    color: white;
}

.footer-text {
    color: #bbb;
    line-height: 1.6;
}

.footer h5 {
    color: white;
    font-size: 18px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    color: #aaa;
    font-size: 14px;
}

/* Custom Utilities */
.rounded-lg {
    border-radius: 12px !important;
}

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

/* Animation for property cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.property-card {
    animation: fadeInUp 0.5s ease-out;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .search-input-group .col-lg-1 {
        margin-top: 1rem;
    }
    
    .search-button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .search-tabs {
        flex-wrap: wrap;
    }
    
    .search-tab {
        flex: 1;
        min-width: 120px;
        text-align: center;
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .quick-searches {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}