/* --- MODERN RESET & DEĞİŞKENLER --- */
:root {
  --bg-dark: #20204c;
  /* Çok koyu lacivert/siyah */
  --bg-card: rgba(30, 41, 59, 0.4);
  /* Şeffaf lacivert */
  --primary: #08a0b4;
  /* Neon Mavi */
  --secondary: #6366f1;
  /* İndigo */
  --accent: #06b6d4;
  /* Cyan */
  --text-main: #f1f5f9;
  /* Kırık Beyaz */
  --text-muted: #94a3b8;
  /* Gri */
  --border: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

/* --- HEADER / NAVBAR --- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 40px;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
}

header.scrolled {
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border);
  padding: 15px 40px;
}

.Logo_main {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 1700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.liste {
  display: flex;
  gap: 30px;

}

.liste a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  font-size: 0.95rem;
}

.liste a:hover {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* Matrix Canvas Ayarları - GÜNCELLENDİ */
#matrix-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Arka planda kalsın */

  /* Yazıların arkasında da aksın diye opacity'i biraz düşürdük */
  /* Böylece üstteki yazılar daha rahat okunur */
  opacity: 0.15;

  pointer-events: none;
  /* Tıklamaları engellemesin */

  /* NOT: Maskeleme (mask-image) kodlarını buradan SİLDİK. 
       Artık ekranın her yerinden akacak. */
}

/* Yazıların Canvas'ın üstünde kalması için z-index ayarı */
.hero-content {
  position: relative;
  z-index: 10;
  /* Canvas (1) olduğu için bu 10 olunca üstte durur */
}

/* --- HERO SECTION --- */
.top {
  min-height: 100vh;
  width: 100%;
  /* Modern Grid Arka Plan */
  background:
    radial-gradient(circle at 50% 50%, rgba(29, 78, 216, 0.15), transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
  background-color: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.badge {
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
  margin-bottom: 20px;
  display: inline-block;
}

.gradient-text {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

/* Butonlar */
.buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

button {
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}

.btn-primary {
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
  padding: 14px 32px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* --- ORTAK SECTION STİLLERİ --- */
section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.section-header p {
  color: var(--text-muted);
}

/* --- KARTLAR (GLASSMORPHISM) --- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

.icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.card h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card ul li {
  color: var(--text-main);
  margin: 0.8rem 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* --- PROJELER (Yönetim Kurulu Kartları) --- */

/* Not: Carousel yapısı kullanıldığı için buradaki eski grid tanımı gereksizdir. */
/* .projects-container yerine .carousel-wrapper'a odaklanacağız. */

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  display: flex;
  flex-direction: column;

  /* Carousel için gerekli stil (JS'teki cardWidth = 320px baz alınmıştır) */
  flex-shrink: 0;
  width: 300px;
  margin-right: 20px;
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.project-image {
  height: 220px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.role-badge {
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 10px;
}

.project-content h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.project-buttons {
  margin-top: auto;
  display: flex;
  gap: 10px;
  padding-top: 20px;
}

.btn-sm-primary,
.btn-sm-secondary {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-sm-primary {
  background: var(--secondary);
  color: white;
  border: none;
}

.btn-sm-primary:hover {
  background: #4f46e5;
}

.btn-sm-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: #fff;
}

.btn-sm-secondary:hover {
  border-color: #fff;
}

.all-members {
  display: block;
  margin: 40px auto 0;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.all-members:hover {
  background: var(--primary);
  color: #fff;
}

/* --- APP SECTION --- */
.app-section {
  padding: 4rem 2rem;
}

.glass-panel {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.8));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.app-label {
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #fff;
}

.app-content h1 {
  font-size: 2rem;
  margin: 15px 0;
  color: #fff;
}

.app-content p {
  color: var(--text-muted);
  margin-bottom: 25px;
}

.app-features {
  display: flex;
  gap: 20px;
  list-style: none;
  margin-bottom: 30px;
}

.app-features li {
  font-size: 0.9rem;
  color: #e2e8f0;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 8px;
}

.download-buttons {
  display: flex;
  gap: 15px;
}

.store-btn {
  padding: 12px 25px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  background: #fff;
  color: #000;
  transition: 0.3s;
}

.store-btn:hover {
  transform: scale(1.05);
}

.qr-box {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  color: #000;
}

.qr-image {
  width: 120px;
  height: 120px;
  margin-top: 10px;
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
  .glass-panel {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .app-features {
    flex-direction: column;
  }

  .download-buttons {
    justify-content: center;
  }

  .gradient-text {
    font-size: 2.5rem;
  }
}

/* =========================================
   AŞAĞIDAKİ KODLAR CAROUSEL VE INTRO İÇİN
   ========================================= */

/* --- INTRO ANİMASYONU STİLLERİ --- */

/* 1. Giriş Katmanı (Tüm ekranı kaplar) */
#intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-dark);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: overlayFadeOut 0.5s ease-in-out 3.37s forwards;
}

.intro-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 2. Daire Çizimi */
.intro-circle-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  z-index: 1;
  overflow: visible;
}

.circle-path {
  stroke-dasharray: 880;
  stroke-dashoffset: 880;
  animation: drawCircle 0.5s ease-in-out 2s forwards,
    circleFadeOut 0.5s ease-in-out 2.5s forwards;
}

/* 3. Ortadaki "YGT" Yazısı (İsteğe bağlı, Logo gelince bu da olacak mı?) */
.intro-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  opacity: 0;
  animation: textFadeIn 1s ease-in-out 3.5s forwards,
    textFadeOut 0.5s ease-in-out 5.5s forwards;
  text-shadow: 0 0 20px var(--primary);
  z-index: 4;
}

/* 4. LOGO VE HAREKETİ */
.dragon-container {
  position: absolute;
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  transform: translate(100vw, -50%);

  /* Animasyon Zinciri */
  animation: dragonEnter 2s ease-out forwards,
    dragonFloat 1.5s ease-in-out 2s infinite alternate,
    dragonExit 1.5s ease-in 2.5s forwards;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: center;
}

.dragon-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.6));
}

/* --- KEYFRAMES (HAREKET AYARLARI) --- */
@keyframes dragonEnter {
  0% {
    transform: translate(100vw, -50%) scale(0.5);
    opacity: 0;
  }

  60% {
    transform: translate(-60%, -50%) scale(1.1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes dragonFloat {
  0% {
    margin-top: 0px;
  }

  100% {
    margin-top: -15px;
  }
}

@keyframes dragonExit {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-150vw, -50%) scale(0.2);
    opacity: 0;
  }
}

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes textFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes circleFadeOut {
  to {
    opacity: 0;
  }
}

@keyframes textFadeOut {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@keyframes overlayFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* ========================================= */
/* CAROUSEL VE OK STİLLERİ (YÖNETİM KURULU) */
/* ========================================= */

.carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Kaydırılabilir İçerik Alanı */
.projects-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  /* Yatay kaydırmayı aktif et */
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 20px 0;
  margin: 0;

  /* KAYDIRMA ÇUBUĞUNU GİZLEME */
  -ms-overflow-style: none;
  /* Internet Explorer ve Edge için */
  scrollbar-width: none;
  /* Firefox için */
}

/* WebKit tabanlı tarayıcılar (Chrome, Safari, Edge) için gizleme */
.projects-container::-webkit-scrollbar {
  display: none;
}

/* Ok Butonları */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.nav-arrow:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.05);
}

.left-arrow {
  left: 0;
}

.right-arrow {
  right: 0;
}

.nav-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-50%) scale(1);
  box-shadow: none;
}

/* =========================================
   MOBİL MENÜ VE RESPONSIVE AYARLAR
   (styles.css EN ALTINA EKLE)
   ========================================= */

/* Hamburger Menü (Masaüstünde Gizli) */
.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: white;
  border-radius: 3px;
}

/* --- MOBİL CİHAZLAR İÇİN MEDIA QUERY (Max-Width: 768px) --- */
@media (max-width: 768px) {

  /* 1. Navbar Düzenlemesi */
  .navbar {
    padding: 0 20px;
    /* Kenar boşluklarını azalt */
  }

  .Logo_main span {
    font-size: 1.1rem;
    /* Logo yazısını küçült */
  }

  /* Hamburger Görünür Olsun */
  .hamburger {
    display: block;
    z-index: 1001;
    /* En üstte */
  }

  /* Hamburger Animasyonu (Çarpı Olma) */
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* 2. Menü Listesi (Mobilde Açılır Kapanır Yapı) */
  .liste {
    position: fixed;
    left: -100%;
    /* Ekranın solunda gizli başla */
    top: 70px;
    /* Header yüksekliği kadar aşağıdan başla */
    gap: 0;
    flex-direction: column;
    background-color: rgba(2, 6, 23, 0.95);
    /* Koyu arka plan */
    backdrop-filter: blur(15px);
    /* Buzlu cam efekti */
    width: 100%;
    height: calc(100vh - 70px);
    /* Ekranın geri kalanını kapla */
    text-align: center;
    transition: 0.3s;
    padding-top: 40px;
    z-index: 999;
    border-top: 1px solid var(--border);
  }

  .liste.active {
    left: 0;
    /* Menüyü ekrana getir */
  }

  .liste a {
    margin: 20px 0;
    font-size: 1.5rem;
    /* Linkleri büyüt */
    display: block;
    width: 100%;
  }

  /* 3. Hero Bölümü Düzeltmeleri */
  .top {
    padding: 6rem 1rem 2rem 1rem;
    /* Üst boşluğu artır */
  }

  .gradient-text {
    font-size: 2.5rem;
    /* Başlığı küçült */
    line-height: 1.2;
  }

  .subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }

  .buttons {
    flex-direction: column;
    /* Butonları alt alta diz */
    width: 100%;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    /* Butonları tam genişlik yap */
  }

  /* 4. Kartlar ve Grid */
  .cards {
    grid-template-columns: 1fr;
    /* Kartları tek sütun yap */
    padding: 0 10px;
  }

  /* 5. Slider / Carousel */
  .carousel-wrapper {
    padding: 0 10px;
  }

  .nav-arrow {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }

  /* 6. Intro Animasyonu Mobil */
  .dragon-container {
    width: 200px;
    /* Mobilde ejderhayı küçült */
    height: 200px;
  }

  .intro-logo {
    font-size: 1.5rem;
  }

  .intro-circle-svg {
    transform: translate(-50%, -50%) scale(0.7) rotate(-90deg);
    /* Daireyi küçült */
  }
}

/* =========================================
   FOOTER (İLETİŞİM) STİLLERİ
   ========================================= */

.site-footer {
  background: rgba(2, 6, 23, 0.95);
  /* Çok koyu zemin */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
  position: relative;
  z-index: 100;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Footer Sol Kısım (Logo) */
.footer-logo h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.footer-logo p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Sosyal Medya Alanı */
.social-section {
  text-align: right;
}

.social-section h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

/* Sosyal Medya Butonları */
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #fff;
  transition: 0.3s all ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* SVG İkon Boyutu */
.social-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  /* Mevcut yazı rengini al */
}

/* HOVER EFEKTLERİ (Marka Renkleri) */

/* LinkedIn: Mavi */
.social-btn.linkedin:hover {
  background: #0077b5;
  color: white;
  box-shadow: 0 0 20px rgba(0, 119, 181, 0.6);
  transform: translateY(-3px);
  border-color: #0077b5;
}

/* Instagram: Gradient */
.social-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  box-shadow: 0 0 20px rgba(214, 41, 118, 0.6);
  transform: translateY(-3px);
  border-color: transparent;
}

/* YouTube: Kırmızı */
.social-btn.youtube:hover {
  background: #ff0000;
  color: white;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
  transform: translateY(-3px);
  border-color: #ff0000;
}

/* Footer En Alt (Telif Hakkı) */
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
}

/* MOBİL GÖRÜNÜM */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .social-section {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* --- FOOTER FORM STİLLERİ --- */

/* Form Konumlandırma */
.footer-contact-form {
  flex: 1;
  /* Ortadaki alanın genişlemesini sağlar */
  max-width: 400px;
  margin: 0 20px;
  text-align: left;
}

.footer-contact-form h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* Input ve Textarea Tasarımı */
#footerForm input,
#footerForm textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: 0.3s;
}

#footerForm textarea {
  min-height: 80px;
  resize: vertical;
}

#footerForm input:focus,
#footerForm textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(8, 160, 180, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

/* Gönder Butonu */
#footerSubmitBtn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  float: right;
}

#footerSubmitBtn:hover {
  background: var(--accent);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
}

/* Mobil Uyum */
@media (max-width: 768px) {
  .footer-contact-form {
    max-width: 100%;
    margin: 20px 0;
    /* Mobilde alt alta gelsin */
    order: 2;
    /* Logodan sonra gelsin */
  }

  .social-section {
    order: 3;
  }
}

/* --- LOGO YAZISI DÜZENLEMESİ --- */

/* Yazıları kapsayan kutu */
.logo-text-group {
  display: flex;
  flex-direction: column;
  /* Yazıları alt alta dizer */
  justify-content: center;
  line-height: 1.1;
  /* Satır aralığını biraz sıkılaştırır */
}

/* Üstteki Yazı (Yazılım Geliştirme) */
.txt-upper {
  font-size: 1.4rem;
  /* Mobilde taşmaması için ideal boyut */
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

/* Alttaki Yazı (Topluluğu) */
.txt-lower {
  font-size: 1.5rem;
  /* Alt satır biraz daha küçük olsun */
  font-weight: 400;
  /* Biraz daha ince dursun */
  color: var(--primary);
  /* Neon mavi renk (isteğe bağlı) */
  /* Beyaz kalmasını istersen üstteki color satırını sil */
  letter-spacing: 2px;
  /* Harf aralarını açarak şık durmasını sağlar */
  text-transform: uppercase;
}

/* Mobilde yazıların çok büyük kalmaması için ayar */
@media (max-width: 768px) {
  .txt-upper {
    font-size: 0.9rem;
  }

  .txt-lower {
    font-size: 0.75rem;
  }

  .nav-logo {
    height: 35px;
    /* Mobilde logoyu biraz küçültelim */
  }
}