/* 
================================
Dary - Premium Real Estate Platform
================================ 
*/

:root {
    /* Color Palette */
    --primary: #2A3663;
    --secondary: #B59F78;
    --tertiary: #4E3300;
    --bg-color: #F5F5F5;
    --text-dark: #2A3764;
    --primary-text: #2A3764;
    --accent: #B59F78;
    --accent-hover: #9c8865;
    --white: #ffffff;
    --light-bg: #EAEAEA;
    --gray: #757575;
    
    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(42, 54, 99, 0.08);
    --shadow-hover: 0 15px 40px rgba(42, 54, 99, 0.15);
    --shadow-sm: 0 4px 10px rgba(42, 54, 99, 0.05);
    
    /* Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--primary-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-text);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1.1rem;
    color: var(--primary-text);
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(181, 159, 120, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 159, 120, 0.6);
}

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

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

.btn-gold {
    background-color: #d4af37;
    color: #1a2b47;
    border: 2px solid #d4af37;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #b8941f;
    border-color: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-text);
}

.logo i {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--primary-text);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-auth {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-text);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    background: url('https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content h1 {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin-top: 60px;
}



/* Search Box */
/* .search-container {
    background: var(--white);
    padding: 10px 10px 10px 30px;
    border-radius: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--secondary);
} */

.search-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-box {
    flex: 1;
    padding-right: 20px;
    text-align: left;
    position: relative;
}

.search-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 1px;
    background-color: var(--secondary);
}

.search-box:nth-child(3) {
    border-right: none;
}

.search-box label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    color: var(--primary-text);
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    border-color: var(--accent);
    background: var(--white);
}

.input-wrapper input,
.input-wrapper textarea {
    font-family: inherit;
    font-size: 1rem;
    color: var(--primary-text);
    width: 100%;
    background: transparent;
    cursor: pointer;
}

.input-wrapper input,
.input-wrapper select {
    border: none;
    outline: none;
    padding: 4px 0;
}

.search-btn-wrapper {
    padding-left: 10px;
}

.btn-search {
    background-color: var(--accent);
    color: var(--primary-text);
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 1.8rem;
    font-weight: 800;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-search:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 4px 15px rgba(181, 159, 120, 0.4);
    transform: scale(1.02);
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-header.text-center {
    align-items: center;
}

.view-all {
    margin-top: 16px;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-all:hover {
    gap: 12px;
    color: var(--accent-hover);
}

/* Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.category-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--accent);
    font-size: 2rem;
    transition: var(--transition);
}

.category-card:hover .icon-circle {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1);
}

.category-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.category-card p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Properties Section */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.property-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.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);
}

.badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--white);
    color: var(--primary-text);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
}

.btn-heart {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary-text);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-heart:hover {
    color: #ff4757;
    background: var(--white);
}

.card-content {
    padding: 24px;
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.card-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
}

.card-title {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.card-location {
    color: var(--primary-text);
    font-size: 0.95rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-amenities {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--secondary);
    border-bottom: 1px solid var(--secondary);
    padding: 16px 0;
    margin-bottom: 16px;
}

.card-amenities span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}

.card-amenities i {
    color: var(--accent);
}

.card-footer {
    
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.rating i {
    color: #feca57;
}

/* Features Section */
.features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-list {
    margin-top: 32px;
}

.feature-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.features-image {
    position: relative;
}

.rounded-image {
    border-radius: var(--radius-lg);
    width: 100%;
}

.floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 2.5rem;
    color: #2ed573;
}

.floating-card strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-text);
}

.floating-card span {
    font-size: 0.9rem;
    color: var(--gray);
}

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

/* AI Section */
.ai-box {
    background: var(--text-dark);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.ai-box h2 {
    color: var(--white);
}

.ai-box p {
    color: var(--primary-text);
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ai-badge i {
    color: var(--accent);
}

.ai-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent);
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 4s infinite alternate;
}

.ai-img {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-md);
    transform: rotate(5deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.2); opacity: 0.6; }
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-item h3::after {
    content: '+';
}

.stat-item p {
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.5;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviewer img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer h4 {
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.reviewer .stars {
    color: #feca57;
    font-size: 0.9rem;
}

/* App Download */
.app-banner {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.app-content h2 {
    color: var(--primary-text);
}

.app-content p {
    color: var(--primary-text);
}

.app-buttons {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--text-dark);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.store-btn i {
    font-size: 1.5rem;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.method {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.method i {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-text);
    margin-right: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--secondary);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    background: var(--bg-color);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: var(--white);
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--primary-text);
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--primary-text);
}

.footer-links h4,
.footer-newsletter h4 {
    color: var(--primary-text);
    margin-bottom: 24px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--primary-text);
}

/* Quick Links */
.footer-links h3 {
    color: var(--primary-text);
    margin-bottom: 16px;
}

/* Footer Links Override */
.footer-links a {
    color: var(--primary-text) !important;
}

/* Newsletter Redesign */
.newsletter-box{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.newsletter-box input{
    flex: 1;
    height: 56px;
    border: none;
    border-radius: 14px;
    background: #FFFFFF;
    color: #2A3764;
    padding: 0 20px;
    font-size: 16px;
}

.newsletter-send{
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 14px;
    background: #2A3764;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.newsletter-send:hover{
    transform: translateY(-2px);
}

.newsletter-send i{
    color: #FFFFFF !important;
    font-size: 18px;
    display: block;
}

/* Newsletter Responsive Styles */
@media (max-width: 768px) {
    .newsletter-box {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }
    
    .newsletter-box input {
        width: 100%;
        min-width: 0;
    }
    
    .newsletter-send {
        flex-shrink: 0;
        width: 100%;
    }
}



.newsletter-submit {
    padding: 16px 24px;
    background: var(--primary-text);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-submit:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 55, 100, 0.2);
}

/* Footer Location */
.footer-location {
    color: var(--primary-text) !important;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-newsletter p {
    color: var(--primary-text);
}

.newsletter-form {
    display: flex;
    margin-top: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--secondary);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
    background: #FFFFFF !important;
    color: var(--primary-text) !important;
}

.newsletter-form button {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--accent-hover);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--primary-text);
    margin: 0;
}

.footer-social a {
    color: var(--primary-text);
    margin-left: 16px;
    font-size: 1.2rem;
}

.footer-social a:hover {
    color: var(--accent);
}

.footer,
.footer * {
    color: var(--primary-text) !important;
}

.footer-links a {
    color: var(--primary-text) !important;
}

.footer-links h4,
.footer-newsletter h4 {
    color: var(--primary-text) !important;
}

.footer-brand .logo {
    color: var(--primary-text) !important;
}

.footer-brand p {
    color: var(--primary-text) !important;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.animate-up {
    animation: fadeInUp 1s cubic-bezier(0.5, 0, 0, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; transition-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-wrapper,
    .ai-box,
    .app-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .features-content {
        order: 2;
    }
    
    .features-image {
        order: 1;
    }
    
    .feature-list li {
        text-align: left;
    }
    
    .floating-card {
        bottom: 20px;
        left: 20px;
        right: 20px;
        justify-content: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-links, .nav-auth {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 100px 24px 40px;
        box-shadow: var(--shadow-sm);
    }

    .nav-auth.active {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0 24px 40px;
        background: var(--white);
        position: absolute;
        top: 300px;
        left: 0;
        box-shadow: var(--shadow-sm);
    }

    .search-form {
        flex-direction: column;
        gap: 16px;
    }

    .search-box {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--secondary);
        padding: 16px 0;
    }

    .btn-search {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }

    .search-container {
        border-radius: var(--radius-lg);
    }
    
    h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .app-buttons {
        flex-direction: column;
    }
}

/* =========================================
   MULTI-PAGE STYLES
   ========================================= */

/* Page Headers */
.page-header {
    padding: 160px 0 80px;
background-color: #B69F77;    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    color: #2A3764;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.page-header p {
    color: var(--primary-text);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

/* Authentication Pages (Login/Signup) */
.auth-section {
    padding: 120px 0;
    background: var(--bg-color);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.auth-card {
    background: var(--white);
    max-width: 500px;
    margin: 0 auto;
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    text-align: center;
}

.auth-logo {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.auth-card h2 {
    color: var(--primary-text);
    margin-bottom: 8px;
}

.auth-card > p {
    margin-bottom: 30px;
}

.auth-form {
    text-align: left;
}

.auth-form .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.auth-options a {
    color: var(--accent);
    font-weight: 500;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--secondary);
}

.auth-divider span {
    padding: 0 16px;
}

.btn-social {
    background: var(--white);
    border: 1px solid var(--secondary);
    color: var(--primary-text);
    margin-bottom: 16px;
}

.btn-social:hover {
    background: var(--light-bg);
    border-color: var(--primary);
}

.btn-social img {
    width: 20px;
    height: 20px;
}

.auth-footer {
    margin-top: 24px;
    font-size: 0.95rem;
}

.auth-footer a {
    color: var(--accent);
    font-weight: 600;
}

/* Property Grid Layout */
.properties-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.filters-sidebar {
    width: 300px;
    flex-shrink: 0;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group h4 {
    margin-bottom: 16px;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--secondary);
    padding-bottom: 8px;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 0.95rem;
}

.properties-list {
    flex: 1;
}

.properties-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.properties-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Property Details Page */
.property-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
}

.gallery-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.gallery-side img {
    width: 100%;
    height: calc(50% - 10px);
    object-fit: cover;
}

.property-details-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.property-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    margin-bottom: 40px;
}

.property-meta {
    display: flex;
    gap: 24px;
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--secondary);
}

.property-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 500;
}

.property-meta i {
    color: var(--accent);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.amenities-grid span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.amenities-grid i {
    color: var(--accent);
    width: 20px;
}

.contact-owner-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 100px;
    text-align: center;
}

.owner-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.owner-profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 3px solid var(--primary);
}

/* Map Embedded */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* About Page */
.about-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
}

/* Responsive specific updates */
@media (max-width: 992px) {
    .properties-layout {
        flex-direction: column;
    }
    .filters-sidebar {
        width: 100%;
        position: static;
    }
    .property-details-layout {
        grid-template-columns: 1fr;
    }
    .property-gallery {
        grid-template-columns: 1fr;
        height: auto;
    }
    .gallery-side {
        display: none;
    }
    .about-mission {
        grid-template-columns: 1fr;
    }
}

/* Dashboard Sidebar & Empty States */
.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
    text-align: left;
}
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    color: var(--primary-text);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    font-weight: 600;
    border: 1px solid transparent;
    background-color: transparent;
}
.sidebar-link i {
    width: 24px;
    font-size: 1.2rem;
    color: var(--accent);
    transition: all 0.3s ease;
}
.sidebar-link:hover {
    background-color: var(--bg-color);
    color: var(--primary);
    border-color: var(--secondary);
    transform: translateX(5px);
}
.sidebar-link:hover i {
    color: var(--primary);
}
.sidebar-link.active {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(140, 106, 74, 0.3);
}
.sidebar-link.active i {
    color: var(--white);
}

/* Page Header Button Contrast Fix */
.page-header .btn-outline {
    color: var(--white);
    border-color: var(--white);
}
.page-header .btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--secondary);
}
.empty-state i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 16px;
    opacity: 0.5;
}
.empty-state h3 {
    color: var(--primary-text);
    margin-bottom: 8px;
}
.empty-state p {
    color: var(--text-muted);
}


/* =========================================
   PROPERTY DETAILS PAGE — Premium Redesign
   ========================================= */

/* ---- Loading Skeleton ---- */
.pd-loading-screen {
    padding-top: 72px;
}

.pd-skeleton-hero {
    width: 100%;
    height: 520px;
    background: linear-gradient(90deg, var(--secondary) 25%, var(--bg-color) 50%, var(--secondary) 75%);
    background-size: 200% 100%;
    animation: pd-shimmer 1.5s infinite;
}

.pd-skeleton-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 40px 0 80px;
}

.pd-skeleton-main { display: flex; flex-direction: column; gap: 20px; }
.pd-skeleton-side { display: none; }

.pd-skeleton-line {
    height: 18px;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--secondary) 25%, var(--bg-color) 50%, var(--secondary) 75%);
    background-size: 200% 100%;
    animation: pd-shimmer 1.5s infinite;
}
.pd-skeleton-line.wide  { width: 80%; }
.pd-skeleton-line.medium { width: 55%; }
.pd-skeleton-line.short { width: 35%; }

.pd-skeleton-block {
    height: 220px;
    border-radius: var(--radius-md);
    background: linear-gradient(90deg, var(--secondary) 25%, var(--bg-color) 50%, var(--secondary) 75%);
    background-size: 200% 100%;
    animation: pd-shimmer 1.5s infinite;
}
.pd-skeleton-block.tall { height: 380px; }

@keyframes pd-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ---- Not Found ---- */
.pd-not-found {
    padding: 160px 0 100px;
    text-align: center;
}
.pd-not-found-inner {
    max-width: 480px;
    margin: 0 auto;
}
.pd-not-found-inner i {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 24px;
    opacity: 0.6;
}
.pd-not-found-inner h2 { margin-bottom: 12px; }
.pd-not-found-inner p  { margin-bottom: 32px; }

/* ---- Gallery Hero ---- */
.pd-gallery-hero {
    margin-top: 72px; /* navbar height */
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: var(--text-dark);
}

.pd-gallery-main {
    position: relative;
    width: 100%;
    height: 100%;
}

.pd-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.pd-gallery-main:hover img {
    transform: scale(1.02);
}

.pd-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.35) 0%,
        transparent 40%,
        transparent 60%,
        rgba(0,0,0,0.25) 100%
    );
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 28px 32px;
}

.pd-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.25);
    transition: var(--transition);
}
.pd-back-btn:hover {
    background: rgba(255,255,255,0.28);
    color: #fff;
    transform: translateX(-3px);
}

.pd-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}
.pd-share-btn:hover {
    background: rgba(255,255,255,0.28);
}

.pd-type-badge {
    position: absolute;
    bottom: 28px;
    left: 32px;
    background: var(--accent);
    color: #fff;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(181, 159, 120, 0.5);
}

/* ---- Title Bar ---- */
.pd-title-bar {
    background: var(--white);
    border-bottom: 1px solid var(--secondary);
    position: sticky;
    top: 72px;
    z-index: 100;
}

.pd-title-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.pd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--primary-text);
}
.pd-breadcrumb a {
    color: var(--primary-text);
    font-weight: 500;
}
.pd-breadcrumb a:hover { color: var(--accent); }
.pd-breadcrumb i { font-size: 0.65rem; }
.pd-breadcrumb span { color: var(--text-dark); font-weight: 600; }

.pd-quick-actions {
    display: flex;
    gap: 8px;
}

.pd-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--secondary);
    background: transparent;
    color: var(--primary-text);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}
.pd-action-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(181, 159, 120, 0.06);
}
.pd-action-btn--active {
    border-color: #e74c3c;
    color: #e74c3c;
    background: rgba(231,76,60,0.05);
}

/* ---- Main Layout Grid ---- */
.pd-layout {
    padding: 48px 0 100px;
    background: var(--bg-color);
}

.pd-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: flex-start;
}

/* ---- Section Cards ---- */
.pd-section-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(234,224,213,0.6);
}

.pd-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--secondary);
}
.pd-section-header h2 {
    font-size: 1.35rem;
    margin: 0;
}

/* ---- Header Card ---- */
.pd-header-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(234,224,213,0.6);
}

.pd-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 28px;
}

.pd-header-left { flex: 1; }

.pd-header-left h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 10px;
    line-height: 1.25;
}

.pd-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-text);
    font-size: 1rem;
    font-weight: 500;
}
.pd-location i { color: var(--accent); }

.pd-header-right {
    text-align: right;
    flex-shrink: 0;
}

.pd-price-tag {
    display: flex;
    align-items: baseline;
    gap: 4px;
    justify-content: flex-end;
}

.pd-price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.pd-price-period {
    font-size: 1rem;
    color: var(--primary-text);
    font-weight: 400;
}

.pd-price-note {
    font-size: 0.8rem;
    color: var(--primary-text);
    margin-top: 4px;
}

/* ---- Stats Row ---- */
.pd-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-color);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    border: 1px solid var(--secondary);
}

.pd-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.pd-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.pd-stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pd-stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-text);
    line-height: 1;
}

.pd-stat-label {
    font-size: 0.78rem;
    color: var(--primary-text);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.pd-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--secondary);
    margin: 0 20px;
    flex-shrink: 0;
}

/* ---- Description ---- */
.pd-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--primary-text);
    margin-bottom: 14px;
}
.pd-description p:last-child { margin-bottom: 0; }

/* ---- Amenities Grid ---- */
.pd-amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.pd-amenity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    background: var(--bg-color);
    border-radius: var(--radius-md);
    border: 1px solid var(--secondary);
    text-align: center;
    transition: var(--transition);
    cursor: default;
}

.pd-amenity:hover {
    border-color: var(--accent);
    background: rgba(181, 159, 120, 0.06);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.pd-amenity-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pd-amenity:hover .pd-amenity-icon {
    background: var(--accent);
    color: var(--white);
}

.pd-amenity span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-text);
    line-height: 1.3;
}

/* ---- Location ---- */
.pd-location-label {
    font-size: 0.9rem;
    color: var(--primary-text);
    font-weight: 500;
}

.pd-map-wrap {
    width: 100%;
    height: 360px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--secondary);
}

.pd-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ---- Sidebar ---- */
.pd-sidebar-sticky {
    position: sticky;
    top: 130px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Contact Card */
.pd-contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(234,224,213,0.8);
}

.pd-price-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--secondary);
}

.pd-sidebar-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.pd-sidebar-period {
    font-size: 0.95rem;
    color: rgba(42, 54, 99, 0.5);
}

.pd-owner-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.pd-owner-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.3rem;
    flex-shrink: 0;
    border: 2px solid var(--primary);
}

.pd-owner-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pd-owner-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-text);
}

.pd-owner-badge {
    font-size: 0.8rem;
    color: #27ae60;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}
.pd-owner-badge i { font-size: 0.75rem; }

.pd-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.pd-cta-btn {
    padding: 15px 24px;
    font-size: 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 6px 20px rgba(181, 159, 120, 0.35);
}
.pd-cta-btn:hover {
    box-shadow: 0 8px 28px rgba(181, 159, 120, 0.55);
}

.pd-phone-btn {
    padding: 14px 24px;
    font-size: 1rem;
    border-radius: var(--radius-md);
    background: var(--bg-color);
    color: var(--primary-text);
    border: 1.5px solid var(--secondary);
    font-weight: 600;
    transition: var(--transition);
}
.pd-phone-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(181, 159, 120, 0.06);
}

.pd-trust-row {
    display: flex;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--secondary);
}

.pd-trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-text);
}
.pd-trust-item i { color: var(--accent); font-size: 0.85rem; }

/* Quick Info Card */
.pd-quick-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(234,224,213,0.6);
}

.pd-quick-info-card h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--secondary);
    color: var(--primary-text);
}

.pd-info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pd-info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.pd-info-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-text);
    font-weight: 500;
}
.pd-info-label i { color: var(--accent); width: 14px; }

.pd-info-value {
    font-weight: 700;
    color: var(--primary-text);
    text-align: right;
    max-width: 55%;
    word-break: break-word;
}

/* Report Row */
.pd-report-row {
    text-align: center;
}

.pd-report-btn {
    background: none;
    border: none;
    color: var(--primary-text);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}
.pd-report-btn:hover {
    color: #e74c3c;
    background: rgba(231,76,60,0.06);
}

/* ---- Mobile Sticky CTA ---- */
.pd-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--white);
    border-top: 1px solid var(--secondary);
    padding: 14px 24px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -4px 20px rgba(42, 54, 99, 0.1);
}

.pd-mobile-cta-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pd-mobile-cta-price span {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
}

.pd-mobile-cta-price small {
    font-size: 0.85rem;
    color: var(--primary-text);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .pd-grid {
        grid-template-columns: 1fr 340px;
        gap: 28px;
    }
    .pd-amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .pd-gallery-hero { height: 380px; }

    .pd-grid {
        grid-template-columns: 1fr;
    }

    .pd-sidebar-sticky {
        position: static;
    }

    /* On mobile, sidebar comes before main content visually */
    .pd-sidebar { order: -1; }

    .pd-contact-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: start;
    }

    .pd-price-display {
        grid-column: 1 / -1;
        margin-bottom: 0;
        padding-bottom: 16px;
    }

    .pd-owner-row { margin-bottom: 0; }

    .pd-contact-actions { margin-bottom: 0; }

    .pd-trust-row {
        grid-column: 1 / -1;
    }

    .pd-mobile-cta { display: flex; }

    /* Add bottom padding so footer isn't hidden behind mobile CTA */
    .pd-layout { padding-bottom: 100px; }

    .pd-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pd-stats-row {
        flex-wrap: wrap;
        gap: 16px;
    }
    .pd-stat-divider { display: none; }
    .pd-stat { flex: 1 1 40%; }

    .pd-skeleton-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .pd-gallery-hero { height: 260px; }

    .pd-gallery-overlay { padding: 18px 20px; }

    .pd-header-card,
    .pd-section-card { padding: 24px 20px; }

    .pd-header-top {
        flex-direction: column;
        gap: 16px;
    }

    .pd-header-right { text-align: left; }

    .pd-price-tag { justify-content: flex-start; }

    .pd-title-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 0;
    }

    .pd-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pd-contact-card {
        grid-template-columns: 1fr;
    }

    .pd-map-wrap { height: 260px; }

    .pd-breadcrumb { font-size: 0.8rem; }
}


/* =========================================
   ADD PROPERTY PAGE — Premium Form
   ========================================= */

.ap-section {
    padding: 100px 0 80px;
    background: var(--bg-color);
    min-height: 100vh;
}

.ap-container {
    max-width: 860px;
}

.ap-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 36px;
    padding-top: 20px;
}

.ap-page-header h1 {
    font-size: 2rem;
    margin-bottom: 6px;
}

.ap-page-header p {
    color: var(--primary-text);
    font-size: 1rem;
    margin: 0;
}

.ap-back-link {
    flex-shrink: 0;
    font-size: 0.9rem;
    padding: 10px 20px;
}

/* Alerts */
.ap-alert {
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ap-alert--error   { background: #fef2f2; color: #c0392b; border: 1px solid #fecaca; }
.ap-alert--success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }

/* Cards */
.ap-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(234,224,213,0.6);
}

.ap-card-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--secondary);
}

.ap-card-header h2 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.ap-card-header p {
    font-size: 0.9rem;
    color: var(--primary-text);
    margin: 0;
}

.ap-step-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Fields */
.ap-field-group {
    margin-bottom: 20px;
}

.ap-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--primary-text);
}

.ap-required { color: var(--accent); }

.ap-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--secondary);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--primary-text);
    background: var(--bg-color);
    outline: none;
    transition: var(--transition);
}

.ap-input:focus {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(181, 159, 120, 0.12);
}

.ap-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.ap-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C4033' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.ap-input-icon-wrap {
    position: relative;
}

.ap-input-icon-wrap > i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 0.9rem;
    pointer-events: none;
}

.ap-input--icon {
    padding-left: 42px;
}

.ap-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Amenities grid */
.ap-amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.ap-amenity-chip {
    cursor: pointer;
    user-select: none;
}

.ap-amenity-chip input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.ap-amenity-chip-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 10px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--secondary);
    background: var(--bg-color);
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-text);
    transition: var(--transition);
}

.ap-amenity-chip-inner i {
    font-size: 1.3rem;
    color: rgba(42, 54, 99, 0.4);
    transition: var(--transition);
}

.ap-amenity-chip:hover .ap-amenity-chip-inner {
    border-color: var(--accent);
    background: rgba(181, 159, 120, 0.06);
}

.ap-amenity-chip.selected .ap-amenity-chip-inner {
    border-color: var(--accent);
    background: rgba(181, 159, 120, 0.12);
    color: var(--accent);
}

.ap-amenity-chip.selected .ap-amenity-chip-inner i {
    color: var(--accent);
}

/* Dropzone */
.ap-dropzone {
    position: relative;
    border: 2px dashed var(--primary);
    border-radius: var(--radius-lg);
    padding: 48px 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-color);
}

.ap-dropzone:hover,
.ap-dropzone--over {
    border-color: var(--accent);
    background: rgba(181, 159, 120, 0.05);
}

.ap-dropzone-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.ap-dropzone-body {
    pointer-events: none;
}

.ap-dropzone-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.6rem;
    color: var(--accent);
    transition: var(--transition);
}

.ap-dropzone:hover .ap-dropzone-icon,
.ap-dropzone--over .ap-dropzone-icon {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.08);
}

.ap-dropzone-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: 6px;
}

.ap-dropzone-sub {
    font-size: 0.9rem;
    color: var(--primary-text);
    margin-bottom: 8px;
}

.ap-dropzone-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
}

.ap-dropzone-hint {
    font-size: 0.8rem;
    color: var(--primary-text);
    margin: 0;
}

/* Image preview grid */
.ap-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.ap-preview-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 2px solid var(--secondary);
    transition: var(--transition);
}

.ap-preview-item--cover {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(181, 159, 120, 0.25);
}

.ap-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ap-cover-badge {
    position: absolute;
    bottom: 6px;
    left: 6px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.ap-preview-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: var(--transition);
    opacity: 0;
}

.ap-preview-item:hover .ap-preview-remove {
    opacity: 1;
}

/* Per-file upload progress */
.ap-upload-progress-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ap-upload-item {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 4px 12px;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-color);
    border-radius: var(--radius-sm);
    border: 1px solid var(--secondary);
    transition: var(--transition);
}

.ap-upload-item.done {
    border-color: #86efac;
    background: #f0fdf4;
}

.ap-upload-filename {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    grid-column: 1;
    grid-row: 1;
}

.ap-upload-pct {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
}

.ap-upload-bar-wrap {
    grid-column: 1;
    grid-row: 2;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
    overflow: hidden;
}

.ap-upload-bar {
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.2s ease;
}

.ap-upload-item.done .ap-upload-bar {
    background: #22c55e;
}

/* Submit row */
.ap-submit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px 0 8px;
}

.ap-submit-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--primary-text);
    font-weight: 500;
}

.ap-submit-note i { color: var(--accent); }

.ap-submit-btn {
    padding: 15px 36px;
    font-size: 1rem;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .ap-card { padding: 24px 20px; }
    .ap-grid-2 { grid-template-columns: 1fr; }
    .ap-amenities-grid { grid-template-columns: repeat(3, 1fr); }
    .ap-page-header { flex-direction: column; gap: 16px; }
    .ap-submit-row { flex-direction: column; align-items: stretch; }
    .ap-submit-btn { width: 100%; }
}

@media (max-width: 480px) {
    .ap-amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .ap-preview-grid { grid-template-columns: repeat(2, 1fr); }
}


/* =========================================
   PROPERTY DETAILS — Gallery Slider & Lightbox
   ========================================= */

/* ── Slider ── */
.pd-gallery-hero {
    position: relative;
    overflow: hidden;
}

.pd-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
}

.pd-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.pd-slide.active {
    opacity: 1;
    pointer-events: auto;
    cursor: zoom-in;
}

.pd-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gallery overlay — updated layout */
.pd-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.38) 0%,
        transparent 35%,
        transparent 60%,
        rgba(0,0,0,0.22) 100%
    );
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 28px 32px;
    pointer-events: none;
    z-index: 10;
}

.pd-gallery-overlay > * { pointer-events: auto; }

.pd-gallery-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd-slider-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.pd-slider-btn:hover {
    background: rgba(255,255,255,0.32);
}

.pd-slider-counter {
    background: rgba(0,0,0,0.45);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.pd-expand-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.pd-expand-btn:hover {
    background: rgba(255,255,255,0.32);
}

/* Thumbnail strip */
.pd-thumb-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    gap: 6px;
    padding: 12px 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
    overflow-x: auto;
    scrollbar-width: none;
    z-index: 10;
    -webkit-overflow-scrolling: touch;
}

.pd-thumb-strip::-webkit-scrollbar { display: none; }

.pd-thumb {
    flex-shrink: 0;
    width: 64px;
    height: 44px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    background: none;
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pd-thumb.active {
    border-color: var(--white);
    box-shadow: 0 0 0 2px var(--accent);
}

.pd-thumb:hover {
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-2px);
}

/* ── Lightbox ── */
.pd-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.pd-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.pd-lightbox-img-wrap {
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-lightbox-img-wrap img {
    max-width: 100%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
    display: block;
    transition: opacity 0.2s ease;
}

.pd-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.pd-lightbox-close:hover {
    background: rgba(255,255,255,0.22);
    transform: rotate(90deg);
}

.pd-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.pd-lightbox-nav:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-50%) scale(1.08);
}

.pd-lightbox-prev { left: 20px; }
.pd-lightbox-next { right: 20px; }

.pd-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.5);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    letter-spacing: 0.3px;
}

/* ── Dynamic amenities count badge ── */
.pd-amenities-count {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-text);
    background: var(--bg-color);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: 1px solid var(--secondary);
}

/* Responsive gallery updates */
@media (max-width: 600px) {
    .pd-gallery-overlay { padding: 16px 18px; }
    .pd-gallery-controls { gap: 6px; }
    .pd-slider-btn,
    .pd-expand-btn { width: 34px; height: 34px; font-size: 0.8rem; }
    .pd-thumb { width: 52px; height: 36px; }
    .pd-thumb-strip { padding: 10px 18px; }
    .pd-lightbox-prev { left: 10px; }
    .pd-lightbox-next { right: 10px; }
    .pd-lightbox-nav { width: 42px; height: 42px; }
}


/* =========================================
   OWNER DASHBOARD — Listing Cards
   ========================================= */

.od-metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.od-metric-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(234,224,213,0.6);
    transition: var(--transition);
}

.od-metric-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.od-metric-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(181, 159, 120, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    flex-shrink: 0;
}

.od-metric-info h3 {
    font-size: 2rem;
    margin-bottom: 2px;
    color: var(--primary-text);
}

.od-metric-info p {
    font-size: 0.85rem;
    color: var(--primary-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin: 0;
}

.od-listings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.od-listings-header h2 { margin: 0; }

.od-listings-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Listing card */
.od-listing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(234,224,213,0.6);
    display: grid;
    grid-template-columns: 200px 1fr;
    transition: var(--transition);
}

.od-listing-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.od-card-img {
    position: relative;
    overflow: hidden;
}

.od-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.od-listing-card:hover .od-card-img img {
    transform: scale(1.04);
}

.od-card-status {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #22c55e;
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.od-card-body {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}

.od-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.od-card.pc-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-text);
    line-height: 1.3;
}

.od-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--primary-text);
    font-weight: 500;
}

.od-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.od-card-meta i { color: var(--accent); }

.od-card-price {
    text-align: right;
    flex-shrink: 0;
}

.od-card-price span {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    line-height: 1;
}

.od-card-price small {
    font-size: 0.8rem;
    color: rgba(42, 54, 99, 0.5);
}

.od-card-actions {
    display: flex;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--secondary);
}

.od-btn-view,
.od-btn-edit {
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
}

.od-btn-delete {
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    background: rgba(231,76,60,0.08);
    color: #c0392b;
    border: 1.5px solid rgba(231,76,60,0.2);
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.od-btn-delete:hover {
    background: #e74c3c;
    color: var(--white);
    border-color: #e74c3c;
}

/* Empty state */
.od-empty {
    text-align: center;
    padding: 60px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--secondary);
}

.od-empty i {
    font-size: 3.5rem;
    color: var(--primary);
    opacity: 0.5;
    margin-bottom: 20px;
}

.od-empty h3 { margin-bottom: 8px; }
.od-empty p  { margin-bottom: 24px; color: rgba(42, 54, 99, 0.6); }

/* ── Delete Confirmation Modal ── */
.od-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.od-modal-backdrop.active { opacity: 1; }

.od-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform 0.25s ease;
}

.od-modal-backdrop.active .od-modal {
    transform: translateY(0);
}

.od-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(231,76,60,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: #e74c3c;
}

.od-modal h3 { margin-bottom: 12px; font-size: 1.3rem; }
.od-modal p  { color: rgba(42, 54, 99, 0.7); margin-bottom: 28px; font-size: 0.95rem; }
.od-modal p strong { color: var(--text-dark); }

.od-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.od-modal-cancel {
    flex: 1;
    padding: 12px 20px;
    border-radius: var(--radius-md);
}

.od-modal-confirm {
    flex: 1;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    background: #e74c3c;
    color: var(--white);
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.od-modal-confirm:hover:not(:disabled) {
    background: #c0392b;
}

.od-modal-confirm:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .od-metrics-row { grid-template-columns: 1fr; }
    .od-listing-card { grid-template-columns: 1fr; }
    .od-card-img { height: 200px; }
    .od-card-top { flex-direction: column; }
    .od-card-price { text-align: left; }
}


/* =========================================
   PROPERTY DETAILS — Location Details & WhatsApp
   ========================================= */

.pd-location-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: var(--bg-color);
    border-radius: var(--radius-md);
    border: 1px solid var(--secondary);
}

.pd-loc-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--primary-text);
    font-weight: 500;
}

.pd-loc-row i {
    color: var(--accent);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.pd-maps-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.pd-maps-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* WhatsApp button */
.pd-whatsapp-btn {
    background: #25D366;
    color: var(--white) !important;
    border: none;
    padding: 15px 24px;
    font-size: 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.pd-whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(37,211,102,0.45);
    color: var(--white) !important;
}

.pd-whatsapp-btn i { font-size: 1.2rem; }


/* =========================================
   ADD PROPERTY — Custom Amenity Tags
   ========================================= */

.ap-custom-amenities-wrap {
    margin-top: 8px;
}

.ap-custom-amenity-input-row {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.ap-custom-amenity-input-row .ap-input {
    flex: 1;
}

.ap-custom-add-btn {
    flex-shrink: 0;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.ap-custom-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.ap-custom-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(181, 159, 120, 0.12);
    border: 1.5px solid var(--accent);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-full);
}

.ap-custom-tag-remove {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.75rem;
    padding: 0;
    display: flex;
    align-items: center;
    transition: var(--transition);
    line-height: 1;
}

.ap-custom-tag-remove:hover { color: #c0392b; }

/* Existing image preview in edit mode */
.ap-preview-item--existing {
    border-color: var(--primary);
}


/* =========================================
   OWNER PROFILE PAGE
   ========================================= */

/* Loading skeleton */
.op-loading { padding-top: 80px; }
.op-skeleton-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    padding: 40px 0 80px;
}
.op-skeleton-card {
    height: 480px;
    border-radius: var(--radius-lg);
    background: linear-gradient(90deg, var(--secondary) 25%, var(--bg-color) 50%, var(--secondary) 75%);
    background-size: 200% 100%;
    animation: pd-shimmer 1.5s infinite;
}
.op-skeleton-main { display: flex; flex-direction: column; gap: 20px; padding-top: 20px; }
.op-skeleton-line {
    height: 18px; border-radius: 6px;
    background: linear-gradient(90deg, var(--secondary) 25%, var(--bg-color) 50%, var(--secondary) 75%);
    background-size: 200% 100%;
    animation: pd-shimmer 1.5s infinite;
}
.op-skeleton-line.wide   { width: 70%; }
.op-skeleton-line.medium { width: 45%; }
.op-skeleton-block {
    height: 200px; border-radius: var(--radius-md);
    background: linear-gradient(90deg, var(--secondary) 25%, var(--bg-color) 50%, var(--secondary) 75%);
    background-size: 200% 100%;
    animation: pd-shimmer 1.5s infinite;
}

/* Hero banner */
.op-hero {
    margin-top: 72px;
    height: 200px;
    position: relative;
    overflow: hidden;
}
.op-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--tertiary) 100%);
}
.op-hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-start;
    padding-top: 28px;
}
.op-back-btn {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none;
}
.op-back-btn:hover {
    background: rgba(255,255,255,0.22);
    color: var(--white);
    transform: translateX(-3px);
}

/* Layout */
.op-layout {
    background: var(--bg-color);
    padding: 0 0 80px;
}
.op-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    margin-top: -60px; /* pull up over hero */
    position: relative;
    z-index: 10;
}

/* Profile card */
.op-profile-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(234,224,213,0.6);
    text-align: center;
    position: sticky;
    top: 100px;
}

.op-avatar-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}

.op-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent);
    border: 4px solid var(--white);
    box-shadow: 0 4px 20px rgba(42, 54, 99, 0.15);
    overflow: hidden;
}

.op-avatar.has-image { background: transparent; }

.op-verified-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.op-name {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.op-role-label {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

/* Stats row */
.op-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 16px 0;
    border-top: 1px solid var(--secondary);
    border-bottom: 1px solid var(--secondary);
    margin-bottom: 20px;
}
.op-stat { flex: 1; text-align: center; }
.op-stat-num {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-text);
    line-height: 1;
    margin-bottom: 4px;
}
.op-stat-lbl {
    font-size: 0.72rem;
    color: var(--primary-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.op-stat-sep {
    width: 1px;
    height: 32px;
    background: var(--secondary);
    flex-shrink: 0;
}

/* Trust badges */
.op-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    text-align: left;
}
.op-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-text);
    padding: 8px 12px;
    background: var(--bg-color);
    border-radius: var(--radius-sm);
    border: 1px solid var(--secondary);
}
.op-trust-badge i { color: #22c55e; width: 16px; text-align: center; }

/* Contact actions */
.op-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.op-wa-btn {
    background: #25D366;
    color: var(--white) !important;
    border: none;
    padding: 13px 20px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}
.op-wa-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.45);
    color: var(--white) !important;
}

.op-call-btn {
    background: var(--bg-color);
    color: var(--primary-text);
    border: 1.5px solid var(--secondary);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}
.op-call-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(181, 159, 120, 0.06);
}

.op-email-btn {
    background: var(--bg-color);
    color: var(--primary-text);
    border: 1.5px solid var(--secondary);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}
.op-email-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(181, 159, 120, 0.06);
}

.op-no-contact {
    font-size: 0.85rem;
    color: rgba(42, 54, 99, 0.5);
    text-align: center;
    margin: 0;
}

/* Contact details */
.op-detail-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--secondary);
}
.op-detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--primary-text);
    font-weight: 500;
}
.op-detail-row i { width: 16px; text-align: center; color: var(--accent); }

/* Main content */
.op-section-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(234,224,213,0.6);
}

.op-section-title {
    font-size: 1.15rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-text);
}
.op-section-title i { color: var(--accent); }

.op-section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.op-listings-count {
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-left: 8px;
}

.op-bio {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--primary-text);
    margin-bottom: 24px;
}

.op-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.op-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-color);
    border-radius: var(--radius-md);
    border: 1px solid var(--secondary);
}

.op-info-item i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 2px;
    width: 16px;
    flex-shrink: 0;
}

.op-info-item > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.op-info-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: rgba(42, 54, 99, 0.5);
}

.op-info-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-text);
}

/* Listings grid */
.op-listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.op-listings-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: rgba(42, 54, 99, 0.5);
    font-size: 0.95rem;
}

.op-no-listings {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: rgba(42, 54, 99, 0.5);
}
.op-no-listings i { font-size: 2.5rem; margin-bottom: 12px; display: block; opacity: 0.4; }

.op-listing-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}
.op-listing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.op-listing-img {
    position: relative;
    height: 140px;
    overflow: hidden;
    background: var(--secondary);
}
.op-listing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.op-listing-card:hover .op-listing-img img { transform: scale(1.05); }

.op-listing-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(42, 54, 99, 0.3);
}

.op-listing-type {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    text-transform: capitalize;
}

.op-listing-body { padding: 14px; }

.op-listing-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.op-listing-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 0.78rem;
    color: var(--primary-text);
    margin-bottom: 8px;
}
.op-listing-meta span { display: flex; align-items: center; gap: 5px; }
.op-listing-meta i { color: var(--accent); }

.op-listing-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent);
}
.op-listing-price small {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(42, 54, 99, 0.5);
}

/* Responsive */
@media (max-width: 900px) {
    .op-grid { grid-template-columns: 1fr; margin-top: 0; }
    .op-profile-card { position: static; }
    .op-hero { height: 140px; }
    .op-skeleton-layout { grid-template-columns: 1fr; }
    .op-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .op-section-card { padding: 24px 20px; }
    .op-listings-grid { grid-template-columns: 1fr 1fr; }
}


/* =========================================
   PROPERTY DETAILS — Owner Sections
   ========================================= */

/* Sidebar owner link row */
.pd-owner-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-color);
    border-radius: var(--radius-md);
    border: 1px solid var(--secondary);
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 16px;
    cursor: pointer;
}
.pd-owner-link:hover {
    border-color: var(--accent);
    background: rgba(181, 159, 120, 0.06);
    transform: translateX(2px);
}
.pd-owner-chevron {
    margin-left: auto;
    font-size: 0.75rem;
    color: rgba(42, 54, 99, 0.4);
}

/* Profile button */
.pd-profile-btn {
    background: var(--bg-color);
    color: var(--primary-text);
    border: 1.5px solid var(--secondary);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none;
}
.pd-profile-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(181, 159, 120, 0.06);
}

/* Email button */
.pd-email-btn {
    background: var(--bg-color);
    color: var(--primary-text);
    border: 1.5px solid var(--secondary);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none;
}
.pd-email-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(181, 159, 120, 0.06);
}

/* Meet the Owner card */
.pd-owner-card-main {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.pd-owner-main-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--secondary);
}

.pd-owner-main-left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.pd-owner-main-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent);
    flex-shrink: 0;
    border: 3px solid var(--white);
    box-shadow: 0 2px 12px rgba(42, 54, 99, 0.12);
    overflow: hidden;
}
.pd-owner-main-avatar.has-image { background: transparent; }

.pd-owner-main-info { flex: 1; }

.pd-owner-main-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.pd-owner-main-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 8px;
}
.pd-owner-main-badge i { font-size: 0.75rem; }

.pd-owner-main-bio {
    font-size: 0.9rem;
    color: var(--primary-text);
    line-height: 1.6;
    margin: 0;
}

.pd-view-profile-btn {
    flex-shrink: 0;
    padding: 10px 18px;
    font-size: 0.88rem;
    border-radius: var(--radius-md);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

/* Inline contact row in main owner card */
.pd-owner-main-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pd-owner-main-contacts .btn {
    flex: 1;
    min-width: 140px;
    padding: 11px 16px;
    font-size: 0.88rem;
    border-radius: var(--radius-md);
}

/* I'm Interested CTA */
.pd-interested-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--tertiary) 100%);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    margin-bottom: 24px;
}

.pd-interested-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.pd-interested-text h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.pd-interested-text p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 0;
}

.pd-interested-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.pd-interested-actions .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    white-space: nowrap;
}

/* Mobile CTA btns */
.pd-mobile-cta-btns {
    display: flex;
    gap: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .pd-owner-main-inner { flex-direction: column; }
    .pd-view-profile-btn { width: 100%; justify-content: center; }
    .pd-interested-inner { flex-direction: column; align-items: flex-start; }
    .pd-interested-actions { width: 100%; }
    .pd-interested-actions .btn { flex: 1; }
    .pd-owner-main-contacts .btn { min-width: 120px; }
}

@media (max-width: 480px) {
    .pd-interested-cta { padding: 24px 20px; }
    .pd-owner-main-contacts { flex-direction: column; }
    .pd-owner-main-contacts .btn { min-width: unset; }
}


/* =========================================
   PROFILE EDIT PAGE
   ========================================= */

.pf-profile-section {
    padding: 100px 0 80px;
    background: var(--bg-color);
    min-height: 100vh;
}

.pf-container { max-width: 960px; }

.pf-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 36px;
    padding-top: 20px;
}
.pf-page-header h1 { font-size: 2rem; margin-bottom: 6px; }
.pf-page-header p  { color: rgba(42, 54, 99, 0.65); font-size: 1rem; margin: 0; }

.pf-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: flex-start;
}

/* Identity card */
.pf-identity-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(234,224,213,0.6);
    text-align: center;
    position: sticky;
    top: 100px;
}

.pf-avatar-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}

.pf-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--accent);
    border: 3px solid var(--white);
    box-shadow: 0 4px 16px rgba(42, 54, 99, 0.12);
    overflow: hidden;
    margin: 0 auto;
}

.pf-verified-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    font-size: 0.85rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.pf-name  { font-size: 1.2rem; margin-bottom: 4px; }
.pf-email { font-size: 0.85rem; color: rgba(42, 54, 99, 0.6); margin-bottom: 4px; }
.pf-role  { font-size: 0.8rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 20px; }

.pf-trust-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    text-align: left;
}

.pf-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-text);
    padding: 7px 10px;
    background: var(--bg-color);
    border-radius: var(--radius-sm);
}
.pf-trust-item i { color: #22c55e; width: 14px; }

.pf-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Add property owner info note */
.ap-owner-info-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--primary-text);
    font-weight: 500;
    padding: 12px 16px;
    background: rgba(181, 159, 120, 0.08);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(181, 159, 120, 0.2);
    margin-top: 8px;
}
.ap-owner-info-note i { color: var(--accent); flex-shrink: 0; }

/* Responsive */
@media (max-width: 768px) {
    .pf-grid { grid-template-columns: 1fr; }
    .pf-identity-card { position: static; }
    .pf-page-header { flex-direction: column; gap: 16px; }
}

/* ================================
   NEW PROPERTIES & DETAILS STYLES
   ================================ */

/* Property Filter Layout */
.pf-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
.pf-mobile-bar {
    display: none;
}
.pf-sidebar {
    width: 320px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 20px;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    word-wrap: break-word;
}
.pf-sidebar::-webkit-scrollbar {
    width: 6px;
}
.pf-sidebar::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
}
.pf-sidebar-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--light-bg);
}
.pf-sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.pf-reset-btn {
    background: transparent;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 4px;
}
.pf-reset-btn:hover {
    color: var(--primary);
}
.pf-close-btn {
    display: none;
}

.pf-section {
    margin-bottom: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}
.pf-section-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-text);
    padding: 8px 0;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}
.pf-section-toggle:hover {
    background: rgba(42, 54, 99, 0.05);
    padding: 8px 8px;
}
.pf-section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-text);
}
.pf-section-label i {
    width: 16px;
    text-align: center;
}
.pf-chevron {
    transition: var(--transition);
    color: var(--secondary);
}
.pf-section.collapsed .pf-chevron {
    transform: rotate(-180deg);
}
.pf-section-body {
    padding-top: 12px;
    transition: var(--transition);
    animation: slideDown 0.3s ease-out;
}
.pf-section.collapsed .pf-section-body {
    display: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pf-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    gap: 10px;
}
.pf-input-wrap i {
    color: var(--primary);
}
.pf-input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--primary-text);
    width: 100%;
    box-sizing: border-box;
}
.pf-input::placeholder {
    color: var(--gray);
}
.pf-input:focus {
    background: rgba(255, 255, 255, 0.8);
}
.pf-input-clear {
    background: transparent;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: var(--transition);
}
.pf-input-clear:hover {
    color: var(--primary);
    background: rgba(42, 54, 99, 0.1);
}

/* Enhanced Select Styling */
.pf-input[type="select"],
select.pf-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23B59F78' d='M6 8L0 2h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px 8px;
    padding-right: 36px;
    cursor: pointer;
}

/* Enhanced Number Input Styling */
.pf-input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}
.pf-input[type="number"]::-webkit-outer-spin-button,
.pf-input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* Radio Button Enhancement */
.pf-type-radio,
.pf-room-radio {
    display: none;
}
.pf-type-chip,
.pf-room-chip {
    display: block;
    cursor: pointer;
    transition: var(--transition);
}
.pf-type-chip-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-bg);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    font-weight: 500;
    color: var(--primary-text);
}
.pf-type-radio:checked + .pf-type-chip-inner {
    background: rgba(42, 54, 99, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
    box-shadow: 0 0 0 3px rgba(42, 54, 99, 0.1);
}
.pf-type-chip:hover .pf-rooms-grid {
    font-weight: 600;
    box-shadow: 0 0 0 3px rgba(42, 54, 99, 0.1);
}
.pf-room-chip:hover span {
    background: rgba(42, 54, 99, 0.05);
    border-color: rgba(42, 54, 99, 0.3);
}

/* Checkbox Enhancement */
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
    border: 2px solid var(--primary);
    border-radius: 4px;
    transition: var(--transition);
}
input[type="checkbox"]:hover {
    box-shadow: 0 0 0 3px rgba(42, 54, 99, 0.1);
}

/* Amenities Grid Enhancement */
#filter-amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}
#filter-amenities-grid label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    width: 100%;
    box-sizing: border-box;
    min-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#filter-amenities-grid label:hover {
    background: rgba(42, 54, 99, 0.05);
}
#filter-amenities-grid input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    flex-shrink: 0;
    accent-color: var(--primary);
}
#filter-amenities-grid span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-text);
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    flex: 1;
}

.pf-type-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.pf-type-chip {
    display: block;
    cursor: pointer;
}
.pf-type-radio {
    display: none;
}
.pf-type-chip-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid transparent;
    font-weight: 500;
    color: var(--primary-text);
    width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pf-type-radio:checked + .pf-type-chip-inner {
    background: rgba(42, 54, 99, 0.05);
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
}

.pf-rooms-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
}
.pf-room-chip {
    cursor: pointer;
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
    text-align: center;
}
.pf-room-radio {
    display: none;
}
.pf-room-chip span {
    display: block;
    padding: 10px 8px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.85rem;
    line-height: 1.2;
    min-height: 44px;
}
.pf-room-radio:checked + span {
    background: rgba(42, 54, 99, 0.05);
    border-color: var(--primary);
    color: var(--primary);
}

.pf-sidebar-footer {
    display: none;
}

.pf-results {
    flex: 1;
}
.pf-controls-bar {
    margin-bottom: 24px;
}
.pf-result-count {
    font-size: 1.25rem;
    font-weight: 700;
}

.properties-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Modern Property Card */
.pc-modern {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.pc-modern:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}
.pc-image-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #e0e0e0;
}
.pc-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.pc-image-wrap img.active {
    opacity: 1;
}
.pc-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}
.pc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.pc-dot.active {
    background: var(--white);
    transform: scale(1.3);
}
.pc-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--white);
    color: var(--primary-text);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.pc-badge-verified {
    background: #2ecc71;
    color: var(--white);
}
.pc-fav-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    color: var(--gray);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pc-fav-btn:hover {
    transform: scale(1.1);
}
.pc-fav-btn.active {
    color: #e74c3c;
}

.pc-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.pc-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}
.pc-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}
.pc-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray);
}
.pc-type {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    background: rgba(181, 159, 120, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}
.pc-title {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--primary-text);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pc-location {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 16px;
}
.pc-amenities {
    margin-top: auto;
    display: flex;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--light-bg);
}
.pc-amenities span {
    font-size: 0.85rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Responsive Properties Page */
@media (max-width: 992px) {
    .pf-layout {
        flex-direction: column;
    }
    .pf-mobile-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 20px;
        padding: 16px 20px;
        background: var(--white);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-sm);
    }
    .pf-mobile-toggle {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 16px;
        background: var(--primary);
        color: var(--white);
        border: none;
        border-radius: var(--radius-sm);
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
    }
    .pf-mobile-toggle:hover {
        background: var(--accent-hover);
        transform: translateY(-1px);
    }
    #pf-result-count {
        display: none;
    }
    
    .pf-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        max-height: 100vh;
        z-index: 2000;
        border-radius: 0;
        transition: left 0.3s ease;
        display: flex;
        flex-direction: column;
        box-shadow: 0 0 20px rgba(0,0,0,0.15);
    }
    .pf-sidebar.active {
        left: 0;
    }
    .pf-close-btn {
        display: block;
        background: transparent;
        border: none;
        font-size: 1.5rem;
        color: var(--primary-text);
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 10;
        cursor: pointer;
        padding: 8px;
        border-radius: 50%;
        transition: var(--transition);
    }
    .pf-close-btn:hover {
        background: rgba(42, 54, 99, 0.1);
        color: var(--primary);
    }
    .pf-sidebar-footer {
        display: block;
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid var(--light-bg);
    }
    .pf-apply-btn {
        width: 100%;
    }
    
    .pf-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1999;
        display: none;
    }
    .pf-overlay.active {
        display: block;
    }
}

/* Missing Properties Page Styles */

/* Mobile Bar Components */
.pf-mobile-bar {
    display: none;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.pf-mobile-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.pf-mobile-toggle:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.pf-active-count {
    display: none;
    background: #e74c3c;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    margin-left: 4px;
}

.pf-result-count-mobile {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

/* Sidebar Head Actions */
.pf-sidebar-head-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Active Filters Display */
.pf-active-filters {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pf-active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--light-bg);
    color: var(--primary-text);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
}

.pf-active-filter-tag button {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 0;
    margin-left: 4px;
    font-size: 0.8rem;
}

.pf-active-filter-tag button:hover {
    color: var(--primary);
}

/* Enhanced Property Card Animations */
.pc-modern {
    transition: var(--transition);
    position: relative;
}

.pc-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(42, 54, 99, 0.05) 0%, rgba(181, 159, 120, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.pc-modern:hover::before {
    opacity: 1;
}

.pc-image-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
}

.pc-image-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.pc-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.pc-image-wrap img.active {
    opacity: 1;
    transform: scale(1);
}

.pc-image-wrap:hover img:not(.active) {
    transform: scale(1.05);
}

.pc-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
    padding: 4px 8px;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.pc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transition: var(--transition);
    cursor: pointer;
}

.pc-dot.active {
    background: var(--white);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255,255,255,0.8);
}

.pc-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pc-badge-verified {
    background: #2ecc71;
    color: var(--white);
}

.pc-fav-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pc-fav-btn:hover {
    transform: scale(1.1);
    background: var(--white);
    color: #e74c3c;
}

.pc-fav-btn.active {
    color: #e74c3c;
    background: var(--white);
}

.pc-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.pc-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.pc-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.pc-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray);
}

.pc-type {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    background: rgba(181, 159, 120, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 4px;
}

.pc-title {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--primary-text);
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pc-location {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pc-amenities {
    margin-top: auto;
    display: flex;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--light-bg);
    flex-wrap: wrap;
}

.pc-amenities span {
    font-size: 0.85rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--light-bg);
    padding: 4px 8px;
    border-radius: 4px;
}

/* Loading State */
.property-loading {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    color: var(--gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.property-loading i {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .pc-modern {
        margin-bottom: 16px;
    }
    
    .pc-image-wrap {
        height: 180px;
    }
    
    .pc-body {
        padding: 16px;
    }
    
    .pc-price {
        font-size: 1.2rem;
    }
    
    .pc-title {
        font-size: 1rem;
    }
    
    .pc-amenities {
        gap: 8px;
    }
    
    .pc-amenities span {
        font-size: 0.8rem;
        padding: 3px 6px;
    }
    
    .pf-mobile-bar {
        padding: 12px 16px;
    }
    
    .pf-mobile-toggle {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    /* Enhanced mobile sidebar fixes */
    .pf-section {
        margin-bottom: 16px;
        padding: 12px;
    }
    
    .pf-input-wrap {
        padding: 8px 12px;
    }
    
    #filter-amenities-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        font-size: 13px;
    }
    
    #filter-amenities-grid label {
        padding: 6px;
        min-height: 32px;
    }
    
    #filter-amenities-grid span {
        font-size: 0.8rem;
    }
    
    .pf-rooms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .pf-room-chip span {
        padding: 8px 4px;
        font-size: 0.8rem;
    }
    
    .pf-room-chip {
        flex: 0 0 auto;
        max-width: 80px;
    }
    
    .pf-type-chip-inner {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .properties-grid-full {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pc-image-wrap {
        height: 200px;
    }
    
    .pc-amenities {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
}
