/* Tema ve Bar Tasarımı - tema.css */
:root {
  --primary-color: #2196f3;
  --secondary-color: #38e7b6;
  --background-dark: #0a174e;
  --background-light: #12204d;
  --text-light: #eaf6ff;
  --text-muted: #b3e5fc;
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: url('https://www.transparenttextures.com/patterns/cubes.png'), linear-gradient(120deg, var(--background-dark) 0%, #183661 100%);
  min-height: 100vh;
  color: var(--text-light);
  box-sizing: border-box;
}
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: url('https://www.transparenttextures.com/patterns/cubes.png'), linear-gradient(90deg, var(--background-dark) 0%, #1565c0 100%);
  padding: 0 5vw;
  box-sizing: border-box;
  position: relative;
}
.hero-content {
  flex: 1 1 50%;
  padding: 60px 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 320px;
  max-width: 550px;
  width: 100%;
}
.hero-content h1, .hero-content h2, .hero-content p {
  text-align: left;
  max-width: 100%;
  word-break: break-word;
}
.why-us-section {
  width: 100vw;
  background: linear-gradient(90deg, #1565c0 0%, var(--primary-color) 100%);
  padding: 40px 0 28px 0;
  text-align: center;
}
.yuk-ekle-section {
  width: 100vw;
  background: url('https://www.transparenttextures.com/patterns/cubes.png'), linear-gradient(120deg, var(--background-dark) 0%, #183661 100%) !important;
  padding: 40px 0 32px 0;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.yuk-ekle-main {
  display: flex;
  height: calc(100vh - 70px);
  min-height: 600px;
  width: 100vw;
  background: url('https://www.transparenttextures.com/patterns/cubes.png'), linear-gradient(90deg, var(--background-dark) 0%, #1565c0 100%);
  box-sizing: border-box;
  overflow-y: auto;
  position: relative;
}

/* Animasyonlar */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(.4,0,.2,1) forwards;
}
.fade-in-left {
  opacity: 0;
  animation: fadeInLeft 0.9s cubic-bezier(.4,0,.2,1) forwards;
}
.fade-in-right {
  opacity: 0;
  animation: fadeInRight 0.9s cubic-bezier(.4,0,.2,1) forwards;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInAnim 0.8s ease-out forwards;
}
@keyframes fadeInAnim {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.yuk-ekle-left {
  flex: 1 1 0;
  min-width: 340px;
  max-width: 540px;
  padding: 48px 32px 48px 7vw;
  display: flex;
  flex-direction: column;
  gap: 36px;
  /* overflow-y: auto; */
  border-right: 2px solid #183661;
  height: 100%;
  background: transparent;
  animation-delay: 0.1s;
}
.yuk-ekle-right {
  flex: 1 1 0;
  min-width: 340px;
  max-width: 700px;
  padding: 48px 7vw 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* overflow-y: auto; */
  height: 100%;
  background: transparent;
  animation-delay: 0.3s;
}
.yuk-ekle-basliklar h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 12px;
}
.yuk-ekle-basliklar h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 18px;
}
.yuk-ekle-aciklama {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
.yuk-ekle-avantajlar h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 18px;
  font-weight: 700;
}
.yuk-avantaj-listesi {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.avantaj-kart {
  background: #183661;
  border-radius: 16px;
  box-shadow: 0 2px 12px #1565c022;
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: #eaf6ff;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid transparent;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(.4,0,.2,1) forwards;
}
.avantaj-kart:nth-child(1) { animation-delay: 0.2s; }
.avantaj-kart:nth-child(2) { animation-delay: 0.35s; }
.avantaj-kart:nth-child(3) { animation-delay: 0.5s; }
.avantaj-kart:nth-child(4) { animation-delay: 0.65s; }
.avantaj-kart i {
  font-size: 32px;
  color: var(--secondary-color);
  margin-bottom: 4px;
}
.avantaj-kart b {
  font-size: 18px;
  color: #fff;
  margin-bottom: 2px;
}
.avantaj-kart span {
  font-size: 15px;
  color: var(--text-muted);
}
.avantaj-kart:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 8px 32px #2196f355;
  border: 2px solid var(--secondary-color);
  background: linear-gradient(120deg, #2196f3 60%, #12204d 120%);
}
@keyframes fadeInUpForm {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
.yuk-form-container {
  max-width: 520px;
  margin: 36px auto;
  background: #12204d !important;
  border-radius: 28px;
  box-shadow: 0 8px 32px #1565c044, 0 2px 12px #1565c022;
  padding: 48px 36px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 1;
  transition: box-shadow 0.2s, border 0.2s, background 0.3s;
}
.yuk-form-container:hover {
  box-shadow: 0 12px 48px #2196f355, 0 2px 12px #1565c022;
  background: linear-gradient(120deg, #183661 60%, #12204d 100%);
}
.yuk-form-actions button {
  background: linear-gradient(90deg, #43ea7b 0%, #1bbf3a 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 38px;
  font-size: 1.13rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px #1bbf3a33, 0 4px 20px #38e7b633;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  text-decoration: none;
  margin-top: 8px;
  display: inline-block;
  letter-spacing: 0.5px;
}
.yuk-form-actions button:hover {
  background: linear-gradient(90deg, #1bbf3a 0%, #43ea7b 100%);
  transform: scale(1.06);
  box-shadow: 0 8px 32px #43ea7b55;
}
.yuk-form-container input,
.yuk-form-container select,
.yuk-form-container textarea {
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}
.yuk-form-container input:focus,
.yuk-form-container select:focus,
.yuk-form-container textarea:focus {
  border-color: #38e7b6;
  background: #1a2a4d;
  box-shadow: 0 2px 16px #2196f355;
}
.container {
  max-width: 540px;
  width: 100%;
  margin: 40px auto;
  background: rgba(10,23,78,0.92);
  border-radius: 18px;
  box-shadow: 0 2px 12px #1565c022;
  padding: 32px 18px;
  align-self: center;
}
.cta-bottom {
  width: 100vw;
  background: linear-gradient(90deg, var(--primary-color) 0%, #1565c0 100%);
  padding: 40px 0 40px 0;
  text-align: center;
}
.cta-btn {
  background: linear-gradient(90deg, #43ea7b 0%, #1bbf3a 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 38px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px #1bbf3a33;
  transition: background 0.18s, transform 0.18s;
  text-decoration: none;
  margin-top: 8px;
  display: inline-block;
}
.cta-btn:hover {
  background: linear-gradient(90deg, #1bbf3a 0%, #43ea7b 100%);
  transform: scale(1.04);
}
/* Appbar ve barlar */
.appbar {
  width: 100%;
  background: rgba(10, 23, 78, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(33, 150, 243, 0.2);
  box-sizing: border-box;
}
.appbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.appbar-brand img {
  height: 40px;
}
.appbar-title {
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.3s;
}
.appbar-brand:hover .appbar-title {
  color: var(--secondary-color);
}
.appbar-tabs {
  display: flex;
  gap: 8px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.tab-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  background: transparent;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.tab-link i {
  color: var(--secondary-color);
  transition: color 0.3s;
}
.tab-link:hover {
  background: rgba(33, 150, 243, 0.1);
  color: #fff;
  transform: translateY(-2px);
}
.tab-link:hover i {
  color: #fff;
}
.tab-link.active {
  background: var(--primary-color);
  color: #fff;
}
.tab-link.active i {
  color: #fff;
}
/* Dashboard Kartları */
.dashboard-section {
  background: linear-gradient(90deg, #12204d 0%, #183661 100%);
  padding: 48px 0 32px 0;
  display: flex;
  justify-content: center;
}
.dashboard-cards {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.dashboard-card {
  background: rgba(10,23,78,0.92);
  border-radius: 18px;
  box-shadow: 0 2px 12px #1565c022;
  padding: 32px 28px;
  min-width: 180px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.dashboard-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px #2196f355;
}
.dashboard-card i {
  font-size: 2.2rem;
  color: var(--secondary-color);
  margin-bottom: 8px;
}
.card-title {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 600;
}
.card-value {
  font-size: 2.1rem;
  color: var(--primary-color);
  font-weight: 700;
}

/* Canlı Harita Alanı */
.map-section {
  background: var(--background-light);
  padding: 48px 0 32px 0;
  text-align: center;
}
.map-placeholder {
  background: rgba(10,23,78,0.85);
  border: 2px dashed var(--secondary-color);
  border-radius: 18px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
  max-width: 600px;
  color: var(--text-muted);
  font-size: 1.2rem;
}
.map-placeholder i {
  font-size: 3.5rem;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

/* Hızlı Erişim Butonları */
.quick-actions-section {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 32px 0 24px 0;
  background: linear-gradient(90deg, #1565c0 0%, var(--primary-color) 100%);
}
.quick-action-btn {
  background: var(--secondary-color);
  color: var(--background-dark);
  border: none;
  border-radius: 10px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(56, 231, 182, 0.18);
  transition: all 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.quick-action-btn:hover {
  background: #1bbf3a;
  color: #fff;
  transform: translateY(-3px) scale(1.04);
}

/* Avantajlar/Referanslar */
.features-section {
  padding: 64px 0 48px 0;
  background: var(--background-light);
  text-align: center;
}
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}
.feature-item {
  background: rgba(10,23,78,0.92);
  border-radius: 18px;
  box-shadow: 0 2px 12px #1565c022;
  padding: 32px 24px;
  min-width: 200px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.feature-item i {
  font-size: 2.2rem;
  color: var(--secondary-color);
  margin-bottom: 8px;
}
.feature-item h3 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 6px 0;
}
.feature-item p {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
}

/* Footer */
.footer-section {
  background: #0a174e;
  color: var(--text-light);
  padding: 32px 0 0 0;
  margin-top: 32px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 18px 24px;
  border-bottom: 1px solid #183661;
  gap: 18px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
}
.footer-links {
  display: flex;
  gap: 18px;
}
.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--secondary-color);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  color: var(--secondary-color);
  font-size: 1.3rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #fff;
}
.footer-copy {
  text-align: center;
  color: #b3e5fc;
  font-size: 0.95rem;
  padding: 12px 0 8px 0;
}

/* PROFIL SAYFASI IKI KOLON DÜZENİ */
.profil-iki-kolon {
  display: flex;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
  width: 100%;
  padding: 60px 0 0 0;
}
.profil-sol {
  flex: 0 0 60%;
  min-width: 320px;
  max-width: 660px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.profil-sag {
  flex: 0 0 40%;
  min-width: 320px;
  max-width: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 900px) {
  .profil-iki-kolon {
    flex-direction: column;
    gap: 24px;
    padding: 24px 0 0 0;
  }
  .profil-sag {
    margin-top: 32px;
    max-width: 100vw;
  }
  .profil-sol {
    max-width: 100vw;
  }
}
@media (max-width: 1200px) {
  .appbar-tabs { gap: 18px; }

@media (max-width: 992px) {
  .appbar-tabs { 
    display: none; 
  }
  .appbar-tabs.mobile-show { 
    display: flex !important; 
    flex-direction: column; 
    position: fixed; 
    top: 70px; 
    left: 0; 
    right: 0; 
    background: var(--background-dark); 
    padding: 20px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
  }
  .appbar-tabs.mobile-show .tab-link {
    padding: 12px 16px;
    margin: 4px 0;
    border-radius: 8px;
    font-size: 14px;
    text-align: left;
  }
  .mobile-menu-toggle {
    display: block !important;
  }
}
@media (max-width: 900px) {
  .appbar-title { font-size: 1.1rem; }
  .tab-link { font-size: 0.95rem; }
  .appbar { min-height: 44px; height: 44px; padding: 0 8px; }
  .appbar-brand img { height: 24px; width: 24px; }
}
@media (max-width: 700px) {
  .appbar { min-height: 36px; height: 36px; }
  .appbar-title { font-size: 0.95rem; }
}
@media (max-width: 1100px) {
  .yuk-ekle-main {
    flex-direction: column;
    height: auto;
    min-height: unset;
    overflow-y: visible;
    background: url('https://www.transparenttextures.com/patterns/cubes.png'), linear-gradient(120deg, var(--background-dark) 0%, #183661 100%);
  }
  .yuk-ekle-left, .yuk-ekle-right {
    max-width: 100vw;
    padding: 32px 4vw;
    border-right: none;
    border-bottom: 2px solid #183661;
    height: auto;
  }
  .yuk-ekle-right {
    border-bottom: none;
  }
}
@media (max-width: 700px) {
  .yuk-ekle-main {
    flex-direction: column;
    height: auto;
    min-height: unset;
    overflow-y: visible;
    background: url('https://www.transparenttextures.com/patterns/cubes.png'), linear-gradient(120deg, var(--background-dark) 0%, #183661 100%);
  }
  .yuk-ekle-left, .yuk-ekle-right {
    max-width: 100vw;
    padding: 18px 2vw;
    border-right: none;
    border-bottom: 2px solid #183661;
    height: auto;
  }
  .yuk-ekle-right {
    border-bottom: none;
  }
  .yuk-form-container {
    padding: 12px 2px;
  }
}
.hero-image {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 7vw;
  min-width: 220px;
}
.hero-image i {
  font-size: 180px;
  color: var(--secondary-color);
  opacity: 0.85;
  text-shadow: 0 0 32px var(--secondary-color);
  filter: drop-shadow(0 8px 32px #38e7b655);
  margin-left: 0;
  margin-right: 0;
  transform: none;
}