/* ============================================
   EMLAK PRO V1 - Gayrimenkul Temasi
   ============================================ */

/* --- CSS Variables --- */
:root {
  --ep-primary: #1a2332;
  --ep-primary-rgb: 26, 35, 50;
  --ep-accent: #c8a45c;
  --ep-accent-hover: #b8943c;
  --ep-secondary: #2c3e50;
  --ep-light-bg: #f8f9fa;
  --ep-card-bg: #ffffff;
  --ep-text: #333333;
  --ep-text-light: #6c757d;
  --ep-border: #e9ecef;
  --ep-font-body: 'Inter', sans-serif;
  --ep-font-heading: 'Playfair Display', serif;
  --ep-shadow: 0 2px 15px rgba(0,0,0,0.08);
  --ep-shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --ep-radius: 8px;
  --ep-transition: all 0.3s ease;
}

/* --- Global --- */
body {
  font-family: var(--ep-font-body);
  color: var(--ep-text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ep-font-heading);
  font-weight: 600;
  color: var(--ep-primary);
}

a {
  color: var(--ep-accent);
  text-decoration: none;
  transition: var(--ep-transition);
}
a:hover {
  color: var(--ep-accent-hover);
}

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

/* --- Top Bar --- */
.topbar {
  background: var(--ep-primary);
  color: #fff;
  padding: 8px 0;
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}
.topbar a {
  color: rgba(255,255,255,0.8);
  margin-right: 20px;
}
.topbar a:hover {
  color: var(--ep-accent);
}
.topbar a i {
  margin-right: 5px;
  color: var(--ep-accent);
}
.topbar-right a {
  margin-right: 0;
  margin-left: 12px;
  font-size: 1rem;
}

/* --- Navbar --- */
.emlak-navbar {
  background: transparent;
  padding: 15px 0;
  transition: var(--ep-transition);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  margin-top: 40px;
}
.emlak-navbar.navbar-scrolled {
  background: var(--ep-primary);
  margin-top: 0;
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
/* Alt sayfalarda navbar her zaman solid */
body:not(.page-index) .emlak-navbar {
  background: var(--ep-primary);
  margin-top: 0;
  position: relative;
}
body:not(.page-index) .topbar + .emlak-navbar {
  position: relative;
}
.navbar-logo {
  max-height: 45px;
  transition: var(--ep-transition);
}
.emlak-navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  letter-spacing: 0.3px;
  transition: var(--ep-transition);
}
.emlak-navbar .nav-link:hover,
.emlak-navbar .nav-link.active {
  color: var(--ep-accent) !important;
}
.emlak-navbar .navbar-toggler {
  border-color: rgba(255,255,255,0.3);
}
.emlak-navbar .navbar-toggler-icon {
  filter: invert(1);
}
.btn-accent {
  background: var(--ep-accent);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: var(--ep-radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--ep-transition);
}
.btn-accent:hover {
  background: var(--ep-accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200,164,92,0.4);
}
.navbar-cta {
  margin-left: 15px;
}

/* --- page-index: no extra top padding (hero goes behind nav) --- */
.page-index .hero-slider { margin-top: 0; }
/* Alt sayfalarda navbar relative oldugundan padding gereksiz */

/* --- Hero Slider --- */
.hero-slider {
  position: relative;
}
.hero-slider .carousel-item {
  height: 85vh;
  min-height: 550px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slider .carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(var(--ep-primary-rgb),0.6), rgba(var(--ep-primary-rgb),0.8));
}
.hero-slider .carousel-caption {
  bottom: 50%;
  transform: translateY(50%);
  text-align: left;
  max-width: 650px;
}
.hero-slider .carousel-caption h1 {
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-slider .carousel-caption p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
}
.hero-slider .carousel-caption .btn-accent {
  padding: 14px 35px;
  font-size: 1rem;
}
.hero-slider .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--ep-accent);
}

/* --- Search Bar --- */
.search-section {
  background: var(--ep-primary);
  padding: 30px 0;
  margin-top: -5px;
  position: relative;
  z-index: 10;
}
.search-bar {
  background: #fff;
  border-radius: var(--ep-radius);
  padding: 20px 25px;
  box-shadow: var(--ep-shadow-hover);
}
.search-bar .form-select,
.search-bar .form-control {
  border: 2px solid var(--ep-border);
  border-radius: var(--ep-radius);
  padding: 12px 16px;
  font-size: 0.95rem;
}
.search-bar .form-select:focus,
.search-bar .form-control:focus {
  border-color: var(--ep-accent);
  box-shadow: 0 0 0 0.2rem rgba(200,164,92,0.25);
}
.search-bar .btn-search {
  background: var(--ep-accent);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: var(--ep-radius);
  font-weight: 600;
  width: 100%;
}
.search-bar .btn-search:hover {
  background: var(--ep-accent-hover);
}

/* --- Section Styles --- */
.section {
  padding: 80px 0;
}
.section-light {
  background: var(--ep-light-bg);
}
.section-dark {
  background: var(--ep-primary);
  color: #fff;
}
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5 {
  color: #fff;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--ep-accent);
  margin: 12px auto 0;
}
.section-header p {
  color: var(--ep-text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.section-dark .section-header p {
  color: rgba(255,255,255,0.7);
}

/* --- Property Cards --- */
.property-card {
  background: var(--ep-card-bg);
  border-radius: var(--ep-radius);
  overflow: hidden;
  box-shadow: var(--ep-shadow);
  transition: var(--ep-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.property-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ep-shadow-hover);
}
.property-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.property-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--ep-transition);
}
.property-card:hover .property-card-img img {
  transform: scale(1.05);
}
.property-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--ep-accent);
  color: #fff;
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  text-transform: capitalize;
}
.property-badge.badge-satilik, .property-badge-inline.badge-satilik { background: #e74c3c; }
.property-badge.badge-kiralik, .property-badge-inline.badge-kiralik { background: #3498db; }
.property-badge-inline {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: var(--ep-accent);
  text-transform: capitalize;
}
.property-map { margin-bottom: 20px; }
.property-map iframe { width: 100%; border-radius: 8px; }
.property-price {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--ep-primary);
  color: var(--ep-accent);
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  z-index: 2;
}
.property-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.property-card-body h5 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-family: var(--ep-font-body);
  font-weight: 600;
}
.property-card-body h5 a {
  color: var(--ep-primary);
}
.property-card-body h5 a:hover {
  color: var(--ep-accent);
}
.property-features {
  display: flex;
  gap: 15px;
  padding-top: 15px;
  margin-top: auto;
  border-top: 1px solid var(--ep-border);
  flex-wrap: wrap;
}
.property-features span {
  font-size: 0.85rem;
  color: var(--ep-text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}
.property-features span i {
  color: var(--ep-accent);
  font-size: 1rem;
}
.property-location {
  color: var(--ep-text-light);
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.property-location i {
  color: var(--ep-accent);
  margin-right: 4px;
}

/* --- Project Cards --- */
.project-card {
  position: relative;
  border-radius: var(--ep-radius);
  overflow: hidden;
  height: 350px;
  box-shadow: var(--ep-shadow);
  transition: var(--ep-transition);
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ep-shadow-hover);
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--ep-transition);
}
.project-card:hover img {
  transform: scale(1.05);
}
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(var(--ep-primary-rgb),0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
}
.project-card-overlay h5 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.project-card-overlay p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.project-card-overlay .btn-sm {
  width: fit-content;
}

/* --- Team / Agent Cards --- */
.team-card {
  background: var(--ep-card-bg);
  border-radius: var(--ep-radius);
  overflow: hidden;
  box-shadow: var(--ep-shadow);
  transition: var(--ep-transition);
  text-align: center;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ep-shadow-hover);
}
.team-card-img {
  height: 280px;
  overflow: hidden;
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--ep-transition);
}
.team-card:hover .team-card-img img {
  transform: scale(1.05);
}
.team-card-body {
  padding: 20px;
}
.team-card-body h5 {
  font-family: var(--ep-font-body);
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1.1rem;
}
.team-card-body h5 a {
  color: var(--ep-primary);
}
.team-card-body h5 a:hover {
  color: var(--ep-accent);
}
.team-card-body .position {
  color: var(--ep-accent);
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.team-card-body .team-contact {
  font-size: 0.85rem;
  color: var(--ep-text-light);
}
.team-card-body .team-contact a {
  color: var(--ep-text-light);
}
.team-card-body .team-contact a:hover {
  color: var(--ep-accent);
}
.team-card-body .team-contact i {
  color: var(--ep-accent);
  margin-right: 4px;
}

/* --- Feature Cards --- */
.feature-card {
  text-align: center;
  padding: 35px 25px;
  background: var(--ep-card-bg);
  border-radius: var(--ep-radius);
  box-shadow: var(--ep-shadow);
  transition: var(--ep-transition);
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ep-shadow-hover);
}
.feature-card .feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(200,164,92,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--ep-transition);
}
.feature-card .feature-icon i {
  font-size: 1.8rem;
  color: var(--ep-accent);
}
.feature-card:hover .feature-icon {
  background: var(--ep-accent);
}
.feature-card:hover .feature-icon i {
  color: #fff;
}
.feature-card h5 {
  font-family: var(--ep-font-body);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--ep-text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --- About Block --- */
.about-block .about-img {
  border-radius: var(--ep-radius);
  overflow: hidden;
  box-shadow: var(--ep-shadow);
}
.about-block .about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-block h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.about-block h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--ep-accent);
  margin-top: 12px;
}
.about-block p {
  color: var(--ep-text-light);
  line-height: 1.8;
}

/* --- CTA Section --- */
.cta-section {
  background: var(--ep-primary);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(200,164,92,0.05)" stroke-width="1"/></svg>') repeat;
  opacity: 0.3;
}
.cta-section h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* --- Page Header / Breadcrumb --- */
.page-header {
  background: var(--ep-primary);
  padding: 50px 0 40px;
  text-align: center;
  position: relative;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--ep-accent), transparent);
}
.page-header h1 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 10px;
}
.page-header .breadcrumb {
  background: none;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.page-header .breadcrumb-item a {
  color: rgba(255,255,255,0.7);
}
.page-header .breadcrumb-item a:hover {
  color: var(--ep-accent);
}
.page-header .breadcrumb-item.active {
  color: var(--ep-accent);
}
.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.4);
}

/* --- Detail Page --- */
.detail-section {
  padding: 60px 0;
}
.detail-main-img {
  border-radius: var(--ep-radius);
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--ep-shadow);
}
.detail-main-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.detail-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.detail-description {
  color: var(--ep-text-light);
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Property Info Table */
.property-info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.property-info-table tr {
  border-bottom: 1px solid var(--ep-border);
}
.property-info-table td {
  padding: 12px 15px;
  font-size: 0.95rem;
}
.property-info-table td:first-child {
  font-weight: 600;
  color: var(--ep-primary);
  width: 40%;
}
.property-info-table td:first-child i {
  color: var(--ep-accent);
  margin-right: 8px;
  width: 20px;
}

/* Sidebar Agent Card */
.agent-sidebar-card {
  background: var(--ep-card-bg);
  border-radius: var(--ep-radius);
  box-shadow: var(--ep-shadow);
  padding: 25px;
  text-align: center;
  margin-bottom: 25px;
}
.agent-sidebar-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid var(--ep-accent);
}
.agent-sidebar-card h5 {
  font-family: var(--ep-font-body);
  font-weight: 600;
  margin-bottom: 5px;
}
.agent-sidebar-card .position {
  color: var(--ep-accent);
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.agent-sidebar-card .agent-contact-info a {
  display: block;
  padding: 6px 0;
  color: var(--ep-text);
  font-size: 0.9rem;
}
.agent-sidebar-card .agent-contact-info a i {
  color: var(--ep-accent);
  margin-right: 8px;
  width: 20px;
}
.agent-sidebar-card .agent-contact-info a:hover {
  color: var(--ep-accent);
}

/* Sidebar Contact Form */
.sidebar-form {
  background: var(--ep-card-bg);
  border-radius: var(--ep-radius);
  box-shadow: var(--ep-shadow);
  padding: 25px;
  margin-bottom: 25px;
}
.sidebar-form h5 {
  font-family: var(--ep-font-body);
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}
.sidebar-form .form-control {
  border: 2px solid var(--ep-border);
  border-radius: var(--ep-radius);
  padding: 10px 15px;
  margin-bottom: 12px;
}
.sidebar-form .form-control:focus {
  border-color: var(--ep-accent);
  box-shadow: 0 0 0 0.2rem rgba(200,164,92,0.25);
}

/* --- Contact Page --- */
.contact-info-card {
  background: var(--ep-card-bg);
  border-radius: var(--ep-radius);
  box-shadow: var(--ep-shadow);
  padding: 30px;
  text-align: center;
  height: 100%;
  transition: var(--ep-transition);
}
.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ep-shadow-hover);
}
.contact-info-card .icon {
  width: 60px;
  height: 60px;
  background: rgba(200,164,92,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}
.contact-info-card .icon i {
  font-size: 1.5rem;
  color: var(--ep-accent);
}
.contact-info-card h5 {
  font-family: var(--ep-font-body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}
.contact-info-card p,
.contact-info-card a {
  color: var(--ep-text-light);
  font-size: 0.95rem;
}
.contact-form {
  background: var(--ep-card-bg);
  border-radius: var(--ep-radius);
  box-shadow: var(--ep-shadow);
  padding: 35px;
}
.contact-form h3 {
  margin-bottom: 25px;
}
.contact-form .form-control {
  border: 2px solid var(--ep-border);
  border-radius: var(--ep-radius);
  padding: 12px 16px;
  margin-bottom: 15px;
}
.contact-form .form-control:focus {
  border-color: var(--ep-accent);
  box-shadow: 0 0 0 0.2rem rgba(200,164,92,0.25);
}
.contact-form textarea.form-control {
  min-height: 130px;
  resize: vertical;
}
.map-container {
  border-radius: var(--ep-radius);
  overflow: hidden;
  box-shadow: var(--ep-shadow);
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* --- Footer --- */
.site-footer {
  background: var(--ep-primary);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-logo {
  max-height: 40px;
  margin-bottom: 15px;
}
.footer-about-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  margin-right: 8px;
  transition: var(--ep-transition);
}
.footer-social a:hover {
  background: var(--ep-accent);
  color: #fff;
}
.footer-title {
  color: #fff;
  font-family: var(--ep-font-body);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--ep-accent);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--ep-transition);
}
.footer-links a:hover {
  color: var(--ep-accent);
  padding-left: 5px;
}
.footer-links a i {
  margin-right: 6px;
  font-size: 0.7rem;
  color: var(--ep-accent);
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}
.footer-contact li i {
  color: var(--ep-accent);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact li a {
  color: rgba(255,255,255,0.6);
}
.footer-contact li a:hover {
  color: var(--ep-accent);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  margin-top: 40px;
  font-size: 0.85rem;
}
.footer-bottom a {
  color: rgba(255,255,255,0.6);
}
.footer-bottom a:hover {
  color: var(--ep-accent);
}

/* --- WhatsApp & Call Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--ep-transition);
}
.whatsapp-float:hover {
  background: #128c7e;
  color: #fff;
  transform: scale(1.1);
}
.call-float {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 56px;
  height: 56px;
  background: var(--ep-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 15px rgba(200,164,92,0.4);
  z-index: 999;
  transition: var(--ep-transition);
}
.call-float:hover {
  background: var(--ep-accent-hover);
  color: #fff;
}

/* --- Btn Outline Accent --- */
.btn-outline-accent {
  border: 2px solid var(--ep-accent);
  color: var(--ep-accent);
  background: transparent;
  padding: 10px 24px;
  border-radius: var(--ep-radius);
  font-weight: 600;
  transition: var(--ep-transition);
}
.btn-outline-accent:hover {
  background: var(--ep-accent);
  color: #fff;
}

/* --- Filter Bar --- */
.filter-bar {
  background: var(--ep-card-bg);
  border-radius: var(--ep-radius);
  padding: 20px;
  box-shadow: var(--ep-shadow);
  margin-bottom: 30px;
}
.filter-bar .form-select {
  border: 2px solid var(--ep-border);
  border-radius: var(--ep-radius);
  padding: 10px 14px;
}
.filter-bar .form-select:focus {
  border-color: var(--ep-accent);
}

/* --- Agent Detail --- */
.agent-detail-card {
  background: var(--ep-card-bg);
  border-radius: var(--ep-radius);
  box-shadow: var(--ep-shadow);
  overflow: hidden;
}
.agent-detail-img {
  height: 400px;
}
.agent-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.agent-detail-body {
  padding: 30px;
}
.agent-detail-body h2 {
  margin-bottom: 5px;
}
.agent-detail-body .position {
  color: var(--ep-accent);
  font-size: 1rem;
  margin-bottom: 20px;
}
.agent-detail-body .contact-list {
  list-style: none;
  padding: 0;
}
.agent-detail-body .contact-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--ep-border);
}
.agent-detail-body .contact-list li i {
  color: var(--ep-accent);
  margin-right: 10px;
  width: 20px;
}
.agent-detail-body .contact-list li a {
  color: var(--ep-text);
}
.agent-detail-body .contact-list li a:hover {
  color: var(--ep-accent);
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .emlak-navbar {
    background: var(--ep-primary);
    margin-top: 0;
    padding: 10px 0;
  }
  .topbar {
    display: none;
  }
  /* Alt sayfalarda padding gereksiz - navbar relative */
  .hero-slider .carousel-item {
    height: 60vh;
  }
  .hero-slider .carousel-caption h1 {
    font-size: 2rem;
  }
  .navbar-cta {
    margin-left: 0;
    margin-top: 15px;
  }
  .section {
    padding: 50px 0;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 767.98px) {
  .hero-slider .carousel-item {
    height: 50vh;
    min-height: 400px;
  }
  .hero-slider .carousel-caption {
    text-align: center;
  }
  .hero-slider .carousel-caption h1 {
    font-size: 1.6rem;
  }
  .hero-slider .carousel-caption p {
    font-size: 0.95rem;
  }
  .search-bar {
    padding: 15px;
  }
  .detail-main-img img {
    height: 250px;
  }
  .project-card {
    height: 250px;
  }
  .cta-section h2 {
    font-size: 1.8rem;
  }
  .page-header h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .property-features {
    gap: 10px;
  }
  .property-features span {
    font-size: 0.8rem;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
}