/* =============================================
   EMLAK PRO — Main Stylesheet
   ============================================= */

:root {
    --primary: #1B4F72;
    --primary-dark: #0d2d40;
    --primary-light: #2e86c1;
    --gold: #C8A96E;
    --gold-dark: #a6894d;
    --dark: #1a1a2e;
    --text: #2d3748;
    --text-light: #718096;
    --bg: #f7fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,.12), 0 4px 6px -2px rgba(0,0,0,.05);
    --shadow-xl: 0 20px 40px rgba(0,0,0,.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-xs: 6px;
    --transition: all 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: #fff; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: 1rem; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.bg-light { background: var(--bg); }

/* =============================================
   HEADER
   ============================================= */
.header-top {
    background: var(--primary-dark);
    color: rgba(255,255,255,.8);
    font-size: 0.82rem;
    padding: .5rem 0;
}
.header-top .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.header-top-left { display: flex; gap: 1.5rem; }
.header-top-left span { display: flex; align-items: center; gap: .4rem; }
.header-top-right { display: flex; gap: .8rem; }
.header-top-right a { color: rgba(255,255,255,.7); width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.1); transition: var(--transition); }
.header-top-right a:hover { background: var(--gold); color: #fff; }

.navbar { background: #fff; box-shadow: var(--shadow); position: sticky; top: 0; z-index: 100; transition: var(--transition); }
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 2rem; }
.navbar-brand { display: flex; align-items: center; gap: .7rem; font-size: 1.4rem; font-weight: 800; color: var(--primary); flex-shrink: 0; }
.navbar-brand i { color: var(--gold); font-size: 1.6rem; }
.navbar-brand:hover { color: var(--primary-dark); }

.nav-menu { display: flex; align-items: center; gap: .2rem; }
.nav-link { display: block; padding: .5rem .9rem; color: var(--text); font-weight: 500; font-size: 0.9rem; border-radius: var(--radius-xs); transition: var(--transition); white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(27,79,114,.06); }

.has-dropdown { position: relative; }
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu { position: absolute; top: calc(100% + .5rem); left: 0; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 200px; padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: var(--transition); z-index: 200; border: 1px solid var(--border); }
.dropdown-menu li a { display: flex; align-items: center; gap: .7rem; padding: .6rem .9rem; border-radius: var(--radius-xs); font-size: 0.88rem; color: var(--text); }
.dropdown-menu li a:hover { background: rgba(27,79,114,.06); color: var(--primary); }
.dropdown-menu li a i { width: 16px; color: var(--gold); }
.dropdown-divider { height: 1px; background: var(--border); margin: .3rem 0; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: .4rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* Flash messages */
.flash-container { position: fixed; top: 80px; right: 1.5rem; z-index: 1000; max-width: 380px; }
.message, .flash-message { border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin-bottom: .5rem; font-weight: 500; box-shadow: var(--shadow-lg); animation: slideIn .3s ease; }
.message.success, .flash-success { background: #d1fae5; color: #065f46; border-left: 4px solid #10b981; }
.message.error, .flash-error { background: #fee2e2; color: #991b1b; border-left: 4px solid #ef4444; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    min-height: 90vh;
    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='%23ffffff' 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");
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.2), rgba(0,0,0,.1)); }
.hero-container { position: relative; z-index: 1; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 6rem 1.5rem; max-width: 1280px; margin: 0 auto; }
.hero-text { color: #fff; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(200,169,110,.2); border: 1px solid rgba(200,169,110,.4); color: var(--gold); padding: .4rem 1rem; border-radius: 100px; font-size: 0.82rem; font-weight: 600; margin-bottom: 1.5rem; backdrop-filter: blur(10px); }
.hero-text h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.2rem; }
.text-gold { color: var(--gold); }
.hero-text p { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 2rem; max-width: 500px; }
.hero-stats { display: flex; align-items: center; gap: 2rem; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--gold); }
.hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,.7); }
.hero-stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* Search Box */
.search-box { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-xl); overflow: hidden; }
.search-tabs { display: flex; }
.search-tab { flex: 1; padding: .8rem; border: none; background: var(--bg); cursor: pointer; font-weight: 600; font-size: .9rem; color: var(--text-light); transition: var(--transition); }
.search-tab.active { background: var(--primary); color: #fff; }
.search-form { padding: 1.5rem; }
.search-row { display: flex; flex-direction: column; gap: .8rem; }
.search-field { display: flex; align-items: center; gap: .7rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: .7rem 1rem; background: var(--bg); }
.search-field i { color: var(--primary); width: 16px; flex-shrink: 0; }
.search-field input, .search-field select { flex: 1; border: none; background: transparent; outline: none; color: var(--text); font-size: .9rem; }
.search-field select { cursor: pointer; }
.btn-search { width: 100%; background: var(--gold); color: #fff; border: none; padding: .9rem; border-radius: var(--radius-sm); font-weight: 700; font-size: 1rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: .5rem; }
.btn-search:hover { background: var(--gold-dark); }

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; gap: 1rem; }
.section-header.centered { flex-direction: column; align-items: center; text-align: center; }
.section-header-left { }
.section-badge { display: inline-block; background: rgba(27,79,114,.1); color: var(--primary); padding: .3rem .9rem; border-radius: 100px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .5rem; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--dark); }
.section-header.centered h2 { max-width: 600px; }
.section-header.centered p { color: var(--text-light); max-width: 500px; }

/* =============================================
   PROPERTY CARDS
   ============================================= */
.properties-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }

.property-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.property-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.property-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; display: block; }
.property-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.property-card:hover .property-img-wrap img { transform: scale(1.05); }
.property-img-placeholder { width: 100%; height: 100%; background: var(--bg); display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 2.5rem; }

.property-badges { position: absolute; top: .8rem; left: .8rem; display: flex; gap: .4rem; }
.badge-type { padding: .25rem .7rem; border-radius: 100px; font-size: 0.75rem; font-weight: 700; }
.badge-type.satilik { background: var(--primary); color: #fff; }
.badge-type.kiralik { background: #059669; color: #fff; }
.badge-featured { background: var(--gold); color: #fff; border-radius: 100px; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; font-size: .75rem; }

.property-card-body { padding: 1.2rem; display: flex; flex-direction: column; flex: 1; }
.prop-category { font-size: .78rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .3rem; }
.property-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; line-height: 1.3; }
.property-card-body h3 a:hover { color: var(--primary); }
.prop-location { display: flex; align-items: center; gap: .4rem; color: var(--text-light); font-size: 0.83rem; margin-bottom: .8rem; }
.prop-location i { color: var(--gold); font-size: .8rem; }

.prop-features { display: flex; gap: .7rem; flex-wrap: wrap; margin-bottom: 1rem; }
.prop-features span { display: flex; align-items: center; gap: .35rem; font-size: 0.8rem; color: var(--text-light); }
.prop-features i { color: var(--primary); }

.prop-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: .8rem; border-top: 1px solid var(--border); }
.prop-price { font-size: 1.15rem; font-weight: 800; color: var(--primary); }
.btn-sm { background: var(--primary); color: #fff; padding: .4rem .9rem; border-radius: var(--radius-xs); font-size: .83rem; font-weight: 600; transition: var(--transition); }
.btn-sm:hover { background: var(--primary-dark); }

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section { background: var(--primary); padding: 4rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-card { text-align: center; color: #fff; }
.stat-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.stat-card strong { display: block; font-size: 2.5rem; font-weight: 800; margin-bottom: .3rem; }
.stat-card span { font-size: .9rem; color: rgba(255,255,255,.75); }

/* =============================================
   SERVICES
   ============================================= */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; }
.service-card { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); text-align: center; transition: var(--transition); border-bottom: 3px solid transparent; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-bottom-color: var(--gold); }
.service-icon { width: 64px; height: 64px; background: rgba(27,79,114,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; transition: var(--transition); }
.service-icon i { font-size: 1.6rem; color: var(--primary); }
.service-card:hover .service-icon { background: var(--primary); }
.service-card:hover .service-icon i { color: #fff; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .7rem; color: var(--dark); }
.service-card p { color: var(--text-light); font-size: .9rem; }

/* =============================================
   BLOG
   ============================================= */
.blogs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.blogs-grid-2col { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }

.blog-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-img-wrap { display: block; aspect-ratio: 16/9; overflow: hidden; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.05); }
.blog-img-placeholder { width: 100%; height: 100%; background: rgba(27,79,114,.08); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 2.5rem; }

.blog-card-body { padding: 1.3rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta-top { display: flex; align-items: center; gap: .7rem; margin-bottom: .7rem; }
.blog-cat-tag { background: rgba(27,79,114,.1); color: var(--primary); padding: .2rem .7rem; border-radius: 100px; font-size: .75rem; font-weight: 700; text-transform: uppercase; }
.blog-date { font-size: .78rem; color: var(--text-light); display: flex; align-items: center; gap: .3rem; }
.blog-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: .6rem; line-height: 1.4; }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p { color: var(--text-light); font-size: .88rem; line-height: 1.6; flex: 1; }
.blog-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; padding-top: .8rem; border-top: 1px solid var(--border); font-size: .8rem; }
.blog-footer span { color: var(--text-light); display: flex; align-items: center; gap: .3rem; }
.read-more { color: var(--primary); font-weight: 600; display: flex; align-items: center; gap: .3rem; font-size: .83rem; }
.read-more:hover i { transform: translateX(3px); }

/* =============================================
   BLOG LAYOUT (sidebar)
   ============================================= */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
.blog-main { }
.blog-sidebar { }
.sidebar-widget { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem; margin-bottom: 1.5rem; }
.widget-title { font-size: 1rem; font-weight: 700; color: var(--dark); padding-bottom: .8rem; margin-bottom: 1rem; border-bottom: 2px solid var(--gold); }
.category-list li { }
.category-list li a { display: flex; justify-content: space-between; align-items: center; padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .88rem; color: var(--text); }
.category-list li.active a, .category-list li a:hover { color: var(--primary); font-weight: 600; }
.popular-posts { }
.popular-posts li { border-bottom: 1px solid var(--border); }
.popular-posts li a { display: block; padding: .6rem 0; font-size: .85rem; color: var(--text); font-weight: 500; }
.popular-posts li a span { display: block; font-size: .75rem; color: var(--text-light); font-weight: 400; margin-top: .2rem; }
.popular-posts li a:hover { color: var(--primary); }
.widget-cta { background: var(--primary); color: #fff; text-align: center; }
.widget-cta h4 { font-size: 1rem; margin-bottom: .5rem; }
.widget-cta p { font-size: .85rem; color: rgba(255,255,255,.8); margin-bottom: 1rem; }
.btn-primary-block { display: block; background: var(--gold); color: #fff; padding: .7rem; border-radius: var(--radius-sm); font-weight: 600; text-align: center; }
.btn-primary-block:hover { background: var(--gold-dark); }

/* Blog Article */
.blog-article { }
.article-hero-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 2rem; max-height: 450px; }
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.article-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.article-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--dark); margin-bottom: 1.5rem; line-height: 1.25; }
.article-content { font-size: 1.02rem; line-height: 1.8; color: var(--text); }
.article-content p { margin-bottom: 1.2rem; }
.article-content h2, .article-content h3 { margin: 1.5rem 0 .8rem; color: var(--dark); }
.article-content ul, .article-content ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.article-content img { border-radius: var(--radius-sm); margin: 1rem 0; }

.article-share { display: flex; align-items: center; gap: .8rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); flex-wrap: wrap; }
.article-share span { font-weight: 600; color: var(--text-light); font-size: .88rem; }
.share-fb { background: #1877f2; color: #fff; padding: .4rem .9rem; border-radius: 100px; font-size: .8rem; display: flex; align-items: center; gap: .4rem; }
.share-tw { background: #000; color: #fff; padding: .4rem .9rem; border-radius: 100px; font-size: .8rem; display: flex; align-items: center; gap: .4rem; }
.share-wa { background: #25d366; color: #fff; padding: .4rem .9rem; border-radius: 100px; font-size: .8rem; display: flex; align-items: center; gap: .4rem; }

.related-posts { margin-top: 3rem; }
.related-posts h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.related-card { display: flex; gap: .8rem; align-items: flex-start; padding: .8rem; border-radius: var(--radius-sm); border: 1px solid var(--border); transition: var(--transition); }
.related-card:hover { border-color: var(--primary); background: rgba(27,79,114,.03); }
.related-card img { width: 70px; height: 55px; object-fit: cover; border-radius: var(--radius-xs); flex-shrink: 0; }
.related-no-img { width: 70px; height: 55px; background: var(--bg); border-radius: var(--radius-xs); display: flex; align-items: center; justify-content: center; color: var(--text-light); flex-shrink: 0; }
.related-card strong { display: block; font-size: .85rem; font-weight: 600; line-height: 1.3; color: var(--dark); margin-bottom: .3rem; }
.related-card span { font-size: .75rem; color: var(--text-light); }

/* =============================================
   PROPERTY DETAIL
   ============================================= */
.property-detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; }
.property-detail-main { }
.property-detail-sidebar { position: sticky; top: 90px; }

.property-gallery { margin-bottom: 1.5rem; border-radius: var(--radius); overflow: hidden; }
.gallery-main { border-radius: var(--radius); overflow: hidden; }
.gallery-main .swiper-slide img { width: 100%; height: 420px; object-fit: cover; }
.gallery-thumbs { margin-top: .5rem; }
.gallery-thumbs .swiper-slide { height: 80px; cursor: pointer; border-radius: var(--radius-xs); overflow: hidden; opacity: .6; transition: var(--transition); }
.gallery-thumbs .swiper-slide-thumb-active { opacity: 1; border: 2px solid var(--primary); }
.gallery-thumbs .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.property-no-gallery { background: var(--bg); border-radius: var(--radius); height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-light); gap: .5rem; font-size: 3rem; margin-bottom: 1.5rem; }

.property-info-badges { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.badge-type-lg { padding: .4rem 1.2rem; border-radius: 100px; font-weight: 700; font-size: .88rem; }
.badge-type-lg.satilik { background: var(--primary); color: #fff; }
.badge-type-lg.kiralik { background: #059669; color: #fff; }
.badge-cat { background: rgba(27,79,114,.1); color: var(--primary); padding: .4rem 1.2rem; border-radius: 100px; font-weight: 700; font-size: .88rem; }
.badge-featured-lg { background: var(--gold); color: #fff; padding: .4rem 1.2rem; border-radius: 100px; font-weight: 700; font-size: .88rem; display: flex; align-items: center; gap: .4rem; }

.property-specs { background: var(--bg); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem; }
.specs-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.2rem; color: var(--dark); }
.specs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 1rem; }
.spec-item { display: flex; align-items: flex-start; gap: .8rem; }
.spec-item > i { color: var(--gold); font-size: 1.1rem; margin-top: .2rem; flex-shrink: 0; width: 20px; }
.spec-item > div span { display: block; font-size: .75rem; color: var(--text-light); }
.spec-item > div strong { font-size: .92rem; font-weight: 600; color: var(--dark); }

.property-description { margin-bottom: 1.5rem; }
.property-description h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: .8rem; }
.description-content { line-height: 1.8; color: var(--text); font-size: .95rem; }

.property-map-section h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: .8rem; }
.property-map { height: 350px; border-radius: var(--radius); overflow: hidden; }

/* Sidebar Cards */
.sidebar-price-card { background: var(--primary); color: #fff; border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.2rem; }
.price-label { font-size: .83rem; color: rgba(255,255,255,.7); margin-bottom: .3rem; }
.price-value { font-size: 2rem; font-weight: 800; color: var(--gold); margin-bottom: .5rem; }
.price-location { font-size: .83rem; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: .4rem; }

.sidebar-contact-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem; margin-bottom: 1.2rem; }
.sidebar-contact-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; color: var(--dark); }
.contact-mini-form { display: flex; flex-direction: column; gap: .6rem; }
.contact-mini-form input, .contact-mini-form textarea { width: 100%; padding: .7rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: .88rem; transition: var(--transition); }
.contact-mini-form input:focus, .contact-mini-form textarea:focus { outline: none; border-color: var(--primary); }
.contact-mini-form button { background: var(--primary); color: #fff; border: none; padding: .8rem; border-radius: var(--radius-sm); font-weight: 700; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: .5rem; }
.contact-mini-form button:hover { background: var(--primary-dark); }
.sidebar-phone-actions { display: flex; flex-direction: column; gap: .5rem; margin-top: .8rem; }
.phone-btn { background: var(--bg); color: var(--text); padding: .7rem 1rem; border-radius: var(--radius-sm); display: flex; align-items: center; gap: .6rem; font-weight: 600; font-size: .88rem; }
.phone-btn:hover { background: var(--border); }
.wa-btn { background: #25d366; color: #fff; padding: .7rem 1rem; border-radius: var(--radius-sm); display: flex; align-items: center; gap: .6rem; font-weight: 700; font-size: .88rem; }
.wa-btn:hover { background: #1da854; }

.sidebar-share-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.2rem 1.5rem; }
.sidebar-share-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: .7rem; color: var(--text-light); }
.share-btns { display: flex; gap: .5rem; }
.share-btns a { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .85rem; transition: var(--transition); }
.share-btns .share-fb { background: #1877f2; }
.share-btns .share-tw { background: #000; }
.share-btns .share-wa { background: #25d366; }
.share-btns a:hover { transform: scale(1.1); }

.similar-section { margin-top: 3rem; border-top: 1px solid var(--border); padding-top: 2rem; }
.similar-section h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }

/* =============================================
   CONTACT
   ============================================= */
.contact-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 3rem; align-items: start; }
.contact-form-wrap h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: .5rem; }
.contact-form-wrap > p { color: var(--text-light); margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: .4rem; }
.req { color: #e53e3e; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: .9rem; transition: var(--transition); background: #fff; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(27,79,114,.1); }
.btn-submit { background: var(--primary); color: #fff; border: none; padding: .9rem 2rem; border-radius: var(--radius-sm); font-weight: 700; font-size: 1rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: .6rem; }
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }

.contact-info-card { background: var(--primary); color: #fff; border-radius: var(--radius); padding: 2rem; margin-bottom: 1.5rem; }
.contact-info-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.5rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 1.5rem; }
.contact-info-list li { display: flex; align-items: flex-start; gap: 1rem; }
.ci-icon { width: 36px; height: 36px; background: rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-list strong { display: block; font-size: .78rem; color: rgba(255,255,255,.7); margin-bottom: .2rem; }
.contact-info-list span, .contact-info-list a { font-size: .92rem; color: #fff; }
.ci-social { display: flex; gap: .6rem; }
.ci-social a { width: 34px; height: 34px; background: rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: var(--transition); }
.ci-social a:hover { background: var(--gold); }
.contact-hours { background: #fff; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.contact-hours h4 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.contact-hours ul { display: flex; flex-direction: column; gap: .6rem; }
.contact-hours li { display: flex; justify-content: space-between; font-size: .88rem; padding-bottom: .6rem; border-bottom: 1px solid var(--border); }
.contact-hours li:last-child { border-bottom: none; }

/* =============================================
   PAGE HERO
   ============================================= */
.page-hero { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; padding: 3.5rem 0; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: .5rem; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: rgba(255,255,255,.7); }
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { }
.page-hero-sm { padding: 2.5rem 0; }

/* =============================================
   FILTERS
   ============================================= */
.filter-panel { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem; margin-bottom: 2rem; }
.filter-form { }
.filter-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; align-items: end; }
.filter-field label { display: block; font-size: .78rem; font-weight: 600; color: var(--text-light); margin-bottom: .4rem; }
.filter-field input, .filter-field select { width: 100%; padding: .6rem .8rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: .88rem; }
.filter-field input:focus, .filter-field select:focus { outline: none; border-color: var(--primary); }
.filter-search { grid-column: span 2; }
.filter-actions { display: flex; gap: .6rem; }
.btn-filter { flex: 1; background: var(--primary); color: #fff; border: none; padding: .7rem; border-radius: var(--radius-sm); font-weight: 600; font-size: .88rem; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: .4rem; transition: var(--transition); }
.btn-filter:hover { background: var(--primary-dark); }
.btn-reset { background: var(--bg); color: var(--text-light); border: 1.5px solid var(--border); padding: .7rem .9rem; border-radius: var(--radius-sm); font-size: .88rem; cursor: pointer; display: flex; align-items: center; gap: .4rem; text-decoration: none; }
.results-header { margin-bottom: 1rem; }
.results-count { color: var(--text-light); font-size: .88rem; }

/* =============================================
   PAGINATION
   ============================================= */
.pagination-wrap { display: flex; justify-content: center; margin-top: 2.5rem; }
.pagination-wrap ul.pagination { display: flex; gap: .4rem; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.pagination-wrap li a, .pagination-wrap li span { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: var(--radius-sm); font-size: .88rem; font-weight: 600; transition: var(--transition); text-decoration: none; border: 1.5px solid var(--border); color: var(--text); }
.pagination-wrap li a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination-wrap li.active a, .pagination-wrap li.current a { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination-wrap li.disabled { opacity: .4; pointer-events: none; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: center; }
.about-image { position: relative; }
.about-img-placeholder { background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: var(--radius); height: 450px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.3); font-size: 6rem; }
.about-img { width: 100%; height: 450px; object-fit: cover; border-radius: var(--radius); display: block; }
.about-experience { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--gold); color: #fff; border-radius: var(--radius); padding: 1.5rem; text-align: center; box-shadow: var(--shadow-lg); }
.about-experience strong { display: block; font-size: 2.5rem; font-weight: 800; }
.about-experience span { font-size: .85rem; font-weight: 600; }
.about-content .lead { font-size: 1.1rem; font-weight: 500; color: var(--text); margin-bottom: 1rem; }
.about-content p { color: var(--text-light); margin-bottom: 1rem; }
.about-values { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.value-item { display: flex; align-items: center; gap: 1rem; }
.value-item > i { width: 44px; height: 44px; background: rgba(27,79,114,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }
.value-item strong { display: block; font-weight: 700; color: var(--dark); }
.value-item span { font-size: .85rem; color: var(--text-light); }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.team-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 2rem; text-align: center; transition: var(--transition); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-avatar { width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.team-avatar i { font-size: 2rem; color: rgba(255,255,255,.8); }
.team-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: .3rem; }
.team-card span { display: block; font-size: .82rem; color: var(--gold); font-weight: 600; margin-bottom: .7rem; }
.team-card p { font-size: .85rem; color: var(--text-light); }

/* Services page */
.services-detail-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }
.service-detail-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 2rem; transition: var(--transition); }
.service-detail-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.svc-icon { width: 56px; height: 56px; background: rgba(27,79,114,.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.svc-icon i { font-size: 1.5rem; color: var(--primary); }
.service-detail-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .7rem; color: var(--dark); }
.service-detail-card p { color: var(--text-light); font-size: .88rem; margin-bottom: 1rem; }
.service-detail-card ul { display: flex; flex-direction: column; gap: .4rem; }
.service-detail-card ul li { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--text); }
.service-detail-card ul li i { color: #059669; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.why-item { padding: 1.5rem; }
.why-num { font-size: 3rem; font-weight: 800; color: rgba(27,79,114,.1); margin-bottom: .5rem; }
.why-item h4 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.why-item p { color: var(--text-light); font-size: .88rem; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 5rem 0; }
.cta-inner { text-align: center; color: #fff; }
.cta-inner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: .7rem; }
.cta-inner p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-primary-lg { background: var(--gold); color: #fff; padding: .9rem 2rem; border-radius: var(--radius-sm); font-weight: 700; font-size: 1rem; display: inline-flex; align-items: center; gap: .5rem; transition: var(--transition); }
.btn-primary-lg:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-wa { background: #25d366; color: #fff; padding: .9rem 2rem; border-radius: var(--radius-sm); font-weight: 700; font-size: 1rem; display: inline-flex; align-items: center; gap: .5rem; transition: var(--transition); }
.btn-wa:hover { background: #1da854; }
.btn-outline { color: var(--primary); border: 2px solid var(--primary); padding: .6rem 1.2rem; border-radius: var(--radius-sm); font-weight: 600; font-size: .88rem; display: inline-flex; align-items: center; gap: .4rem; transition: var(--transition); white-space: nowrap; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-light { border: 2px solid rgba(255,255,255,.5); color: #fff; padding: .9rem 2rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 1rem; display: inline-flex; align-items: center; gap: .5rem; transition: var(--transition); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--dark); color: rgba(255,255,255,.8); }
.footer-top { padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; }
.footer-logo { display: flex; align-items: center; gap: .7rem; font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 1rem; }
.footer-logo i { color: var(--gold); }
.footer-about p { font-size: .88rem; line-height: 1.7; margin-bottom: 1.5rem; color: rgba(255,255,255,.6); }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: .83rem; transition: var(--transition); }
.footer-social a:hover { background: var(--gold); color: #fff; }
.footer-col h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: .88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact { }
.footer-contact li { display: flex; align-items: flex-start; gap: .7rem; color: rgba(255,255,255,.6); font-size: .88rem; padding-bottom: .5rem; }
.footer-contact li i { color: var(--gold); margin-top: .15rem; width: 14px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.6); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.2rem 0; }
.footer-bottom .container { display: flex; justify-content: center; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }

/* WhatsApp float */
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; background: #25d366; color: #fff; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,.4); z-index: 999; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); background: #1da854; }

/* Empty state */
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--text-light); }
.empty-state i { font-size: 4rem; color: var(--border); margin-bottom: 1rem; display: block; }
.empty-state h3 { font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.empty-state p { margin-bottom: 1.5rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 1.5rem; }
    .hero-text h1 { font-size: 2.5rem; }
    .property-detail-layout { grid-template-columns: 1fr; }
    .property-detail-sidebar { position: static; }
    .blog-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image { display: none; }
    .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .header-top { display: none; }
    .nav-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: #fff; flex-direction: column; overflow-y: auto; padding: 1rem; z-index: 200; box-shadow: var(--shadow-lg); gap: .2rem; }
    .nav-menu.open { display: flex; }
    .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--bg); padding-left: 1rem; }
    .hamburger { display: flex; }
    .stats-grid { grid-template-columns: 2fr 2fr; }
    .filter-grid { grid-template-columns: 1fr 1fr; }
    .filter-search { grid-column: span 2; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 1rem; }
    .hero-stat strong { font-size: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .about-experience { right: 0; bottom: -1rem; }
    .services-detail-grid { grid-template-columns: 1fr; }
    .gallery-main .swiper-slide img { height: 260px; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .properties-grid { grid-template-columns: 1fr; }
    .blogs-grid { grid-template-columns: 1fr; }
    .filter-grid { grid-template-columns: 1fr; }
    .filter-search { grid-column: span 1; }
    .specs-grid { grid-template-columns: 1fr 1fr; }
}
