* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1b4332;
  --accent-color: #40916c;
  --hover-color: #2d6a4f;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #fff;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.4s ease;
  z-index: 1000;
  padding: 0.35rem 0;
  transform: translateY(0);
}

.navbar-hidden {
  transform: translateY(-100%);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 5%;
  gap: 1rem;
  transition: all 0.4s ease;
}

.navbar-scrolled {
  background: rgba(255, 255, 255, 0.88) !important;
  padding: 0.2rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.navbar-scrolled .nav-container {
  transform: scale(0.85);
  transform-origin: top center;
  padding: 0.15rem 5%;
}

.navbar-scrolled .nav-menu a {
  color: var(--primary-color);
}

.navbar-scrolled .nav-menu a:hover {
  color: var(--hover-color);
}

.navbar-scrolled .language-switcher select {
  background: rgba(27, 67, 50, 0.08);
  color: var(--primary-color);
  border: 1px solid rgba(27, 67, 50, 0.28);
}

.navbar-scrolled .language-switcher select:hover {
  background: rgba(64, 145, 108, 0.16);
}

/* Logo Responsive */
.logo {
  display: flex;
  align-items: center;
  gap: 5px;
  max-width: 320px;
  width: 55%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.logo img {
  height: auto;
  max-height: 100px;
  display: block;
  object-fit: cover;
  transition: all 0.4s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.logo img:first-child {
  width: 200px;
  height: 80px;
}

.navbar-scrolled .logo img {
  max-height: 60px;
  object-fit: cover;
}

.navbar-scrolled .logo img:first-child {
  height: 60px;
  width: 100px;
  overflow-y: hidden;
}

.logo img:last-child {
  flex: 1;
  max-width: 240px;
  object-fit: cover;
}

/* Navbar Sağ Grup */
.navbar-right-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.language-switcher select {
  padding: 10px 15px;
  border-radius: 30px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-switcher select:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.language-switcher select option {
  background: #333;
  color: #fff;
}

/* Grup Butonu */
.btn-grup {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(27, 67, 50, 0.3);
  white-space: nowrap;
}

.btn-grup:hover {
  background: linear-gradient(
    135deg,
    var(--hover-color) 0%,
    var(--primary-color) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 67, 50, 0.5);
}

.btn-grup i {
  font-size: 1.1rem;
}

/* Menü linkleri  */

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  transition: all 0.4s ease;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 8px;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  position: relative;
  white-space: nowrap;
}

/* Hover'da sadece o link'in altında çizgi */
.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--hover-color);
  transition: width 0.4s ease;
}

.nav-menu a:hover {
  color: var(--hover-color);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Active link styling */
.nav-menu a.active {
  color: var(--primary-color);
}

.nav-menu a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: #fff;
  margin: 6px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

/* HERO - Video */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.hero-content {
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.hero-content h1 {
  font-family: "Zalando Sans Expanded", sans-serif;
  font-size: 5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.btn-primary {
  display: inline-block;
  padding: 16px 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  box-shadow: 0 4px 15px rgba(27, 67, 50, 0.2);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.4s;
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--hover-color) 0%,
    var(--primary-color) 100%
  );
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(27, 67, 50, 0.4);
}

/* BÖLÜMLER */
.section {
  padding: 120px 0;
  text-align: center;
  background: #f8f8f8;
  color: #333;
}

.section h2 {
  font-family: "Zalando Sans Expanded", sans-serif;
  font-size: 3.5rem;
  margin-bottom: 60px;
}

/* HAKKIMIZDA BÖLÜMÜ */
.about-section {
  padding: 120px 0;
  background: #f8f8f8;
  text-align: center;
}

.about-desc {
  font-size: 1.4rem;
  max-width: 900px;
  margin: 30px auto 60px;
  color: #555;
  line-height: 1.8;
}

/* İSTATİSTİK KARTLARI */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.stat-card {
  background: #fff;
  padding: 40px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

.stat-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-family: "Zalando Sans Expanded", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.2rem;
  color: #333;
  font-weight: 600;
}

/* Hakkımızda Metin + Fotoğraf */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  text-align: left;
}

.about-text p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Contact form */
#contact {
  background: #343434;
}

.section-title {
  color: #ccc;
}

.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px;
  border-radius: 15px;
  border: 1px solid var(--accent-color);
  background: rgba(255, 255, 255, 0.08);
  color: #000;
  font-size: 1.1rem;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(27, 67, 50, 0.4);
}

.submit-btn {
  align-self: center;
  padding: 16px 50px;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 1.3rem;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.4s;
}

.submit-btn:hover {
  background: var(--hover-color);
  color: #fff;
}

/* FOOTER */
.footer {
  background: #111;
  color: #ccc;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  font-family: "Zalando Sans Expanded", sans-serif;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1.5;
  min-height: 200px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.footer-col ul {
  list-style: none;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
  line-height: 2;
  transition: 0.3s;
}

.footer-col a:hover {
  color: var(--accent-color);
}

.social-links a {
  font-size: 1.5rem;
  margin-right: 15px;
  color: #ccc;
  transition: 0.3s;
}

.social-links a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
}

/* MOBİL UYUMLU */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 4rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-text {
    text-align: center;
  }

  .about-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .logo {
    gap: 2px; /* Mobilde logo arası boşluk çok azaltıldı */
  }

  .logo img:first-child {
    width: 55px; /* Mobilde logo biraz büyütüldü */
    height: 55px;
  }

  /* Mobilde sağ grup gizle, sadece dil seçici göster */
  .navbar-right-group {
    gap: 0.5rem;
  }

  .btn-grup {
    display: none;
  }

  .language-switcher select {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    text-align: center;
    transform: translateY(-150%);
    transition: 0.4s;
    padding: 1rem 0;
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateY(0);
    z-index: 999;
  }

  body.rtl .nav-menu {
    flex-direction: column;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .project-card img {
    height: 220px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    text-align: center;
  }

  .logo {
    max-width: 150px;
  }

  .about-section {
    padding: 80px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .stat-number {
    font-size: 3rem;
  }

  .about-desc {
    font-size: 1.2rem;
  }

  body.rtl .nav-menu {
    flex-direction: column !important;
  }

  .btn-primary {
    padding: 14px 40px;
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .project-card img {
    height: 180px;
  }

  .logo {
    max-width: 170px;
    position: relative;
    left: -9%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  body.rtl .nav-menu {
    flex-direction: column !important;
  }
}

#advancedFilters {
  display: none;
}

#formStatus {
  margin-top: 15px;
  display: none;
  padding: 10px;
  border-radius: 5px;
}

#modalCategory {
  display: inline-flex;
  margin-bottom: 0.35rem;
}

.property-modal .property-location {
  margin: 0.15rem 0 0;
}

#modalDescription {
  margin: 0;
}

#modalMapBtn {
  display: none;
}

.team-card-empty-error-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* RTL - Arapça için */
body.rtl {
  direction: rtl;
  text-align: right;
}

body.rtl .nav-container {
  flex-direction: row-reverse;
}

body.rtl .hero-content {
  text-align: center; /* Ortada kalsın */
}

body.rtl .footer-grid {
  text-align: right;
}

body.rtl .social-links {
  justify-content: flex-end;
}

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid #fff; /* Cerceeve */
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  transition-property: background, transform, border-color;
  z-index: 99999;
  backdrop-filter: invert(1); /* efekt */
  mix-blend-mode: difference; /*  karışım efekti */
}

/* Hover */
.cursor.grow {
  transform: translate(-50%, -50%) scale(1.5);
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--accent-color); /* Vurgu rengi*/
}

/* Normal cursor yok */
body,
a,
button {
  cursor: none !important;
}

/* Mobil cursor yok */
@media (max-width: 768px) {
  .cursor {
    display: none;
  }
}

/* Detay Modali */

.property-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.property-modal-overlay.open {
  display: flex;
}

.property-modal {
  background: linear-gradient(135deg, #0f0f0f 0%, #171717 100%);
  color: #fff;
  border-radius: 16px;
  max-width: 1100px;
  width: 100%;
  max-height: 92vh;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(64, 145, 108, 0.2);
  display: flex;
  flex-direction: column;
}

.property-modal header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 2;
  background: linear-gradient(135deg, #0f0f0f 0%, #171717 100%);
}

.property-modal header h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
}

.property-modal .close-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
  display: grid;
  place-items: center;
}

.property-modal .close-btn:hover {
  background: rgba(64, 145, 108, 0.18);
  border-color: rgba(64, 145, 108, 0.5);
}

.property-modal .modal-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem 1.5rem;
  max-height: calc(92vh - 84px);
  overflow-y: auto;
}

.property-modal .modal-body::-webkit-scrollbar {
  width: 8px;
}

.property-modal .modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

.property-modal .modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.property-modal .gallery {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #0e0e0e;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.property-modal .gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.property-modal .gallery-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 0.75rem;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

.property-modal .gallery-btn {
  pointer-events: all;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  z-index: 2;
  place-items: center;
  cursor: pointer;
  transition: 0.2s;
  backdrop-filter: blur(4px);
}

.property-modal .gallery-btn:hover {
  background: rgba(45, 106, 79, 0.7);
  border-color: rgba(45, 106, 79, 0.9);
}

.property-modal .gallery-counter {
  position: absolute;
  bottom: 12px;
  right: 14px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 2;
}

.property-modal .thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
}

.property-modal .thumbs img {
  width: 90px;
  height: 68px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.65;
  border: 2px solid transparent;
  transition: 0.2s;
  background: #101010;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.property-modal .thumbs img.active {
  opacity: 1;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1);
}

.property-modal .meta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.property-modal .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

.property-modal .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.property-modal .chip {
  background: rgba(255, 255, 255, 0.06);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.property-modal .actions {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.property-modal .btn-outline,
.property-modal .btn-primary-modal {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  padding: 0.6rem 0.95rem;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  font-weight: 600;
}

.property-modal .btn-primary-modal {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.property-modal .btn-outline:hover {
  background: rgba(64, 145, 108, 0.14);
}

.property-modal .btn-primary-modal:hover {
  background: var(--hover-color);
}

@media (max-width: 900px) {
  .property-modal .modal-body {
    grid-template-columns: 1fr;
    max-height: calc(95vh - 76px);
  }

  .property-modal {
    max-height: 96vh;
  }
}

/* ==================== EKİP BÖLÜMÜ ==================== */

.team-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(27, 67, 50, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(27, 67, 50, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.team-section .container {
  position: relative;
  z-index: 1;
}

.team-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.team-subtitle {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 400;
}

.team-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.team-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(27, 67, 50, 0.15);
}

.team-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
}

.team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-image-wrapper img {
  transform: scale(1.1) rotate(1deg);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(27, 67, 50, 0.2) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-content {
  padding: 30px;
  text-align: center;
}

.team-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.team-role {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.team-bio {
  color: #888;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

/* ==================== KONUM BÖLÜMÜ ==================== */

.location-section {
  background: #ffffff;
  padding: 70px 0;
}

.location-card {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(27, 67, 50, 0.12);
}

.location-header {
  padding: 28px 30px 20px;
}

.location-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.location-address {
  color: #374151;
  font-size: 1.05rem;
  line-height: 1.7;
}

.location-map {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 768px) {
  .team-section {
    padding: 60px 0;
  }

  .location-section {
    padding: 50px 0;
  }

  .location-header {
    padding: 22px 20px 16px;
  }

  .location-title {
    font-size: 1.6rem;
  }

  .location-map {
    height: 300px;
  }

  .team-title {
    font-size: 2.2rem;
    margin-bottom: 8px;
  }

  .team-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .team-cards-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-content {
    padding: 25px;
  }

  .team-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .team-section {
    padding: 40px 0;
  }

  .location-title {
    font-size: 1.4rem;
  }

  .location-address {
    font-size: 0.95rem;
  }

  .location-map {
    height: 260px;
  }

  .team-title {
    font-size: 1.8rem;
  }

  .team-subtitle {
    font-size: 0.95rem;
  }

  .team-cards-container {
    gap: 20px;
  }

  .team-content {
    padding: 20px;
  }

  .team-content h3 {
    font-size: 1.15rem;
  }

  .team-role {
    font-size: 0.9rem;
  }
}

/* GELİŞMİŞ FİLTRELER (Sadece Daire İçin) */
.advanced-filters {
  margin: 30px 0;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.filters-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  align-items: end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-group label i {
  color: var(--accent-color);
  font-size: 1rem;
}

.filter-group select {
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 0.95rem;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-group input {
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 0.95rem;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}

.filter-group input::-webkit-outer-spin-button,
.filter-group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.filter-group input[type="number"] {
  -moz-appearance: textfield;
}

.filter-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.filter-group select:hover,
.filter-group input:hover {
  border-color: rgba(64, 145, 108, 0.5);
  background: rgba(0, 0, 0, 0.5);
}

.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1);
}

.filter-group select option {
  background: #1a1a1a;
  color: #fff;
  padding: 10px;
}

.filter-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 10px;
}

.btn-filter-apply,
.btn-filter-reset {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: #fff;
}

.btn-filter-apply:hover,
.btn-filter-reset:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(27, 67, 50, 0.4);
}

.no-properties {
  color: #000;
}

/* Responsive - Mobil */
@media (max-width: 768px) {
  .filters-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .filter-actions {
    flex-direction: column;
  }

  .btn-filter-apply,
  .btn-filter-reset {
    width: 100%;
    justify-content: center;
  }

  .advanced-filters {
    padding: 20px 15px;
  }
}
