/* ===================== VARIABLES — GREEN BRAND ===================== */
:root {
  --primary:       #00b300;
  --primary-dark:  #008a00;
  --primary-light: #e6f9e6;
  --secondary:     #1a2e1a;
  --accent:        #f4a261;
  --white:         #ffffff;
  --bg:            #f8f9fa;
  --bg-light:      #f1f5f1;
  --text:          #1a2e1a;
  --text-muted:    #5a705a;
  --border:        #d4e8d4;
  --shadow:        0 2px 16px rgba(0,100,0,0.09);
  --shadow-hover:  0 8px 32px rgba(0,100,0,0.16);
  --radius:        12px;
  --radius-sm:     8px;
  --transition:    0.25s ease;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.bg-light { background: var(--bg-light); }

/* ===================== BUTTONS ===================== */
.btn-primary {
  background: var(--primary); color: var(--white);
  padding: 10px 22px; border-radius: 8px; font-weight: 600; font-size: 14px;
  border: 2px solid var(--primary); cursor: pointer; transition: var(--transition); display: inline-block;
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.btn-outline {
  background: transparent; color: var(--secondary);
  padding: 10px 22px; border-radius: 8px; font-weight: 600; font-size: 14px;
  border: 2px solid var(--secondary); cursor: pointer; transition: var(--transition); display: inline-block;
}
.btn-outline:hover { background: var(--secondary); color: var(--white); }

.btn-white {
  background: var(--white); color: var(--primary);
  padding: 14px 32px; border-radius: 8px; font-weight: 700; font-size: 16px;
  border: 2px solid var(--white); cursor: pointer; transition: var(--transition); display: inline-block;
}
.btn-white:hover { background: var(--secondary); color: var(--white); border-color: var(--secondary); }

.btn-large { padding: 14px 32px; font-size: 16px; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,100,0,0.1);
  border-bottom: 3px solid var(--primary);
}
.nav-inner { display: flex; align-items: center; gap: 28px; padding: 12px 20px; }

.logo { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; display: flex; align-items: center; gap: 6px; }
.logo img { height: 46px; width: auto; }
.logo-text { font-size: 22px; font-weight: 800; }
.logo-hisar { color: var(--primary); }
.logo-prop  { color: var(--secondary); }
.logo-dot   { color: var(--accent); }

.nav-links { display: flex; gap: 24px; flex: 1; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text); transition: var(--transition);
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--primary); transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

.nav-actions { display: flex; gap: 10px; align-items: center; }
.hamburger { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text); margin-left: auto; }
.mobile-menu { display: none; flex-direction: column; padding: 16px 20px; gap: 12px; border-top: 1px solid var(--border); background: var(--white); }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-weight: 500; font-size: 15px; padding: 4px 0; }
.mobile-menu-divider { height: 1px; background: var(--border); margin: 4px 0; }

/* LOGO FROM CUSTOMIZER */
.site-logo-link, .footer-logo-link { text-decoration: none; display: inline-block; }
.logo-wrap { display: flex; flex-direction: column; line-height: 1.2; }
.logo-wrap img { max-height: 50px; width: auto; }
.logo-tagline { font-size: 11px; font-weight: 600; color: var(--primary); letter-spacing: 0.5px; margin-top: 2px; }
.footer .logo-tagline { color: #90ee90; }
.footer-logo-link img { max-height: 44px; width: auto; }

/* DROPDOWN MENU */
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; gap: 5px; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 12px); left: 0;
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover); min-width: 220px; z-index: 500; padding: 8px 0;
}
.has-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: flex; align-items: center; gap: 10px; padding: 10px 16px;
  font-size: 14px; color: var(--text); transition: var(--transition); white-space: nowrap;
}
.dropdown-menu li a:hover { background: var(--primary-light); color: var(--primary); }
.dropdown-menu li a::after { display: none; }
.dropdown-menu i { width: 16px; color: var(--primary); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 560px;
  background: linear-gradient(135deg, #003d00 0%, #00b300 60%, #00cc00 100%);
  display: flex; align-items: center; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff0d' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 920px; margin: 0 auto; padding: 60px 20px; text-align: center; }
.hero-content h1 { font-size: clamp(26px, 4vw, 46px); font-weight: 800; color: var(--white); margin-bottom: 12px; line-height: 1.2; }
.hero-content h1 span { color: #90EE90; }
.hero-content > p { color: rgba(255,255,255,0.9); font-size: 17px; margin-bottom: 32px; }

/* SEARCH BOX */
.search-box { background: var(--white); border-radius: 16px; overflow: visible; box-shadow: 0 8px 40px rgba(0,0,0,0.2); margin-bottom: 36px; }
.search-tabs { display: flex; border-bottom: 1px solid var(--border); background: var(--bg-light); border-radius: 16px 16px 0 0; overflow: hidden; }
.search-tabs .tab {
  flex: 1; padding: 12px 8px; background: none; border: none; font-size: 14px; font-weight: 500;
  color: var(--text-muted); cursor: pointer; transition: var(--transition); border-bottom: 3px solid transparent; font-family: inherit;
}
.search-tabs .tab.active { color: var(--primary); border-bottom-color: var(--primary); background: var(--white); font-weight: 600; }
.search-tabs .tab:hover { color: var(--primary); }

.search-bar { display: flex; align-items: center; padding: 12px; gap: 10px; flex-wrap: wrap; }
.search-input-wrap { flex: 1; min-width: 200px; position: relative; display: flex; align-items: center; }
.search-input-wrap i { position: absolute; left: 12px; color: var(--text-muted); font-size: 15px; }
.search-input-wrap input {
  width: 100%; padding: 12px 12px 12px 38px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px; outline: none; transition: var(--transition); font-family: inherit;
}
.search-input-wrap input:focus { border-color: var(--primary); }

.search-suggestions {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  z-index: 200; display: none; box-shadow: var(--shadow);
}
.search-suggestions.show { display: block; }
.suggestion-item { padding: 10px 14px; cursor: pointer; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.suggestion-item:hover { background: var(--bg-light); color: var(--primary); }
.suggestion-item i { color: var(--primary); }

.search-bar select {
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; font-family: inherit; background: var(--white); cursor: pointer; outline: none; min-width: 130px;
}
.search-bar select:focus { border-color: var(--primary); }

.search-btn {
  background: var(--primary); color: var(--white); border: none; padding: 12px 28px;
  border-radius: var(--radius-sm); font-size: 15px; font-weight: 600; cursor: pointer;
  transition: var(--transition); font-family: inherit; white-space: nowrap;
}
.search-btn:hover { background: var(--primary-dark); }

/* HERO STATS */
.hero-stats { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.stat span { display: block; font-size: 28px; font-weight: 800; color: var(--white); }
.stat p { color: rgba(255,255,255,0.8); font-size: 13px; margin-top: 2px; }

/* ===================== SECTION TITLES ===================== */
.section-title { font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: var(--secondary); margin-bottom: 32px; text-align: center; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.section-header .section-title { margin-bottom: 0; text-align: left; }
.view-all { color: var(--primary); font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.view-all:hover { gap: 10px; }

/* ===================== CATEGORY GRID ===================== */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.cat-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 28px 16px; text-align: center; transition: var(--transition); cursor: pointer; display: block;
}
.cat-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.cat-icon {
  width: 56px; height: 56px; background: var(--primary-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 22px; color: var(--primary);
}
.cat-card h3 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.cat-card p { font-size: 12px; color: var(--text-muted); }

/* ===================== PROPERTY CARD ===================== */
.property-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.property-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition); border: 1.5px solid var(--border);
}
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--primary); }
.property-card-link { text-decoration: none; color: inherit; display: block; }

.property-img { position: relative; height: 200px; overflow: hidden; }
.property-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.property-card:hover .property-img img { transform: scale(1.05); }
.property-img-placeholder {
  width: 100%; height: 100%; background: linear-gradient(135deg, var(--primary-light), #c8e6c8);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; color: var(--text-muted);
}
.property-img-placeholder i { font-size: 40px; opacity: 0.4; }
.property-img-placeholder span { font-size: 12px; opacity: 0.6; }
.property-img-placeholder.large { height: 420px; }

.property-badge {
  position: absolute; top: 12px; left: 12px; background: var(--primary); color: var(--white);
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.property-badge.for-rent { background: #2a9d8f; }
.property-badge.featured { background: var(--accent); color: var(--secondary); }

.property-wishlist {
  position: absolute; top: 12px; right: 12px; background: var(--white); width: 34px; height: 34px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.15); transition: var(--transition); border: none;
}
.property-wishlist i { color: var(--text-muted); font-size: 14px; transition: var(--transition); }
.property-wishlist:hover i, .property-wishlist.active i { color: var(--primary); }

.property-info { padding: 16px; }
.property-price { font-size: 20px; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.property-price span { font-size: 12px; font-weight: 400; color: var(--text-muted); }
.property-title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.property-location { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; margin-bottom: 12px; }
.property-location i { color: var(--primary); font-size: 12px; }
.property-features { display: flex; gap: 14px; padding-top: 12px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-muted); }
.property-features span { display: flex; align-items: center; gap: 5px; }
.property-features i { color: var(--secondary); }
.property-footer { display: flex; justify-content: space-between; align-items: center; padding: 10px 16px; background: var(--bg-light); font-size: 12px; color: var(--text-muted); }
.property-footer .agent { display: flex; align-items: center; gap: 6px; }
.contact-btn { background: var(--primary); color: var(--white); border: none; padding: 6px 14px; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; transition: var(--transition); }
.contact-btn:hover { background: var(--primary-dark); }

/* ===================== LOCALITIES ===================== */
.locality-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.locality-card {
  position: relative; height: 180px; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, #003d00, #00b300); background-size: cover; background-position: center;
  cursor: pointer; transition: var(--transition); display: block;
}
.locality-card:hover { transform: scale(1.02); box-shadow: var(--shadow-hover); }
.locality-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,30,0,0.8) 0%, rgba(0,30,0,0.1) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 16px;
}
.locality-overlay h3 { color: var(--white); font-size: 16px; font-weight: 700; }
.locality-overlay p { color: rgba(255,255,255,0.8); font-size: 12px; }

/* ===================== WHY US ===================== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.why-card { text-align: center; padding: 32px 20px; border-radius: var(--radius); border: 1.5px solid var(--border); transition: var(--transition); }
.why-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.why-card i { font-size: 36px; color: var(--primary); margin-bottom: 16px; }
.why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--secondary); }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.why-card a { color: var(--primary); font-weight: 600; }

/* ===================== CTA BANNER ===================== */
.cta-banner { background: linear-gradient(135deg, #003d00 0%, var(--primary) 100%); padding: 60px 0; text-align: center; }
.cta-content h2 { color: var(--white); font-size: 28px; font-weight: 800; margin-bottom: 10px; }
.cta-content p { color: rgba(255,255,255,0.9); font-size: 16px; margin-bottom: 28px; }

/* ===================== TESTIMONIALS ===================== */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border: 1.5px solid var(--border); }
.stars { color: var(--accent); font-size: 16px; margin-bottom: 12px; }
.testimonial-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 14px; font-weight: 600; }
.reviewer span { font-size: 12px; color: var(--text-muted); }

/* ===================== FOOTER ===================== */
.footer { background: var(--secondary); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .logo { margin-bottom: 4px; display: inline-block; }
.footer-tagline { color: var(--primary); font-weight: 700; font-size: 14px; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 15px; transition: var(--transition);
}
.social-links a:hover { background: var(--primary); }
.footer-links h4 { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li, .footer-links a { font-size: 14px; color: rgba(255,255,255,0.7); transition: var(--transition); display: flex; align-items: flex-start; gap: 8px; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-links i { margin-top: 3px; color: var(--primary); flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ===================== PAGE HEADER ===================== */
.page-header { background: linear-gradient(135deg, #003d00, var(--primary)); padding: 40px 0; color: var(--white); }
.page-header h1 { font-size: 28px; font-weight: 700; margin-bottom: 6px; }
.page-header p { color: rgba(255,255,255,0.85); font-size: 15px; }

/* ===================== LISTING LAYOUT ===================== */
.listing-layout { display: grid; grid-template-columns: 300px 1fr; gap: 28px; padding: 40px 0; }
.filter-sidebar { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); height: fit-content; position: sticky; top: 80px; border: 1.5px solid var(--border); }
.filter-sidebar h3 { font-size: 16px; font-weight: 700; color: var(--secondary); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--primary); }
.filter-group { margin-bottom: 22px; }
.filter-group label { display: block; font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.filter-group select { width: 100%; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-family: inherit; outline: none; transition: var(--transition); }
.filter-group select:focus { border-color: var(--primary); }
.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-group label { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 400; text-transform: none; letter-spacing: 0; cursor: pointer; }
.checkbox-group input[type="checkbox"], .checkbox-group input[type="radio"] { width: 16px; height: 16px; accent-color: var(--primary); }
.filter-btn { width: 100%; background: var(--primary); color: var(--white); border: none; padding: 12px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 600; cursor: pointer; transition: var(--transition); font-family: inherit; }
.filter-btn:hover { background: var(--primary-dark); }
.listing-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.listing-header h2 { font-size: 18px; font-weight: 700; color: var(--secondary); }
.sort-wrap select { padding: 8px 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-family: inherit; outline: none; }

/* ===================== PROPERTY DETAIL ===================== */
.breadcrumb-bar { background: var(--bg-light); padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--text-muted); }
.breadcrumb-bar a { color: var(--primary); }
.property-detail { padding: 40px 0; }
.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 28px; }

.image-gallery { border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }
.main-image { height: 420px; background: var(--bg-light); position: relative; overflow: hidden; border-radius: var(--radius); }
.main-image img { width: 100%; height: 100%; object-fit: cover; }
.thumb-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; margin-top: 4px; }
.thumb-row img { height: 80px; object-fit: cover; cursor: pointer; transition: var(--transition); border-radius: 4px; }
.thumb-row img:hover { opacity: 0.8; }

.detail-info { padding: 24px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); border: 1.5px solid var(--border); }
.detail-price { font-size: 30px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.detail-price small { font-size: 14px; font-weight: 400; color: var(--text-muted); }
.detail-title { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.detail-location { color: var(--text-muted); font-size: 15px; display: flex; align-items: center; gap: 6px; margin-bottom: 20px; }
.detail-location i { color: var(--primary); }

.detail-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.spec-item { text-align: center; }
.spec-item i { font-size: 22px; color: var(--primary); margin-bottom: 8px; display: block; }
.spec-item strong { display: block; font-size: 15px; color: var(--text); }
.spec-item span { font-size: 12px; color: var(--text-muted); }

.detail-description h3, .amenities-section h3 { font-size: 17px; font-weight: 700; color: var(--secondary); margin-bottom: 12px; }
.detail-description p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.amenity-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.amenity-item i { color: var(--primary); }

.contact-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); border: 1.5px solid var(--border); position: sticky; top: 80px; }
.contact-card h3 { font-size: 17px; font-weight: 700; color: var(--secondary); margin-bottom: 20px; }
.agent-info { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.agent-avatar { width: 52px; height: 52px; background: linear-gradient(135deg, var(--primary), #003d00); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 18px; flex-shrink: 0; }
.agent-info strong { display: block; font-size: 15px; font-weight: 600; }
.agent-info span { font-size: 12px; color: var(--text-muted); }
.call-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 12px; border-radius: var(--radius-sm); font-weight: 600; font-size: 15px; transition: var(--transition); margin-bottom: 8px; }
.phone-btn { background: var(--primary); color: var(--white); }
.phone-btn:hover { background: var(--primary-dark); color: var(--white); }
.call-btn:not(.phone-btn) { background: #25d366; color: var(--white); }
.call-btn:not(.phone-btn):hover { background: #1da851; }
.divider-line { display: flex; align-items: center; gap: 12px; margin: 16px 0; }
.divider-line::before, .divider-line::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.divider-line span { font-size: 12px; color: var(--text-muted); white-space: nowrap; }
.contact-card form input, .contact-card form textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-family: inherit; margin-bottom: 12px; outline: none; transition: var(--transition); }
.contact-card form input:focus, .contact-card form textarea:focus { border-color: var(--primary); }
.contact-card form textarea { resize: vertical; min-height: 80px; }

.office-card { background: var(--primary-light); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 18px; }
.office-card h4 { color: var(--primary); font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.office-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.office-card i { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.office-card a { color: var(--primary); font-weight: 500; }

/* ===================== POST PROPERTY FORM ===================== */
.post-property-page { padding: 50px 0; background: var(--bg-light); }
.form-card { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); max-width: 800px; margin: 0 auto; border: 1.5px solid var(--border); }
.form-card h2 { font-size: 24px; font-weight: 800; color: var(--secondary); margin-bottom: 6px; }
.form-card > p { color: var(--text-muted); margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-family: inherit; outline: none; transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 100px; }
.upload-area { border: 2px dashed var(--border); border-radius: var(--radius); padding: 40px; text-align: center; cursor: pointer; transition: var(--transition); }
.upload-area:hover { border-color: var(--primary); background: var(--primary-light); }
.upload-area i { font-size: 36px; color: var(--primary); margin-bottom: 12px; }
.upload-area p { font-size: 14px; color: var(--text-muted); }

/* ===================== MODAL ===================== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-box {
  background: var(--white); border-radius: var(--radius); padding: 32px; width: 100%; max-width: 440px;
  position: relative; box-shadow: var(--shadow-hover);
}
.modal-box h3 { font-size: 20px; font-weight: 700; color: var(--secondary); margin-bottom: 4px; }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 18px; cursor: pointer; color: var(--text-muted); }
.modal-close:hover { color: var(--primary); }
.modal-box input, .modal-box textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; font-family: inherit; margin-bottom: 12px; outline: none; transition: var(--transition);
}
.modal-box input:focus, .modal-box textarea:focus { border-color: var(--primary); }
.modal-box textarea { resize: vertical; min-height: 80px; }

/* ===================== TOAST ===================== */
.toast {
  position: fixed; bottom: 28px; right: 28px; background: var(--secondary); color: var(--white);
  padding: 14px 22px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-hover); z-index: 9999; transform: translateY(100px); opacity: 0;
  transition: 0.3s ease; max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: var(--primary); }
.toast.error { background: #e63946; }

/* ===================== PAGINATION ===================== */
.page-numbers { display: flex; gap: 8px; list-style: none; }
.page-numbers li a, .page-numbers li span {
  display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px;
  border-radius: var(--radius-sm); border: 1.5px solid var(--border); font-size: 14px;
  color: var(--text); transition: var(--transition); font-weight: 500;
}
.page-numbers li a:hover { border-color: var(--primary); color: var(--primary); }
.page-numbers li .current { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .locality-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr; }
  .listing-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .detail-specs { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: block; }
  .hero-content h1 { font-size: 24px; }
  .search-bar { flex-direction: column; }
  .search-bar select, .search-btn { width: 100%; }
  .hero-stats { gap: 20px; }
  .stat span { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .detail-specs { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .locality-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .property-grid { grid-template-columns: 1fr; }
  .search-tabs { overflow-x: auto; }
  .search-tabs .tab { white-space: nowrap; font-size: 13px; padding: 10px 6px; }
}
