/* ===========================================
   HOME PAGE - MODERN DESIGN SYSTEM
   =========================================== */


:root {
    /* ===========================================
           COLOR SYSTEM - ORGANIZED PALETTE
           =========================================== */

    /* Primary Brand Colors */
    --primary-color: #1e3a8a;
    --primary-dark: #1e293b;
    --primary-light: #96def1;
    --primary-hover: #1e7a9a;
    --primary-active: #156580;

    /* Secondary Colors */
    --secondary-color: #d4af37;
    --secondary-dark: #52492b;
    --secondary-light: #eedeaa;
    --secondary-hover: #b8942c;
    --secondary-active: #9c7f21;

    /* Accent Colors */
    --accent-color: #047857;
    --accent-dark: #e53e3e;
    --accent-light: #fd7b7b;
    --accent-hover: #036c4a;
    --accent-active: #025a3d;

    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --transparent: transparent;

    /* Gray Scale */
    --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;

    /* Status Colors */
    --success-color: #059669;
    --success-dark: #047857;
    --success-light: #34d399;
    --success-hover: #047857;
    --success-active: #036c4a;

    --warning-color: #d97706;
    --warning-dark: #c05621;
    --warning-light: #fbbf24;
    --warning-hover: #b45309;
    --warning-active: #92400e;

    --danger-color: #dc2626;
    --danger-dark: #b91c1c;
    --danger-light: #f87171;
    --danger-hover: #b91c1c;
    --danger-active: #991b1b;

    --info-color: #3b82f6;
    --info-dark: #2c3b53;
    --info-light: #60a5fa;
    --info-hover: #2563eb;
    --info-active: #1d4ed8;

    /* Dark Theme Colors */
    --dark-color: #1a202c;
    --dark-light: #2d3748;
    --dark-hover: #4a5568;
    --dark-active: #718096;

    /* ===========================================
           GRADIENTS
           =========================================== */

    /* Background Gradients */
    --bg-gradient-light: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-200) 100%);
    --bg-gradient-dark: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-light) 100%);
    --bg-gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);

    /* Component Gradients */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #4ba27e 100%);
    --secondary-gradient: linear-gradient(135deg, #93dafb 0%, #f1f0ad 100%);
    --success-gradient: linear-gradient(135deg, var(--success-color) 0%, var(--success-dark) 100%);
    --warning-gradient: linear-gradient(135deg, var(--warning-color) 0%, var(--warning-dark) 100%);
    --danger-gradient: linear-gradient(135deg, var(--danger-color) 0%, var(--danger-dark) 100%);
    --info-gradient: linear-gradient(135deg, var(--info-color) 0%, var(--info-dark) 100%);
    --dark-gradient: linear-gradient(135deg, var(--dark-light) 0%, var(--dark-color) 100%);

    /* Special Gradients */
    --cta-section: linear-gradient(135deg, var(--gray-800) 0%, rgba(36, 35, 35, 0.842) 100%);
    --stats-section: linear-gradient(135deg, #4c6dffc5 0%, #4ba252 100%);
    --feature-icon-bg: linear-gradient(135deg, #2a38ff 0%, #667aea 100%);

    /* ===========================================
           EFFECTS & SHADOWS
           =========================================== */

    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.397);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-bg-dark: rgba(0, 0, 0, 0.1);

    /* Shadow System */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Legacy Shadows (for compatibility) */
    --shadow-light: var(--shadow-sm);
    --shadow-medium: var(--shadow-lg);
    --shadow-heavy: var(--shadow-2xl);

    /* ===========================================
           OPACITY & TRANSPARENCY
           =========================================== */

    --opacity-10: rgba(255, 255, 255, 0.1);
    --opacity-20: rgba(255, 255, 255, 0.2);
    --opacity-30: rgba(255, 255, 255, 0.3);
    --opacity-50: rgba(255, 255, 255, 0.5);
    --opacity-70: rgba(255, 255, 255, 0.7);
    --opacity-80: rgba(255, 255, 255, 0.8);
    --opacity-90: rgba(255, 255, 255, 0.9);
    --opacity-95: rgba(255, 255, 255, 0.95);

    /* ===========================================
           TRANSITIONS & ANIMATIONS
           =========================================== */

    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* ===========================================
           TYPOGRAPHY
           =========================================== */

    --font-family-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-family-secondary: 'Arial', sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;

    /* ===========================================
           SPACING
           =========================================== */

    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;

    /* ===========================================
           BORDER RADIUS
           =========================================== */

    --radius-sm: 0.125rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-full: 9999px;

    /* ===========================================
           Z-INDEX SCALE
           =========================================== */

    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;

    /* ===========================================
           LEGACY SUPPORT (for backward compatibility)
           =========================================== */

    --btn-destaque: var(--primary-color);
    --navbar-bg: var(--primary-color);
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;

    /* Compensate for fixed navbar */
}

/* Loading States */
body.loading {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Mobile Menu Overlay */
body.mobile-menu-open {
    overflow: hidden;
}

.navbar-logo {
    height: 60px;
    width: auto;
}



/* Navbar Principal */
#navbarNav {

    display: flex;
    justify-content: flex-end;
    transition: all 0.3s ease;
    padding: 0;

}



/* Logo e Marca */
.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    padding: 0;
}

.logo-img {
    max-height: 50px;
    margin-right: 1rem;
    border-radius: 1px;
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    background: var(--info-gradient);
    border-radius: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-100);
    font-size: 1.5rem;
    margin-right: 1rem;
    box-shadow: var(--shadow-md);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.company-name {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--gray-100);
    text-shadow: 0 2px 4px var(--shadow-sm);
    margin-bottom: 2px;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--opacity-80);
    font-weight: 400;
}

/* Links de Navegação */
.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--opacity-90) !important;
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 1px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gray-100);
    transform: translateY(-1px);
    border: 1px solid var(--white) !important;
}

.nav-link i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-link:hover i {
    transform: scale(1.1);
}

/* Dropdown Menu */
.dropdown-menu {
    background: white;
    border: none;
    border-radius: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    backdrop-filter: blur(10px);
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.dropdown-item:hover {
    background: var(--secondary-gradient);
    color: var(--gray-100);
    transform: translateX(5px);
}

.dropdown-item i {
    width: 20px;
    margin-right: 0.5rem;
}

/* Botões */

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    color: var(--gray-100);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 1px;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Menu do Usuário */
.user-menu {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem !important;
    border-radius: 1px;
    background: var(--opacity-10);
    transition: all 0.3s ease;
}

.user-menu:hover {
    background: var(--opacity-20);
    transform: translateY(-1px);
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--secondary-gradient);
    border-radius: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-100);
    font-size: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.user-avatar:hover {
    transform: scale(1.05);
}

.user-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.user-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-gradient);
    color: var(--gray-100);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.user-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-100);
}

/* Toggle Button */
.navbar-toggler {
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    padding: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
    outline: none;
}

.navbar-toggler-icon {
    width: 20px;
    height: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}


/* Responsividade */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 1px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.2);
        position: absolute;
        top: 100%;
        left: 1rem;
        right: 1rem;
        z-index: 1050;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    .navbar-nav {
        margin: 0;
        padding: 0;
    }

    .nav-item {
        margin: 0.25rem 0;
    }

    .nav-link {
        color: var(--gray-700) !important;
        justify-content: flex-start;
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
        border-radius: 1px;
        transition: all 0.3s ease;
        font-weight: 500;
        position: relative;
        overflow: hidden;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--info-gradient);
        transition: left 0.5s ease;
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        left: 100%;
    }

    .nav-link:hover,
    .nav-link.active {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white !important;
        transform: translateX(5px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

    .navbar-actions {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-login,
    .btn-whatsapp {
        margin: 0.25rem 0;
        justify-content: center;
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .user-menu {
        background: transparent !important;
    }

    .company-name {
        font-size: 1.1rem;
    }

    .brand-tagline {
        display: none;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.1rem;
    }

    .logo-img,
    .logo-placeholder {
        width: 40px;
        height: 40px;
        margin-right: 0.75rem;
    }

    .company-name {
        font-size: 1rem;
    }

    .navbar-toggler {
        width: 40px;
        height: 40px;
        padding: 0.4rem;
    }

    .hamburger-line {
        width: 18px;
        height: 2px;
    }

    .navbar-collapse {
        left: 0.5rem;
        right: 0.5rem;
        margin-top: 0.5rem;
        padding: 0.75rem;
        max-height: calc(100vh - 100px);
    }

    .nav-link span {
        display: none;
    }

    .nav-link {
        justify-content: center;
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    .navbar-actions {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }

    .btn-login,
    .btn-whatsapp {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    .btn-login span,
    .btn-whatsapp span {
        display: none;
    }

    .user-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .user-name {
        font-size: 0.8rem;
    }
}

/* Animações */
@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* Scroll Effect */
.navbar-scroll .navbar-brand {
    transform: scale(0.95);
}

.navbar-scroll .company-name {
    color: var(--gray-700) !important;
    text-shadow: none;
}

.navbar-scroll .brand-tagline {
    color: var(--gray-500) !important;
}

.navbar-scroll .nav-link {
    color: var(--gray-700) !important;
}

.navbar-scroll .nav-link:hover,
.navbar-scroll .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(102, 126, 234, 0.1);
}

/* Ripple Effect */
.ripple-effect {
    position: absolute;
    border-radius: 1px;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Backdrop for mobile menu */
.navbar-backdrop {
    animation: fadeInBackdrop 0.3s ease;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.6);
}

@keyframes fadeInBackdrop {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }

    to {
        opacity: 1;
        backdrop-filter: blur(8px);
    }
}

/* Enhanced accessibility */
.nav-link:focus-visible,
.btn:focus-visible {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .navbar-toggler {
        min-width: 44px;
        min-height: 44px;
    }

    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* Landscape orientation support */
@media (max-width: 991px) and (orientation: landscape) {
    .navbar-collapse {
        max-height: calc(100vh - 80px);
        top: calc(100% + 0.5rem);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    .navbar-toggler,
    .nav-link,
    .navbar-backdrop {
        transition: none !important;
    }

    .hamburger-line {
        transition: none !important;
    }
}

/* Loading states */
.nav-link[style*="opacity: 0.7"] {
    pointer-events: none;
}

/* Subtle animations */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

/* Smooth Transitions */
* {
    scroll-behavior: smooth;
    border-radius: 1px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--black);

}

::-webkit-scrollbar-thumb:hover {
    background: var(--info-active);
}

/* Print Styles */
@media print {

    .navbar,
    .floating-action,
    .btn {
        display: none !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {


    .nav-link {
        color: var(--white) !important;
    }

    .nav-link:hover {
        background: #fff !important;
        color: var(--black) !important;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===========================================
   GLOBAL UTILITY CLASSES
   =========================================== */

/* Section Padding Standardization */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--primary-gradient);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.section-title p {
    color: var(--gray-500);
    font-size: 1.1rem;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===========================================
   HERO SECTION - CINEMATIC EXPERIENCE
   =========================================== */

.hero-section {

    min-height: 100vh;
    overflow: hidden;
    background: var(--dark-gradient);
    color: var(--gray-100);
    display: flex;
    align-items: center;
    isolation: isolate;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(245, 87, 108, 0.2) 0%, transparent 50%);
    z-index: -1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: -2;
    filter: brightness(0.8) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    animation: heroSlideIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-wrap: wrap;
}

@keyframes heroSlideIn {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, var(--gray-200) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        filter: brightness(1);
    }

    to {
        filter: brightness(1.1);
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    margin-bottom: 3rem;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.3s both;
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gray-100);
    opacity: 0.8;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid white;

    margin: 0 auto 0.5rem;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: white;

    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(6px);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

.scroll-indicator p {
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* ===========================================
   SEARCH BOX - MODERN GLASS DESIGN
   =========================================== */

.search-container {

    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 150px;
    padding: 3rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
    animation: searchBoxFloat 1s ease 0.6s both;
}

@keyframes searchBoxFloat {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.search-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.search-form .form-control,
.search-form .form-select {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;

    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.search-form .form-control:focus,
.search-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: var(--white);
    transform: translateY(-2px);
}

.search-btn {
    background: var(--primary-gradient);
    border: none;
    border-radius: 1px;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-100);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.search-btn:hover::before {
    left: 100%;
}

/* ===========================================
   FEATURES SECTION - INTERACTIVE CARDS
   =========================================== */

.features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-200) 100%);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, var(--gray-50) 0%, transparent 100%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-500);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: white;

    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
    animation: cardSlideUp 0.8s ease both;
    animation-delay: var(--animation-delay, 0s);
}

/* Animation delays for feature cards */
.feature-card[data-delay="0.1s"] {
    --animation-delay: 0.1s;
}

.feature-card[data-delay="0.2s"] {
    --animation-delay: 0.2s;
}

.feature-card[data-delay="0.3s"] {
    --animation-delay: 0.3s;
}

.feature-card[data-delay="0.4s"] {
    --animation-delay: 0.4s;
}

.feature-card[data-delay="0.5s"] {
    --animation-delay: 0.5s;
}

.feature-card[data-delay="0.6s"] {
    --animation-delay: 0.6s;
}

@keyframes cardSlideUp {
    0% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--feature-icon-bg);

    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--gray-100);
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--gray-500);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===========================================
   PROPERTIES SECTION - SLIDER
   =========================================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.stats-section {
    padding: 5rem 0;
    background: var(--stats-section);
    color: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
    animation: statItemSlide 0.8s ease both;
    animation-delay: var(--animation-delay, 0s);
}

/* Data delay attributes for stat items */
.stat-item[data-delay="0.1s"] {
    --animation-delay: 0.1s;
}

.stat-item[data-delay="0.2s"] {
    --animation-delay: 0.2s;
}

.stat-item[data-delay="0.3s"] {
    --animation-delay: 0.3s;
}

.stat-item[data-delay="0.4s"] {
    --animation-delay: 0.4s;
}

@keyframes statItemSlide {
    0% {
        opacity: 1;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);

    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    display: block;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===========================================
   CTA SECTION - CALL TO ACTION
   =========================================== */

.cta-section {
    padding: 6rem 0;
    background: var(--cta-section);
    color: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: ctaContentSlide 1s ease both;
}

@keyframes ctaContentSlide {
    0% {
        opacity: 1;
        transform: translateY(40px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--btn-destaque);
    border: none;

    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-100);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
    color: var(--gray-100);
    text-decoration: none;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn-cta-primary:hover::before {
    border-color: var(--gray-100);
    left: 100%;
}

.btn-cta-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);

    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-100);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--btn-destaque);
    transform: translateY(-3px) scale(1.05);
    color: var(--gray-100);
    text-decoration: none;
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */

@media (max-width: 1200px) {
    .hero-content {
        padding: 1.5rem;
    }

    .search-container {
        padding: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .search-container {
        padding: 2rem;
    }

    .feature-card {
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .search-container {
        padding: 1.5rem;
        margin-top: 1rem;
    }

    .search-form .row>div {
        margin-bottom: 0.75rem;
    }

    .search-form .form-control,
    .search-form .form-select {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }



    .section-title {
        font-size: 2.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .property-features {
        grid-template-columns: 1fr;
    }

    .stat-item {
        margin-bottom: 2rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .search-container {
        padding: 1rem;
    }

    .search-form .form-control,
    .search-form .form-select {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }



    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .property-image-container {
        height: 200px;
    }

    .property-content {
        padding: 1.5rem;
    }



    .stat-number {
        font-size: 2.2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ===========================================
   ACCESSIBILITY & PERFORMANCE
   =========================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-color-scheme: dark) {
    .property-content {
        background-color: var(--gray-300);
        color: var(--gray-200);
    }

    .property-title {
        color: var(--dark-color);
    }

    .property-location {
        color: var(--dark-color);
    }

    .property-description {
        color: var(--dark-color);
    }

    .property-feature span {
        color: var(--dark-color);
    }
}

@media print {

    .hero-section,
    .cta-section,
    .search-container {
        display: none !important;
    }

    .property-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */

.bounce-in {
    animation: none;
}

@keyframes bounceIn {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Property card animation delays */
.property-card {
    animation: bounceIn 0.8s ease both;
    animation-delay: var(--animation-delay, 0s);
}

/* Data delay attributes for property cards */
.property-card[data-delay="0.15s"] {
    --animation-delay: 0.15s;
}

.property-card[data-delay="0.3s"] {
    --animation-delay: 0.3s;
}

.property-card[data-delay="0.45s"] {
    --animation-delay: 0.45s;
}

.property-card[data-delay="0.6s"] {
    --animation-delay: 0.6s;
}

.property-card[data-delay="0.75s"] {
    --animation-delay: 0.75s;
}

.property-card[data-delay="0.9s"] {
    --animation-delay: 0.9s;
}

.property-card[data-delay="1.05s"] {
    --animation-delay: 1.05s;
}

.property-card[data-delay="1.2s"] {
    --animation-delay: 1.2s;
}

.property-card[data-delay="1.35s"] {
    --animation-delay: 1.35s;
}

.property-card[data-delay="1.5s"] {
    --animation-delay: 1.5s;
}

/* Development highlight positioning */
.development-highlight-position {
    position: absolute;
    top: 18px;
    left: 18px;
}

/* Blog page styles */
.newsletter-input-group {
    max-width: 500px;
}

.blog-category-icon {
    width: 60px;
    height: 60px;
}

/* Contact page styles */
.contact-map-iframe {
    border: 0;
}

.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ===========================================
   CONTACT PAGE STYLES
   =========================================== */

/* Hero Section */
.hero-contact {
    background: var(--primary-gradient);
    padding: 80px 0;
    color: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.hero-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contactpattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contactpattern)"/></svg>');
    pointer-events: none;
}

.hero-contact .contact-hero-content {
    position: relative;
    z-index: 2;
}

.hero-contact .contact-hero-image {
    position: relative;
    z-index: 2;
}

.min-vh-50 {
    min-height: 50vh;
}

.contact-quick-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-item-hero {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.contact-item-hero i {
    width: 20px;
    text-align: center;
}

.contact-hero-image {
    text-align: center;
}

.contact-hero-image img {

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-height: 400px;
    object-fit: cover;
}

/* Contact Section */
.contact-section {
    background-color: var(--gray-50);
}

.contact-info-card,
.contact-form-card {
    background: white;
    padding: 2rem;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);

    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-100);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-details p {
    color: #666;
    font-size: 0.95rem;
}

.contact-details a {
    color: var(--primary-color);
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--primary-dark);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--gray-100);

    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-dark);
    color: var(--gray-100);
    transform: translateY(-2px);
}

/* Form Styles */
.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;

    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Search form specific styles */
.search-form .form-control,
.search-form .form-select {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 1px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);

}

.search-form .form-control:focus,
.search-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: #fff;
    transform: translateY(-2px);
}




/* Map Section */
.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===========================================
   ABOUT PAGE STYLES
   =========================================== */

/* Page Header Enhancement */
.page-header {
    background: var(--dark-gradient);
    color: var(--gray-100);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    padding-top: 150px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1)"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1)"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05)"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
    margin-top: 2rem;
}

.page-header .page-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.page-header .breadcrumb {
    background: rgba(255, 255, 255, 0.2);

    padding: 0.5rem 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.1s both;
}

.page-header .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header .breadcrumb a:hover {
    color: var(--accent-color);
}

.page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

/* About Section Enhancement */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-200) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="0.5" fill="rgba(102,126,234,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

/* Company Hero Section */
.company-hero {
    background: linear-gradient(135deg, var(--primary-gradient) 0%, var(--secondary-gradient) 100%);
    color: var(--gray-100);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.company-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="heropattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23heropattern)"/></svg>');
    pointer-events: none;
}

.company-info h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-900)
}

.company-info p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: var(--gray-900)
}

.company-stats {
    margin-top: 3rem;
}

.company-stats .row>div {
    text-align: center;
    padding: 1rem;
}

.company-stats h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.company-stats p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

/* History Timeline */
.history-timeline {
    padding: 80px 0;
    background: white;
    position: relative;
}

.timeline-container {
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-gradient), var(--secondary-gradient));
    transform: translateX(-50%);

}

.history-block {
    position: relative;
    margin-bottom: 4rem;
    background: white;

    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.history-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.history-block:nth-child(even) {
    margin-left: auto;
    text-align: right;
}

.history-block::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-gradient);
    border: 4px solid white;

    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

.history-block:nth-child(odd)::before {
    right: -62px;
}

.history-block:nth-child(even)::before {
    left: -62px;
}

.timeline-year {
    display: inline-block;
    background: var(--primary-gradient);
    color: var(--gray-100);
    padding: 0.5rem 1.5rem;

    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.timeline-content h3 {
    color: var(--primary-gradient);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.1rem;
}



.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="statspattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23statspattern)"/></svg>');
    pointer-events: none;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.95;
}

/* ===========================================
   CTA SECTION - CALL TO ACTION
   =========================================== */

.cta-section {
    padding: 6rem 0;
    background: var(--cta-section);
    color: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: ctaContentSlide 1s ease both;
}

@keyframes ctaContentSlide {
    0% {
        opacity: 1;
        transform: translateY(40px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--btn-destaque);
    border: none;

    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-100);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
    color: var(--gray-100);
    text-decoration: none;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn-cta-primary:hover::before {
    border-color: var(--gray-100);
    left: 100%;
}

.btn-cta-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);

    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-100);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--btn-destaque);
    transform: translateY(-3px) scale(1.05);
    color: var(--gray-100);
    text-decoration: none;
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */

@media (max-width: 1200px) {
    .hero-content {
        padding: 1.5rem;
    }

    .search-container {
        padding: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .search-container {
        padding: 2rem;
    }

    .feature-card {
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .search-container {
        padding: 1.5rem;
        margin-top: 1rem;
    }

    .search-form .row>div {
        margin-bottom: 0.75rem;
    }

    .search-form .form-control,
    .search-form .form-select {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    .btn-primary-home {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .property-features {
        grid-template-columns: 1fr;
    }

    .stat-item {
        margin-bottom: 2rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .search-container {
        padding: 1rem;
    }

    .search-form .form-control,
    .search-form .form-select {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }



    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .property-image-container {
        height: 200px;
    }

    .property-content {
        padding: 1.5rem;
    }



    .stat-number {
        font-size: 2.2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ===========================================
   ACCESSIBILITY & PERFORMANCE
   =========================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-color-scheme: dark) {
    .property-content {
        background-color: var(--gray-300);
        color: var(--gray-200);
    }

    .property-title {
        color: var(--dark-color);
    }

    .property-location {
        color: var(--dark-color);
    }

    .property-description {
        color: var(--dark-color);
    }

    .property-feature span {
        color: var(--dark-color);
    }
}

@media print {

    .hero-section,
    .cta-section,
    .search-container {
        display: none !important;
    }

    .property-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */

.bounce-in {
    animation: none;
}

@keyframes bounceIn {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Property card animation delays */
.property-card {
    animation: bounceIn 0.8s ease both;
    animation-delay: var(--animation-delay, 0s);
}

/* Data delay attributes for property cards */
.property-card[data-delay="0.15s"] {
    --animation-delay: 0.15s;
}

.property-card[data-delay="0.3s"] {
    --animation-delay: 0.3s;
}

.property-card[data-delay="0.45s"] {
    --animation-delay: 0.45s;
}

.property-card[data-delay="0.6s"] {
    --animation-delay: 0.6s;
}

.property-card[data-delay="0.75s"] {
    --animation-delay: 0.75s;
}

.property-card[data-delay="0.9s"] {
    --animation-delay: 0.9s;
}

.property-card[data-delay="1.05s"] {
    --animation-delay: 1.05s;
}

.property-card[data-delay="1.2s"] {
    --animation-delay: 1.2s;
}

.property-card[data-delay="1.35s"] {
    --animation-delay: 1.35s;
}

.property-card[data-delay="1.5s"] {
    --animation-delay: 1.5s;
}

/* Development highlight positioning */
.development-highlight-position {
    position: absolute;
    top: 18px;
    left: 18px;
}

/* Blog page styles */
.newsletter-input-group {
    max-width: 500px;
}

.blog-category-icon {
    width: 60px;
    height: 60px;
}

/* Contact page styles */
.contact-map-iframe {
    border: 0;
}

.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ===========================================
   CONTACT PAGE STYLES
   =========================================== */

/* Hero Section */
.hero-contact {
    background: var(--primary-gradient);
    padding: 80px 0;
    color: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.hero-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contactpattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contactpattern)"/></svg>');
    pointer-events: none;
}

.hero-contact .contact-hero-content {
    position: relative;
    z-index: 2;
}

.hero-contact .contact-hero-image {
    position: relative;
    z-index: 2;
}

.min-vh-50 {
    min-height: 50vh;
}

.contact-quick-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-item-hero {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.contact-item-hero i {
    width: 20px;
    text-align: center;
}

.contact-hero-image {
    text-align: center;
}

.contact-hero-image img {

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-height: 400px;
    object-fit: cover;
}

/* Contact Section */
.contact-section {
    background-color: var(--gray-50);
}

.contact-info-card,
.contact-form-card {
    background: white;
    padding: 2rem;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);

    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-100);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-details p {
    color: #666;
    font-size: 0.95rem;
}

.contact-details a {
    color: var(--primary-color);
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--primary-dark);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--gray-100);

    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-dark);
    color: var(--gray-100);
    transform: translateY(-2px);
}

/* Form Styles */
.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;

    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Search form specific styles */
.search-form .form-control,
.search-form .form-select {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 1px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);

}

.search-form .form-control:focus,
.search-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: #fff;
    transform: translateY(-2px);
}



.btn-primary:hover {
    background: none;
    border: linear-gradient(135deg, #5a67d8, #6b46a3);
    transform: translateY(2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);

}

/* Map Section */
.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===========================================
   ABOUT PAGE STYLES
   =========================================== */

/* Page Header Enhancement */
.page-header {
    background: var(--dark-gradient);
    color: var(--gray-100);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    padding-top: 150px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1)"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1)"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05)"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.page-header .page-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.page-header .breadcrumb {
    background: rgba(255, 255, 255, 0.2);

    padding: 0.5rem 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.1s both;
}

.page-header .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header .breadcrumb a:hover {
    color: var(--accent-color);
}

.page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

/* About Section Enhancement */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-200) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="0.5" fill="rgba(102,126,234,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

/* Company Hero Section */
.company-hero {
    background: linear-gradient(135deg, var(--primary-gradient) 0%, var(--secondary-gradient) 100%);
    color: var(--gray-100);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.company-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="heropattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23heropattern)"/></svg>');
    pointer-events: none;
}

.company-info h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-900)
}

.company-info p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: var(--gray-900)
}

.company-stats {
    margin-top: 3rem;
}

.company-stats .row>div {
    text-align: center;
    padding: 1rem;
}

.company-stats h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.company-stats p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

/* History Timeline */
.history-timeline {
    padding: 80px 0;
    background: white;
    position: relative;
}

.timeline-container {
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-gradient), var(--secondary-gradient));
    transform: translateX(-50%);

}

.history-block {
    position: relative;
    margin-bottom: 4rem;
    background: white;

    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.history-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.history-block:nth-child(even) {
    margin-left: auto;
    text-align: right;
}

.history-block::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-gradient);
    border: 4px solid white;

    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

.history-block:nth-child(odd)::before {
    right: -62px;
}

.history-block:nth-child(even)::before {
    left: -62px;
}

.timeline-year {
    display: inline-block;
    background: var(--primary-gradient);
    color: var(--gray-100);
    padding: 0.5rem 1.5rem;

    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.timeline-content h3 {
    color: var(--primary-gradient);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.1rem;
}



.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="statspattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23statspattern)"/></svg>');
    pointer-events: none;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.95;
}

/* ===========================================
   CTA SECTION - CALL TO ACTION
   =========================================== */

.cta-section {
    padding: 6rem 0;
    background: var(--cta-section);
    color: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: ctaContentSlide 1s ease both;
}

@keyframes ctaContentSlide {
    0% {
        opacity: 1;
        transform: translateY(40px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--btn-destaque);
    border: none;

    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-100);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
    color: var(--gray-100);
    text-decoration: none;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn-cta-primary:hover::before {
    border-color: var(--gray-100);
    left: 100%;
}

.btn-cta-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);

    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-100);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--btn-destaque);
    transform: translateY(-3px) scale(1.05);
    color: var(--gray-100);
    text-decoration: none;
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */

@media (max-width: 1200px) {
    .hero-content {
        padding: 1.5rem;
    }

    .search-container {
        padding: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .search-container {
        padding: 2rem;
        height: auto;
    }

    .feature-card {
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .search-container {
        padding: 1.5rem;
        margin-top: 1rem;
        height: auto;
    }

    .search-form .row>div {
        margin-bottom: 0.75rem;
    }

    .search-form .form-control,
    .search-form .form-select {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }



    .section-title {
        font-size: 2.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .property-features {
        grid-template-columns: 1fr;
    }

    .stat-item {
        margin-bottom: 2rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .search-container {
        padding: 1rem;
    }

    .search-form .form-control,
    .search-form .form-select {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }

    .btn-primary-home {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .property-image-container {
        height: 200px;
    }

    .property-content {
        padding: 1.5rem;
    }



    .stat-number {
        font-size: 2.2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ===========================================
   ACCESSIBILITY & PERFORMANCE
   =========================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-color-scheme: dark) {
    .property-content {
        background-color: var(--gray-300);
        color: var(--gray-200);
    }

    .property-title {
        color: var(--dark-color);
    }

    .property-location {
        color: var(--dark-color);
    }

    .property-description {
        color: var(--dark-color);
    }

    .property-feature span {
        color: var(--dark-color);
    }
}

@media print {

    .hero-section,
    .cta-section,
    .search-container {
        display: none !important;
    }

    .property-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */

.bounce-in {
    animation: none;
}

@keyframes bounceIn {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Property card animation delays */
.property-card {
    animation: bounceIn 0.8s ease both;
    animation-delay: var(--animation-delay, 0s);
}

/* Data delay attributes for property cards */
.property-card[data-delay="0.15s"] {
    --animation-delay: 0.15s;
}

.property-card[data-delay="0.3s"] {
    --animation-delay: 0.3s;
}

.property-card[data-delay="0.45s"] {
    --animation-delay: 0.45s;
}

.property-card[data-delay="0.6s"] {
    --animation-delay: 0.6s;
}

.property-card[data-delay="0.75s"] {
    --animation-delay: 0.75s;
}

.property-card[data-delay="0.9s"] {
    --animation-delay: 0.9s;
}

.property-card[data-delay="1.05s"] {
    --animation-delay: 1.05s;
}

.property-card[data-delay="1.2s"] {
    --animation-delay: 1.2s;
}

.property-card[data-delay="1.35s"] {
    --animation-delay: 1.35s;
}

.property-card[data-delay="1.5s"] {
    --animation-delay: 1.5s;
}

/* Development highlight positioning */
.development-highlight-position {
    position: absolute;
    top: 18px;
    left: 18px;
}

/* Blog page styles */
.newsletter-input-group {
    max-width: 500px;
}

.blog-category-icon {
    width: 60px;
    height: 60px;
}

/* Contact page styles */
.contact-map-iframe {
    border: 0;
}

.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ===========================================
   CONTACT PAGE STYLES
   =========================================== */

/* Hero Section */
.hero-contact {
    background: var(--primary-gradient);
    padding: 80px 0;
    color: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.hero-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contactpattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contactpattern)"/></svg>');
    pointer-events: none;
}

.hero-contact .contact-hero-content {
    position: relative;
    z-index: 2;
}

.hero-contact .contact-hero-image {
    position: relative;
    z-index: 2;
}

.min-vh-50 {
    min-height: 50vh;
}

.contact-quick-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-item-hero {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.contact-item-hero i {
    width: 20px;
    text-align: center;
}

.contact-hero-image {
    text-align: center;
}

.contact-hero-image img {

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-height: 400px;
    object-fit: cover;
}

/* Contact Section */
.contact-section {
    background-color: var(--gray-50);
}

.contact-info-card,
.contact-form-card {
    background: white;
    padding: 2rem;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);

    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-100);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-details p {
    color: #666;
    font-size: 0.95rem;
}

.contact-details a {
    color: var(--primary-color);
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--primary-dark);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--gray-100);

    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-dark);
    color: var(--gray-100);
    transform: translateY(-2px);
}

/* Form Styles */
.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;

    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Search form specific styles */
.search-form .form-control,
.search-form .form-select {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 1px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);

}

.search-form .form-control:focus,
.search-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: #fff;
    transform: translateY(-2px);
}

.btn-primary-home {
    background: var(--btn-destaque);
    border: none;
    width: 100%;
    color: var(--gray-100);
    padding: 0.75rem 2rem;

    transition: all 0.3s;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
}

.btn-primary-home:hover {
    background: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    color: var(--gray-100);
    border: 2px solid var(--btn-destaque);
}




/* Map Section */
.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===========================================
   ABOUT PAGE STYLES
   =========================================== */

/* Page Header Enhancement */
.page-header {
    background: var(--dark-gradient);
    color: var(--gray-100);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    padding-top: 150px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1)"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1)"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05)"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.page-header .page-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.page-header .breadcrumb {
    background: rgba(255, 255, 255, 0.2);

    padding: 0.5rem 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.1s both;
}

.page-header .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header .breadcrumb a:hover {
    color: var(--accent-color);
}

.page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

/* About Section Enhancement */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-200) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="0.5" fill="rgba(102,126,234,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

/* Company Hero Section */
.company-hero {
    background: linear-gradient(135deg, var(--primary-gradient) 0%, var(--secondary-gradient) 100%);
    color: var(--gray-100);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.company-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="heropattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23heropattern)"/></svg>');
    pointer-events: none;
}

.company-info h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-900)
}

.company-info p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: var(--gray-900)
}

.company-stats {
    margin-top: 3rem;
}

.company-stats .row>div {
    text-align: center;
    padding: 1rem;
}

.company-stats h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.company-stats p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

/* History Timeline */
.history-timeline {
    padding: 80px 0;
    background: white;
    position: relative;
}

.timeline-container {
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-gradient), var(--secondary-gradient));
    transform: translateX(-50%);

}

.history-block {
    position: relative;
    margin-bottom: 4rem;
    background: white;

    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.history-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.history-block:nth-child(even) {
    margin-left: auto;
    text-align: right;
}

.history-block::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-gradient);
    border: 4px solid white;

    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

.history-block:nth-child(odd)::before {
    right: -62px;
}

.history-block:nth-child(even)::before {
    left: -62px;
}

.timeline-year {
    display: inline-block;
    background: var(--primary-gradient);
    color: var(--gray-100);
    padding: 0.5rem 1.5rem;

    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.timeline-content h3 {
    color: var(--primary-gradient);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.1rem;
}



.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="statspattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23statspattern)"/></svg>');
    pointer-events: none;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.95;
}

/* ===========================================
   CTA SECTION - CALL TO ACTION
   =========================================== */

.cta-section {
    padding: 6rem 0;
    background: var(--cta-section);
    color: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: ctaContentSlide 1s ease both;
}

@keyframes ctaContentSlide {
    0% {
        opacity: 1;
        transform: translateY(40px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--btn-destaque);
    border: none;

    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-100);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
    color: var(--gray-100);
    text-decoration: none;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn-cta-primary:hover::before {
    border-color: var(--gray-100);
    left: 100%;
}

.btn-cta-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);

    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-100);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--btn-destaque);
    transform: translateY(-3px) scale(1.05);
    color: var(--gray-100);
    text-decoration: none;
}

/* ===========================================
   MODERN PROPERTY CARD STYLES
   =========================================== */

.property-card-modern {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.property-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.property-card-modern:hover .property-image-overlay {
    opacity: 0.3;
}

.property-card-modern:hover .property-actions-modern {
    opacity: 1;
    transform: translateY(0);
}

/* Image Container */
.property-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.property-image-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.property-image-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-card-modern:hover .property-image {
    transform: scale(1.05);
}

.property-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

/* Status Badge */
.property-status-modern {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
}

.status-badge-modern {
    background: var(--white);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.status-badge-modern.à-venda {
    background: linear-gradient(135deg, var(--success-color), var(--success-light));
    color: var(--white);
}

.status-badge-modern.para-alugar {
    background: linear-gradient(135deg, var(--info-color), var(--info-light));
    color: var(--white);
}

/* Action Buttons */
.property-actions-modern {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.action-btn-modern {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.action-btn-modern:hover {
    transform: scale(1.1);
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.action-btn-modern.favorite-btn:hover {
    color: var(--danger-color);
}

.action-btn-modern.share-btn:hover {
    color: var(--info-color);
}

/* Content Section */
.property-content-modern {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Price Section */
.property-price-section {
    margin-bottom: 8px;
}

.property-price-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.property-price-consult {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-600);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Title */
.property-title-modern {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    transition: color 0.3s ease;
}

.property-card-modern:hover .property-title-modern {
    color: var(--primary-color);
}

/* Location */
.property-location-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.property-location-modern i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.location-text {
    color: var(--gray-700);
    font-weight: 500;
}

/* Features Grid */
.property-features-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 16px 0;
}

.feature-item-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item-modern:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-item-modern:hover .feature-icon-modern i,
.feature-item-modern:hover .feature-value,
.feature-item-modern:hover .feature-label {
    color: var(--white);
}

.feature-icon-modern {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-content-modern {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
    transition: color 0.3s ease;
}

.feature-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Footer */
.footer-modern {
    margin-top: auto;
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-main {
    margin-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col {
    margin-bottom: 2rem;
}

.footer-col-brand {
    padding-right: 2rem;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-logo-placeholder {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-creci {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-heading {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--gray-300);
}

.contact-item i {
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    font-weight: 500;
}

.contact-value {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal-link {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--primary-color);
}

.footer-separator {
    color: var(--gray-600);
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col-brand {
        padding-right: 0;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-legal-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-modern {
        padding: 2rem 0 1rem;
    }

    .footer-social {
        gap: 0.75rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .contact-item {
        gap: 0.75rem;
    }
}

.btn-view-details-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(41, 121, 185, 0.3);
    width: 100%;
    justify-content: center;
}

.btn-view-details-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41, 121, 185, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-view-details-modern .btn-icon {
    transition: transform 0.3s ease;
}

.btn-view-details-modern:hover .btn-icon {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .property-card-modern {
        margin-bottom: 20px;
    }

    .property-image-container {
        height: 200px;
    }

    .property-content-modern {
        padding: 20px;
    }

    .property-price-modern {
        font-size: 1.3rem;
    }

    .property-title-modern {
        font-size: 1rem;
    }

    .property-features-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .feature-item-modern {
        padding: 10px;
        gap: 8px;
    }

    .feature-icon-modern {
        width: 28px;
        height: 28px;
    }

    .feature-value {
        font-size: 0.9rem;
    }

    .feature-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .property-features-modern {
        grid-template-columns: 1fr;
    }

    .property-actions-modern {
        opacity: 1;
        transform: none;
    }

    .action-btn-modern {
        width: 40px;
        height: 40px;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.property-card-modern {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.property-card-modern:nth-child(1) {
    animation-delay: 0.1s;
}

.property-card-modern:nth-child(2) {
    animation-delay: 0.2s;
}

.property-card-modern:nth-child(3) {
    animation-delay: 0.3s;
}

.property-card-modern:nth-child(4) {
    animation-delay: 0.4s;
}

.property-card-modern:nth-child(5) {
    animation-delay: 0.5s;
}

.property-card-modern:nth-child(6) {
    animation-delay: 0.6s;
}

/* ===========================================
   MODERN NAVBAR STYLES
   =========================================== */

.navbar-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary-color);
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);

    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-modern.scrolled {

    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.navbar-modern.scrolled .navbar-container {
    height: 60px;
    display: flex;
    justify-content: space-between;
}

.navbar-modern.scrolled .brand-logo {
    height: 45px;
    width: auto;
}

.navbar-modern.scrolled .brand-placeholder {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
}

.navbar-modern.scrolled .user-avatar {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo Section */
.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.brand-link:hover {
    transform: scale(1.05);
}

.brand-logo {
    height: 50px;
    width: auto;
    margin-right: 15px;
    border-radius: 8px;
}

.brand-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 8px;
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(41, 153, 185, 0.3);
}

.brand-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Navigation Menu */
.navbar-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;

    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(41, 153, 185, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(41, 153, 185, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.nav-text {
    margin-left: 8px;
}

/* User Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    /* background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); */
    color: var(--white);
    text-decoration: none;
    /* border-radius: 25px; */
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;

    border: 2px solid var(--primary-color);
}

.btn-login:hover {
    color: var(--white);


    border-color: var(--white);
}

.btn-login i {
    font-size: 0.9rem;
}

.user-menu {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background: transparent;
    border: 1px solid var(--gray-300);

    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    max-width: 200px;
}

.user-btn:hover {
    background: var(--gray-50);
    border-color: var(--primary-color);
}

.user-btn a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.user-name {
    font-weight: 500;
    color: var(--gray-700);
}

.user-arrow {
    font-size: 0.8rem;
    color: var(--gray-500);
    transition: transform 0.3s ease;
}

.user-menu:hover .user-arrow {
    transform: rotate(180deg);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 10px;
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px 12px 0 0;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar-large {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.user-details {
    flex: 1;
}

.user-name-large {
    font-weight: 600;
    color: white;
    margin-bottom: 2px;
}

.user-email {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.dropdown-menu {
    padding: 10px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--gray-700);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: var(--gray-50);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-item i {
    width: 18px;
    text-align: center;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: transparent;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(41, 153, 185, 0.1);
}

.mobile-menu-btn.active {
    background: rgba(41, 153, 185, 0.1);
}

.hamburger {
    display: flex;
    flex-direction: column;
    width: 25px;
    height: 18px;
    position: relative;
    justify-content: space-around;
}


.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.show {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.mobile-brand {
    display: flex;
    align-items: center;
    color: white;
}

.mobile-brand-logo {
    height: 40px;
    width: auto;
    margin-right: 12px;
    border-radius: 6px;
}

.mobile-brand-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    margin-right: 12px;
    color: white;
    font-size: 1rem;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.mobile-nav-item {
    margin-bottom: 5px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding-left: 15px;
    padding-right: 15px;
}

.mobile-nav-link:hover {
    background: rgba(41, 153, 185, 0.1);
    color: var(--primary-color);
    padding-left: 20px;
}

.mobile-nav-link i {
    width: 20px;
    text-align: center;
    color: var(--primary-color);
}

/* Mobile User Section */
.mobile-user-section {
    border-top: 1px solid var(--gray-200);
    padding-top: 20px;
    margin-top: 20px;
}

.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.mobile-user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-user-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-user-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-user-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.mobile-user-details {
    flex: 1;
}

.mobile-user-name {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.mobile-user-email {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.mobile-user-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-user-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.mobile-user-link:hover {
    background: rgba(41, 153, 185, 0.1);
    color: var(--primary-color);
    padding-left: 20px;
}

.mobile-user-link i {
    width: 18px;
    text-align: center;
    color: var(--primary-color);
}

.mobile-user-link.logout {
    color: var(--danger-color);
}

.mobile-user-link.logout i {
    color: var(--danger-color);
}

.mobile-user-link.logout:hover {
    background: rgba(220, 53, 69, 0.1);
}

/* Mobile Auth Section */
.mobile-auth-section {
    border-top: 1px solid var(--gray-200);
    padding-top: 20px;
    margin-top: 20px;
}

.mobile-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(41, 153, 185, 0.3);
}

.mobile-auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41, 153, 185, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.mobile-auth-btn.login {
    background: linear-gradient(135deg, var(--success-color), var(--success-dark));
}

.mobile-auth-btn.login:hover {
    background: linear-gradient(135deg, var(--success-dark), var(--success-color));
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

/* Responsive Design for Mobile Menu */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        width: 100%;
        align-items: center;
    }

    .navbar-menu {
        display: none;
    }

    .navbar-actions {
        gap: 10px;
    }

    .user-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .user-name {
        display: none;
    }

    .mobile-menu {
        width: 280px;
    }

    .mobile-menu-content {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100vw;
    }

    .mobile-menu-header {
        padding: 15px;
    }

    .mobile-menu-content {
        padding: 15px;
    }

    .mobile-nav-link {
        padding: 12px 10px;
    }

    .mobile-user-link {
        padding: 10px 12px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 15px;
        height: 60px;
    }

    .navbar-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 12px 12px;
        overflow: hidden;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-list.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 15px 20px;
        justify-content: flex-start;
    }

    .nav-link:hover {
        background: var(--gray-50);
        transform: none;
    }

    .navbar-actions {
        gap: 10px;
    }

    .user-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        width: auto;
    }

    .user-name {
        display: none;
    }
}

/* ===========================================
   PROPERTY DETAIL PAGE STYLES
   =========================================== */

/* Property Features - Compact Version */
.property-features {
    margin-bottom: 2rem;
}

.property-feature {
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.property-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.property-feature i {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.property-feature:hover i {
    opacity: 1;
}

.property-feature-value {
    font-size: 1.1rem;
    line-height: 1.2;
}

.property-feature-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

/* Extra small text utility */
.x-small {
    font-size: 0.7rem !important;
}

/* Responsive adjustments for compact features */
@media (max-width: 768px) {
    .property-feature {
        min-height: 70px;
        padding: 0.75rem !important;
    }

    .property-feature i {
        font-size: 1rem !important;
        margin-bottom: 0.25rem !important;
    }

    .property-feature-value {
        font-size: 1rem;
    }

    .property-feature-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .property-feature {
        min-height: 65px;
        padding: 0.5rem !important;
    }

    .property-feature i {
        font-size: 0.9rem !important;
        margin-bottom: 0.25rem !important;
    }

    .property-feature-value {
        font-size: 0.9rem;
    }

    .property-feature-text {
        font-size: 0.65rem;
    }
}

/* ===========================================
   PROPERTIES LIST PAGE STYLES
   =========================================== */

.properties-list-page {
    min-height: 100vh;

}

/* Page Header */
.page-header {
    padding: 80px 0 60px;

    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05"/><circle cx="10" cy="50" r="0.5" fill="white" opacity="0.05"/><circle cx="90" cy="30" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.section-title-modern {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle-modern {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Filters Section */
.filters-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 3rem;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-200);
}

.filters-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

.filters-title i {
    color: var(--primary-color);
}

.btn-toggle-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.btn-toggle-filters:hover {
    background: var(--gray-50);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-toggle-filters.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.filters-row-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 20px;
    margin-bottom: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0;
}

.filter-label i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.form-control,
.form-select {
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(41, 153, 185, 0.1);
    outline: none;
}

.filter-actions {
    display: flex;
    gap: 12px;
}

.filters-advanced {
    border-top: 1px solid var(--gray-200);
    padding-top: 25px;
    margin-top: 25px;
}

.filters-row-advanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* Active Filters */
.active-filters {
    margin-top: 20px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.active-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.active-filters-title {
    font-weight: 600;
    color: var(--gray-900);
}

.active-filters-count {
    background: var(--primary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.active-filters-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.active-filter-tag {
    background: white;
    color: var(--gray-700);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 6px;
}

.active-filter-tag::before {
    content: '×';
    color: var(--gray-500);
    font-weight: bold;
    cursor: pointer;
    padding: 0 4px;
}

/* No Properties Found */
.no-properties-found {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.no-properties-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(41, 153, 185, 0.3);
}

.no-properties-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.no-properties-text {
    color: var(--gray-600);
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.no-properties-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Properties Grid */
.properties-grid {
    margin-bottom: 40px;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination-modern {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-item {
    margin: 0;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--gray-600);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(41, 153, 185, 0.3);
}

.page-item.disabled .page-link {
    color: var(--gray-400);
    cursor: not-allowed;
}

.page-item.disabled .page-link:hover {
    background: transparent;
    transform: none;
    color: var(--gray-400);
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-left: 4px solid var(--primary-color);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    overflow: hidden;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-notification.toast-success {
    border-left-color: var(--success-color);
}

.toast-notification.toast-error {
    border-left-color: var(--danger-color);
}

.toast-notification.toast-warning {
    border-left-color: var(--warning-color);
}

.toast-notification.toast-info {
    border-left-color: var(--info-color);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
}

.toast-content i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.toast-content span {
    flex: 1;
    font-size: 0.95rem;
    color: var(--gray-900);
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 4px;
    margin-left: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.toast-close:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

/* Responsive Design */
@media (max-width: 992px) {
    .filters-row-main {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .filter-actions {
        justify-content: center;
    }

    .section-title-modern {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }

    .section-title-modern {
        font-size: 2rem;
    }

    .section-subtitle-modern {
        font-size: 1rem;
    }

    .filters-section {
        padding: 20px;
    }

    .filters-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .filters-row-advanced {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .active-filters-list {
        justify-content: center;
    }

    .no-properties-actions {
        flex-direction: column;
        align-items: center;
    }

    .pagination-modern {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .filters-row-main {
        gap: 12px;
    }

    .filter-group {
        gap: 6px;
    }

    .form-control,
    .form-select {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .toast-notification {
        left: 10px;
        right: 10px;
        min-width: auto;
    }
}

/* Otimizações responsivas para página de detalhes da propriedade */
@media (max-width: 768px) {
    .property-detail-section {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .property-gallery img {
        height: 250px !important;
    }

    .no-image-placeholder {
        height: 200px !important;
    }

    .property-description .card-body,
    .property-amenities .card-body {
        padding: 1rem !important;
    }

    .property-price {
        padding: 0.75rem 1.5rem !important;
    }

    .property-price .h2 {
        font-size: 1.5rem !important;
    }

    .feature-item {
        padding: 0.75rem !important;
        font-size: 0.9rem !important;
    }

    .section-title-modern {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .property-gallery img {
        height: 200px !important;
    }

    .no-image-placeholder {
        height: 150px !important;
    }

    .property-price .h2 {
        font-size: 1.25rem !important;
    }

    .section-title-modern {
        font-size: 1.25rem !important;
    }

    .feature-item {
        padding: 0.5rem !important;
        font-size: 0.85rem !important;
    }
}

/* Footer Notifications */
.footer-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 400px;
    border-left: 4px solid var(--primary-color);
}

.footer-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.footer-notification.success {
    border-left-color: var(--success-color);
}

.footer-notification.success .fas {
    color: var(--success-color);
}

.footer-notification.error {
    border-left-color: var(--danger-color);
}

.footer-notification.error .fas {
    color: var(--danger-color);
}

.footer-notification.warning {
    border-left-color: var(--warning-color);
}

.footer-notification.warning .fas {
    color: var(--warning-color);
}

.footer-notification.info {
    border-left-color: var(--info-color);
}

.footer-notification.info .fas {
    color: var(--info-color);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-content .fas {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.notification-content span {
    color: var(--dark-color);
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Responsividade para notificações */
@media (max-width: 768px) {
    .footer-notification {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}