/* ==========================================
   DOMUSVERITAS - Premium Real Estate Platform
   Light Luxury Theme
   ========================================== */

:root {
    --primary: #1A1A2E;
    --primary-dark: #0F0F1A;
    --primary-light: #2D2D44;
    --secondary: #C9A84C;
    --secondary-dark: #B8942E;
    --accent: #D4B85A;
    --accent-dark: #A07D2A;
    --gradient-1: linear-gradient(135deg, #C9A84C 0%, #D4B85A 50%, #C9A84C 100%);
    --gradient-2: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
    --gradient-3: linear-gradient(135deg, #C9A84C 0%, #1A1A2E 100%);
    --gradient-hero: linear-gradient(135deg, #F8F6F3 0%, #FFFFFF 50%, #F5F0EB 100%);
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAFAF8;
    --bg-tertiary: #F5F0EB;
    --text-primary: #1A1A2E;
    --text-secondary: #444444;
    --text-muted: #777777;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(201, 168, 76, 0.25);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    --card-bg: rgba(255, 255, 255, 0.9);
    --card-border: rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(201, 168, 76, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --navbar-height: 76px;
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    transition: var(--transition);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; color: var(--text-primary); }

.text-accent { color: var(--secondary) !important; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0px; left: 0; right: 0; z-index: 1000;
    padding: 0; height: var(--navbar-height);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
}
.navbar-brand {
    display: flex; align-items: center; gap: 0.6rem;
    font-family: 'Playfair Display', var(--font-display);
    font-size: 1.5rem; font-weight: 700; color: var(--primary);
    letter-spacing: -0.02em; padding: 0;
}
.navbar-brand img { 
    margin-top: 15px; height: 150px; width: 200px; }
.navbar-brand .brand-icon {
    width: 120px; height: 0px; border-radius: 100px;
    background: var(--gradient-1); display: flex;
    align-items: center; justify-content: center;
    color: white; font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem !important; color: var(--text-secondary);
    font-weight: 500; font-size: 0.85rem; transition: var(--transition);
    cursor: pointer; position: relative;
}
.navbar-nav .nav-link:not(.dropdown-toggle)::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px; border-radius: 2px;
    background: var(--gradient-1); transition: var(--transition);
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--secondary); }
.navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
.navbar-nav .nav-link:not(.dropdown-toggle).active::after { width: 20px; }
.navbar-nav .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.4em;
    vertical-align: middle;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
}

.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.login-link { color: var(--text-secondary) !important; font-weight: 500; font-size: 0.85rem; padding: 0.5rem 0.75rem !important; transition: var(--transition); cursor: pointer; }
.login-link:hover { color: var(--secondary) !important; }
.nav-register { padding: 0.4rem 1rem !important; font-size: 0.8rem !important; cursor: pointer; }

.theme-toggle {
    width: 36px; height: 36px; border-radius: 10px;
    border: 1px solid var(--card-border); background: var(--bg-secondary);
    color: var(--text-secondary); font-size: 0.9rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.theme-toggle:hover { background: var(--secondary); color: white; border-color: var(--secondary); }

.user-menu { display: none; align-items: center; gap: 0.6rem; }
.user-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--gradient-1); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.8rem; }
.user-name { font-size: 0.85rem; font-weight: 500; color: var(--text-primary); }
.logout-btn { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 0.3rem; transition: var(--transition); font-size: 0.85rem; }
.logout-btn:hover { color: #e74c3c; }

/* ===== BUTTONS ===== */
.btn-primary {
    padding: 0.7rem 1.8rem; border-radius: 50px; font-weight: 600;
    font-size: 0.9rem; cursor: pointer; transition: var(--transition-bounce);
    display: inline-flex; align-items: center; gap: 0.5rem;
    border: none; font-family: var(--font-primary);
    position: relative; overflow: hidden;
    background: var(--gradient-1); color: var(--primary);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}
.btn-primary::after {
    content: ''; position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    opacity: 0; transition: var(--transition); pointer-events: none;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4); }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.8rem; }
.btn-lg { padding: 0.9rem 2.5rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-outline {
    padding: 0.7rem 1.8rem; border-radius: 50px; font-weight: 600;
    font-size: 0.9rem; cursor: pointer; transition: var(--transition-bounce);
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-primary); position: relative;
    background: transparent; border: 2px solid var(--secondary);
    color: var(--secondary);
}
.btn-outline:hover { background: var(--gradient-1); border-color: transparent; color: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3); }
.btn-outline.btn-lg { padding: 0.85rem 2.5rem; font-size: 1rem; }

.btn-secondary {
    padding: 0.5rem 1.2rem; border-radius: 50px; font-weight: 600;
    font-size: 0.8rem; cursor: pointer; transition: var(--transition-bounce);
    display: inline-flex; align-items: center; gap: 0.4rem;
    border: 1px solid var(--glass-border); font-family: var(--font-primary);
    background: var(--glass-bg); color: var(--text-primary); backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: var(--secondary); color: white; border-color: var(--secondary); }

/* ===== GLASS CARD ===== */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.glass-card:hover { box-shadow: var(--shadow-lg); }

/* ===== FORM ELEMENTS ===== */
.form-control, .form-select {
    padding: 0.7rem 1rem; border-radius: var(--radius-sm);
    border: 1px solid var(--card-border); background: var(--glass-bg);
    color: var(--text-primary); font-family: var(--font-primary);
    font-size: 0.85rem; transition: var(--transition);
    box-shadow: none; backdrop-filter: blur(4px);
}
.form-control:focus, .form-select:focus { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1); }
.form-control::placeholder { color: var(--text-muted); }
.form-select { cursor: pointer; }
.form-label { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.3rem; }
label { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.3rem; display: block; }

/* ===== HERO SECTION ===== */
#hero-section { position: relative; background: var(--gradient-hero); overflow-x: hidden; }

.carousel-item {
    height: auto; min-height: 92vh;
    background-size: cover; background-position: center;
    position: relative;
}
.carousel-item::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 25, 0.82) 0%, rgba(20, 20, 40, 0.60) 40%, rgba(10, 10, 25, 0.45) 100%);
    z-index: 1;
}

.hero-overlay { display: none; }

.hero-content {
    position: relative; z-index: 2; height: 100%;
    display: flex; align-items: center;
    padding-top: 76px; padding-bottom: 6rem;
}
.hero-content .row { min-height: 70vh; }

.hero-badge {
    display: inline-block; padding: 0.45rem 1.4rem; border-radius: 50px;
    background: rgba(201, 168, 76, 0.2); border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--accent); font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.2rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.hero-title {
    font-family: var(--font-display); font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 900; color: #FFFFFF; line-height: 1.15;
    margin-bottom: 1rem; letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4), 0 4px 40px rgba(0, 0, 0, 0.2);
}
.hero-desc {
    font-size: clamp(1rem, 1.6vw, 1.15rem); color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2rem; max-width: 600px; line-height: 1.8;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-btns .btn-primary {
    background: var(--gradient-1); color: var(--primary-dark);
    font-weight: 700; box-shadow: 0 4px 25px rgba(201, 168, 76, 0.45);
}
.hero-btns .btn-primary:hover { box-shadow: 0 8px 40px rgba(201, 168, 76, 0.55); }
.hero-btns .btn-outline {
    border-color: rgba(255, 255, 255, 0.7); color: white;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}
.hero-btns .btn-outline:hover {
    background: white; color: var(--primary); border-color: white;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-image-wrapper { position: relative; width: 100%; max-width: 500px; aspect-ratio: 4/3; }
.hero-main-img {
    width: 100%; height: 100%; border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition-slow);
    object-fit: cover;
}
.hero-image-wrapper:hover .hero-main-img { transform: perspective(1000px) rotateY(0deg); }

.hero-floating-card {
    position: absolute; background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px); border-radius: var(--radius-md);
    padding: 0.75rem 1.2rem; display: flex; align-items: center;
    gap: 0.6rem; box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 168, 76, 0.15);
    animation: floatCard 6s ease-in-out infinite;
}
.hero-floating-card i { font-size: 1.2rem; color: var(--secondary); }
.hero-floating-card strong { display: block; font-size: 0.95rem; color: var(--primary); line-height: 1.2; }
.hero-floating-card span { font-size: 0.7rem; color: var(--text-muted); }
.hero-floating-card.card-1 { top: 10%; right: -10%; animation-delay: 0s; }
.hero-floating-card.card-2 { bottom: 15%; left: -10%; animation-delay: 2s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.carousel-indicators { bottom: 30px; z-index: 5; }
.carousel-indicators button {
    width: 40px !important; height: 4px !important; border-radius: 2px !important;
    border: none !important; background: rgba(255, 255, 255, 0.3) !important;
    margin: 0 4px !important; transition: var(--transition);
}
.carousel-indicators button.active { background: var(--secondary) !important; width: 50px !important; }
.carousel-control-prev, .carousel-control-next { width: 50px; height: 50px; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15); border-radius: 50%; opacity: 0; transition: var(--transition); border: 1px solid rgba(255,255,255,0.15); backdrop-filter: blur(8px); }
.carousel:hover .carousel-control-prev, .carousel:hover .carousel-control-next { opacity: 1; }
.carousel-control-prev:hover, .carousel-control-next:hover { background: rgba(255,255,255,0.25); }
.carousel-control-prev { left: 20px; }
.carousel-control-next { right: 20px; }
.carousel-control-prev-icon { filter: brightness(0) invert(1); }
.carousel-control-next-icon { filter: brightness(0) invert(1); }

/* ===== SEARCH SECTION ===== */
.search-section { margin-top: -50px; position: relative; z-index: 10; padding-bottom: 2rem; }
.search-wrapper {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.10), 0 8px 24px rgba(0,0,0,0.06);
}
.search-tabs { border-bottom: 1px solid var(--card-border); padding-bottom: 1rem; margin-bottom: 1.25rem; gap: 0.25rem; }
.search-tabs .nav-link {
    padding: 0.5rem 1.2rem; border-radius: 50px; font-weight: 600;
    font-size: 0.8rem; color: var(--text-muted); border: none;
    transition: var(--transition); cursor: pointer;
}
.search-tabs .nav-link:hover { color: var(--secondary); background: rgba(201, 168, 76, 0.06); }
.search-tabs .nav-link.active { background: var(--gradient-1); color: var(--primary); box-shadow: 0 4px 15px rgba(201, 168, 76, 0.25); }

.search-fields { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.search-field { flex: 1; min-width: 180px; position: relative; }
.search-field i {
    position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
    color: var(--text-muted); font-size: 0.85rem; pointer-events: none; z-index: 2;
}
.search-field .form-control, .search-field .form-select { padding-left: 2.5rem; }
.search-btn { flex-shrink: 0; white-space: nowrap; }

/* ===== STATISTICS ===== */
.stats-section { padding: 4rem 0; background: var(--bg-secondary); }
.stat-card {
    text-align: center; padding: 2rem; border-radius: var(--radius-lg);
    background: var(--bg-primary); border: 1px solid var(--card-border);
    transition: var(--transition);
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.stat-card i { font-size: 2rem; color: var(--secondary); margin-bottom: 0.75rem; }
.stat-number { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--primary); line-height: 1.1; }
.stat-card span:last-child { font-size: 0.85rem; color: var(--text-muted); display: block; margin-top: 0.3rem; }

/* ===== PAGE SECTIONS ===== */
.page-section { display: none; padding: 5rem 0; }
#page-home { background: #e8e8e0; }
body.page-alt { background: #e8e8e0; }
.page-section.active { display: block; animation: pageFadeIn 0.5s ease; }
@keyframes pageFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-badge {
    display: inline-block; padding: 0.35rem 1rem; border-radius: 50px;
    background: rgba(201, 168, 76, 0.1); border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--secondary-dark); font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.75rem;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--primary); margin-bottom: 0.75rem; }
.section-desc { font-size: 1rem; color: var(--text-muted); max-width: 620px; margin: 0 auto; line-height: 1.7; }

/* ===== PROPERTY CARDS ===== */
.featured-section { padding: 5rem 0; }
.property-card-wrapper { margin-bottom: 1.5rem; }
.property-card {
    overflow: hidden; cursor: pointer; height: 100%; position: relative;
    transition: var(--transition-bounce);
    border: 1px solid var(--card-border);
}
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: rgba(201,168,76,0.2); }
.property-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-1); opacity: 0; transition: var(--transition);
}
.property-card:hover::after { opacity: 1; }
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.property-card-image { position: relative; height: 220px; overflow: hidden; }
.property-card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.property-card:hover .property-card-image img { transform: scale(1.08); }
.property-card-badges { position: absolute; top: 0.75rem; left: 0.75rem; display: flex; gap: 0.4rem; flex-wrap: wrap; }

.badge {
    padding: 0.25rem 0.7rem; border-radius: 50px; font-size: 0.65rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em;
    border: none;
}
.badge-latest { background: linear-gradient(135deg, #10b981, #059669); color: white; box-shadow: 0 2px 8px rgba(16,185,129,0.3); }
.badge-new { background: linear-gradient(135deg, #3b82f6, #2563eb); color: white; box-shadow: 0 2px 8px rgba(59,130,246,0.3); }
.badge-featured { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); color: var(--primary); box-shadow: 0 2px 8px rgba(201,168,76,0.3); }
.badge-hot { background: linear-gradient(135deg, #ef4444, #dc2626); color: white; box-shadow: 0 2px 8px rgba(239,68,68,0.3); }
.badge-sell { background: #FFFFFF; color: var(--secondary-dark); border: 1px solid rgba(201, 168, 76, 0.3); }
.badge-rent { background: rgba(59, 130, 246, 0.1); color: #2563eb; border: 1px solid rgba(59, 130, 246, 0.2); }
.badge-lease { background: rgba(16, 185, 129, 0.1); color: #059669; border: 1px solid rgba(16, 185, 129, 0.2); }
.badge-category { background: rgba(26, 26, 46, 0.05); color: var(--text-secondary); }
.badge-furnishing { background: rgba(26, 26, 46, 0.05); color: var(--text-secondary); }
.badge-standard { background: rgba(26, 26, 46, 0.05); color: var(--text-secondary); }

.wishlist-btn {
    position: absolute; top: 0.75rem; right: 0.75rem; width: 34px; height: 34px;
    border-radius: 50%; border: none; background: rgba(255,255,255,0.9);
    color: var(--text-muted); font-size: 0.85rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.wishlist-btn:hover, .wishlist-btn.active { background: #fee2e2; color: #ef4444; transform: scale(1.1); }

.property-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, transparent 50%);
    display: flex; align-items: flex-end; padding: 1rem;
    opacity: 0; transition: var(--transition);
}
.property-card:hover .property-card-overlay { opacity: 1; }
.property-card-overlay .btn-glass {
    padding: 0.4rem 1rem; border-radius: 50px; font-weight: 500;
    font-size: 0.75rem; font-family: var(--font-primary);
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.2); color: white;
    backdrop-filter: blur(8px); cursor: pointer; transition: var(--transition);
}
.property-card-overlay .btn-glass:hover { background: rgba(255,255,255,0.35); }

.property-card-wrapper { margin-bottom: 0; }
.property-card-body { padding: 1.25rem 1.5rem; }
.property-card-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.6rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.property-card-title { font-family: var(--font-primary); font-size: 1rem; font-weight: 600; color: var(--primary); margin-bottom: 0.3rem; }
.property-card-location { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.6rem; }
.property-card-location i { margin-right: 0.3rem; color: var(--secondary); }
.property-card-price { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--secondary-dark); margin-bottom: 0.6rem; }
a.price-on-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.25rem 0.9rem;
    background: linear-gradient(135deg, #ff6b35, #e85d2c) !important;
    color: #fff !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    letter-spacing: 0.2px;
    white-space: nowrap;
    border: none;
    line-height: 1;
}
a.price-on-call i {
    font-size: 0.65rem;
    line-height: 1;
}
a.price-on-call:hover {
    background: linear-gradient(135deg, #e85d2c, #d04d1e) !important;
    color: #fff !important;
    text-decoration: none !important;
    transform: scale(1.05);
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.45);
}
@keyframes phone-ring {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(-10deg); }
    75% { transform: rotate(5deg); }
}
.property-card-features { display: flex; gap: 1rem; margin-bottom: 0.6rem; font-size: 0.78rem; color: var(--text-muted); }
.property-card-features i { margin-right: 0.25rem; color: var(--secondary); }
.property-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 0.6rem; border-top: 1px solid var(--card-border); font-size: 0.78rem; color: var(--text-muted); }
.property-card-owner i { margin-right: 0.3rem; }
.property-card-rating { color: var(--secondary); }
.property-count { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1rem; }

/* ===== STEPS ===== */
.steps-section { padding: 3rem 0; }
.step-card { text-align: center; padding: 2.5rem 2rem; position: relative; transition: var(--transition-bounce); height: 100%; display: flex; flex-direction: column; }
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.step-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(201, 168, 76, 0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.3rem; color: var(--secondary); transition: var(--transition); }
.step-card:hover .step-icon { background: var(--gradient-1); color: var(--primary); box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3); }
.step-card h3 { font-family: var(--font-primary); font-size: 1.1rem; color: var(--primary); margin-bottom: 0.5rem; }
.step-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0; }

/* ===== TEAM ===== */
.team-section { padding: 3rem 0; }
.team-card { overflow: hidden; height: 100%; transition: var(--transition-bounce); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.team-img-wrapper { position: relative; height: 240px; overflow: hidden; }
.team-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.team-card:hover .team-img-wrapper img { transform: scale(1.05); }
.team-social {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.4) 0%, transparent);
    display: flex; gap: 0.5rem; justify-content: center;
    transform: translateY(100%); transition: var(--transition);
}
.team-card:hover .team-social { transform: translateY(0); }
.team-social a {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,0.2); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 0.85rem; transition: var(--transition);
}
.team-social a:hover { background: var(--secondary); color: var(--primary); }
.team-body { padding: 1.25rem 1.5rem; text-align: center; }
.team-body h3 { font-family: var(--font-primary); font-size: 1rem; color: var(--primary); margin-bottom: 0.2rem; }
.team-role { font-size: 0.8rem; color: var(--secondary); font-weight: 600; display: block; margin-bottom: 0.5rem; }
.team-body p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 3rem 0; }
.testimonial-card { padding: 2rem; height: 100%; transition: var(--transition-bounce); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: var(--secondary); font-size: 1rem; margin-bottom: 0.75rem; }
.testimonial-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(201, 168, 76, 0.2); }
.testimonial-author h4 { font-family: var(--font-primary); font-size: 0.9rem; color: var(--primary); margin-bottom: 0.1rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ===== CTA ===== */
.cta-section { padding: 4rem; text-align: center; background: linear-gradient(135deg, rgba(201, 168, 76, 0.06), rgba(201, 168, 76, 0.02)); border-color: rgba(201, 168, 76, 0.15); }
.cta-content { max-width: 600px; margin: 0 auto; }
.cta-content h2 { font-size: 1.8rem; color: var(--primary); margin-bottom: 0.75rem; }
.cta-content p { color: var(--text-secondary); margin-bottom: 1.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FILTERS ===== */
.filters-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 1rem; }
.filter-group { display: flex; flex-direction: column; gap: 0.4rem; }
.filter-group label { font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); }
.filter-group label i { margin-right: 0.3rem; color: var(--secondary); }
.filter-range { display: flex; align-items: center; gap: 0.5rem; }
.filter-range span { color: var(--text-muted); font-size: 0.8rem; }
.filter-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.bhk-options { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.bhk-btn { width: 38px; height: 38px; border-radius: var(--radius-sm); border: 1px solid var(--card-border); background: var(--glass-bg); color: var(--text-secondary); font-weight: 600; font-size: 0.8rem; cursor: pointer; transition: var(--transition); }
.bhk-btn:hover, .bhk-btn.active { background: var(--gradient-1); color: var(--primary); border-color: transparent; }
.no-results { text-align: center; padding: 4rem 2rem; }
.no-results i { font-size: 2.5rem; color: var(--secondary); margin-bottom: 1rem; display: block; }
.no-results h3 { font-family: var(--font-primary); color: var(--primary); margin-bottom: 0.5rem; }
.no-results p { color: var(--text-muted); }

/* ===== BLOG ===== */
.blog-card { overflow: hidden; cursor: pointer; height: 100%; transition: var(--transition-bounce); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.blog-card-image { position: relative; height: 200px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-category { position: absolute; bottom: 0.75rem; left: 0.75rem; padding: 0.25rem 0.7rem; border-radius: 50px; background: rgba(201, 168, 76, 0.15); backdrop-filter: blur(8px); color: var(--secondary-dark); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; }
.blog-card-body { padding: 1.25rem 1.5rem; }
.blog-meta { display: flex; gap: 0.75rem; font-size: 0.72rem; color: var(--text-muted); margin-bottom: 0.5rem; flex-wrap: wrap; }
.blog-meta i { margin-right: 0.25rem; }
.blog-card-body h3 { font-family: var(--font-primary); font-size: 1rem; font-weight: 600; color: var(--primary); margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card-body p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.75rem; }
.blog-card-body .btn-text { background: none; border: none; padding: 0; font-family: var(--font-primary); font-size: 0.82rem; font-weight: 600; color: var(--secondary-dark); cursor: pointer; transition: var(--transition); }
.blog-card-body .btn-text i { transition: var(--transition); margin-left: 0.25rem; font-size: 0.7rem; }
.blog-card-body .btn-text:hover { color: var(--secondary); }
.blog-card-body .btn-text:hover i { transform: translateX(4px); }

/* ===== CHATBOT ===== */
.chatbot-toggle {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
    width: 54px; height: 54px; border-radius: 50%;
    background: var(--gradient-1); border: none; color: var(--primary);
    font-size: 1.25rem; cursor: pointer;
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
    transition: var(--transition-bounce);
    display: flex; align-items: center; justify-content: center;
}
.chatbot-toggle:hover { transform: scale(1.1) rotate(-10deg); box-shadow: 0 12px 40px rgba(201, 168, 76, 0.45); }

.chatbot-panel {
    position: fixed; bottom: 6rem; right: 2rem; z-index: 999;
    width: 360px; height: 520px; border-radius: var(--radius-lg);
    background: var(--bg-primary); border: 1px solid var(--card-border);
    box-shadow: var(--shadow-xl); display: flex; flex-direction: column;
    overflow: hidden; transform: translateY(20px) scale(0.95);
    opacity: 0; transition: var(--transition); pointer-events: none;
}
.chatbot-panel.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }
.chatbot-header {
    padding: 1rem 1.25rem; border-bottom: 1px solid var(--card-border);
    display: flex; align-items: center; gap: 0.75rem;
    background: var(--gradient-1); color: var(--primary);
}
.chatbot-header i { font-size: 1.1rem; }
.chatbot-header span { font-weight: 600; font-size: 0.9rem; flex: 1; }
.chatbot-header button { background: none; border: none; color: rgba(26, 26, 46, 0.6); font-size: 1.1rem; cursor: pointer; transition: var(--transition); }
.chatbot-header button:hover { color: var(--primary); }

.chatbot-body { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.chat-message { padding: 0.7rem 1rem; border-radius: var(--radius-md); max-width: 85%; font-size: 0.82rem; line-height: 1.5; white-space: pre-wrap; }
.chat-message.chat-bot { background: var(--bg-secondary); color: var(--text-primary); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-message.chat-user { background: var(--gradient-1); color: var(--primary); align-self: flex-end; border-bottom-right-radius: 4px; }

.chatbot-footer { display: flex; padding: 0.75rem; gap: 0.5rem; border-top: 1px solid var(--card-border); }
.chatbot-footer input {
    flex: 1; padding: 0.6rem 1rem; border-radius: 50px;
    border: 1px solid var(--card-border); background: var(--bg-secondary);
    color: var(--text-primary); font-family: var(--font-primary);
    font-size: 0.82rem; transition: var(--transition);
}
.chatbot-footer input:focus { outline: none; border-color: var(--secondary); }
.chatbot-footer button {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--gradient-1); border: none; color: var(--primary);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.chatbot-footer button:hover { transform: scale(1.05); }

.chat-property-suggestions { display: flex; flex-direction: column; gap: 0.4rem; }
.chat-property-card { padding: 0.5rem 0.75rem; border-radius: var(--radius-sm); background: var(--bg-secondary); border: 1px solid var(--card-border); cursor: pointer; transition: var(--transition); }
.chat-property-card:hover { border-color: var(--secondary); }
.chat-property-info strong { font-size: 0.82rem; color: var(--text-primary); display: block; }
.chat-property-info span { font-size: 0.78rem; color: var(--secondary-dark); font-weight: 600; }
.chat-property-info small { font-size: 0.7rem; color: var(--text-muted); }

/* ===== SUCCESS MODAL ===== */
.success-modal {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
    align-items: center; justify-content: center;
}
.success-content {
    background: var(--bg-primary); padding: 2.5rem; border-radius: var(--radius-lg);
    text-align: center; max-width: 400px; width: 90%;
    box-shadow: var(--shadow-xl); border: 1px solid var(--card-border);
}
.success-content i { font-size: 3rem; color: #10b981; margin-bottom: 0.75rem; display: block; }
.success-content h3 { font-family: var(--font-primary); color: var(--primary); margin-bottom: 0.5rem; }
.success-content p { color: var(--text-muted); margin-bottom: 1.25rem; }

/* ===== APPOINTMENT ===== */
.time-slot {
    padding: 0.45rem 0.9rem; border-radius: var(--radius-sm);
    border: 1px solid var(--card-border); background: var(--glass-bg);
    color: var(--text-secondary); font-size: 0.78rem; cursor: pointer;
    transition: var(--transition); font-family: var(--font-primary);
}
.time-slot:hover, .time-slot.active { background: var(--gradient-1); color: var(--primary); border-color: transparent; }

/* ===== PROPERTY DETAIL ===== */
.property-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.detail-main-image { height: 400px; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 0.75rem; }
.detail-main-image img { width: 100%; height: 100%; object-fit: cover; }
.detail-thumbnails { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.detail-thumbnails img { width: 70px; height: 60px; border-radius: var(--radius-sm); object-fit: cover; cursor: pointer; opacity: 0.6; transition: var(--transition); border: 2px solid transparent; }
.detail-thumbnails img.active, .detail-thumbnails img:hover { opacity: 1; border-color: var(--secondary); }
.detail-header h1 { font-family: var(--font-display); font-size: 1.8rem; color: var(--primary); margin-bottom: 0.5rem; }
.detail-location { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.detail-location i { color: var(--secondary); margin-right: 0.3rem; }
.detail-price { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--secondary-dark); margin-bottom: 0.5rem; }
.price-period { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; }
.detail-badges { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.detail-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-bottom: 1rem; }
.detail-feature { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 0.75rem; background: var(--bg-secondary); border-radius: var(--radius-sm); font-size: 0.82rem; color: var(--text-secondary); }
.detail-feature i { color: var(--secondary); }
.detail-description { margin-bottom: 1rem; }
.detail-description h3 { font-family: var(--font-primary); font-size: 1rem; color: var(--primary); margin-bottom: 0.5rem; }
.detail-description p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }
.detail-amenities { margin-bottom: 1rem; }
.detail-amenities h3 { font-family: var(--font-primary); font-size: 1rem; color: var(--primary); margin-bottom: 0.5rem; }
.amenities-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.amenity-tag { padding: 0.35rem 0.7rem; background: var(--bg-secondary); border-radius: 50px; font-size: 0.78rem; color: var(--text-secondary); display: inline-flex; align-items: center; gap: 0.3rem; }
.amenity-tag i { color: var(--secondary); }
.detail-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1rem; }
.owner-info { display: flex; align-items: center; gap: 0.75rem; padding: 1rem; background: var(--bg-secondary); border-radius: var(--radius-sm); }
.owner-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-1); display: flex; align-items: center; justify-content: center; color: var(--primary); font-weight: 700; }

/* ===== CUSTOM MODAL ===== */
.custom-modal-overlay {
    position: fixed; inset: 0; z-index: 9998;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition); pointer-events: none;
}
.custom-modal-overlay.active { opacity: 1; pointer-events: all; }
.custom-modal { padding: 2rem; max-width: 600px; width: 90%; background: var(--bg-primary); border: 1px solid var(--card-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.modal-header h3 { font-family: var(--font-primary); font-size: 1rem; color: var(--primary); }
.modal-close { background: none; border: none; color: var(--text-muted); font-size: 1.3rem; cursor: pointer; }
.compare-table { overflow-x: auto; }
.compare-table table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 0.6rem 0.75rem; text-align: left; border-bottom: 1px solid var(--card-border); font-size: 0.82rem; }
.compare-table th { background: var(--bg-secondary); color: var(--primary); font-weight: 600; }

/* ===== DASHBOARD ===== */
.dash-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.activity-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 1px solid var(--card-border); }
.activity-item:last-child { border-bottom: none; }
.activity-item i { color: var(--secondary); }
.activity-item strong { display: block; font-size: 0.82rem; color: var(--text-primary); }
.activity-item small { font-size: 0.72rem; color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer { background: var(--gradient-2); color: rgba(255,255,255,0.85); position: relative; }
.footer-brand { height: 65px; width: auto; margin-bottom: 1rem; }
.footer-top { padding: 5rem 0 4rem; }
.footer p { color: rgba(255, 255, 255, 0.6); line-height: 1.8; margin-bottom: 1.5rem; font-size: 0.85rem; }
.footer h4 { font-family: var(--font-primary); color: white; margin-bottom: 1.25rem; font-size: 0.9rem; font-weight: 600; letter-spacing: 0; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: rgba(255, 255, 255, 0.55); transition: var(--transition); cursor: pointer; font-size: 0.82rem; }
.footer-links a:hover { color: var(--secondary); padding-left: 4px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center; transition: var(--transition); color: rgba(255, 255, 255, 0.4); font-size: 0.85rem; }
.footer-social a:hover { background: var(--gradient-1); border-color: transparent; color: var(--primary); transform: translateY(-3px); }
.newsletter-form .form-control { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.1); color: white; font-size: 0.8rem; }
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.3); }
.footer-bottom { text-align: center; padding: 1.5rem 0; border-top: 1px solid rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.4); font-size: 0.8rem; }

/* ===== SELECTION & SCROLLBAR ===== */
::selection { background: var(--secondary); color: var(--primary); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--secondary-dark); }

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-state i { font-size: 2.5rem; color: var(--secondary); margin-bottom: 1rem; display: block; }
.empty-state h3 { font-family: var(--font-primary); font-size: 1.2rem; color: var(--primary); margin-bottom: 0.5rem; }
.empty-state p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ===== ABOUT PAGE ===== */
.ab-hero {
    padding: 10rem 0 5rem; position: relative;
    background: linear-gradient(135deg, #0F0F1A 0%, #1A1A2E 50%, #2D2D44 100%);
    overflow: hidden;
}
.ab-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80') center/cover no-repeat;
    opacity: 0.12; z-index: 0;
}
.ab-hero > .container { position: relative; z-index: 1; }
.ab-hero-tag {
    display: inline-block; padding: 0.35rem 1rem; border-radius: 50px;
    background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
    color: var(--secondary); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem;
}
.ab-hero-title {
    font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800; color: #FFFFFF; line-height: 1.12; margin-bottom: 1rem;
    max-width: 700px;
}
.ab-hero-desc {
    font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.8;
    max-width: 560px; margin-bottom: 2rem;
}
.ab-hero-stats {
    display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 2.5rem;
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
}
.ab-hero-stat strong {
    font-family: var(--font-display); font-size: 1.6rem; color: var(--secondary);
    display: block; line-height: 1;
}
.ab-hero-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* Who We Are */
.ab-whoweare { padding: 5rem 0; background: var(--bg-primary); }
.ab-wwa-label {
    display: inline-block; padding: 0.35rem 1rem; border-radius: 50px;
    background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
    color: var(--secondary-dark); font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.75rem;
}
.ab-wwa-title { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--primary); line-height: 1.25; margin-bottom: 1rem; }
.ab-wwa-text { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1rem; }
.ab-wwa-cards { display: flex; flex-direction: column; gap: 0.75rem; }
.ab-wwa-card {
    padding: 1.25rem 1.5rem; border-radius: var(--radius-md);
    background: var(--bg-secondary); border-left: 3px solid var(--secondary);
    transition: var(--transition);
}
.ab-wwa-card:hover { background: rgba(201,168,76,0.06); }
.ab-wwa-card h4 { font-family: var(--font-primary); font-size: 0.9rem; color: var(--primary); margin-bottom: 0.2rem; }
.ab-wwa-card p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0; }

/* Mission Vision Values */
.ab-mvv { padding: 5rem 0; background: var(--bg-secondary); }
.ab-mvv-card { padding: 2rem 1.75rem; height: 100%; border-radius: var(--radius-lg); border: 1px solid var(--card-border); background: var(--bg-primary); transition: var(--transition-bounce); }
.ab-mvv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ab-mvv-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; }
.ab-mvv-icon.mission { background: rgba(16,185,129,0.1); color: #10b981; }
.ab-mvv-icon.vision { background: rgba(59,130,246,0.1); color: #3b82f6; }
.ab-mvv-icon.values { background: rgba(201,168,76,0.15); color: var(--secondary); }
.ab-mvv-card h3 { font-family: var(--font-primary); font-size: 1.05rem; color: var(--primary); margin-bottom: 0.5rem; }
.ab-mvv-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0; }

/* Journey */
.ab-journey { padding: 5rem 0; background: var(--bg-primary); }
.ab-journey-track { position: relative; max-width: 900px; margin: 0 auto; }
.ab-journey-track::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--secondary), rgba(201,168,76,0.08)); }
.ab-journey-item { position: relative; padding-left: 2.5rem; padding-bottom: 2.5rem; }
.ab-journey-item:last-child { padding-bottom: 0; }
.ab-journey-dot { position: absolute; left: -5px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--secondary); border: 2px solid var(--bg-primary); box-shadow: 0 0 0 3px rgba(201,168,76,0.25); }
.ab-journey-content { padding: 0; }
.ab-journey-year { display: inline-block; padding: 0.2rem 0.7rem; border-radius: 50px; background: var(--gradient-1); color: var(--primary); font-size: 0.72rem; font-weight: 700; margin-bottom: 0.5rem; }
.ab-journey-content h4 { font-family: var(--font-primary); font-size: 1rem; color: var(--primary); margin-bottom: 0.3rem; }
.ab-journey-content p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0; max-width: 600px; }

/* Founder */
.ab-founder { padding: 5rem 0; background: var(--bg-secondary); }
.ab-founder-card { padding: 2.5rem; border-radius: var(--radius-lg); background: var(--bg-primary); border: 1px solid var(--card-border); box-shadow: var(--shadow-md); }
.ab-founder-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 3px solid var(--secondary); flex-shrink: 0; }
.ab-founder-quote { font-family: var(--font-display); font-size: 1.15rem; color: var(--text-primary); line-height: 1.7; font-style: italic; position: relative; padding-left: 1.5rem; border-left: 3px solid var(--secondary); margin-bottom: 1rem; }
.ab-founder-name { font-family: var(--font-primary); font-size: 1rem; font-weight: 600; color: var(--primary); }
.ab-founder-role { font-size: 0.82rem; color: var(--secondary); font-weight: 600; }

/* Strengths */
.ab-strengths { padding: 5rem 0; background: var(--bg-primary); }
.ab-strength-item { display: flex; gap: 1rem; padding: 1.5rem; border-radius: var(--radius-md); border: 1px solid var(--card-border); background: var(--bg-primary); height: 100%; transition: var(--transition); }
.ab-strength-item:hover { box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.2); }
.ab-strength-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(201,168,76,0.1); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--secondary); flex-shrink: 0; }
.ab-strength-item h4 { font-family: var(--font-primary); font-size: 0.92rem; color: var(--primary); margin-bottom: 0.25rem; }
.ab-strength-item p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0; }

/* Impact */
.ab-impact { padding: 5rem 0; background: var(--gradient-2); position: relative; overflow: hidden; }
.ab-impact::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1600&q=80') center/cover no-repeat; opacity: 0.06; }
.ab-impact .container { position: relative; z-index: 1; }
.ab-impact-card { text-align: center; padding: 2rem; border-radius: var(--radius-lg); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06); transition: var(--transition); }
.ab-impact-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.08); }
.ab-impact-icon { font-size: 1.8rem; color: var(--secondary); margin-bottom: 0.75rem; }
.ab-impact-number { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: #FFFFFF; line-height: 1.1; margin-bottom: 0.2rem; }
.ab-impact-label { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* Trust Section */
.ab-trust { padding: 5rem 0; background: var(--bg-secondary); }
.ab-trust-card { padding: 2rem; border-radius: var(--radius-lg); background: var(--bg-primary); border: 1px solid var(--card-border); height: 100%; transition: var(--transition); }
.ab-trust-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ab-trust-stars { color: var(--secondary); font-size: 0.9rem; margin-bottom: 0.75rem; }
.ab-trust-text { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.ab-trust-author { display: flex; align-items: center; gap: 0.75rem; }
.ab-trust-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.ab-trust-author h5 { font-family: var(--font-primary); font-size: 0.85rem; color: var(--primary); margin-bottom: 0; }
.ab-trust-author span { font-size: 0.75rem; color: var(--text-muted); }

/* About CTA */
.ab-cta { padding: 5rem 0; background: var(--bg-primary); }
.ab-cta-card { padding: 3.5rem; text-align: center; border-radius: var(--radius-xl); background: linear-gradient(135deg, rgba(201,168,76,0.06), rgba(201,168,76,0.02)); border: 1px solid rgba(201,168,76,0.12); }
.ab-cta-card h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--primary); margin-bottom: 0.75rem; }
.ab-cta-card p { font-size: 0.95rem; color: var(--text-secondary); max-width: 500px; margin: 0 auto 1.5rem; }
.ab-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT PAGE ===== */
.ct-hero {
    padding: 10rem 0 5rem; position: relative;
    background: linear-gradient(135deg, #0F0F1A 0%, #1A1A2E 50%, #2D2D44 100%);
    overflow: hidden;
}
.ct-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1600&q=80') center/cover no-repeat;
    opacity: 0.1; z-index: 0;
}
.ct-hero > .container { position: relative; z-index: 1; }
.ct-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #FFFFFF; line-height: 1.12; margin-bottom: 0.75rem; }
.ct-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 520px; }
.ct-main { padding: 5rem 0; background: var(--bg-primary); }
.ct-form-card { padding: 2.5rem; border-radius: var(--radius-lg); border: 1px solid var(--card-border); background: var(--bg-primary); box-shadow: var(--shadow-md); }
.ct-form-card .form-control, .ct-form-card .form-select { padding: 0.8rem 1rem; font-size: 0.88rem; }
.ct-form-card textarea { min-height: 140px; resize: vertical; }
.ct-form-card .btn-primary { padding: 0.8rem 2rem; }
.ct-info { display: flex; flex-direction: column; gap: 1rem; }
.ct-info-card { padding: 1.5rem; border-radius: var(--radius-md); background: var(--bg-secondary); border: 1px solid var(--card-border); display: flex; align-items: flex-start; gap: 1rem; transition: var(--transition); }
.ct-info-card:hover { background: rgba(201,168,76,0.04); border-color: rgba(201,168,76,0.15); }
.ct-info-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(201,168,76,0.1); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--secondary); flex-shrink: 0; }
.ct-info-card h4 { font-family: var(--font-primary); font-size: 0.9rem; color: var(--primary); margin-bottom: 0.15rem; }
.ct-info-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0; line-height: 1.5; }
.ct-response { text-align: center; padding: 0.75rem; font-size: 0.82rem; color: var(--text-muted); background: var(--bg-secondary); border-radius: var(--radius-sm); margin-top: 1rem; }
.ct-response i { color: var(--secondary); margin-right: 0.3rem; }

.file-upload-area { border: 2px dashed var(--card-border); border-radius: var(--radius-md); padding: 1.25rem 1rem; text-align: center; position: relative; transition: var(--transition); background: var(--bg-secondary); cursor: pointer; }
.file-upload-area:hover { border-color: var(--secondary); background: rgba(201,168,76,0.03); }
.file-upload-area input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-upload-area::before { content: '\f093'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 1.2rem; color: var(--text-muted); display: block; margin-bottom: 0.25rem; }
.file-upload-area::after { content: 'Choose Files or Drag & Drop'; display: block; font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.file-upload-area:hover::before { color: var(--secondary); }
.file-upload-area:hover::after { color: var(--secondary-dark); }
.file-upload-preview { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.75rem; }
.file-upload-preview .preview-img { width: 48px; height: 48px; border-radius: var(--radius-sm); background-size: cover; background-position: center; border: 1px solid var(--card-border); }
.ct-social { padding: 3rem 0 5rem; background: var(--bg-primary); text-align: center; }
.ct-social h3 { font-family: var(--font-primary); font-size: 1.1rem; color: var(--primary); margin-bottom: 1rem; }
.ct-social-links { display: flex; gap: 0.75rem; justify-content: center; }
.ct-social-links a { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--card-border); background: var(--bg-primary); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 1.1rem; transition: var(--transition-bounce); }
.ct-social-links a:hover { background: var(--gradient-1); border-color: transparent; color: var(--primary); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(201,168,76,0.25); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-floating-card.card-1 { right: 0; }
    .hero-floating-card.card-2 { left: 0; }
}

@media (max-width: 991px) {
    .navbar-nav { background: var(--bg-primary); padding: 0.5rem; border-radius: var(--radius-md); margin-top: 0.5rem; box-shadow: var(--shadow-lg); border: 1px solid var(--card-border); }
    .navbar-nav .nav-link { padding: 0.6rem 1rem !important; }
    .carousel-item { min-height: auto; height: auto; }
    .hero-content { padding-bottom: 5rem; }
    .hero-content .row { min-height: auto; padding: 3rem 0; }
    .hero-visual { margin-top: 2rem; }
    .hero-main-img { transform: none; max-width: 400px; margin: 0 auto; }
    .hero-floating-card { display: none; }
    .search-section { margin-top: -30px; }
    .search-fields { flex-direction: column; }
    .search-field { width: 100%; min-width: 100%; }
    .search-btn { width: 100%; justify-content: center; }
    .nav-actions .btn-primary { display: none; }
    .property-detail-layout { grid-template-columns: 1fr; }
    .detail-main-image { height: 300px; }
}

@media (max-width: 768px) {
    :root { --navbar-height: 64px; }
    .navbar-brand { font-size: 1.3rem; }
    .carousel-item { min-height: auto; }
    .hero-content { padding-bottom: 4rem; }
    .hero-title { font-size: 2rem; }
    .hero-desc { font-size: 0.9rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn-primary, .hero-btns .btn-outline { width: 100%; justify-content: center; }
    .search-wrapper { padding: 1.25rem; }
    .search-tabs { gap: 0; overflow-x: auto; flex-wrap: nowrap; }
    .search-tabs .nav-link { white-space: nowrap; font-size: 0.75rem; padding: 0.4rem 0.8rem; }
    .search-section { margin-top: -20px; }
    .stats-section { padding: 2.5rem 0; }
    .stat-card { padding: 1.5rem; }
    .stat-number { font-size: 1.8rem; }
    .page-section { padding: 3rem 0; }
    .section-header { margin-bottom: 2rem; }
    .section-title { font-size: 1.6rem; }
    .cta-section { padding: 2.5rem 1.5rem; }
    .cta-content h2 { font-size: 1.4rem; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn-primary, .cta-actions .btn-outline { width: 100%; justify-content: center; }
    .featured-section { padding: 3rem 0; }
    .property-detail-layout { gap: 1rem; }
    .detail-main-image { height: 250px; }
    .chatbot-panel { width: calc(100% - 2rem); right: 1rem; bottom: 5rem; height: 450px; }
    .chatbot-toggle { bottom: 1rem; right: 1rem; width: 48px; height: 48px; font-size: 1.1rem; }
    .footer-top { padding: 3rem 0 2rem; }
    .footer-bottom { margin-top: 0; }
}

/* ======= PROPERTY DETAIL PAGE ======= */
.pd-hero {
    position: relative;
    min-height: 65vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    margin-top: -80px;
}
.pd-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
}
.pd-hero-content {
    position: relative;
    z-index: 2;
    padding: 10rem 0 5rem;
}
.pd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.pd-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
.pd-breadcrumb a:hover { color: var(--accent); }
.pd-breadcrumb i { font-size: 0.6rem; color: rgba(255,255,255,0.4); }
.pd-breadcrumb span { color: rgba(255,255,255,0.9); }
.pd-hero-text { max-width: 800px; }
.pd-hero-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.pd-badge {
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pd-badge-sell { background: var(--accent); color: #fff; }
.pd-badge-rent { background: #10b981; color: #fff; }
.pd-badge-lease { background: #f59e0b; color: #fff; }
.pd-badge-featured { background: linear-gradient(135deg, #f59e0b, #ef4444); color: #fff; }
.pd-badge-category { background: rgba(255,255,255,0.15); color: #fff; backdrop-filter: blur(10px); }
.pd-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}
.pd-hero-location {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.pd-hero-location i { color: var(--accent); margin-right: 0.4rem; }
.pd-hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.pd-hero-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}
.pd-stat-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.pd-stat-value { font-size: 1.1rem; font-weight: 700; }
.pd-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.pd-hero-price { display: flex; align-items: baseline; gap: 0.3rem; }
.pd-price-amount { font-size: 2.2rem; font-weight: 800; color: var(--accent); }
.pd-price-period { font-size: 0.95rem; color: rgba(255,255,255,0.6); font-weight: 400; }

/* Main Section */
.pd-main { padding: 3rem 0 5rem; }
.pd-section { padding: 2rem; margin-bottom: 1.5rem; }
.pd-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
    color: var(--heading-color);
}
.pd-description-text {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Gallery */
.pd-gallery { padding: 1.25rem; margin-bottom: 1.5rem; }
.pd-gallery-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    aspect-ratio: 16 / 10;
    background: var(--dark-card);
}
.pd-gallery-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}
.pd-gallery-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
    backdrop-filter: blur(8px);
}
.pd-gallery-nav:hover { background: var(--accent); }
.pd-gallery-prev { left: 1rem; }
.pd-gallery-next { right: 1rem; }
.pd-gallery-counter {
    position: absolute;
    bottom: 1rem; right: 1rem;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.82rem;
    z-index: 2;
}
.pd-gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}
.pd-thumb {
    flex: 0 0 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.pd-thumb:hover { opacity: 0.8; }
.pd-thumb.active { opacity: 1; border-color: var(--accent); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Videos Section */
.pd-videos-section { margin-top: 1.5rem; }
.pd-video-card { overflow: hidden; border-radius: var(--radius-md); }
.pd-video-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}
.pd-video-embed iframe,
.pd-video-embed video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Features Grid */
.pd-features-grid { padding: 2rem; margin-bottom: 1.5rem; }
.pd-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}
.pd-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
}
.pd-feature-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.pd-feature-item div strong { display: block; font-size: 0.92rem; color: var(--heading-color); }
.pd-feature-item div span { font-size: 0.78rem; color: var(--text-muted); }

/* Amenities */
.pd-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}
.pd-amenity-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    font-size: 0.9rem;
}
.pd-amenity-item i { color: var(--accent); font-size: 0.85rem; }

/* Map */
.pd-map { border-radius: 16px; overflow: hidden; }
.pd-map-placeholder {
    min-height: 280px;
    background: var(--dark-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    border: 2px dashed rgba(255,255,255,0.1);
}
.pd-map-placeholder i { font-size: 3rem; color: var(--accent); opacity: 0.5; }
.pd-map-placeholder p { color: var(--text-muted); max-width: 300px; }

/* Reviews */
.pd-review-count { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.pd-reviews-list { display: flex; flex-direction: column; gap: 1rem; }
.pd-review-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}
.pd-review-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.pd-review-content { flex: 1; }
.pd-review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.4rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.pd-review-stars i { color: #f59e0b; font-size: 0.78rem; }
.pd-review-content p { font-size: 0.88rem; color: var(--text-color); margin-bottom: 0.3rem; }
.pd-review-date { font-size: 0.75rem; color: var(--text-muted); }

/* Sidebar */
.pd-sidebar-sticky { position: sticky; top: 100px; }
.pd-sidebar-card { padding: 1.5rem; margin-bottom: 1.25rem; }
.pd-sidebar-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    color: var(--heading-color);
}
.pd-sidebar-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.pd-sidebar-price { margin-bottom: 1.25rem; }
.pd-sidebar-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}
.pd-sidebar-period { font-size: 0.85rem; color: var(--text-muted); }
.pd-sidebar-owner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 1rem;
}
.pd-sidebar-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.pd-sidebar-owner div strong { display: block; font-size: 0.9rem; color: var(--heading-color); }
.pd-sidebar-owner div span { font-size: 0.75rem; color: var(--text-muted); }
.pd-sidebar-actions { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.25rem; }
.pd-sidebar-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.pd-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}
.pd-contact-item i {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}
.pd-contact-item a { color: var(--text-color); text-decoration: none; transition: color 0.3s; }
.pd-contact-item a:hover { color: var(--accent); }

/* Mortgage Calculator */
.pd-calc { display: flex; flex-direction: column; gap: 0.75rem; }
.pd-calc-field label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.25rem; display: block; }
.pd-calc-field input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-color);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    width: 100%;
    transition: border-color 0.3s;
}
.pd-calc-field input:focus { outline: none; border-color: var(--accent); }
.pd-calc-result {
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
}
.pd-calc-result span { display: block; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.pd-calc-result strong { font-size: 1.4rem; color: var(--accent); }

/* Similar Properties */
.pd-similar { padding: 0 0 5rem; }
.pd-similar-card-link { text-decoration: none; display: block; }
.pd-similar-card-link .property-card { transition: transform 0.3s, box-shadow 0.3s; }
.pd-similar-card-link .property-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

@media (max-width: 992px) {
    .pd-hero { min-height: 50vh; margin-top: -70px; }
    .pd-hero-title { font-size: 2rem; }
    .pd-hero-text { max-width: 100%; }
    .pd-hero-stats { gap: 1.25rem; }
    .pd-price-amount { font-size: 1.6rem; }
    .pd-gallery-main { aspect-ratio: 16 / 9; }
    .pd-sidebar-sticky { position: static; }
}

@media (max-width: 576px) {
    .carousel-item { min-height: auto; }
    .hero-content { padding-bottom: 3rem; }
    .hero-title { font-size: 1.7rem; }
    .hero-badge { font-size: 0.65rem; }
    .hero-floating-card { display: none; }
    .hero-main-img { transform: none; }
    .hero-image-wrapper { aspect-ratio: auto; max-width: 100%; }
    .search-section { margin-top: -10px; }
    .search-wrapper { padding: 1rem; }
    .search-tabs .nav-link { font-size: 0.7rem; padding: 0.35rem 0.6rem; }
    .stats-section { padding: 2rem 0; }
    .stat-card { padding: 1.25rem; }
    .stat-card i { font-size: 1.5rem; }
    .stat-number { font-size: 1.5rem; }
    .page-section { padding: 2rem 0; }
    .section-title { font-size: 1.4rem; }
    .team-img-wrapper { height: 200px; }
    .testimonial-card { padding: 1.5rem; }
    .detail-main-image { height: 200px; }
    .ab-hero { padding: 7rem 0 3.5rem; }
    .ab-hero-stats { gap: 1.5rem; }
    .ab-hero-stat strong { font-size: 1.3rem; }
    .ab-whoweare, .ab-mvv, .ab-journey, .ab-founder, .ab-strengths, .ab-impact, .ab-trust, .ab-cta { padding: 3rem 0; }
    .ab-impact-number { font-size: 1.8rem; }
    .ab-founder-card { padding: 1.5rem; }
    .ab-founder-img { width: 80px; height: 80px; }
    .ab-cta-card { padding: 2rem; }
    .filters-grid { grid-template-columns: 1fr; }
    .pd-hero { min-height: 40vh; margin-top: -60px; padding-bottom: 2rem; }
    .pd-hero-title { font-size: 1.5rem; }
    .pd-hero-stats { gap: 1rem; }
    .pd-hero-stat { flex-direction: column; text-align: center; gap: 0.25rem; }
    .pd-stat-icon { width: 36px; height: 36px; font-size: 0.85rem; }
    .pd-stat-value { font-size: 0.95rem; }
    .pd-price-amount { font-size: 1.4rem; }
    .pd-section { padding: 1.25rem; }
    .pd-section-title { font-size: 1.2rem; }
    .pd-features-list { grid-template-columns: 1fr 1fr; }
    .pd-amenities-grid { grid-template-columns: 1fr 1fr; }
    .pd-gallery-main { aspect-ratio: 4 / 3; }
    .pd-thumb { flex: 0 0 64px; height: 48px; }
    .pd-sidebar-card { padding: 1.25rem; }
    .pd-sidebar-amount { font-size: 1.4rem; }
    .pd-feature-item { padding: 0.75rem; }
    .pd-feature-icon { width: 40px; height: 40px; font-size: 1rem; }
}

.blog-article {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1rem;
}

.blog-article p {
    margin-bottom: 1.25rem;
}

.blog-article h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--heading-color);
    margin: 1.75rem 0 0.75rem;
}

.blog-reviews {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent);
}

.reviews-header h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0;
}

.review-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color, #eee);
}

.review-item:last-of-type {
    border-bottom: none;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-body { flex: 1; }

.review-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.3rem;
}

.review-meta strong {
    font-size: 0.9rem;
    color: var(--heading-color);
}

.review-meta span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-body p {
    font-size: 0.85rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.review-form-wrap {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color, #eee);
}

.review-form-wrap h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.review-form-wrap .form-control {
    border: 1px solid var(--border-color, #ddd);
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.review-form-wrap .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
    outline: none;
}

.review-form-wrap textarea.form-control {
    resize: vertical;
    min-height: 100px;
}



.blog-sidebar .sidebar-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
}

.blog-sidebar .sidebar-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent);
}

.sidebar-post a {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.sidebar-post a:last-child { margin-bottom: 0; }

.sidebar-post img {
    width: 70px;
    height: 55px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.sidebar-post h5 {
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.sidebar-post-date {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.sidebar-share {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.share-btn:hover { transform: translateY(-2px); opacity: 0.9; color: var(--white); }

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0a66c2; }
.share-btn.whatsapp { background: #25d366; }

@media (max-width: 375px) {
    .navbar-brand { font-size: 1.1rem; }
    .navbar-brand .brand-icon { width: 30px; height: 30px; font-size: 0.8rem; }
    .carousel-item { min-height: 300px; }
    .hero-title { font-size: 1.4rem; }
    .hero-desc { font-size: 0.82rem; }
}