.contact-form input.contact-input,
.contact-form input[type="tel"],
.contact-form input[type="email"] {
  width: 100%;
  min-height: 44px;
  box-sizing: border-box;
}
.contact-form textarea.contact-textarea {
  width: 100%;
  min-height: 110px;
  max-height: 180px;
  box-sizing: border-box;
  resize: none;
}
.contact-info-static {
  color: #333;
  font-weight: 500;
  cursor: default;
}
/* Tıklanabilir iletişim bilgileri link stili */
.contact-info-link {
  display: inline-block;
  color: #174ea6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  cursor: pointer;
}
.contact-info-link:hover {
  color: #2a7ae4;
  text-decoration: none;
}
.contact-info-box .contact-form-toggle-btn {
  margin-top: 24px;
  width: 100%;
}
/* İletişim sayfası yan yana içerik */
.contact-flex-row {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
}
.contact-info-box {
  min-width: 280px;
  max-width: 350px;
  background: none;
  border-radius: 16px;
  box-shadow: none;
  padding: 28px 22px;
  font-size: 1rem;
  color: #222;
}
.contact-map {
  min-width: 320px;
  max-width: 500px;
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 0;
}
@media (max-width: 900px) {
  .contact-flex-row {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
  .contact-map {
    min-width: 0;
    max-width: 100%;
    height: 250px;
  }
  .contact-info-box {
    max-width: 100%;
    min-width: 0;
  }
}
/* Popup iletişim formu modal stilleri */
.contact-form-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
}
.contact-form-modal.show {
  display: block;
}
.contact-form-modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}
@keyframes popupOpen {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
.contact-form-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 2;
  width: 100%;
  max-width: 420px;
}
.contact-form-modal.show .contact-form-modal-content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: popupOpen 0.35s cubic-bezier(.42,0,.58,1) both;
}
.contact-form-close-btn {
  margin-top: 12px;
  padding: 8px 0;
  font-size: 1rem;
  border-radius: 8px;
  background: #eee;
  color: #174ea6;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
.contact-form-close-btn:hover {
  background: #e0e0e0;
}
/* Formu açma butonu stili */
.contact-form-toggle-btn {
  padding: 12px 0;
  font-size: 1.08rem;
  border-radius: 8px;
  background: linear-gradient(90deg, #2a7ae4 0%, #174ea6 100%);
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(42,122,228,0.12);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  margin-bottom: 18px;
  width: 100%;
}
.contact-form-toggle-btn:hover {
  background: linear-gradient(90deg, #174ea6 0%, #2a7ae4 100%);
  box-shadow: 0 4px 16px rgba(42,122,228,0.18);
}

/* Form animasyonu için görünür olduğunda stil */
#contactForm.show {
  display: flex !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
/* Modern iletişim formu tasarımı */
.contact-form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 32px 28px;
  min-width: 320px;
  max-width: 400px;
  width: 100%;
  margin: 0;
  align-items: stretch;
}

.contact-form-title {
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #174ea6;
  text-align: left;
  letter-spacing: 0.5px;
}

.contact-input {
  padding: 10px 14px;
  border: 1.5px solid #bbb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  background: #f8f8f8;
}

.contact-input:focus {
  border-color: #2a7ae4;
  box-shadow: 0 0 0 2px rgba(42,122,228,0.15);
}

.contact-textarea {
  padding: 12px 14px;
  border: 1.5px solid #bbb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  background: #f8f8f8;
  resize: none;
  min-height: 120px;
  max-height: 120px;
}

.contact-textarea:focus {
  border-color: #2a7ae4;
  box-shadow: 0 0 0 2px rgba(42,122,228,0.15);
}

.contact-button {
  padding: 12px 0;
  font-size: 1.08rem;
  border-radius: 8px;
  background: linear-gradient(90deg, #2a7ae4 0%, #174ea6 100%);
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(42,122,228,0.12);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  margin-top: 6px;
}

.contact-button:hover {
  background: linear-gradient(90deg, #174ea6 0%, #2a7ae4 100%);
  box-shadow: 0 4px 16px rgba(42,122,228,0.18);
}
/* İletişim sayfası ana container */
.contact-page-container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  gap: 40px;
}

/* Google Maps kutusu */
.contact-map {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}

/* Sağdaki alan: bilgi + form */
.contact-main {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* İletişim kutusu sağa yaslandı */
.contact-info-container {
  display: flex;
  justify-content: flex-end;
  flex: 1 1 320px;
}

/* İletişim kutusu */
.contact-info-box {
  padding: 28px 22px;
  min-width: 260px;
  max-width: 320px;
  font-size: 1rem;
  color: #222;
}

/* Liste stili */
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Form alanı */
.contact-form-wrapper {
  flex: 1 1 400px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 32px 28px;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-main {
    justify-content: center;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .contact-main {
    flex-direction: column;
    align-items: center;
  }
  .contact-info-container {
    justify-content: center;
  }
}
/* Navbar altı çizgi */
.navbar-underline {
  width: 100vw;
  height: 6px;
  margin: 0 auto 36px auto;
  background: linear-gradient(90deg, #888 0%, #222 100%);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  border-radius: 3px;
}
/* Genel ayarlar */
/* Navbar yüksekliği kadar üst boşluk ekleyelim */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  user-select: none;
  padding-top: 80px; /* navbar yüksekliği kadar boşluk */
}

/* Navbar */
.navbar {
  background-color: #f5f5f5;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  z-index: 100;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
}
.navbar .logo img {
  height: 50px;
  user-select: none;
  pointer-events: none;
}
.navbar ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.navbar ul li {
  margin-left: 20px;
}
.navbar ul li a {
  color: #333;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  transition: all 0.3s ease; /* animasyon için */
  position: relative; /* hover efekti için */
}
.navbar ul li a:hover::after {
  width: 100%; /* hover yapınca alt çizgi genişler */
}
.navbar ul li a:hover {
  transform: translateY(-3px); /* hafif yukarı kayma */
  color: #000; /* hover rengi */
}

.navbar ul li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #ffcc00; /* alt çizgi rengi, sitenize uygun */
  transition: all 0.3s ease;
}
/* Banner */
.banner {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
  pointer-events: none;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.banner-content h1 {
  font-size: 60px; /* büyütüldü */
  margin: 0;
}

.banner-content p {
  font-size: 24px; /* büyütüldü */
  margin: 10px 0 30px 0;
}

/* Şeffaf Buton */
.btn {
  padding: 14px 36px;
  background: rgba(255, 204, 0, 0.7); /* yarı şeffaf */
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  border: 2px solid #ffcc00;
  transition: all 0.3s ease;
}
.btn:hover {
  background: rgba(255, 204, 0, 0.9);
  transform: scale(1.08);
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.5s forwards;
}
.fade-in-delay {
  opacity: 0;
  animation: fadeIn 2s forwards 0.5s;
}
.slide-up {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 1.5s forwards 1s;
}

@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}
/* buton için css */
.neu-button {
  background-color: transparent;
  border-radius: 50px;
  color: #ffffff;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 40px;
  transition: all 0.3s ease-in-out;
  border: 2px solid rgba(255,255,255,0.3);
  text-decoration: none;
}
.neu-button:hover {
  background-color: rgba(0,0,0,0.85);
  color: #ffffff;
}
.neu-button:focus {
  outline: none;
  background-color: rgba(0,0,0,0.85);
  color: #ffffff;
}
.neu-button.slide-up {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 1.5s forwards 1s;
}
/* Banner / Başlık */
.about-banner {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('akyuzlerGorselleri/luksVillaHavuz.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px 80px 20px;
}

.about-banner h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.about-banner p {
  font-size: 1.3rem;
}

/* Kuruluş Hikayesi */
.about-story {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.about-story h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #174ea6;
}

.about-story p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

/* Misyon & Vizyon */
.about-mission-vision {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 60px auto;
  gap: 40px;
  padding: 0 20px;
}

.about-mission-vision .mission,
.about-mission-vision .vision {
  background: #f7f9fa;
  border-radius: 16px;
  padding: 30px;
  flex: 1 1 300px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.about-mission-vision h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #174ea6;
}

.about-mission-vision p {
  font-size: 1rem;
  line-height: 1.6;
  color: #222;
}

/* Ekip Tanıtımı */
.team {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.team h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #174ea6;
}

.team-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.team-card {
  background: #f7f9fa;
  border-radius: 16px;
  padding: 20px;
  width: 220px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.team-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-card h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #222;
}

.team-card p {
  font-size: 1rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .about-mission-vision {
    flex-direction: column;
    align-items: center;
  }

  .team-cards {
    flex-direction: column;
    align-items: center;
  }

  .team-card {
    width: 80%;
  }
}
/* Projeler bölümü */
.projects-section {
  padding: 60px 20px;
  background: #f4f4f4;
  text-align: center;
}

.projects-section h2 {
  font-size: 2.5rem;
  color: #174ea6;
  margin-bottom: 40px;
  font-weight: 600;
}

/* Projeler kart container */
.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* Her bir proje kartı */
.project-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  max-width: 320px;
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-card h3 {
  margin: 16px 0 8px 0;
  font-size: 1.4rem;
  color: #222;
}

.project-card p {
  padding: 0 16px 16px 16px;
  font-size: 1rem;
  color: #555;
}

/* Proje detay butonu */
.project-button {
  display: inline-block;
  margin: 0 0 16px 0;
  padding: 10px 24px;
  background: linear-gradient(90deg, #2a7ae4 0%, #174ea6 100%);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s, transform 0.3s;
}

.project-button:hover {
  background: linear-gradient(90deg, #174ea6 0%, #2a7ae4 100%);
  transform: translateY(-3px);
}

/* Kart hover efekti */
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* Responsive ayar: mobilde grid tek sütun */
@media (max-width: 768px) {
  .projects-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}