/* Professional Blue & White Theme */
:root {
    --primary-blue: #2563eb;
    --light-blue: #3b82f6;
    --dark-blue: #1d4ed8;
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
}

/* Smart Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: white;
}

.building-icon {
    width: 60px;
    height: 60px;
    color: white;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

.loading-text {
    font-size: 24px;
    font-weight: 700;
    margin: 15px 0 20px;
    letter-spacing: 1px;
}

.loading-bar {
    width: 150px;
    height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: white;
    border-radius: 2px;
    animation: progress 1.5s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    padding-top: 90px;
    background-color: var(--gray-50);
}

/* Modern Professional Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

/* Circular Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    padding: 0.25rem 0;
}

.logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-blue), var(--light-blue), var(--primary-blue));
    border-radius: 50%;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

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

.logo-circle img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.logo-circle svg {
    width: 28px;
    height: 28px;
    color: white;
}

.navbar-brand:hover .logo-circle {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    letter-spacing: -0.5px;
}

.brand-tagline {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Custom Hamburger Menu */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation Links */
.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    font-weight: 600;
    color: var(--gray-600) !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
    background: var(--blue-50);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--primary-blue) !important;
    background: var(--blue-50);
    font-weight: 700;
}

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

/* Dropdown Improvements */
.dropdown-toggle::after {
    display: none;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 1rem;
    margin-top: 1rem;
    background: white;
    backdrop-filter: blur(20px);
    min-width: 220px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 500;
    color: var(--gray-600);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dropdown-item i {
    width: 16px;
    color: var(--primary-blue);
}

.dropdown-item:hover {
    background: var(--blue-50);
    color: var(--primary-blue);
    transform: translateX(5px);
}

/* User Avatar Styles */
.user-dropdown {
    padding: 0.5rem !important;
    border: none !important;
    background: transparent !important;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gray-200);
    transition: all 0.2s ease;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-avatar i {
    color: var(--gray-500);
    font-size: 16px;
}

.user-dropdown:hover .user-avatar {
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

.dropdown-header {
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.user-info strong {
    font-size: 0.875rem;
    color: var(--gray-800);
}

.user-info small {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.dropdown-menu-end {
    --bs-position: end;
    min-width: 200px;
}

.text-danger {
    color: #dc3545 !important;
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-actions .btn {
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .navbar-actions {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        margin-top: 1rem;
    }
    
    .navbar-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .user-dropdown {
        width: 100%;
        justify-content: center;
    }
}

/* Action Buttons */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid transparent;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-ghost:hover {
    background: var(--gray-100);
    color: var(--primary-blue);
    border-color: var(--gray-200);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: white;
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
}

/* Professional Buttons */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Modern Hero Section with Sliding Backgrounds */
.hero-section {
    position: relative !important;
    color: white !important;
    padding: 2rem 0 3rem !important;
    overflow: hidden !important;
    min-height: 60vh !important;
    display: flex !important;
    align-items: center !important;
    background: none !important;
}

.hero-slides {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
}

.hero-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    opacity: 0 !important;
    transition: opacity 2s ease-in-out !important;
    z-index: 0 !important;
}

.hero-slide.active {
    opacity: 1 !important;
    z-index: 1 !important;
}

.hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%) !important;
    z-index: 2 !important;
}

.hero-section .container {
    position: relative !important;
    z-index: 3 !important;
}

.hero-content {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    opacity: 0.9;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Modern Search Widget */
.search-widget {
    background: white;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    margin: 2rem auto 0;
    max-width: 900px;
    border: 1px solid rgba(255,255,255,0.2);
}

.search-tabs {
    display: flex;
    background: var(--gray-100);
    border-radius: 12px;
    padding: 3px;
    margin-bottom: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.search-tab {
    flex: 1;
    min-width: 100px;
    padding: 0.6rem 0.8rem;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--gray-600);
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.search-tab.active {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control, .form-select {
    width: 100%;
    padding: 0.7rem 0.8rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    background: white;
    transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.search-btn {
    padding: 0.8rem 1.5rem;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.search-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-1px);
}

.search-btn:active {
    transform: translateY(0);
}

/* Role Selection Cards */
.role-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.role-card {
    position: relative;
    cursor: pointer;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    text-align: center;
    transition: all 0.2s ease;
    background: white;
}

.role-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.role-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.role-card input[type="radio"]:checked + .role-content {
    color: var(--primary-blue);
}

.role-card input[type="radio"]:checked ~ .role-content,
.role-card:has(input[type="radio"]:checked) {
    border-color: var(--primary-blue);
    background: var(--blue-50);
}

.role-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.role-content i {
    font-size: 1.5rem;
    color: var(--gray-500);
    transition: color 0.2s ease;
}

.role-card:hover .role-content i,
.role-card input[type="radio"]:checked + .role-content i {
    color: var(--primary-blue);
}

.role-content span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

@media (max-width: 768px) {
    .role-cards {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .role-card {
        padding: 0.75rem;
    }
    
    .role-content {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
    
    .role-content i {
        font-size: 1.25rem;
    }
}

/* Avatar Upload */
.avatar-upload {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.avatar-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gray-200);
    transition: all 0.2s ease;
    background: var(--gray-100);
}

.avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-upload-btn {
    flex: 1;
}

.avatar-upload-btn input[type="file"] {
    display: none;
}

.avatar-upload-btn label {
    cursor: pointer;
    margin: 0;
}

.avatar-upload:hover .avatar-preview {
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .avatar-upload {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

/* Authentication Pages */
.auth-section {
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--gray-50) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.auth-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--gray-600);
    margin: 0;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Input Groups for Password Toggle */
.input-group .password-toggle {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-left: none;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
}

.input-group .password-toggle:hover {
    background: var(--blue-50);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.input-group .form-control:focus + .password-toggle {
    border-color: var(--primary-blue);
}

/* Remove old password input styles */
.password-input {
    display: none;
}

.password-toggle {
    display: none;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.auth-footer a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.alert {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.alert-danger {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

@media (max-width: 768px) {
    .auth-card {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .auth-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-section {
        padding: 1.5rem 0 2rem;
        min-height: 50vh;
    }
    
    .search-widget {
        margin: 1rem 0.5rem 0;
        padding: 0.8rem;
        border-radius: 16px;
    }
    
    .search-tabs {
        margin-bottom: 0.8rem;
        padding: 2px;
    }
    
    .search-tab {
        padding: 0.5rem 0.6rem;
        font-size: 0.75rem;
        min-width: 80px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .search-form {
        gap: 0.6rem;
    }
    
    .form-control, .form-select {
        padding: 0.6rem 0.7rem;
        font-size: 0.8rem;
    }
    
    .search-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        margin-top: 0.3rem;
    }
} 1rem;
    }
    
    .search-tabs {
        margin-bottom: 1.25rem;
    }
    
    .search-tab {
        padding: 0.625rem 0.5rem;
        font-size: 0.8125rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .stat-card {
        padding: 1rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .search-widget {
        margin: 1rem 0.75rem 0;
        padding: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .search-btn {
        padding: 1rem;
        font-size: 0.8125rem;
    }
}

/* Property Cards */
.property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    height: 100%;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.property-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.property-category {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    color: var(--gray-700);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.property-content {
    padding: 1.5rem;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.property-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
    line-height: 1.4;
}

.property-location {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.property-description {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.75rem;
}

.property-agent {
    color: var(--gray-500);
    font-weight: 500;
}

.property-time {
    color: var(--gray-400);
}

/* CTA Section */
.cta-section {
    background: var(--gray-800);
    color: white;
    padding: 4rem 0;
    margin-top: 4rem;
}

/* Footer */
footer {
    background: var(--gray-900) !important;
    color: var(--gray-300);
}

footer h5, footer h6 {
    color: white;
}

footer a {
    color: var(--gray-400);
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--primary-blue) !important;
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
    .navbar-nav {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--gray-200);
    }
    
    .navbar-actions {
        margin-top: 1rem;
        width: 100%;
    }
    
    .navbar-actions .btn {
        flex: 1;
        justify-content: center;
    }
    
    .logo-circle {
        width: 45px;
        height: 45px;
    }
    
    .logo-circle svg {
        width: 24px;
        height: 24px;
    }
    
    .brand-name {
        font-size: 1.25rem;
    }
    
    .brand-tagline {
        font-size: 0.65rem;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .search-card {
        padding: 1.5rem;
    }
    
    .stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-item h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 70px;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .logo-circle {
        width: 40px;
        height: 40px;
    }
    
    .logo-circle svg {
        width: 22px;
        height: 22px;
    }
    
    .brand-name {
        font-size: 1.125rem;
    }
    
    .brand-tagline {
        font-size: 0.625rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .search-card .row {
        --bs-gutter-x: 0.75rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
    }
}

/* Utilities */
.text-primary {
    color: var(--primary-blue) !important;
}

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

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

.min-vh-50 {
    min-height: 50vh;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

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

.property-card {
    animation: fadeInUp 0.4s ease forwards;
}