/* ══════════════════════════════════════
   RESET & TEMEL
══════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ══════════════════════════════════════
   AÇIK TEMA
══════════════════════════════════════ */
:root,
[data-theme="light"] {
  --green: #1D9E75;
  --green-dk: #0F6E56;
  --green-lt: #E1F5EE;
  --green-mid: #5dcaa5;
  --text: #0f1117;
  --text-2: #4b5563;
  --text-3: #9ca3af;
  --border: #e5e7eb;
  --border-2: #d1d5db;
  --bg: #f8fafc;
  --bg-2: #f1f5f9;
  --white: #ffffff;
  --nav-bg: rgba(255, 255, 255, 0.95);
  --nav-text: #0f1117;
  --nav-muted: #4b5563;
  --footer-bg: #0d1b2a;
  --footer-text: #94a3b8;
  --footer-head: #e2e8f0;
  --radius: 10px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, .10);
}

/* ══════════════════════════════════════
   KOYU TEMA
══════════════════════════════════════ */
[data-theme="dark"] {
  --green: #2dbd8e;
  --green-dk: #1D9E75;
  --green-lt: #0d2e22;
  --green-mid: #1D9E75;
  --text: #f1f5f9;
  --text-2: #94a3b8;
  --text-3: #64748b;
  --border: #1e293b;
  --border-2: #334155;
  --bg: #0a0f1a;
  --bg-2: #111827;
  --white: #111827;
  --nav-bg: rgba(10, 15, 26, 0.97);
  --nav-text: #f1f5f9;
  --nav-muted: #94a3b8;
  --footer-bg: #060d16;
  --footer-text: #64748b;
  --footer-head: #94a3b8;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .4);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, .5);
}

/* ══════════════════════════════════════
   GENEL
══════════════════════════════════════ */
body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: background .3s, color .3s;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ══════════════════════════════════════
   HEADER & NAVBAR
══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-md);
}

.navbar {
  padding: 0 32px;
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 76px;
  gap: 0;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-right: 40px;
}

.logo-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid var(--green-lt);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .3s;
}

.logo:hover .logo-ring {
  border-color: var(--green);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--nav-text);
  letter-spacing: 0.3px;
  line-height: 1;
  transition: color .3s;
}

.logo-sub {
  font-size: 10px;
  color: var(--nav-muted);
  letter-spacing: 0.2px;
  transition: color .3s;
}

/* ORTA MENÜ */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
}

.nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--nav-muted);
  padding: 8px 16px;
  border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--nav-text);
  background: var(--bg-2);
}

.nav-link.active {
  color: var(--green);
}

/* HOVER ALTÇIZGISI */
.nav-bar {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  height: 2.5px;
  width: 0;
  background: var(--green);
  border-radius: 2px;
  transition: width .25s cubic-bezier(.4, 0, .2, 1);
  pointer-events: none;
}

.nav-item:hover .nav-bar {
  width: calc(100% - 20px);
}

/* SAĞ AKSIYONLAR */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

/* İKON BUTON */
.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: none;
  border: 1px solid var(--border);
  color: var(--nav-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color .2s, background .2s, border-color .2s;
  flex-shrink: 0;
}

.icon-btn:hover {
  color: var(--nav-text);
  background: var(--bg-2);
  border-color: var(--border-2);
}

/* TEMA İKONLARI */
[data-theme="light"] .i-moon {
  display: block;
}

[data-theme="light"] .i-sun {
  display: none;
}

[data-theme="dark"] .i-moon {
  display: none;
}

[data-theme="dark"] .i-sun {
  display: block;
}

/* ARAMA */
.search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: width .35s cubic-bezier(.4, 0, .2, 1), opacity .25s;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 0;
  pointer-events: none;
}

.search-wrap.open .search-box {
  width: 240px;
  opacity: 1;
  padding: 0 12px;
  pointer-events: auto;
  margin-right: 6px;
}

.search-box svg {
  color: var(--text-3);
  flex-shrink: 0;
}

.search-box input {
  flex: 1;
  border: none;
  background: none;
  font-size: 13px;
  color: var(--text);
  outline: none;
  padding: 9px 0;
}

.search-box input::placeholder {
  color: var(--text-3);
}

.search-x {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-3);
  font-size: 14px;
  padding: 2px 4px;
  flex-shrink: 0;
}

.search-x:hover {
  color: var(--text);
}

/* AUTH BUTONLAR */
.btn-ghost {
  font-size: 13px;
  font-weight: 500;
  color: var(--nav-muted);
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.btn-ghost:hover {
  color: var(--nav-text);
  background: var(--bg-2);
}

.btn-solid {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--green);
  padding: 9px 18px;
  border-radius: 8px;
  border: none;
  transition: background .2s, transform .1s;
  white-space: nowrap;
}

.btn-solid:hover {
  background: var(--green-dk);
  transform: translateY(-1px);
}

/* AVATAR */
.nav-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s;
}

.nav-avatar:hover {
  transform: scale(1.08);
}

/* 3 ÇİZGİ HAMBURGERs */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 9px 10px;
  cursor: pointer;
  width: 40px;
  height: 38px;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.hamburger:hover {
  background: var(--bg-2);
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--nav-muted);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBİL MENÜ */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 20px 16px;
  border-top: 1px solid var(--border);
  background: var(--nav-bg);
  gap: 2px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--nav-muted);
  padding: 10px 12px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}

.mobile-menu a:hover {
  color: var(--nav-text);
  background: var(--bg-2);
}

.mobile-sep {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  padding: 64px 0 56px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-lt);
  color: var(--green-dk);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 16px;
  color: var(--text);
}

.hero p {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 12px 28px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s, transform .15s;
  display: inline-flex;
  align-items: center;
}

.btn-primary:hover {
  background: var(--green-dk);
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1.5px solid var(--border-2);
  color: var(--text);
  padding: 12px 28px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 500;
  transition: background .2s, border-color .2s;
  display: inline-flex;
  align-items: center;
}

.btn-secondary:hover {
  background: var(--bg-2);
  border-color: var(--text-3);
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}

.stat-lbl {
  font-size: 12px;
  color: var(--text-3);
}

/* ══════════════════════════════════════
   CONTENT GRID
══════════════════════════════════════ */
.main-content {
  padding: 36px 0 64px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
}

/* ══════════════════════════════════════
   TABS
══════════════════════════════════════ */
.section-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.stab {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}

.stab.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.stab:hover:not(.active) {
  color: var(--text-2);
}

/* ══════════════════════════════════════
   POST CARDS
══════════════════════════════════════ */
.post-card {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 14px;
  transition: border-color .2s, box-shadow .2s, transform .15s;
  cursor: pointer;
}

.post-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.post-img {
  width: 84px;
  height: 76px;
  border-radius: 9px;
  background: var(--green-lt);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  overflow: hidden;
}

.post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-body {
  flex: 1;
  min-width: 0;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.post-cat {
  background: var(--green-lt);
  color: var(--green-dk);
  padding: 2px 9px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 500;
}

.post-meta span {
  font-size: 11px;
  color: var(--text-3);
}

.post-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 5px;
}

.post-summary {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.55;
}

.post-media-row {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 7px;
}

.post-pin {
  background: #fff8e1;
  color: #b45309;
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 10px;
}

/* ══════════════════════════════════════
   DUYURU ŞERİDİ
══════════════════════════════════════ */
.announce-strip {
  margin-bottom: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}

.announce-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.announce-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.announce-scroll::-webkit-scrollbar {
  height: 3px;
}

.announce-scroll::-webkit-scrollbar-track {
  background: var(--bg);
  border-radius: 2px;
}

.announce-scroll::-webkit-scrollbar-thumb {
  background: var(--green-lt);
  border-radius: 2px;
}

.announce-card {
  min-width: 210px;
  max-width: 210px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: border-color .2s;
}

.announce-card:hover {
  border-color: var(--green);
}

.announce-img {
  width: 100%;
  height: 106px;
  object-fit: cover;
  display: block;
}

.announce-img-placeholder {
  width: 100%;
  height: 106px;
  background: var(--green-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.announce-body {
  padding: 10px 12px;
}

.announce-date {
  font-size: 11px;
  color: var(--text-3);
  margin-bottom: 4px;
}

.announce-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 4px;
}

.announce-summary {
  font-size: 11px;
  color: var(--text-2);
  line-height: 1.45;
}

.announce-media-icons {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 7px;
}

/* MEDYA İKONLARI */
.media-icon {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 500;
}

.media-video {
  background: #fff3e0;
  color: #e65100;
}

.media-file {
  background: #e8f5e9;
  color: #2e7d32;
}

.media-link {
  background: #e3f2fd;
  color: #1565c0;
}

/* ══════════════════════════════════════
   SIDEBAR
══════════════════════════════════════ */
.side-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 16px;
  transition: background .3s;
}

.side-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text);
}

.event-item {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}

.event-item:last-of-type {
  border-bottom: none;
}

.event-date {
  min-width: 38px;
  text-align: center;
  background: var(--green-lt);
  border-radius: 8px;
  padding: 4px 6px;
}

.event-day {
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.event-mon {
  font-size: 10px;
  color: var(--green-dk);
}

.event-name {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
}

.event-loc {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 2px;
}

.proj-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.proj-item:last-of-type {
  border-bottom: none;
}

.proj-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.proj-name {
  flex: 1;
  font-size: 13px;
  color: var(--text);
}

.proj-status {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 5px;
  background: var(--green-lt);
  color: var(--green-dk);
}

.proj-tamamlandi {
  background: var(--bg-2);
  color: var(--text-3);
}

.proj-planlandi {
  background: #e6f1fb;
  color: #185fa5;
}

.side-more {
  display: block;
  font-size: 12px;
  color: var(--green);
  margin-top: 12px;
}

/* ══════════════════════════════════════
   DETAIL PAGE
══════════════════════════════════════ */
.detail-page {
  max-width: 760px;
  padding: 52px 24px 88px;
}

.detail-header {
  margin-bottom: 32px;
}

.detail-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin: 14px 0 10px;
  line-height: 1.3;
  color: var(--text);
}

.detail-meta {
  font-size: 13px;
  color: var(--text-3);
  display: flex;
  gap: 6px;
}

.detail-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 32px;
  max-height: 420px;
  object-fit: cover;
}

.detail-content {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-2);
}

.detail-content p {
  margin-bottom: 18px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 36px;
  font-size: 13px;
  color: var(--green);
}

/* ══════════════════════════════════════
   ETKİNLİK SAYFASI
══════════════════════════════════════ */
.page-header {
  margin-bottom: 36px;
}

.page-title {
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.page-sub {
  font-size: 15px;
  color: var(--text-2);
}

.events-section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-3);
  margin-bottom: 18px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  display: block;
}

.event-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.event-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.event-card-placeholder {
  width: 100%;
  height: 180px;
  background: var(--green-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.event-card-body {
  padding: 16px;
}

.event-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.event-card-date {
  font-size: 12px;
  color: var(--text-3);
}

.event-badge {
  font-size: 11px;
  padding: 2px 9px;
  border-radius: 20px;
  font-weight: 500;
}

.event-badge.online {
  background: #e0f2fe;
  color: #0369a1;
}

.event-badge.physical {
  background: var(--green-lt);
  color: var(--green-dk);
}

.event-badge.past {
  background: var(--bg-2);
  color: var(--text-3);
}

.event-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.4;
}

.event-card-loc {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 8px;
}

.event-card-register {
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
}

.event-card-past {
  opacity: 0.65;
}

.event-detail-page {
  padding: 36px 24px 88px;
  max-width: 1000px;
}

.event-detail-img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 16px;
  margin: 24px 0 36px;
}

.event-detail-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
}

.event-detail-main h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.event-detail-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-2);
}

.event-detail-content p {
  margin-bottom: 14px;
}

.event-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  position: sticky;
  top: 90px;
}

.event-info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.event-info-row:last-of-type {
  border-bottom: none;
}

.event-info-icon {
  font-size: 18px;
  margin-top: 2px;
}

.event-info-label {
  font-size: 11px;
  color: var(--text-3);
  margin-bottom: 2px;
}

.event-info-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.btn-register {
  display: block;
  text-align: center;
  margin-top: 18px;
  padding: 13px;
  border-radius: 10px;
  font-size: 15px;
}

/* ══════════════════════════════════════
   AUTH SAYFALARI
══════════════════════════════════════ */
.auth-page {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}

.auth-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.auth-bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--green);
}

.auth-bg-circle.c1 {
  width: 500px;
  height: 500px;
  top: -150px;
  left: -100px;
}

.auth-bg-circle.c2 {
  width: 350px;
  height: 350px;
  bottom: -80px;
  right: -60px;
  opacity: 0.04;
}

.auth-bg-circle.c3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 60%;
  opacity: 0.03;
}

.auth-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 40px;
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-logo {
  font-size: 40px;
  margin-bottom: 12px;
  line-height: 1;
}

.auth-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.auth-header p {
  font-size: 14px;
  color: var(--text-2);
}

.social-auth {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.social-btn-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--white);
  transition: background .15s, border-color .15s, transform .1s;
  cursor: pointer;
}

.social-btn-large:hover {
  background: var(--bg);
  border-color: var(--text-3);
  transform: translateY(-1px);
}

.social-btn-large.github {
  background: #24292e;
  color: #fff;
  border-color: #24292e;
}

.social-btn-large.github:hover {
  background: #1a1e22;
}

.social-btn-large.microsoft {
  background: var(--white);
  color: var(--text);
}

.social-btn-large.apple {
  background: #000;
  color: #fff;
  border-color: #000;
}

.social-btn-large.apple:hover {
  background: #1a1a1a;
}

.auth-divider {
  text-align: center;
  position: relative;
  margin: 24px 0;
  color: var(--text-3);
  font-size: 12px;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.auth-divider span {
  background: var(--white);
  padding: 0 14px;
  position: relative;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}

.auth-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(29, 158, 117, .1);
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-prefix {
  position: absolute;
  left: 12px;
  font-size: 14px;
  color: var(--text-3);
  pointer-events: none;
}

.input-with-icon input {
  padding-left: 28px !important;
}

.form-error {
  font-size: 12px;
  color: #dc2626;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-3);
}

.remember-label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.forgot-link {
  color: var(--green);
  font-size: 13px;
}

.btn-auth {
  width: 100%;
  padding: 13px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .1s;
  margin-top: 4px;
}

.btn-auth:hover {
  background: var(--green-dk);
}

.btn-auth:active {
  transform: scale(0.99);
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-3);
}

.auth-footer a {
  color: var(--green);
  font-weight: 600;
}

/* ══════════════════════════════════════
   PROFİL SAYFASI
══════════════════════════════════════ */
.profile-page {
  padding: 0 0 88px;
}

.profile-banner {
  position: relative;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}

.profile-banner-bg {
  height: 120px;
  background: linear-gradient(135deg, #0d2e22 0%, #1D9E75 60%, #5dcaa5 100%);
}

.profile-banner-content {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  padding: 0 32px 24px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.profile-avatar-wrap {
  margin-top: -52px;
  flex-shrink: 0;
}

.profile-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 4px solid var(--white);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-md);
}

.profile-avatar-placeholder {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 4px solid var(--white);
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.profile-identity {
  flex: 1;
  padding-bottom: 4px;
}

.profile-name {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.profile-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.profile-role {
  font-size: 12px;
  font-weight: 500;
  background: var(--green-lt);
  color: var(--green-dk);
  padding: 3px 10px;
  border-radius: 20px;
}

.profile-badge-pill {
  font-size: 12px;
  font-weight: 500;
  background: #fff8e1;
  color: #b45309;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #fde68a;
}

.profile-dept {
  font-size: 13px;
  color: var(--text-3);
}

.profile-stats {
  display: flex;
  gap: 28px;
  margin-left: auto;
  padding-bottom: 8px;
}

.pstat {
  text-align: center;
}

.pstat-num {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.pstat-lbl {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 2px;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.profile-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 26px;
  margin-bottom: 16px;
  transition: background .3s;
}

.profile-section-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.profile-bio {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
}

.badge-showcase {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge-item {
  flex: 1;
  min-width: 90px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}

.badge-icon {
  font-size: 22px;
  margin-bottom: 6px;
}

.badge-label {
  font-size: 12px;
  color: var(--text-3);
}

.profile-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.profile-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: border-color .2s, background .2s;
  color: var(--text);
}

.profile-link:hover {
  background: var(--bg);
  border-color: var(--text-3);
}

.linkedin-link {
  color: #0077b5;
}

.profile-edit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 26px;
  position: sticky;
  top: 90px;
}

.profile-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.profile-form input[type="text"],
.profile-form input[type="url"],
.profile-form textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font-size: 13px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color .2s;
}

.profile-form input:focus,
.profile-form textarea:focus {
  border-color: var(--green);
}

.profile-form textarea {
  resize: vertical;
  min-height: 90px;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--footer-bg);
  margin-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 52px 0 40px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .1);
}

.footer-logo-name {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--footer-head);
}

.footer-logo-tagline {
  font-size: 11px;
  color: var(--footer-text);
  margin-top: 2px;
}

.footer-desc {
  font-size: 13px;
  color: var(--footer-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--footer-head);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 13px;
  color: var(--footer-text);
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--footer-head);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom span {
  font-size: 12px;
  color: var(--footer-text);
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--footer-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s, transform .2s;
}

.social-btn:hover {
  border-color: var(--green);
  color: var(--green);
  transform: scale(1.15);
}

/* ══════════════════════════════════════
   MESAJLAR
══════════════════════════════════════ */
.messages-wrap {
  padding: 12px 32px;
}

.message {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 6px;
  background: var(--green-lt);
  color: var(--green-dk);
}

/* ══════════════════════════════════════
   YUKARI OK
══════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  box-shadow: 0 4px 20px rgba(29, 158, 117, .45);
  z-index: 9999;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-3px);
}

/* ══════════════════════════════════════
   YARDIMCI
══════════════════════════════════════ */
.empty-state {
  text-align: center;
  padding: 56px;
  color: var(--text-3);
  font-size: 14px;
}

.empty-small {
  font-size: 12px;
  color: var(--text-3);
  padding: 8px 0;
}

/* ══════════════════════════════════════
   RESPONSİVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .btn-ghost,
  .btn-solid {
    display: none;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .profile-grid {
    grid-template-columns: 1fr;
  }

  .event-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 0 16px;
  }

  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .logo-title {
    font-size: 14px;
  }

  .logo-sub {
    display: none;
  }
}

/* MODAL STYLES */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-card, #fff);
  padding: 2rem;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-main, #1a1a1a);
}

.modal-text {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-sub, #666);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

[data-theme="dark"] .modal-content {
  background: #1e1e1e;
  border: 1px solid #333;
}

[data-theme="dark"] .modal-title {
  color: #fff;
}

[data-theme="dark"] .modal-text {
  color: #aaa;
}

/* ══════════════════════════════════════
   HAKKIMIZDA & FORMLAR
══════════════════════════════════════ */
.about-hero {
  padding: 64px 0 48px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.about-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  margin: 16px 0 14px;
  color: var(--text);
}

.about-hero p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}

.mv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color .2s;
}

.mv-card:hover {
  border-color: var(--green);
}

.mv-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.mv-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.mv-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

.about-section {
  margin-bottom: 56px;
}

.about-section-header {
  margin-bottom: 28px;
}

.about-section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.about-section-header p {
  font-size: 14px;
  color: var(--text-3);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}

.value-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.value-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.value-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color .2s, transform .2s;
  display: block;
}

.contact-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.contact-card-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.contact-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-card-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}
.about-social {
  text-align: center;
  padding: 48px 0 64px;
  border-top: 1px solid var(--border);
  margin-top: 48px;
}

.about-social h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

.about-social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text);
  background: var(--white);
  transition: all .25s;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.about-social-btn svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.about-social-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.about-social-btn.instagram:hover {
  border-color: #e1306c;
  color: #e1306c;
  background: #fff0f5;
}

.about-social-btn.linkedin:hover {
  border-color: #0077b5;
  color: #0077b5;
  background: #f0f7ff;
}

/* FORM SAYFALARI */
.form-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 0 88px;
}

.form-page-header {
  text-align: center;
  margin-bottom: 36px;
}

.form-page-header .back-link {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--green);
}

.form-page-icon {
  font-size: 44px;
  margin-bottom: 12px;
}

.form-page-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.form-page-header p {
  font-size: 14px;
  color: var(--text-2);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}

.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="url"],
.form-card input[type="file"],
.form-card textarea,
.form-card select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color .2s;
  font-family: 'DM Sans', sans-serif;
}

.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(29, 158, 117, .1);
}

.form-card textarea {
  resize: vertical;
}

.form-section-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.alert {
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
}

.alert-success {
  background: var(--green-lt);
  color: var(--green-dk);
  border: 1px solid var(--green);
}

/* Responsive */
@media (max-width: 900px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 20px;
  }

  .about-hero h1 {
    font-size: 28px;
  }
}







.contact-email-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.contact-email-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: border-color .2s;
}

.contact-email-card:hover {
  border-color: var(--green);
}

.contact-email-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-email-label {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 6px;
  font-weight: 500;
}

.contact-email-addr {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}

@media (max-width: 900px) {
  .contact-email-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
  transition: background .2s;
}

.contact-card:hover .contact-card-link {
  background: var(--green-dk);
}

.about-social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--white);
  transition: all .2s;
  text-decoration: none;
}

.about-social-btn svg {
  flex-shrink: 0;
}

.about-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.about-social-btn.instagram:hover {
  border-color: #e1306c;
  color: #e1306c;
}

.about-social-btn.linkedin:hover {
  border-color: #0077b5;
  color: #0077b5;
}

/* İLETİŞİM SAYFASI */
.iletisim-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  align-items: start;
}

.iletisim-info-card {
  background: var(--green);
  border-radius: 16px;
  padding: 32px;
  color: #fff;
  position: sticky;
  top: 90px;
}

.iletisim-info-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.iletisim-info-card>p {
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 28px;
  line-height: 1.6;
}

.iletisim-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.iletisim-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  padding: 12px;
  border-radius: 10px;
  transition: background .2s;
}

.iletisim-info-item:hover {
  background: rgba(255, 255, 255, .15);
}

.iletisim-info-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.iletisim-info-label {
  font-size: 11px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 2px;
}

.iletisim-info-val {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.iletisim-social {
  display: flex;
  gap: 10px;
}

.iletisim-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.iletisim-social-btn:hover {
  background: rgba(255, 255, 255, .2);
  transform: scale(1.1);
}

.iletisim-form input[type="text"],
.iletisim-form input[type="email"],
.iletisim-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  font-family: 'DM Sans', sans-serif;
}

.iletisim-form input:focus,
.iletisim-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(29, 158, 117, .1);
}

.iletisim-form textarea {
  resize: vertical;
}

@media (max-width: 900px) {
  .iletisim-grid {
    grid-template-columns: 1fr;
  }

  .iletisim-info-card {
    position: static;
  }
}

/* ══════════════════════════════════════
   İLETİŞİM BAŞARI EKRANI
══════════════════════════════════════ */
.iletisim-basari {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 36px;
  text-align: center;
}

.iletisim-basari-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-lt);
  color: var(--green);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.iletisim-basari h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.iletisim-basari p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 0;
}
