:root {
    --primary: #1a1a2e;
    --primary-light: #16213e;
    --accent: #c9a962;
    --accent-light: #e8d5a3;
    --accent-dark: #a68b4c;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Noto Sans KR', sans-serif; background: var(--gray-50); color: var(--gray-800); line-height: 1.6; overflow-x: hidden; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(26, 26, 46, 0.95); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(201, 169, 98, 0.2); transition: all 0.3s ease; }
.header-inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--white); letter-spacing: -0.5px; }
.logo-text span { color: var(--accent); }
.nav { display: flex; align-items: center; gap: 8px; }
.nav-link { color: var(--gray-300); text-decoration: none; padding: 10px 20px; border-radius: var(--radius-sm); font-weight: 500; font-size: 15px; transition: all 0.2s ease; }
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 16px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14px; text-decoration: none; cursor: pointer; border: none; transition: all 0.2s ease; font-family: inherit; }
.btn-ghost { background: transparent; color: var(--gray-300); border: 1px solid rgba(255,255,255,0.1); }
.btn-ghost:hover { background: rgba(255,255,255,0.05); color: var(--white); }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--primary); box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201, 169, 98, 0.4); }
.btn-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--primary); }
.btn-lg { padding: 16px 32px; font-size: 16px; }

.hero { min-height: 100vh; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #0f3460 100%); position: relative; display: flex; align-items: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a962' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 0.5; }
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-shape { position: absolute; border-radius: 50%; background: linear-gradient(135deg, var(--accent), transparent); opacity: 0.1; animation: float 20s infinite ease-in-out; }
.hero-shape:nth-child(1) { width: 600px; height: 600px; top: -200px; right: -100px; }
.hero-shape:nth-child(2) { width: 400px; height: 400px; bottom: -100px; left: -100px; animation-delay: -5s; }
.hero-shape:nth-child(3) { width: 300px; height: 300px; top: 50%; left: 50%; animation-delay: -10s; }
@keyframes float { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 25% { transform: translate(30px, -30px) rotate(5deg); } 50% { transform: translate(-20px, 20px) rotate(-5deg); } 75% { transform: translate(20px, 30px) rotate(3deg); } }
.hero-inner { max-width: 1400px; margin: 0 auto; padding: 120px 40px 80px; position: relative; z-index: 1; width: 100%; }
.hero-content { max-width: 700px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201, 169, 98, 0.15); border: 1px solid rgba(201, 169, 98, 0.3); padding: 8px 16px; border-radius: 100px; color: var(--accent); font-size: 14px; font-weight: 500; margin-bottom: 24px; animation: fadeInUp 0.6s ease; }
.hero-badge-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.2); } }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(48px, 7vw, 72px); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 24px; animation: fadeInUp 0.6s ease 0.1s backwards; }
.hero-title span { color: var(--accent); position: relative; }
.hero-title span::after { content: ''; position: absolute; bottom: 5px; left: 0; right: 0; height: 8px; background: linear-gradient(90deg, var(--accent), transparent); opacity: 0.3; z-index: -1; }
.hero-desc { font-size: 18px; color: var(--gray-400); margin-bottom: 40px; line-height: 1.8; animation: fadeInUp 0.6s ease 0.2s backwards; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.6s ease 0.3s backwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-stats { display: flex; gap: 48px; margin-top: 80px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); animation: fadeInUp 0.6s ease 0.4s backwards; }
.hero-stat-value { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--accent); line-height: 1; }
.hero-stat-label { font-size: 14px; color: var(--gray-400); margin-top: 8px; }

.search-section { background: var(--white); padding: 60px 40px; margin-top: -60px; position: relative; z-index: 10; max-width: 1200px; margin-left: auto; margin-right: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.search-tabs { display: flex; gap: 8px; margin-bottom: 32px; }
.search-tab { padding: 12px 24px; border-radius: var(--radius-sm); font-weight: 600; font-size: 15px; cursor: pointer; border: none; background: var(--gray-100); color: var(--gray-600); transition: all 0.2s ease; font-family: inherit; }
.search-tab.active { background: var(--primary); color: var(--white); }
.search-tab:hover:not(.active) { background: var(--gray-200); }
.search-form { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 16px; align-items: end; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.5px; }
.form-input, .form-select { padding: 14px 16px; border: 2px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 15px; font-family: inherit; background: var(--white); transition: all 0.2s ease; width: 100%; }
.form-input:focus, .form-select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.1); }
.search-btn { height: 52px; padding: 0 40px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--primary); border: none; border-radius: var(--radius-sm); font-weight: 700; font-size: 15px; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all 0.2s ease; font-family: inherit; }
.search-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201, 169, 98, 0.4); }

.section { padding: 100px 40px; max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge { display: inline-block; background: rgba(201, 169, 98, 0.1); color: var(--accent-dark); padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 48px); font-weight: 700; color: var(--gray-800); margin-bottom: 16px; }
.section-desc { font-size: 18px; color: var(--gray-500); max-width: 600px; margin: 0 auto; }

.properties-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 32px; }
.property-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s ease; cursor: pointer; }
.property-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.property-image { position: relative; height: 240px; background: linear-gradient(135deg, var(--primary-light), var(--primary)); overflow: hidden; }
.property-image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 64px; opacity: 0.3; }
.property-badges { position: absolute; top: 16px; left: 16px; display: flex; gap: 8px; }
.property-badge { padding: 6px 12px; border-radius: 6px; font-size: 12px; font-weight: 600; backdrop-filter: blur(10px); }
.property-badge.sale { background: rgba(239, 68, 68, 0.9); color: white; }
.property-badge.rent { background: rgba(34, 197, 94, 0.9); color: white; }
.property-badge.new { background: rgba(201, 169, 98, 0.95); color: var(--primary); }
.property-badge.premium { background: linear-gradient(135deg, #c9a962, #a68b4c); color: var(--primary); }
.property-favorite { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s ease; border: none; font-size: 18px; }
.property-favorite:hover { background: var(--white); transform: scale(1.1); }
.property-favorite.active { background: var(--danger); color: white; }
.property-content { padding: 24px; }
.property-location { font-size: 13px; color: var(--gray-500); display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.property-title { font-size: 20px; font-weight: 700; color: var(--gray-800); margin-bottom: 16px; line-height: 1.4; }
.property-specs { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); margin-bottom: 16px; }
.property-spec { display: flex; flex-direction: column; gap: 4px; }
.property-spec-value { font-weight: 700; color: var(--gray-800); }
.property-spec-label { font-size: 12px; color: var(--gray-500); }
.property-footer { display: flex; justify-content: space-between; align-items: center; }
.property-price { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--accent-dark); }
.property-price span { font-size: 14px; font-weight: 400; color: var(--gray-500); }
.property-actions { display: flex; gap: 8px; }
.property-action-btn { width: 40px; height: 40px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; border: 2px solid var(--gray-200); background: transparent; cursor: pointer; transition: all 0.2s ease; color: var(--gray-600); }
.property-action-btn:hover { border-color: var(--accent); color: var(--accent); }

.bid-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); padding: 100px 40px; position: relative; overflow: hidden; }
.bid-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.bid-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 4vw, 48px); font-weight: 700; color: var(--white); margin-bottom: 24px; }
.bid-content h2 span { color: var(--accent); }
.bid-content p { font-size: 18px; color: var(--gray-400); margin-bottom: 32px; line-height: 1.8; }
.bid-features { display: flex; flex-direction: column; gap: 20px; }
.bid-feature { display: flex; gap: 16px; align-items: start; }
.bid-feature-icon { width: 48px; height: 48px; background: rgba(201, 169, 98, 0.15); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 24px; }
.bid-feature-text h4 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.bid-feature-text p { font-size: 14px; color: var(--gray-400); margin-bottom: 0; }
.bid-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.bid-card-header { text-align: center; margin-bottom: 32px; }
.bid-card-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; }
.bid-card-subtitle { color: var(--gray-500); font-size: 14px; }
.bid-form { display: flex; flex-direction: column; gap: 20px; }
.bid-property-preview { display: flex; gap: 16px; padding: 16px; background: var(--gray-50); border-radius: var(--radius-sm); }
.bid-property-img { width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary-light), var(--primary)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 32px; flex-shrink: 0; }
.bid-property-info h4 { font-weight: 600; color: var(--gray-800); margin-bottom: 4px; }
.bid-property-info p { font-size: 13px; color: var(--gray-500); margin-bottom: 8px; }
.bid-property-info .current-price { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--accent-dark); }
.bid-input-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-600); margin-bottom: 8px; }
.bid-input-wrapper { display: flex; align-items: center; border: 2px solid var(--gray-200); border-radius: var(--radius-sm); overflow: hidden; transition: all 0.2s ease; }
.bid-input-wrapper:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.1); }
.bid-input-prefix { padding: 14px 16px; background: var(--gray-50); color: var(--gray-500); font-weight: 500; border-right: 2px solid var(--gray-200); }
.bid-input { flex: 1; padding: 14px 16px; border: none; font-size: 18px; font-weight: 600; font-family: inherit; }
.bid-input:focus { outline: none; }
.bid-input-suffix { padding: 14px 16px; color: var(--gray-500); font-weight: 500; }
.bid-deposit-info { display: flex; justify-content: space-between; padding: 16px; background: rgba(201, 169, 98, 0.1); border-radius: var(--radius-sm); border: 1px dashed var(--accent); }
.bid-deposit-info span { color: var(--gray-600); }
.bid-deposit-info strong { color: var(--accent-dark); font-size: 18px; }
.bid-warning { display: flex; gap: 12px; padding: 16px; background: rgba(245, 158, 11, 0.1); border-radius: var(--radius-sm); border-left: 4px solid var(--warning); }
.bid-warning-icon { font-size: 20px; flex-shrink: 0; }
.bid-warning-text { font-size: 13px; color: var(--gray-700); line-height: 1.6; }
.bid-submit { width: 100%; padding: 18px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--primary); border: none; border-radius: var(--radius-sm); font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.2s ease; font-family: inherit; }
.bid-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201, 169, 98, 0.4); }

.partners-section { background: var(--white); }
.partners-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.partner-card { background: var(--gray-50); border-radius: var(--radius); padding: 32px; transition: all 0.3s ease; border: 2px solid transparent; }
.partner-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.partner-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; }
.partner-category { font-size: 12px; font-weight: 600; color: var(--accent-dark); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.partner-name { font-size: 20px; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; }
.partner-desc { font-size: 14px; color: var(--gray-500); margin-bottom: 16px; line-height: 1.6; }
.partner-contact { display: flex; gap: 8px; }
.partner-contact a { display: flex; align-items: center; gap: 6px; padding: 8px 12px; background: var(--white); border-radius: 6px; font-size: 13px; color: var(--gray-600); text-decoration: none; transition: all 0.2s ease; }
.partner-contact a:hover { background: var(--primary); color: var(--white); }

.services-section { background: var(--gray-50); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px 32px; text-align: center; transition: all 0.3s ease; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-light)); transform: scaleX(0); transition: transform 0.3s ease; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-icon { width: 80px; height: 80px; background: linear-gradient(135deg, rgba(201, 169, 98, 0.1), rgba(201, 169, 98, 0.05)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 36px; transition: all 0.3s ease; }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); transform: scale(1.1); }
.service-title { font-size: 20px; font-weight: 700; color: var(--gray-800); margin-bottom: 12px; }
.service-desc { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

.ad-banner { background: var(--gray-100); border: 2px dashed var(--gray-300); border-radius: var(--radius); padding: 20px; text-align: center; color: var(--gray-500); font-size: 14px; }
.ad-banner-horizontal { max-width: 1400px; margin: 40px auto; padding: 0 40px; }
.ad-banner-horizontal .ad-banner { height: 120px; display: flex; align-items: center; justify-content: center; }

.trust-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); padding: 80px 40px; }
.trust-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.trust-title { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--white); margin-bottom: 48px; }
.trust-logos { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; }
.trust-logo { display: flex; flex-direction: column; align-items: center; gap: 12px; opacity: 0.7; transition: opacity 0.3s ease; }
.trust-logo:hover { opacity: 1; }
.trust-logo-icon { width: 60px; height: 60px; background: rgba(255,255,255,0.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 28px; }
.trust-logo span { color: var(--gray-400); font-size: 13px; font-weight: 500; }

.cta-section { padding: 100px 40px; text-align: center; background: var(--white); }
.cta-inner { max-width: 800px; margin: 0 auto; }
.cta-title { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 56px); font-weight: 700; color: var(--gray-800); margin-bottom: 24px; }
.cta-title span { color: var(--accent); }
.cta-desc { font-size: 18px; color: var(--gray-500); margin-bottom: 40px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.footer { background: var(--primary); color: var(--gray-400); padding: 80px 40px 40px; }
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 60px; margin-bottom: 60px; }
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 44px; height: 44px; background: rgba(255,255,255,0.05); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--gray-400); text-decoration: none; transition: all 0.2s ease; }
.footer-social a:hover { background: var(--accent); color: var(--primary); }
.footer-column h4 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 24px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--gray-400); text-decoration: none; font-size: 14px; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-copyright { font-size: 13px; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--gray-400); text-decoration: none; font-size: 13px; transition: color 0.2s ease; }
.footer-legal a:hover { color: var(--accent); }

.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 40px; }
.modal-overlay.active { display: flex; }
.modal { background: var(--white); border-radius: var(--radius-lg); max-width: 600px; width: 100%; max-height: 90vh; overflow-y: auto; animation: modalIn 0.3s ease; }
@keyframes modalIn { from { opacity: 0; transform: scale(0.95) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-header { padding: 24px 32px; border-bottom: 1px solid var(--gray-100); display: flex; justify-content: space-between; align-items: center; }
.modal-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--gray-800); }
.modal-close { width: 40px; height: 40px; border-radius: 50%; border: none; background: var(--gray-100); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 20px; transition: all 0.2s ease; }
.modal-close:hover { background: var(--gray-200); }
.modal-body { padding: 32px; }
.property-detail-header { display: flex; gap: 24px; margin-bottom: 32px; }
.property-detail-image { width: 200px; height: 150px; background: linear-gradient(135deg, var(--primary-light), var(--primary)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 48px; flex-shrink: 0; }
.property-detail-info h3 { font-size: 24px; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; }
.property-detail-info p { color: var(--gray-500); margin-bottom: 16px; }
.property-detail-price { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--accent-dark); }
.property-detail-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.property-detail-spec { background: var(--gray-50); padding: 16px; border-radius: var(--radius-sm); text-align: center; }
.property-detail-spec strong { display: block; font-size: 20px; color: var(--gray-800); margin-bottom: 4px; }
.property-detail-spec span { font-size: 13px; color: var(--gray-500); }
.property-detail-actions { display: flex; gap: 12px; }
.property-detail-actions .btn { flex: 1; }

.notification { position: fixed; bottom: 32px; right: 32px; background: var(--primary); color: var(--white); padding: 16px 24px; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; z-index: 3000; transform: translateY(100px); opacity: 0; transition: all 0.3s ease; }
.notification.show { transform: translateY(0); opacity: 1; }
.notification.success { background: var(--success); }
.notification.warning { background: var(--warning); }
.notification.error { background: var(--danger); }

.fab { position: fixed; bottom: 32px; right: 32px; width: 64px; height: 64px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--primary); box-shadow: 0 8px 25px rgba(201, 169, 98, 0.4); cursor: pointer; z-index: 100; transition: all 0.3s ease; border: none; }
.fab:hover { transform: scale(1.1); }

.alert-banner { background: linear-gradient(90deg, var(--accent), var(--accent-dark)); color: var(--primary); padding: 12px 40px; text-align: center; font-size: 14px; font-weight: 500; }
.alert-banner a { color: var(--primary); font-weight: 700; text-decoration: underline; }

@media (max-width: 1200px) { .services-grid { grid-template-columns: repeat(2, 1fr); } .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 992px) { .header-inner { padding: 0 24px; } .nav { display: none; } .bid-inner { grid-template-columns: 1fr; gap: 48px; } .search-form { grid-template-columns: repeat(2, 1fr); } .search-btn { grid-column: span 2; } }
@media (max-width: 768px) { .hero-inner { padding: 100px 24px 60px; } .hero-stats { gap: 32px; flex-wrap: wrap; } .search-section { padding: 32px 24px; margin: -40px 16px 0; } .search-form { grid-template-columns: 1fr; } .search-btn { grid-column: auto; } .section { padding: 60px 24px; } .services-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; gap: 40px; } .footer-bottom { flex-direction: column; text-align: center; } .property-detail-header { flex-direction: column; } .property-detail-image { width: 100%; } }
