@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #4B0082;
    --primary-light: #7B1FA2;
    --primary-dark: #3A006A;
    --secondary: #E60023;
    --secondary-light: #FF1A3E;
    --white: #FFFFFF;
    --light-bg: #F8FAFC;
    --lighter-bg: #F1F5F9;
    --dark: #1E293B;
    --text: #334155;
    --text-light: #64748B;
    --text-lighter: #94A3B8;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --success: #10B981;
    --warning: #F59E0B;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', 'Inter', sans-serif; background: var(--white); color: var(--text); -webkit-font-smoothing: antialiased; }

/* ==================== NAVBAR ==================== */
.navbar { background: var(--white) !important; box-shadow: 0 2px 20px rgba(0,0,0,0.06); padding: 0; height: 72px; transition: var(--transition); }
.navbar .container, .navbar .container-fluid { height: 100%; }
.navbar-brand { display: flex; align-items: center; padding: 0; margin-right: 24px; height: 100%; }
.navbar-logo { height: 38px; width: auto; display: block; }
.city-selector-wrap { display: flex; align-items: center; margin-right: 12px; cursor: pointer; }
.btn-city-select { background: var(--light-bg); border: 1px solid var(--border); border-radius: 50px; padding: 8px 18px; font-size: 0.85rem; font-weight: 500; color: var(--dark); font-family: 'Poppins', sans-serif; display: flex; align-items: center; gap: 6px; transition: var(--transition); cursor: pointer; }
.btn-city-select:hover { background: var(--lighter-bg); border-color: var(--primary); color: var(--primary); }
.btn-city-select i { color: var(--secondary); font-size: 0.95rem; }
.navbar .nav-link { color: var(--text) !important; font-weight: 500; font-size: 0.9rem; padding: 24px 14px !important; transition: var(--transition); position: relative; font-family: 'Poppins', sans-serif; }
.navbar .nav-link:hover { color: var(--primary) !important; }
.navbar .navbar-nav { align-items: center; height: 100%; }
.navbar-nav .nav-item { display: flex; align-items: center; height: 100%; }
.navbar .nav-item .btn-nav-cta { background: var(--secondary); color: #fff !important; padding: 10px 24px !important; border-radius: 50px; font-weight: 600; font-size: 0.85rem; margin: 0 0 0 12px; transition: var(--transition); border: none; font-family: 'Poppins', sans-serif; display: inline-flex; align-items: center; gap: 6px; }
.navbar .nav-item .btn-nav-cta:hover { background: #c5001e; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(230,0,35,0.3); }
.navbar .nav-item .btn-nav-login { color: var(--primary) !important; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.navbar .nav-item .btn-nav-register { background: var(--primary); color: #fff !important; padding: 10px 24px !important; border-radius: 50px; font-weight: 600; font-size: 0.85rem; margin: 0 0 0 8px; transition: var(--transition); font-family: 'Poppins', sans-serif; display: inline-flex; align-items: center; gap: 6px; }
.navbar .nav-item .btn-nav-register:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 15px rgba(75,0,130,0.3); }
.navbar .nav-item .btn-nav-dashboard { color: var(--primary) !important; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.navbar .navbar-toggler { border: none; padding: 4px 8px; color: var(--dark); height: 40px; }
.navbar .navbar-toggler:focus { box-shadow: none; }
.navbar .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(30,41,59,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* ==================== CITY SELECTOR MODAL ==================== */
.city-modal .modal-content { border-radius: var(--radius-lg); border: none; box-shadow: var(--shadow-xl); padding: 24px; }
.city-modal .modal-header { border: none; padding: 0 0 16px; }
.city-modal .modal-title { font-weight: 700; font-size: 1.2rem; }
.city-modal .modal-body { padding: 0; }
.city-modal .city-search { position: relative; margin-bottom: 20px; }
.city-modal .city-search input { width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 16px 12px 44px; font-size: 0.9rem; font-family: 'Inter', sans-serif; outline: none; transition: var(--transition); }
.city-modal .city-search input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(75,0,130,0.1); }
.city-modal .city-search i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-lighter); font-size: 1rem; }
.city-modal .section-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-lighter); margin-bottom: 12px; }
.city-modal .city-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; margin-bottom: 20px; }
.city-modal .city-item { padding: 12px 16px; border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); border: 1px solid var(--border-light); display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-weight: 500; font-size: 0.9rem; }
.city-modal .city-item:hover { background: var(--light-bg); border-color: var(--primary); color: var(--primary); }
.city-modal .city-item i { color: var(--text-lighter); font-size: 1rem; }
.city-modal .city-item.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.city-modal .city-item.active i { color: rgba(255,255,255,0.7); }

/* ==================== HERO ==================== */
.hero-section { position: relative; min-height: 520px; display: flex; align-items: center; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); overflow: hidden; }
.hero-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 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,138.7C672,128,768,160,864,181.3C960,203,1056,213,1152,197.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom; background-size: cover; }
.hero-content { position: relative; z-index: 2; padding: 60px 0; text-align: center; width: 100%; }
.hero-title { font-size: 2.8rem; font-weight: 800; color: #fff; margin-bottom: 12px; letter-spacing: -0.5px; line-height: 1.2; }
.hero-title span { color: #FFD700; }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; font-weight: 400; max-width: 550px; margin-left: auto; margin-right: auto; font-family: 'Inter', sans-serif; }
.search-wrapper { background: #fff; border-radius: var(--radius-lg); padding: 6px; box-shadow: 0 20px 60px rgba(0,0,0,0.25); max-width: 860px; margin: 0 auto; }
.search-wrapper .search-row { display: flex; gap: 0; align-items: stretch; }
.search-wrapper .search-field { flex: 1; padding: 4px; position: relative; }
.search-wrapper .search-field:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 28px; background: var(--border); }
.search-wrapper .search-field select, .search-wrapper .search-field input { width: 100%; border: none; padding: 12px 14px; font-size: 0.9rem; color: var(--text); background: transparent; outline: none; font-family: 'Inter', sans-serif; }
.search-wrapper .search-field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.search-wrapper .search-btn { padding: 4px; }
.search-wrapper .search-btn button { background: var(--secondary); color: #fff; border: none; padding: 14px 32px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: var(--transition); height: 100%; font-family: 'Poppins', sans-serif; white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.search-wrapper .search-btn button:hover { background: #c5001e; }
.hero-actions { margin-top: 28px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn-hero { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: var(--transition); font-family: 'Poppins', sans-serif; }
.hero-actions .btn-hero-wa { background: #25D366; color: #fff; }
.hero-actions .btn-hero-wa:hover { background: #20BD5A; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.35); color: #fff; }
.hero-actions .btn-hero-call { background: rgba(255,255,255,0.15); color: #fff; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); }
.hero-actions .btn-hero-call:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); color: #fff; }
.hero-stats { margin-top: 36px; display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.hero-stats .stat-item { text-align: center; }
.hero-stats .stat-item h3 { font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 2px; }
.hero-stats .stat-item p { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin: 0; font-family: 'Inter', sans-serif; }

/* ==================== SECTIONS ==================== */
.section { padding: 70px 0; }
.section-alt { background: var(--light-bg); }
.section-header { text-align: center; margin-bottom: 44px; }
.section-header h2 { font-size: 1.8rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.section-header p { font-size: 1rem; color: var(--text-light); max-width: 500px; margin: 0 auto; line-height: 1.6; font-family: 'Inter', sans-serif; }
.section-divider { width: 48px; height: 3px; background: var(--secondary); margin: 0 auto 14px; border-radius: 2px; }

/* ==================== PROPERTY CARDS ==================== */
.property-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); height: 100%; border: 1px solid var(--border-light); }
.property-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.property-card .card-image { position: relative; height: 200px; overflow: hidden; }
.property-card .card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.property-card:hover .card-image img { transform: scale(1.05); }
.property-card .card-badge { position: absolute; top: 10px; padding: 3px 12px; border-radius: 4px; font-size: 0.65rem; font-weight: 600; z-index: 2; text-transform: uppercase; letter-spacing: 0.5px; }
.property-card .badge-featured { left: 10px; background: var(--secondary); color: #fff; }
.property-card .badge-verified { right: 10px; background: var(--success); color: #fff; }
.property-card .badge-type { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,0.65); color: #fff; padding: 3px 12px; border-radius: 4px; font-size: 0.7rem; font-weight: 500; z-index: 2; }
.property-card .badge-price { position: absolute; bottom: 10px; left: 10px; background: var(--primary); color: #fff; padding: 5px 14px; border-radius: 4px; font-size: 0.85rem; font-weight: 700; z-index: 2; }
.property-card .card-body { padding: 16px; }
.property-card .prop-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.4; }
.property-card .prop-title a { color: var(--dark); text-decoration: none; }
.property-card .prop-title a:hover { color: var(--primary); }
.property-card .prop-location { font-size: 0.8rem; color: var(--text-light); margin-bottom: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.property-card .prop-location i { margin-right: 4px; color: var(--secondary); font-size: 0.75rem; }
.property-card .prop-price { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.property-card .prop-price small { font-size: 0.75rem; color: var(--text-light); font-weight: 400; }
.property-card .prop-details { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--border-light); }
.property-card .prop-details span { font-size: 0.78rem; color: var(--text-light); display: flex; align-items: center; gap: 4px; }
.property-card .prop-details span i { color: var(--primary); font-size: 0.8rem; }
.property-card .prop-actions { display: flex; gap: 6px; }
.property-card .prop-actions .btn { flex: 1; border-radius: 6px; font-size: 0.78rem; padding: 7px; font-weight: 600; font-family: 'Poppins', sans-serif; display: inline-flex; align-items: center; justify-content: center; gap: 4px; }
.property-card .prop-actions .btn-wa { background: #25D366; color: #fff; border: none; }
.property-card .prop-actions .btn-wa:hover { background: #20BD5A; color: #fff; }
.property-card .prop-actions .btn-call { background: var(--light-bg); color: var(--text); border: 1px solid var(--border); text-decoration: none; }
.property-card .prop-actions .btn-call:hover { background: var(--border); }

/* ==================== BROKER CARDS ==================== */
.broker-card { background: var(--white); border-radius: var(--radius); padding: 24px; text-align: center; border: 1px solid var(--border-light); transition: var(--transition); height: 100%; }
.broker-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.broker-card .broker-avatar { position: relative; width: 72px; height: 72px; margin: 0 auto 14px; }
.broker-card .broker-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.broker-card .broker-initials { width: 72px; height: 72px; border-radius: 50%; background: var(--light-bg); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 700; color: var(--primary); margin: 0 auto; }
.broker-card .broker-verified { position: absolute; bottom: 0; right: 0; color: var(--success); font-size: 1.1rem; background: #fff; border-radius: 50%; line-height: 1; }
.broker-card h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.broker-card .broker-company { font-size: 0.78rem; color: var(--text-light); margin-bottom: 4px; }
.broker-card .broker-city { font-size: 0.75rem; color: var(--text-lighter); margin-bottom: 14px; font-family: 'Inter', sans-serif; }
.broker-card .broker-city i { color: var(--secondary); margin-right: 4px; }
.broker-card .broker-actions { display: flex; gap: 6px; }
.broker-card .broker-actions .btn { flex: 1; border-radius: 6px; font-size: 0.78rem; padding: 8px; font-weight: 600; font-family: 'Poppins', sans-serif; display: inline-flex; align-items: center; justify-content: center; gap: 4px; }
.broker-card .broker-actions .btn-wa { background: #25D366; color: #fff; border: none; text-decoration: none; }
.broker-card .broker-actions .btn-wa:hover { background: #20BD5A; color: #fff; }
.broker-card .broker-actions .btn-call { background: var(--light-bg); color: var(--text); border: 1px solid var(--border); text-decoration: none; }
.broker-card .broker-actions .btn-call:hover { background: var(--border); }

.locality-card { height: 160px; }

/* ==================== CITY / LOCALITY CARDS ==================== */
.city-card { display: block; position: relative; border-radius: var(--radius); overflow: hidden; height: 180px; text-decoration: none; color: #fff; box-shadow: var(--shadow); transition: var(--transition); }
.city-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: #fff; }
.city-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.city-card:hover img { transform: scale(1.08); }
.city-card .city-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 60%, transparent 100%); }
.city-card .city-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; }
.city-card .city-info h5 { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 2px; }
.city-card .city-info p { color: rgba(255,255,255,0.75); font-size: 0.78rem; margin: 0; font-family: 'Inter', sans-serif; }

/* ==================== FEATURES ==================== */
.feature-card { text-align: center; padding: 30px 20px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--border-light); transition: var(--transition); height: 100%; }
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.feature-card .feature-icon { width: 56px; height: 56px; margin: 0 auto 16px; background: var(--light-bg); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--primary); transition: var(--transition); }
.feature-card:hover .feature-icon { background: var(--primary); color: #fff; }
.feature-card h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.feature-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; margin: 0; font-family: 'Inter', sans-serif; }

/* ==================== PARTNER ==================== */
.partner-section { background: var(--primary); padding: 50px 0; }
.partner-section h2 { color: #fff; font-size: 1.6rem; font-weight: 700; margin-bottom: 6px; }
.partner-section p { color: rgba(255,255,255,0.7); margin-bottom: 20px; font-family: 'Inter', sans-serif; font-size: 0.95rem; }
.partner-section .btn-partner { background: #fff; color: var(--primary); padding: 12px 32px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); font-family: 'Poppins', sans-serif; }
.partner-section .btn-partner:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); color: var(--primary); }
.partner-section .btn-partner-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.partner-section .btn-partner-outline:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ==================== TESTIMONIALS ==================== */
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 24px; border: 1px solid var(--border-light); height: 100%; transition: var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card .testi-stars { color: #F59E0B; font-size: 0.85rem; margin-bottom: 10px; }
.testimonial-card p { font-size: 0.88rem; color: var(--text); line-height: 1.6; margin-bottom: 14px; font-style: italic; font-family: 'Inter', sans-serif; }
.testimonial-card .testi-author { display: flex; align-items: center; gap: 10px; }
.testimonial-card .testi-author .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--light-bg); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--primary); font-weight: 600; flex-shrink: 0; }
.testimonial-card .testi-author .info h6 { font-size: 0.85rem; font-weight: 600; margin: 0; }
.testimonial-card .testi-author .info small { font-size: 0.75rem; color: var(--text-light); }

/* ==================== CTA ==================== */
.cta-section { background: var(--dark); padding: 60px 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(75,0,130,0.12) 0%, transparent 70%); border-radius: 50%; }
.cta-section .cta-content { position: relative; z-index: 1; text-align: center; }
.cta-section h2 { font-size: 1.8rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.cta-section p { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; font-family: 'Inter', sans-serif; }
.cta-section .btn-cta { display: inline-flex; align-items: center; gap: 8px; padding: 14px 36px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: var(--transition); font-family: 'Poppins', sans-serif; }
.cta-section .btn-cta-primary { background: var(--secondary); color: #fff; }
.cta-section .btn-cta-primary:hover { background: #c5001e; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(230,0,35,0.3); color: #fff; }
.cta-section .btn-cta-secondary { background: rgba(255,255,255,0.1); color: #fff; border: 1.5px solid rgba(255,255,255,0.2); }
.cta-section .btn-cta-secondary:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); color: #fff; }

/* ==================== BREADCRUMB ==================== */
.breadcrumb { background: none; padding: 0; margin-bottom: 14px; }
.breadcrumb a { color: var(--text-light); text-decoration: none; font-size: 0.82rem; transition: var(--transition); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .active { color: var(--text); font-size: 0.82rem; }

/* ==================== PAGE BANNER ==================== */
.page-banner { background: linear-gradient(135deg, var(--dark), #0F172A); padding: 44px 0 36px; color: #fff; text-align: center; }
.page-banner h1 { font-size: 1.8rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.page-banner p { color: rgba(255,255,255,0.6); margin: 0; font-family: 'Inter', sans-serif; font-size: 0.9rem; }
.page-banner .breadcrumb { justify-content: center; }
.page-banner .breadcrumb a { color: rgba(255,255,255,0.5); }
.page-banner .breadcrumb a:hover { color: #fff; }

/* ==================== BUTTONS ==================== */
.btn-primary { background: var(--primary); border: none; border-radius: var(--radius-sm); padding: 12px 28px; font-weight: 600; transition: var(--transition); font-family: 'Poppins', sans-serif; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 15px rgba(75,0,130,0.3); }
.btn-outline-primary { color: var(--primary); border: 1.5px solid var(--primary); border-radius: var(--radius-sm); padding: 12px 28px; font-weight: 600; transition: var(--transition); font-family: 'Poppins', sans-serif; }
.btn-outline-primary:hover { background: var(--primary); color: #fff; }
.btn-secondary { background: var(--secondary); border: none; border-radius: var(--radius-sm); padding: 12px 28px; font-weight: 600; transition: var(--transition); font-family: 'Poppins', sans-serif; }
.btn-secondary:hover { background: #c5001e; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(230,0,35,0.3); }
.btn-whatsapp { background: #25D366; color: #fff; border: none; border-radius: var(--radius-sm); padding: 10px 20px; font-weight: 600; font-size: 0.85rem; transition: var(--transition); font-family: 'Poppins', sans-serif; display: inline-flex; align-items: center; gap: 6px; width: 100%; margin-bottom: 8px; justify-content: center; }
.btn-whatsapp:hover { background: #20BD5A; color: #fff; }

/* ==================== PROPERTY DETAIL ==================== */
.property-detail { padding-top: 24px; }
.property-gallery { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.property-gallery .carousel-item img { height: 440px; object-fit: cover; }
.property-info-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border-light); }
.property-info-card .detail-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }
.property-info-card .detail-location { font-size: 0.9rem; color: var(--text-light); margin-bottom: 14px; }
.property-info-card .detail-location i { color: var(--secondary); margin-right: 6px; }
.property-info-card .detail-price { font-size: 1.8rem; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.property-info-card .detail-meta { display: flex; gap: 16px; flex-wrap: wrap; padding: 14px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); margin-bottom: 16px; }
.property-info-card .detail-meta .meta-item { text-align: center; flex: 1; min-width: 70px; }
.property-info-card .detail-meta .meta-item .meta-value { font-size: 1rem; font-weight: 700; color: var(--dark); }
.property-info-card .detail-meta .meta-item .meta-label { font-size: 0.7rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.3px; }
.property-info-card .detail-description { font-size: 0.9rem; line-height: 1.7; color: var(--text); margin-bottom: 16px; font-family: 'Inter', sans-serif; }
.amenities-list .badge { padding: 6px 14px; border: 1px solid var(--border); background: var(--white); color: var(--text); font-weight: 400; font-size: 0.78rem; margin: 0 6px 8px 0; }
.amenities-list .badge i { color: var(--success); margin-right: 4px; }
.inquiry-sidebar { position: sticky; top: 96px; }
.inquiry-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); border: 1px solid var(--border-light); }
.inquiry-card h5 { font-size: 1rem; font-weight: 600; margin-bottom: 14px; }
.inquiry-card .form-control, .inquiry-card .form-select { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 0.85rem; font-family: 'Inter', sans-serif; }
.inquiry-card .form-control:focus, .inquiry-card .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(75,0,130,0.1); }
.inquiry-card .btn { width: 100%; padding: 12px; border-radius: var(--radius-sm); font-weight: 600; }
.related-properties { background: var(--light-bg); padding: 50px 0; }
.contact-owner-card { background: var(--light-bg); border-radius: var(--radius); padding: 18px; margin-bottom: 14px; text-align: center; }
.contact-owner-card .owner-name { font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.contact-owner-card .owner-company { font-size: 0.78rem; color: var(--text-light); margin-bottom: 10px; }
.contact-owner-card .btn { width: 100%; margin-bottom: 6px; padding: 9px; font-size: 0.82rem; font-weight: 600; border-radius: var(--radius-sm); }

/* ==================== FILTER CARD ==================== */
.filter-card { position: sticky; top: 96px; background: var(--white); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); border: 1px solid var(--border-light); }
.filter-card h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 14px; }
.filter-card .form-label { font-size: 0.78rem; font-weight: 500; color: var(--text-light); margin-bottom: 4px; font-family: 'Poppins', sans-serif; }
.filter-card .form-control, .filter-card .form-select { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 9px 12px; font-size: 0.85rem; font-family: 'Inter', sans-serif; }
.filter-card .form-control:focus, .filter-card .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(75,0,130,0.1); }

/* ==================== AUTH ==================== */
.auth-section { min-height: calc(100vh - 72px); display: flex; align-items: center; padding: 50px 0; background: var(--light-bg); }
.auth-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-lg); max-width: 440px; margin: 0 auto; width: 100%; }
.auth-card .auth-logo { text-align: center; margin-bottom: 20px; }
.auth-card .auth-logo img { height: 36px; }
.auth-card h4 { text-align: center; font-weight: 700; margin-bottom: 4px; font-size: 1.2rem; }
.auth-card .auth-subtitle { text-align: center; color: var(--text-light); font-size: 0.85rem; margin-bottom: 20px; }
.auth-card .form-control, .auth-card .form-select { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 0.88rem; font-family: 'Inter', sans-serif; }
.auth-card .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(75,0,130,0.1); }
.auth-card .btn { width: 100%; padding: 12px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem; }
.auth-card .auth-footer { text-align: center; margin-top: 16px; font-size: 0.82rem; color: var(--text-light); }
.auth-card .auth-footer a { color: var(--primary); font-weight: 500; }

/* ==================== FOOTER ==================== */
.footer { background: #0B1121; color: rgba(255,255,255,0.7); position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(75,0,130,0.3), transparent); }
.footer-top { padding: 56px 0 40px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer .footer-brand { margin-bottom: 14px; }
.footer .footer-logo-img { height: 44px; width: auto; display: block; margin-bottom: 4px; }
.footer .footer-brand-line { font-size: 0.78rem; color: var(--primary-light); font-weight: 500; margin: 0; font-family: 'Poppins', sans-serif; letter-spacing: 0.3px; }
.footer .footer-desc { font-size: 0.85rem; line-height: 1.8; color: rgba(255,255,255,0.45); margin-bottom: 20px; max-width: 320px; font-family: 'Inter', sans-serif; }
.footer h5 { color: #fff; font-weight: 600; font-size: 0.88rem; margin-bottom: 18px; letter-spacing: 0.5px; text-transform: uppercase; position: relative; padding-bottom: 10px; }
.footer h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 24px; height: 2px; background: var(--secondary); border-radius: 1px; }
.footer .footer-links { list-style: none; padding: 0; margin: 0; }
.footer .footer-links li { margin-bottom: 10px; }
.footer .footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; transition: var(--transition); font-size: 0.85rem; display: inline-flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; }
.footer .footer-links a:hover { color: #fff; padding-left: 6px; }
.footer .footer-links a i { font-size: 0.6rem; color: rgba(255,255,255,0.2); transition: var(--transition); }
.footer .footer-links a:hover i { color: var(--secondary); }
.footer .social-links { display: flex; gap: 10px; }
.footer .social-links a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); text-decoration: none; transition: var(--transition); font-size: 0.9rem; border: 1px solid rgba(255,255,255,0.06); }
.footer .social-links a:hover { background: var(--secondary); color: #fff; border-color: var(--secondary); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(230,0,35,0.3); }
.footer-contact-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 22px; }
.footer-contact-card h5 { margin-bottom: 16px; }
.footer-contact-card h5::after { left: 0; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-item .contact-icon { width: 34px; height: 34px; border-radius: 8px; background: rgba(75,0,130,0.2); display: flex; align-items: center; justify-content: center; color: var(--primary-light); font-size: 0.85rem; flex-shrink: 0; }
.footer-contact-item .contact-text { display: flex; flex-direction: column; gap: 1px; }
.footer-contact-item .contact-label { font-size: 0.7rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.5px; font-family: 'Inter', sans-serif; }
.footer-contact-item .contact-text a, .footer-contact-item .contact-text span { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: var(--transition); }
.footer-contact-item .contact-text a:hover { color: #fff; }
.footer-wa-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.15); border-radius: 20px; padding: 6px 14px; font-size: 0.75rem; color: #25D366; font-weight: 500; margin: 6px 0 14px; font-family: 'Inter', sans-serif; }
.footer-wa-badge i { font-size: 0.85rem; }
.footer-cta-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--secondary); color: #fff; border: none; border-radius: 8px; padding: 11px 18px; font-weight: 600; font-size: 0.85rem; text-decoration: none; transition: var(--transition); font-family: 'Poppins', sans-serif; cursor: pointer; }
.footer-cta-btn:hover { background: #c5001e; color: #fff; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(230,0,35,0.3); }

.footer-searches { border-bottom: 1px solid rgba(255,255,255,0.05); padding: 24px 0; }
.footer-searches .searches-header { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.footer-searches .searches-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-searches .searches-tags a { display: inline-block; padding: 5px 14px; border-radius: 20px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.78rem; transition: var(--transition); font-family: 'Inter', sans-serif; }
.footer-searches .searches-tags a:hover { background: rgba(75,0,130,0.15); border-color: rgba(75,0,130,0.3); color: #fff; }

.footer-trust { border-bottom: 1px solid rgba(255,255,255,0.05); padding: 28px 0; }
.footer-trust .trust-strip { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-trust .trust-item { display: flex; align-items: center; gap: 12px; min-width: 140px; }
.footer-trust .trust-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(75,0,130,0.15); display: flex; align-items: center; justify-content: center; color: var(--primary-light); font-size: 1rem; flex-shrink: 0; }
.footer-trust .trust-text strong { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 600; }
.footer-trust .trust-text span { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.3); font-family: 'Inter', sans-serif; }

.footer-bottom { padding: 20px 0; }
.footer-bottom .footer-bottom-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin: 0; font-family: 'Inter', sans-serif; }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: var(--transition); font-family: 'Inter', sans-serif; position: relative; }
.footer-bottom-links a:not(:last-child)::after { content: '|'; position: absolute; right: -11px; color: rgba(255,255,255,0.1); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ==================== FOOTER CONTAINER ==================== */
.footer .container { max-width: 1400px; }

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float { position: fixed; bottom: 20px; right: 20px; width: 52px; height: 52px; background: #25D366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 999; transition: var(--transition); text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.1); background: #20BD5A; color: #fff; }

/* ==================== ADMIN / BROKER ==================== */
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-sidebar { width: 250px; background: #0F172A; color: #fff; display: flex; flex-direction: column; position: fixed; top: 0; left: 0; height: 100vh; z-index: 100; }
.sidebar-overlay { display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.5); z-index:99; }
.admin-sidebar.active + .sidebar-overlay { display:block; }
.sidebar-header { padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 10px; }
.sidebar-logo { height: 30px; width: auto; }
.sidebar-header small { color: rgba(255,255,255,0.4); font-size: 0.7rem; }
.sidebar-nav { list-style: none; padding: 6px 0; flex: 1; overflow-y: auto; }
.sidebar-nav li a { display: flex; align-items: center; gap: 10px; padding: 10px 20px; color: rgba(255,255,255,0.6); text-decoration: none; transition: var(--transition); font-size: 0.82rem; border-left: 3px solid transparent; font-family: 'Poppins', sans-serif; }
.sidebar-nav li a:hover { background: rgba(255,255,255,0.05); color: #fff; border-left-color: var(--secondary); }
.sidebar-nav li a.active { background: rgba(75,0,130,0.2); color: #fff; border-left-color: var(--primary); }
.sidebar-nav li a i { width: 18px; text-align: center; font-size: 0.95rem; }
.sidebar-footer { padding: 14px 20px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.admin-content { margin-left: 250px; flex: 1; min-height: 100vh; background: var(--light-bg); }
.admin-content .admin-header { background: var(--white); padding: 14px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.admin-content .admin-body { padding: 24px; }
.admin-stat-card { padding: 20px; border-radius: var(--radius); color: #fff; }
.admin-stat-card h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 2px; }
.admin-stat-card p { margin: 0; opacity: 0.85; font-size: 0.82rem; }
.admin-table th { border-top: none; font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); padding: 12px 14px; }
.admin-table td { vertical-align: middle; padding: 10px 14px; font-size: 0.82rem; }
.admin-card { background: var(--white); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); border: 1px solid var(--border-light); }
.admin-card .card-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 14px; }

/* ==================== TOOLS ==================== */
.tool-card { background: var(--white); border-radius: var(--radius); padding: 28px; border: 1px solid var(--border-light); transition: var(--transition); height: 100%; }
.tool-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.tool-card .tool-icon { width: 56px; height: 56px; border-radius: var(--radius-sm); background: #F3E8FF; color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; }
.tool-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.tool-card p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; font-family: 'Inter', sans-serif; }
.tool-card .btn { border-radius: var(--radius-sm); padding: 10px 24px; font-weight: 600; font-size: 0.85rem; }

.calc-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border-light); }
.calc-card h5 { font-size: 1rem; font-weight: 600; margin-bottom: 20px; }
.calc-label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--text-light); margin-bottom: 6px; font-family: 'Poppins', sans-serif; }
.calc-input { width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px; font-size: 0.9rem; font-family: 'Inter', sans-serif; outline: none; transition: var(--transition); color: var(--text); }
.calc-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(75,0,130,0.1); }
.calc-input[type="number"] { -moz-appearance: textfield; }
.calc-input[type="number"]::-webkit-outer-spin-button, .calc-input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; }
.calc-range-wrap { margin-top: 8px; }
.calc-range { width: 100%; height: 4px; -webkit-appearance: none; appearance: none; background: var(--border); border-radius: 2px; outline: none; cursor: pointer; }
.calc-range::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--primary); cursor: pointer; border: 3px solid #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.15); }
.calc-range::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--primary); cursor: pointer; border: 3px solid #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.15); }
.range-values { display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--text-lighter); margin-top: 4px; font-family: 'Inter', sans-serif; }

.calc-result-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border-light); height: 100%; }
.calc-result-card h5 { font-size: 1rem; font-weight: 600; margin-bottom: 20px; }
.calc-result-item { background: var(--light-bg); border-radius: var(--radius-sm); padding: 16px; text-align: center; }
.calc-result-item .result-label { font-size: 0.78rem; color: var(--text-light); margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.calc-result-item .result-value { font-size: 1.3rem; font-weight: 700; color: var(--dark); margin: 0; }
.calc-result-box { background: var(--light-bg); border-radius: var(--radius-sm); padding: 20px; }

.calc-charges-list { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border-light); }
.charge-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; border-bottom: 1px solid var(--border-light); }
.charge-row:last-child { border-bottom: none; }
.charge-row .charge-label { font-size: 0.88rem; color: var(--text); font-family: 'Inter', sans-serif; }
.charge-row .charge-value { font-size: 0.95rem; font-weight: 600; color: var(--dark); }
.charge-row.charge-total { background: var(--light-bg); }
.charge-row.charge-total .charge-label { font-weight: 600; color: var(--dark); font-size: 0.95rem; }
.charge-row.charge-total .charge-value { font-size: 1.1rem; color: var(--primary); }

.tool-cta-section { background: var(--light-bg); border-radius: var(--radius); padding: 20px; margin-bottom: 16px; border: 1px solid var(--border-light); }
.tool-cta-section h6 { font-size: 0.88rem; font-weight: 600; margin-bottom: 10px; }
.tool-cta-section .tool-cta-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; border-radius: 6px; font-size: 0.78rem; font-weight: 600; text-decoration: none; transition: var(--transition); font-family: 'Poppins', sans-serif; margin: 0 4px 6px 0; }
.tool-cta-section .tool-cta-btn-primary { background: var(--primary); color: #fff; border: none; }
.tool-cta-section .tool-cta-btn-primary:hover { background: var(--primary-dark); color: #fff; }
.tool-cta-section .tool-cta-btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.tool-cta-section .tool-cta-btn-outline:hover { background: var(--primary); color: #fff; }

/* Dropdown menu customization */
.navbar .dropdown-menu { border: none; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); padding: 8px; margin-top: 8px; min-width: 220px; }
.navbar .dropdown-menu .dropdown-item { border-radius: 6px; padding: 10px 14px; font-size: 0.85rem; color: var(--text); display: flex; align-items: center; gap: 10px; transition: var(--transition); font-family: 'Poppins', sans-serif; }
.navbar .dropdown-menu .dropdown-item:hover { background: var(--light-bg); color: var(--primary); }
.navbar .dropdown-menu .dropdown-item i { width: 18px; text-align: center; color: var(--text-lighter); font-size: 0.9rem; }
.navbar .dropdown-menu .dropdown-item:hover i { color: var(--primary); }
.navbar .dropdown-menu .dropdown-divider { margin: 6px 0; border-color: var(--border-light); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .hero-title { font-size: 2rem; }
    .navbar { position: fixed; z-index: 1050; }
    .navbar-collapse { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-radius: 0 0 var(--radius-lg) var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,0.1); padding: 16px 24px 24px; z-index: 1049; max-height: calc(100vh - 72px); overflow-y: auto; }
    .navbar-collapse.collapsing { transition: height 0.3s ease; }
    .navbar .navbar-nav { height: auto; width: 100%; }
    .navbar-nav .nav-item { height: auto; width: 100%; }
    .navbar .nav-link { padding: 12px 16px !important; border-radius: 8px; font-size: 0.9rem; width: 100%; }
    .navbar .nav-link:hover { background: var(--light-bg); }
    .navbar .nav-item .btn-nav-cta { margin: 6px 0; text-align: center; width: 100%; justify-content: center; }
    .navbar .nav-item .btn-nav-register { margin: 6px 0; text-align: center; width: 100%; justify-content: center; }
    .navbar .nav-item .btn-nav-login { text-align: center; width: 100%; justify-content: center; padding: 12px 16px !important; }
    .navbar .nav-item .btn-nav-dashboard { text-align: center; width: 100%; justify-content: center; padding: 12px 16px !important; }
    .navbar .nav-item .btn-nav-logout { text-align: center; width: 100%; justify-content: center; padding: 12px 16px !important; }
    .navbar .dropdown-menu { position: static !important; box-shadow: none !important; border: 1px solid var(--border-light) !important; border-radius: 8px !important; margin: 4px 12px !important; padding: 6px !important; background: var(--light-bg) !important; }
    .navbar .dropdown-menu .dropdown-item { padding: 10px 14px; font-size: 0.85rem; }
    .navbar .nav-item.dropdown { width: 100%; }
    .navbar .nav-item.dropdown .nav-link.dropdown-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; }
    .navbar .nav-item.dropdown .nav-link.dropdown-toggle::after { display: none; }
    .navbar .dropdown-divider { display: none; }
    .city-selector-wrap { margin: 6px 0; }
    .btn-city-select { padding: 6px 14px; font-size: 0.78rem; }
    .search-wrapper .search-row { flex-direction: column; }
    .search-wrapper .search-field:not(:last-child)::after { display: none; }
    .search-wrapper .search-field { border-bottom: 1px solid var(--border); }
    .admin-sidebar { width: 220px; }
    .admin-content { margin-left: 220px; }
    .city-modal .city-list { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}
@media (max-width: 767px) {
    .navbar { height: 64px; }
    .navbar-logo { height: 32px; }
    .navbar-collapse { max-height: calc(100vh - 64px); }
    .hero-section { min-height: auto; }
    .hero-title { font-size: 1.5rem; }
    .hero-subtitle { font-size: 0.9rem; margin-bottom: 20px; }
    .hero-content { padding: 40px 0; }
    .hero-stats { gap: 20px; }
    .hero-stats .stat-item h3 { font-size: 1.2rem; }
    .section { padding: 40px 0; }
    .section-header { margin-bottom: 24px; }
    .section-header h2 { font-size: 1.3rem; }
    .property-card .card-image { height: 180px; }
    .property-card .badge-price { font-size: 0.78rem; padding: 4px 10px; }
    .property-card .prop-title { font-size: 0.9rem; }
    .property-card .prop-price { font-size: 1rem; }
    .property-gallery .carousel-item img { height: 260px; }
    .property-info-card { padding: 20px; }
    .property-info-card .detail-price { font-size: 1.3rem; }
    .property-info-card .detail-title { font-size: 1.1rem; }
    .auth-card { padding: 20px; margin: 0 12px; }
    .footer .footer-logo-img { height: 36px; }
    .footer-trust .trust-strip { gap: 12px; }
    .footer-trust .trust-item { min-width: 120px; }
    .footer-bottom .footer-bottom-row { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }
    .cta-section h2 { font-size: 1.3rem; }
    .city-card { height: 140px; }
    .city-selector-wrap { margin: 6px 0; }
    .btn-city-select { padding: 6px 14px; font-size: 0.78rem; }
    .admin-sidebar { width: 0; overflow: hidden; }
    .admin-content { margin-left: 0; }
    .admin-sidebar.active { width: 250px; }
    .admin-content .admin-header { padding: 10px 16px; }
    .admin-content .admin-body { padding: 12px; }
    .city-modal .city-list { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
    .calc-card { padding: 20px; }
    .calc-result-card { padding: 20px; }
    .calc-result-item .result-value { font-size: 1.1rem; }
    .tool-card { padding: 20px; }
    .tool-card h3 { font-size: 1rem; }
}
/* ==================== LEGAL PAGES (Privacy, Terms) ==================== */
.legal-banner { background: linear-gradient(135deg, var(--dark), #0F172A); padding: 48px 0 40px; color: #fff; text-align: center; }
.legal-banner h1 { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.legal-banner p { color: rgba(255,255,255,0.5); margin: 0; font-family: 'Inter', sans-serif; font-size: 0.88rem; }
.legal-banner .breadcrumb { justify-content: center; }
.legal-banner .breadcrumb a { color: rgba(255,255,255,0.45); }
.legal-banner .breadcrumb a:hover { color: #fff; }
.legal-section { padding: 60px 0; background: var(--light-bg); }
.legal-wrap { max-width: 860px; margin: 0 auto; }
.legal-card { background: var(--white); border-radius: var(--radius); padding: 32px; margin-bottom: 20px; border: 1px solid var(--border-light); transition: var(--transition); }
.legal-card:hover { box-shadow: var(--shadow-md); }
.legal-card .legal-icon { width: 44px; height: 44px; border-radius: 10px; background: #F3E8FF; color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 16px; }
.legal-card h2 { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.legal-card p { font-size: 0.9rem; color: var(--text); line-height: 1.7; margin-bottom: 10px; font-family: 'Inter', sans-serif; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-card ul { padding-left: 20px; margin-bottom: 10px; }
.legal-card ul li { font-size: 0.88rem; color: var(--text); line-height: 1.8; font-family: 'Inter', sans-serif; }
.legal-card ul li strong { color: var(--dark); }
.legal-card a { color: var(--primary); text-decoration: none; font-weight: 500; }
.legal-card a:hover { text-decoration: underline; }
@media (max-width: 767px) {
    .legal-banner { padding: 36px 0 28px; }
    .legal-banner h1 { font-size: 1.4rem; }
    .legal-section { padding: 40px 0; }
    .legal-card { padding: 24px; }
    .legal-card h2 { font-size: 1.1rem; }
}

/* ==================== CONTACT PAGE ==================== */
.contact-banner { background: linear-gradient(135deg, #1E293B, #0F172A); padding: 48px 0 40px; color: #fff; text-align: center; }
.contact-banner h1 { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.contact-banner p { color: rgba(255,255,255,0.5); margin: 0; font-family: 'Inter', sans-serif; font-size: 0.9rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.contact-banner .breadcrumb { justify-content: center; }
.contact-banner .breadcrumb a { color: rgba(255,255,255,0.45); }
.contact-banner .breadcrumb a:hover { color: #fff; }
.contact-section { padding: 60px 0; background: var(--light-bg); }
.contact-form-card { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--border-light); margin-bottom: 24px; }
.contact-form-card h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
.contact-form-card > p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 24px; font-family: 'Inter', sans-serif; }
.contact-form-card .form-label { font-size: 0.82rem; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.contact-form-card .form-control, .contact-form-card .form-select { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px; font-size: 0.88rem; font-family: 'Inter', sans-serif; transition: var(--transition); }
.contact-form-card .form-control:focus, .contact-form-card .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(75,0,130,0.1); }
.contact-form-card .btn-primary { padding: 14px; font-size: 0.95rem; }
.contact-info-wrap { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { background: var(--white); border-radius: var(--radius); padding: 22px; border: 1px solid var(--border-light); transition: var(--transition); }
.contact-info-card:hover { box-shadow: var(--shadow-md); }
.contact-info-card .contact-info-icon { width: 44px; height: 44px; border-radius: 10px; background: #F3E8FF; color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 12px; }
.contact-info-card .contact-info-icon.whatsapp { background: #EBFFF5; color: #25D366; }
.contact-info-card h5 { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.contact-info-card p { margin-bottom: 2px; }
.contact-info-card p a { color: var(--dark); text-decoration: none; font-weight: 500; font-size: 0.95rem; }
.contact-info-card p a:hover { color: var(--primary); }
.contact-info-card > span { font-size: 0.78rem; color: var(--text-lighter); font-family: 'Inter', sans-serif; }
.contact-info-card .btn-whatsapp { width: 100%; padding: 10px; border-radius: var(--radius-sm); font-size: 0.82rem; background: #25D366; color: #fff; border: none; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; gap: 6px; transition: var(--transition); }
.contact-info-card .btn-whatsapp:hover { background: #20BD5A; }
.hours-list { display: flex; flex-direction: column; gap: 6px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; font-family: 'Inter', sans-serif; }
.hours-row .hours-value { font-weight: 600; color: var(--dark); }
.contact-support-card { background: linear-gradient(135deg, #F3E8FF, #FFF); border-radius: var(--radius); padding: 22px; border: 1px solid var(--border-light); }
.contact-support-card h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.contact-support-card h5 i { color: var(--primary); }
.contact-support-card p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 14px; font-family: 'Inter', sans-serif; }
.contact-support-card .btn { padding: 10px; font-size: 0.82rem; border-radius: var(--radius-sm); font-weight: 600; }
.contact-support-card .btn-whatsapp { background: #25D366; color: #fff; border: none; }
.contact-support-card .btn-whatsapp:hover { background: #20BD5A; color: #fff; }
.contact-map-card { background: var(--white); border-radius: var(--radius); padding: 24px; border: 1px solid var(--border-light); margin-bottom: 24px; }
.contact-map-card h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 14px; }
.contact-map-card h5 i { color: var(--secondary); margin-right: 6px; }
.contact-map-card .map-wrap { border-radius: var(--radius-sm); overflow: hidden; }
.contact-areas-card { background: var(--white); border-radius: var(--radius); padding: 24px; border: 1px solid var(--border-light); }
.contact-areas-card h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 14px; }
.contact-areas-card h5 i { color: var(--primary); margin-right: 6px; }
.areas-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tag { display: inline-block; padding: 6px 16px; border-radius: 20px; background: var(--light-bg); color: var(--text); font-size: 0.82rem; font-weight: 500; border: 1px solid var(--border); transition: var(--transition); font-family: 'Inter', sans-serif; }
.area-tag:hover { border-color: var(--primary); color: var(--primary); background: #F3E8FF; }
@media (max-width: 991px) {
    .contact-section { padding: 40px 0; }
    .contact-form-card { padding: 24px; }
    .contact-banner h1 { font-size: 1.5rem; }
}
@media (max-width: 767px) {
    .contact-form-card { padding: 20px; }
    .contact-form-card h4 { font-size: 1.1rem; }
}

/* ==================== CAREERS PAGE ==================== */
.careers-banner { background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%); padding: 60px 0; color: #fff; text-align: center; position: relative; overflow: hidden; }
.careers-banner::before { content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 500px; height: 500px; background: radial-gradient(circle, rgba(75,0,130,0.15) 0%, transparent 70%); border-radius: 50%; }
.careers-banner .container { position: relative; z-index: 1; }
.careers-banner .breadcrumb { justify-content: center; }
.careers-banner .breadcrumb a { color: rgba(255,255,255,0.45); }
.careers-banner .breadcrumb a:hover { color: #fff; }
.careers-banner .careers-banner-content { max-width: 600px; margin: 20px auto 0; }
.careers-banner h1 { font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: -0.5px; }
.careers-banner p { font-size: 1rem; color: rgba(255,255,255,0.55); margin-bottom: 24px; font-family: 'Inter', sans-serif; }
.careers-banner .btn { padding: 14px 36px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; font-family: 'Poppins', sans-serif; }
.why-join-section { background: var(--white); }
.career-perk-card { text-align: center; padding: 28px 20px; border-radius: var(--radius); border: 1px solid var(--border-light); transition: var(--transition); height: 100%; background: var(--white); }
.career-perk-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.career-perk-card .perk-icon { width: 56px; height: 56px; border-radius: var(--radius-sm); background: #F3E8FF; color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin: 0 auto 16px; transition: var(--transition); }
.career-perk-card:hover .perk-icon { background: var(--primary); color: #fff; }
.career-perk-card h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.career-perk-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; margin: 0; font-family: 'Inter', sans-serif; }
.culture-section { background: var(--white); }
.culture-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.culture-item { background: var(--light-bg); border-radius: var(--radius); padding: 22px; border: 1px solid var(--border-light); transition: var(--transition); }
.culture-item:hover { box-shadow: var(--shadow-md); }
.culture-item .culture-icon { width: 40px; height: 40px; border-radius: 8px; background: #F3E8FF; color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1rem; margin-bottom: 10px; }
.culture-item h6 { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.culture-item p { font-size: 0.8rem; color: var(--text-light); margin: 0; line-height: 1.5; font-family: 'Inter', sans-serif; }
.benefits-card { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: var(--radius-lg); padding: 32px; color: #fff; height: 100%; }
.benefits-card h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.benefits-card h4 i { font-size: 1.2rem; }
.benefits-list { list-style: none; padding: 0; margin: 0; }
.benefits-list li { padding: 8px 0; font-size: 0.88rem; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); font-family: 'Inter', sans-serif; }
.benefits-list li:last-child { border-bottom: none; }
.benefits-list li i { color: rgba(255,255,255,0.6); font-size: 0.85rem; flex-shrink: 0; }
.job-card { background: var(--white); border-radius: var(--radius); padding: 28px; border: 1px solid var(--border-light); transition: var(--transition); height: 100%; position: relative; }
.job-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.job-card .job-type-badge { display: inline-block; padding: 4px 12px; border-radius: 4px; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.job-card .job-type-badge.full-time { background: #E8F5E9; color: #2E7D32; }
.job-card .job-type-badge.internship { background: #FFF3E0; color: #E65100; }
.job-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.job-card .job-location { font-size: 0.82rem; color: var(--text-light); margin-bottom: 10px; font-family: 'Inter', sans-serif; }
.job-card .job-location i { color: var(--secondary); margin-right: 4px; }
.job-card .job-desc { font-size: 0.85rem; color: var(--text); line-height: 1.6; margin-bottom: 14px; font-family: 'Inter', sans-serif; }
.job-card .job-meta { display: flex; gap: 16px; padding-top: 12px; border-top: 1px solid var(--border-light); }
.job-card .job-meta span { font-size: 0.78rem; color: var(--text-lighter); display: flex; align-items: center; gap: 4px; font-family: 'Inter', sans-serif; }
.job-card .job-meta span i { color: var(--primary); font-size: 0.75rem; }
.job-card .btn { font-size: 0.85rem; padding: 10px; border-radius: var(--radius-sm); }
.hiring-process-section { background: var(--light-bg); }
.hiring-steps { max-width: 700px; margin: 0 auto; position: relative; }
.hiring-step { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 28px; position: relative; }
.hiring-step:last-child { margin-bottom: 0; }
.hiring-step:last-child .step-line { display: none; }
.step-number { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; position: relative; z-index: 1; box-shadow: 0 4px 12px rgba(75,0,130,0.3); }
.step-line { position: absolute; left: 21px; top: 44px; bottom: -28px; width: 2px; background: var(--border); }
.step-content { padding-top: 8px; }
.step-content h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.step-content p { font-size: 0.82rem; color: var(--text-light); margin: 0; font-family: 'Inter', sans-serif; }
.apply-section { background: var(--white); }
.apply-intro h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 10px; }
.apply-intro p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.7; font-family: 'Inter', sans-serif; }
.apply-intro .apply-contact p { font-size: 0.88rem; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.apply-intro .apply-contact p i { color: var(--primary); width: 18px; text-align: center; }
.apply-intro .apply-contact a { color: var(--dark); text-decoration: none; font-weight: 500; }
.apply-intro .apply-contact a:hover { color: var(--primary); }
.apply-form-card { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--border-light); }
.apply-form-card h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 20px; }
.apply-form-card .form-label { font-size: 0.82rem; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.apply-form-card .form-control, .apply-form-card .form-select { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px; font-size: 0.88rem; font-family: 'Inter', sans-serif; }
.apply-form-card .form-control:focus, .apply-form-card .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(75,0,130,0.1); }
.apply-form-card .file-upload-wrap small { display: block; margin-top: 4px; font-size: 0.75rem; font-family: 'Inter', sans-serif; }
.apply-form-card .btn { padding: 14px; font-size: 0.95rem; }

@media (max-width: 991px) {
    .careers-banner h1 { font-size: 1.7rem; }
    .culture-grid { grid-template-columns: 1fr; }
    .benefits-card { margin-top: 20px; }
    .hiring-steps { max-width: 100%; }
}
@media (max-width: 767px) {
    .careers-banner { padding: 40px 0; }
    .careers-banner h1 { font-size: 1.4rem; }
    .career-perk-card { padding: 20px; }
    .job-card { padding: 20px; }
    .job-card h3 { font-size: 0.95rem; }
    .step-number { width: 36px; height: 36px; font-size: 0.85rem; }
    .step-line { left: 17px; }
    .apply-form-card { padding: 24px; }
    .apply-form-card h4 { font-size: 1rem; }
    .apply-intro h2 { font-size: 1.3rem; }
    .benefits-card { padding: 24px; }
}

@media (max-width: 575px) {
    .footer-top { padding: 40px 0 24px; }
    .footer-contact-card { padding: 16px; }
    .footer-searches .searches-tags a { font-size: 0.72rem; padding: 4px 10px; }
    .footer-trust .trust-item { min-width: 100%; }
    .footer-trust .trust-strip { gap: 10px; }
    .footer-bottom-links { gap: 10px; }
    .footer-bottom-links a { font-size: 0.72rem; }
    .footer h5 { font-size: 0.82rem; }
    .footer .footer-links a { font-size: 0.8rem; }
    .footer .footer-desc { font-size: 0.8rem; }
}
