/* =============================================================
   LDU (Land/Property Unit) - Styles
   Matches Larrynx Corporate Theme: Deep Navy / Rich Gold
   Primary: #0B1D35  |  Mid Navy: #0F2847  |  Gold: #D4A017
   ============================================================= */

:root {
    /* --- Core Palette --- */
    --navy:          #0B1D35;
    --navy-mid:      #0F2847;
    --navy-light:    #163a5f;
    --navy-dark:     #0A1929;

    /* --- Gold / Accent --- */
    --gold:          #D4A017;
    --gold-bright:   #E6B800;
    --gold-dark:     #C99700;
    --gold-deep:     #B8860B;
    --gold-glow:     rgba(212, 160, 23, 0.25);

    /* --- Neutrals --- */
    --gray-100:      #F8F9FA;
    --gray-200:      #E8EDF2;
    --gray-300:      #E0E6ED;
    --gray-500:      #6c757d;
    --gray-700:      #495057;
    --gray-800:      #1A2332;
    --white:         #FFFFFF;

    /* --- Text --- */
    --text-dark:     #212529;
    --text-body:     #E8EDF2;
    --text-muted:    rgba(255, 255, 255, 0.75);
    --text-nav:      #E0E6ED;

    /* --- Semantic --- */
    --accent-blue:   #1976D2;
    --success:       #28a745;
    --danger:        #dc3545;
    --info:          #17a2b8;

    /* --- Gradients --- */
    --gradient-navy:  linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    --gradient-hero:  linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-mid) 100%);
    --gradient-gold:  linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    --gradient-gold-hover: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    --gradient-gold-text: linear-gradient(135deg, #FFD700 0%, #DAA520 50%, #B8860B 100%);

    /* --- Shadows --- */
    --shadow-gold:   0 4px 14px rgba(212, 160, 23, 0.25);
    --shadow-gold-lg:0 8px 25px rgba(212, 160, 23, 0.35);
    --shadow-card:   0 10px 40px rgba(0, 0, 0, 0.06);
    --shadow-card-lg:0 20px 50px rgba(11, 29, 53, 0.12);
    --shadow-navy:   0 8px 30px rgba(11, 29, 53, 0.25);

    /* --- Borders --- */
    --border-subtle: rgba(255, 255, 255, 0.05);
    --border-gold:   rgba(212, 160, 23, 0.2);
    --border-gold-solid: #B8860B;

    /* --- Radius --- */
    --radius-sm:  8px;
    --radius-md:  12px;
    --radius-lg:  16px;
    --radius-xl:  20px;

    /* --- Transitions --- */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    background: var(--white);
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    color: var(--navy);
}

/* --- Utility Classes --- */
.text-ldu-gold  { color: var(--gold) !important; }
.bg-ldu-navy   { background: var(--navy) !important; }
.text-gold-gradient {
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn      { from { opacity: 0; } to { opacity: 1; } }
@keyframes float       { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulseGlow   { 0%, 100% { box-shadow: 0 0 0 0 rgba(212,160,23,0.4); } 50% { box-shadow: 0 0 20px 5px rgba(212,160,23,0.15); } }

/* ===== NAVBAR ===== */
.ldu-navbar {
    background: var(--navy-mid);
    box-shadow: 0 1px 0 var(--border-subtle);
    transition: var(--transition);
    z-index: 1050;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-subtle);
}
.ldu-navbar.scrolled {
    box-shadow: var(--shadow-navy);
    padding: 0.5rem 0 !important;
    background: rgba(15, 40, 71, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.ldu-navbar .navbar-brand {
    font-weight: 800;
    color: var(--white) !important;
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}
.ldu-navbar .navbar-brand:hover { color: var(--gold) !important; }
.ldu-navbar .navbar-brand img {
    background: var(--white);
    padding: 6px;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    height: 44px;
    width: auto;
}
.ldu-navbar .nav-link {
    color: var(--text-nav) !important;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0.9rem !important;
    font-size: 0.95rem;
}
.ldu-navbar .nav-link:hover { color: var(--white) !important; }
.ldu-navbar .nav-link.active { color: var(--gold) !important; }
.ldu-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}
.ldu-navbar .nav-link:hover::after,
.ldu-navbar .nav-link.active::after { width: 20px; }
.notif-badge {
    position: absolute;
    top: 2px;
    right: -4px;
    background: var(--danger);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    line-height: 1;
}

/* ===== BUTTONS ===== */
.btn-ldu-gold {
    background: var(--gradient-gold);
    border: none;
    color: var(--gray-800);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
}
.btn-ldu-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
    background: var(--gradient-gold-hover);
    color: var(--gray-800);
}
.btn-ldu-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
}
.btn-ldu-outline:hover {
    background: rgba(212, 160, 23, 0.1);
    border-color: var(--gold-bright);
    color: var(--gold-bright);
    transform: translateY(-2px);
}
.btn-ldu-white {
    background: var(--white);
    color: var(--gray-800);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
    border: none;
}
.btn-ldu-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: var(--gray-800);
}
.btn-ldu-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-ldu-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ===== HERO ===== */
.ldu-hero {
    background: var(--gradient-hero);
    color: var(--white);
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}
.ldu-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(212, 160, 23, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(30, 58, 95, 0.5) 0%, transparent 50%);
    pointer-events: none;
}
.ldu-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    opacity: 0.4;
}
.ldu-hero > * { position: relative; z-index: 1; }
.ldu-hero .tagline {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}
.ldu-hero h1 {
    font-size: clamp(2rem, 5.5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}
.ldu-hero h1 .gold {
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ldu-hero .lead {
    font-size: 1.05rem;
    max-width: 700px;
    color: var(--text-body);
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}
.ldu-hero .hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 35px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}
.ldu-hero .hero-stat { text-align: center; }
.ldu-hero .hero-stat .number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
    line-height: 1;
}
.ldu-hero .hero-stat .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SEARCH BAR (Hero) ===== */
.ldu-search-box {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-top: 35px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}
.ldu-search-box .form-control,
.ldu-search-box .form-select {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: var(--transition);
}
.ldu-search-box .form-control::placeholder { color: rgba(255, 255, 255, 0.45); }
.ldu-search-box .form-control:focus,
.ldu-search-box .form-select:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
    color: #fff;
}
.ldu-search-box .form-select option { background: var(--navy); color: #fff; }
.ldu-search-box label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== SECTIONS ===== */
.ldu-section { padding: 90px 0; position: relative; }
.ldu-section-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    text-align: center;
    position: relative;
}
.ldu-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 15px auto 0;
    border-radius: 3px;
    box-shadow: var(--shadow-gold);
}
.ldu-section-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
}
.ldu-bg-light {
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}
.ldu-bg-navy {
    background: var(--gradient-navy);
    color: #fff;
}
.ldu-bg-navy .ldu-section-title { color: #fff; }
.ldu-bg-navy .ldu-section-title::after { background: var(--gradient-gold); }
.ldu-bg-navy .ldu-section-subtitle { color: var(--text-muted); }

/* ===== CATEGORY CARDS ===== */
.category-card {
    background: var(--white);
    border: 1px solid rgba(11, 29, 53, 0.08);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    color: var(--text-dark);
}
.category-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.category-card:hover::before { transform: scaleX(1); }
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-lg);
    border-color: rgba(212, 160, 23, 0.3);
    color: var(--text-dark);
}
.category-card .icon {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 15px;
    transition: var(--transition);
}
.category-card:hover .icon { color: var(--gold); transform: scale(1.1); }
.category-card h5 { font-size: 1.05rem; margin-bottom: 8px; }
.category-card p { color: var(--gray-500); font-size: 0.9rem; margin: 0; }

/* ===== PROPERTY CARDS ===== */
.property-card {
    background: var(--white);
    border: 1px solid rgba(11, 29, 53, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-dark);
}
.property-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-lg);
    color: var(--text-dark);
}
.property-card .card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f0f0f0;
}
.property-card .card-img-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.property-card:hover .card-img-wrapper img { transform: scale(1.06); }
.property-card .card-badge {
    position: absolute; top: 12px; left: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}
.badge-sale     { background: var(--success); color: #fff; }
.badge-rent     { background: var(--accent-blue); color: #fff; }
.badge-lease    { background: var(--gold); color: var(--gray-800); }
.badge-auction  { background: var(--danger); color: #fff; }
.badge-featured {
    position: absolute; top: 12px; right: 12px;
    background: var(--gold);
    color: var(--gray-800);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
}
.badge-verified {
    position: absolute; bottom: 12px; right: 12px;
    background: rgba(40, 167, 69, 0.9);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}
.property-card .card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.property-card .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}
.property-card .card-location { color: var(--gray-500); font-size: 0.85rem; margin-bottom: 12px; }
.property-card .card-location i { color: var(--gold); margin-right: 4px; }
.property-card .card-features {
    display: flex; gap: 15px; flex-wrap: wrap;
    margin-bottom: 12px; font-size: 0.85rem; color: var(--gray-700);
}
.property-card .card-features span i { color: var(--gold); margin-right: 4px; }
.property-card .card-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-top: auto;
}
.property-card .card-price small { font-size: 0.8rem; font-weight: 500; color: var(--gray-500); }

/* ===== HOW IT WORKS ===== */
.step-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}
.step-number {
    width: 60px; height: 60px;
    background: var(--gradient-gold);
    color: var(--gray-800);
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-gold);
}
.step-card h5 { font-size: 1.1rem; margin-bottom: 10px; }
.step-card p { color: var(--gray-500); font-size: 0.95rem; }

/* ===== FEATURE BOXES ===== */
.feature-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    border-left: 5px solid var(--gold);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    height: 100%;
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}
.feature-box i { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; }
.feature-box h4 { font-size: 1.2rem; margin-bottom: 12px; }
.feature-box p { color: var(--gray-500); font-size: 0.95rem; margin: 0; }

/* ===== GLASS CARD (Dark sections) ===== */
.glass-card {
    background: rgba(15, 40, 71, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}
.glass-card:hover {
    background: rgba(15, 40, 71, 0.75);
    border-color: var(--gold);
    transform: translateY(-5px);
}

/* ===== STAKEHOLDER SECTION ===== */
.stakeholder-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.stakeholder-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    transform: translateY(-5px);
}
.stakeholder-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 15px; }
.stakeholder-card h5 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.stakeholder-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ===== DASHBOARD ===== */
.ldu-dashboard { padding-top: 100px; min-height: 100vh; background: var(--gray-100); }
.dashboard-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 0;
    box-shadow: var(--shadow-card);
    position: sticky;
    top: 100px;
}
.dashboard-sidebar .nav-link {
    color: var(--gray-700);
    padding: 12px 24px;
    font-size: 0.95rem;
    border-left: 3px solid transparent;
    transition: var(--transition);
}
.dashboard-sidebar .nav-link:hover,
.dashboard-sidebar .nav-link.active {
    color: var(--gold);
    background: rgba(212, 160, 23, 0.05);
    border-left-color: var(--gold);
}
.dashboard-sidebar .nav-link i { width: 24px; margin-right: 8px; text-align: center; }
.dashboard-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-card);
}
.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: var(--transition);
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.stat-card .stat-icon {
    width: 50px; height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
}
.stat-card .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
}
.stat-card .stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== PROPERTY DETAIL ===== */
.property-detail-section { padding-top: 100px; }
.property-gallery {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #f0f0f0;
}
.property-gallery .main-image { width: 100%; height: 450px; object-fit: cover; }
.property-gallery .thumb {
    width: 80px; height: 60px; object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    opacity: 0.7;
}
.property-gallery .thumb:hover,
.property-gallery .thumb.active { border-color: var(--gold); opacity: 1; }
.property-detail-info h1 { font-size: 1.8rem; margin-bottom: 10px; }
.property-detail-price {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
}
.property-detail-price small { font-size: 1rem; font-weight: 500; color: var(--gray-500); }
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
}
.info-item i { color: var(--gold); width: 20px; text-align: center; }
.info-item .label { font-size: 0.8rem; color: var(--gray-500); display: block; }
.info-item .value { font-size: 0.95rem; font-weight: 600; color: var(--navy); }

/* ===== FORMS ===== */
.ldu-form .form-label {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9rem;
    margin-bottom: 6px;
}
.ldu-form .form-control,
.ldu-form .form-select {
    border: 1px solid #dee2e6;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
}
.ldu-form .form-control:focus,
.ldu-form .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}
.ldu-form .form-text { font-size: 0.8rem; }

/* ===== MARKETPLACE FILTERS ===== */
.filter-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-card);
    position: sticky;
    top: 100px;
}
.filter-sidebar h5 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
}
.filter-group { margin-bottom: 20px; }
.filter-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    display: block;
}

/* ===== LOGIN / REGISTER ===== */
.auth-section {
    padding-top: 120px;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(11, 29, 53, 0.03) 0%, rgba(212, 160, 23, 0.03) 100%);
}
.auth-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    margin: 0 auto;
}
.auth-card .nav-tabs .nav-link {
    color: var(--gray-500);
    font-weight: 600;
    border: none;
    padding: 12px 20px;
}
.auth-card .nav-tabs .nav-link.active {
    color: var(--gold);
    border-bottom: 3px solid var(--gold);
    background: transparent;
}

/* ===== FOOTER ===== */
.ldu-footer {
    background: var(--gradient-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 25px;
    font-size: 0.95rem;
}
.ldu-footer h5 { color: #fff; font-weight: 700; margin-bottom: 20px; }
.ldu-footer p { color: rgba(255, 255, 255, 0.7); line-height: 1.7; }
.ldu-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}
.ldu-footer a:hover { color: var(--gold); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
    display: flex;
    align-items: center;
    transition: var(--transition);
    font-size: 0.9rem;
}
.footer-links li a:hover { transform: translateX(5px); color: var(--gold); }
.footer-links li a i { margin-right: 8px; color: var(--gold); font-size: 0.7rem; }
.social-icon {
    font-size: 1.4rem;
    margin-right: 18px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}
.social-icon:hover { color: var(--gold); transform: translateY(-3px); }
.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== PAGINATION ===== */
.ldu-pagination .page-link {
    color: var(--navy);
    border-color: #dee2e6;
    border-radius: var(--radius-sm);
    margin: 0 3px;
    padding: 8px 14px;
    font-weight: 600;
}
.ldu-pagination .page-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--gray-800);
}
.ldu-pagination .page-item.active .page-link {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

/* ===== BACK TO TOP ===== */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--gray-800);
    border: none;
    font-size: 1.1rem;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.4);
    cursor: pointer;
}
.back-to-top-btn.visible { opacity: 1; visibility: visible; }
.back-to-top-btn:hover { transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .ldu-hero { min-height: auto; padding: 120px 0 80px; }
    .ldu-hero h1 { font-size: 2rem; }
    .ldu-section { padding: 70px 0; }
    .ldu-section-title { font-size: 1.8rem; }
    .property-gallery .main-image { height: 300px; }
    .dashboard-sidebar { position: static; margin-bottom: 30px; }
    .filter-sidebar { position: static; margin-bottom: 30px; }
}
@media (max-width: 768px) {
    .ldu-hero h1 { font-size: 1.7rem; }
    .ldu-section-title { font-size: 1.5rem; }
    .ldu-hero .hero-stats { gap: 15px; }
    .ldu-hero .hero-stat .number { font-size: 1.6rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .property-gallery .main-image { height: 220px; }
    .info-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
    .ldu-hero h1 { font-size: 1.4rem; }
    .ldu-section { padding: 50px 0; }
    .info-grid { grid-template-columns: 1fr; }
    .ldu-search-box { padding: 20px; }
}
