:root {
  --primary: #004aad;
  --primary-dark: #00337a;
  --accent: #f6b800;
  --bg-light: #f5f7fb;
  --text: #222222;
  --muted: #6b7280;
}

*,
*::before,
*::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.site-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.site-title img {
  border-radius: 999px;
  width: 40px;
  height: 40px;
  object-fit: cover;
}

/* Nav */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}

.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  color: #ffffff;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  background: radial-gradient(circle at top, #fdf2d8 0, #f5f7fb 40%, #ffffff 100%);
  padding: 3.5rem 0 2.75rem;
  border-bottom: 1px solid #e5e7eb;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: .75rem;
}

.hero-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  color: #111827;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.25rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.badge {
  font-size: 0.8rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #4b5563;
  background: rgba(255,255,255,0.75);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s, background 0.15s, border-color 0.15s, color 0.15s;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0,74,173,0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: rgba(255,255,255,0.9);
  color: var(--primary-dark);
  border-color: rgba(148,163,184,0.7);
}

.btn-outline:hover {
  background: #ffffff;
  border-color: var(--primary);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Hero card */
.hero-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.hero-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
}

.hero-pills {
  display: flex;
  gap: 0.4rem;
}

.pill {
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  background: #eff6ff;
  color: var(--primary-dark);
}

/* Sections */
.section {
  padding: 3rem 0 2.5rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.75rem;
  gap: 1rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: .4rem;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

.section-description {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 24rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.card-excerpt {
  font-size: 0.9rem;
  color: var(--muted);
}

.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: none;
}

/* Badges row below hero */
.quick-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.quick-link {
  border-radius: 0.9rem;
  padding: 0.7rem 0.8rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #374151;
}

/* Timeline (Özgeçmiş) */
.timeline {
  border-left: 2px solid #e5e7eb;
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.timeline-item {
  margin-bottom: 1.4rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.05rem;
  top: 0.1rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid var(--primary);
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timeline-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0.1rem 0 0.15rem;
}

.timeline-text {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Forms */
.form-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 0.35rem;
}

.form-control, textarea.form-control {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.form-control:focus, textarea.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
  background: #ffffff;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

/* Alerts */
.alert {
  border-radius: 0.75rem;
  padding: 0.7rem 0.9rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.alert-success {
  background: #ecfdf5;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.alert-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

/* Footer */
.site-footer {
  background: #0f172a;
  color: #9ca3af;
  padding: 2rem 0 1.5rem;
  margin-top: 2.5rem;
}

.site-footer-top {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-brand {
  font-size: 1rem;
  font-weight: 700;
  color: #e5e7eb;
  margin-bottom: 0.4rem;
}

.footer-meta {
  font-size: 0.85rem;
  color: #9ca3af;
}

.footer-links {
  font-size: 0.85rem;
}

.footer-links a {
  color: #e5e7eb;
  text-decoration: none;
  display: block;
  margin-bottom: 0.35rem;
}

.footer-bottom {
  font-size: 0.8rem;
  color: #6b7280;
  text-align: right;
}

/* Content */
.page-header {
  padding: 2.2rem 0 1.2rem;
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
}

.page-title {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
}

.page-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
}

.content {
  padding: 2rem 0 2.5rem;
}

/* Posts */
.post-list {
  display: grid;
  gap: 1.2rem;
}

.post-item {
  padding: 1rem 1.2rem;
  border-radius: 0.9rem;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

.post-meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.post-title {
  font-size: 1rem;
  margin: 0 0 0.4rem;
}

.post-title a {
  color: #111827;
  text-decoration: none;
}

.post-title a:hover {
  color: var(--primary);
}

.post-excerpt {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .quick-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer-top {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header-inner {
    flex-wrap: wrap;
  }
  .main-nav {
    display: none;
    width: 100%;
    margin-top: 0.5rem;
  }
  .main-nav.open {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0.25rem;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .hero {
    padding: 2.5rem 0 2rem;
  }
  .hero-title {
    font-size: 1.9rem;
  }
  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .quick-links {
    grid-template-columns: minmax(0, 1fr);
  }
  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
  .footer-bottom {
    text-align: left;
  }
}
/* === HERO SLIDER GENEL === */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: #0b2c75;
}

.hero-slider-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(37,99,235,0.8), rgba(15,23,42,0.85));
}

.hero-slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

/* Text-col / photo-col yerleşimi */
.hero-slide-layout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
}

.hero-text {
  max-width: 540px;
}

.hero-photo {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-photo img {
  max-height: 520px;
  width: auto;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(15,23,42,0.45));
}

/* Yazı renkleri */
.hero-slide-content .hero-kicker {
  color: #bfdbfe;
}

.hero-slide-content .hero-title {
  color: #ffffff;
}

.hero-slide-content .hero-subtitle {
  color: #e5e7eb;
}

/* Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hero-dot.is-active {
  background: #ffffff;
}

/* DESKTOP: full ekran hero */
@media (min-width: 992px) {
  .hero-slider {
    height: 100vh;
    min-height: 620px;
  }
  .hero-slider-inner,
  .hero-slide,
  .hero-slide-bg {
    height: 100%;
  }
}

/* MOBİL / TABLET: daha serbest yükseklik, alt alta */
@media (max-width: 991.98px) {
  .hero-slider {
    height: auto;
    min-height: 0;        /* slider yüksekliği içerik kadar olsun */
    padding-top: 4.5rem;      /* header boşluğu */
    padding-bottom: 3rem;
  }

  /* Foto + metin normal sıralı: önce foto, sonra yazı */
  .hero-slide-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .hero-slide-content {
    align-items: center;
  }

  .hero-photo {
    margin-top: 0.5rem;
  }

  .hero-photo img {
    max-height: 340px;
    width: auto;
    height: auto;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-slider-dots {
    bottom: 0.75rem;
  }
}

.section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  color: #e5e7eb;
  font-size: 0.8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  z-index: 6;
  opacity: 0.8;
}

.hero-scroll-indicator span {
  font-size: 1.1rem;
}

/* PROJE KARTLARI DAHA GÖRSEL */
.project-card {
  background: #ffffff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(15,23,42,0.12);
  display: flex;
  flex-direction: column;
}

.project-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.project-card:hover .project-thumb img {
  transform: scale(1.04);
}

.project-card-body {
  padding: 1.25rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
/* HABER KARTLARI */
.section-news {
  background: #f9fafb;
}

.news-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.news-card {
  background: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 16px 45px rgba(15,23,42,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.news-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.news-card:hover .news-thumb img {
  transform: scale(1.04);
}

.news-content {
  padding: 1.25rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.news-meta {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #6b7280;
}

.news-title {
  margin: 0;
  font-size: 1.02rem;
}

.news-title a {
  color: #111827;
  text-decoration: none;
}

.news-title a:hover {
  text-decoration: underline;
}

.news-excerpt {
  font-size: .92rem;
  color: #4b5563;
}

.news-more {
  margin-top: .25rem;
  font-size: .9rem;
  font-weight: 600;
  color: #004aad;
  text-decoration: none;
}

.news-more:hover {
  text-decoration: underline;
}

.news-all-link {
  margin-top: 2rem;
  text-align: center;
}
/* === KART MAKYAJI (Projeler + Haberler) === */
.card,
.project-card,
.news-card,
.post-item {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.15);
  position: relative;
  overflow: hidden;
}

/* Üstte ince renk şeridi */
.card::before,
.project-card::before,
.news-card::before,
.post-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #0ea5e9);
  opacity: 0.7;
}

/* İç padding biraz toparla */
.card,
.project-card,
.news-card,
.post-item {
  padding: 18px 22px 20px;
}

/* Hover efekti: hafif yükselsin */
.card:hover,
.project-card:hover,
.news-card:hover,
.post-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.14);
  transition: all 0.25s ease;
}

/* Başlıklar biraz daha net dursun */
.card-title,
.news-title,
.post-title {
  font-size: 1rem;
  font-weight: 600;
}

/* “Detayları Gör / Haberin Devamı” linkleri */
.card-link,
.news-more,
.post-item a {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Bölüm başlıklarını da biraz sıkılaştır */
.section-title {
  letter-spacing: -0.01em;
}

.section-kicker {
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}
/* === FOOTER === */
.site-footer {
  margin-top: 3rem;
  background: #020617;
  color: #e5e7eb;
  padding-top: 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-circle {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, #facc15, #eab308);
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-brand-name {
  font-weight: 600;
}

.footer-brand-tagline {
  font-size: 0.8rem;
  color: #9ca3af;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
  font-size: 0.9rem;
}

.footer-nav a {
  color: #e5e7eb;
  text-decoration: none;
  opacity: 0.85;
}

.footer-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-bottom {
  padding: 0.85rem 0 1.3rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #9ca3af;
}

.footer-bottom-right {
  opacity: 0.9;
}

/* Footer responsive */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}
.footer-nav a {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}
/* Başkan fotoğraflı slider yerleşimi */
.hero-slide-layout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
}

.hero-text {
  max-width: 540px;
}

.hero-photo {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-photo img {
  max-height: 520px;
  width: auto;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(15,23,42,0.45));
}

/* Tablet / mobilde üst üste gelsin */
@media (max-width: 992px) {
  .hero-slide-layout {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-photo img {
    max-height: 360px;
  }
}
.bio-photo {
  border-radius: 1.5rem;
  background: radial-gradient(circle at top, #1d4ed8, #020617);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1rem;
  max-width: 320px;
}

.bio-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Masaüstünde sol kolon geniş ama foto sabit kalsın */
@media (min-width: 992px) {
  .section-bio .bio-layout {
    align-items: flex-start;
  }
  .bio-left {
    align-items: flex-start;
  }
}

/* Mobilde tam genişlik*/
@media (max-width: 768px) {
  .bio-photo {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* İletişim sayfası layout */
.section-contact .contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-photo {
  border-radius: 1.5rem;
  background: radial-gradient(circle at top, #1d4ed8, #020617);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1rem;
}

.contact-photo img {
  height: 320px;
  width: auto;
  display: block;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 22px 60px rgba(15,23,42,0.12);
}

.contact-info-card h2 {
  margin: 0 0 .25rem;
}

.contact-role {
  margin: 0 0 .75rem;
  font-size: .92rem;
  color: #4b5563;
}

.contact-info-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 .75rem;
  font-size: .9rem;
}

.contact-info-card li + li {
  margin-top: .25rem;
}

.contact-note {
  font-size: .86rem;
  color: #6b7280;
}

/* Form stil */
.bk-form {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.6rem 1.8rem;
  box-shadow: 0 22px 60px rgba(15,23,42,0.10);
}

.bk-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.bk-field {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-bottom: 1rem;
}

.bk-field label {
  font-size: .9rem;
  font-weight: 500;
  color: #374151;
}

.bk-field input,
.bk-field textarea {
  border-radius: .75rem;
  border: 1px solid #d1d5db;
  padding: .55rem .75rem;
  font-size: .92rem;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.bk-field input:focus,
.bk-field textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37,99,235,0.35);
}

.bk-form-actions {
  margin-top: .5rem;
}

/* Alert kutuları */
.bk-alert {
  border-radius: .75rem;
  padding: .75rem 1rem;
  margin-bottom: 1rem;
  font-size: .9rem;
}

.bk-alert-success {
  background: #ecfdf5;
  border: 1px solid #16a34a;
  color: #166534;
}

.bk-alert-error {
  background: #fef2f2;
  border: 1px solid #dc2626;
  color: #b91c1c;
}

/* Responsive */
@media (max-width: 900px) {
  .section-contact .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .bk-form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}


  .navbar-kb .brand-name,
  .navbar-kb .footer-brand-name {
    font-size: 0.9rem;
  }

  .navbar-kb .brand-tagline {
    font-size: 0.72rem;
  }

  .navbar-kb .brand-logo-circle,
  .footer-logo-circle {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}
/* === ÖZGEÇMİŞ SAYFASI === */

.bio-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.bio-left {
  display: flex;
  justify-content: center;
}

.bio-photo-card {
  position: relative;
  width: 100%;
  max-width: 330px;
  border-radius: 24px;
  overflow: hidden;
}

.bio-photo-bg {
  background: radial-gradient(circle at top, #1152c8, #002b76);
  height: 420px;
  width: 100%;
  border-radius: 24px;
}

.bio-photo-card img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 420px;
  width: auto;
}

/* Başlık */
.bio-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  margin-top: 0;
}

/* Alt açıklama */
.bio-subtitle {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 1.5rem;
  max-width: 620px;
}

/* Mobil görünüm */
@media (max-width: 900px) {
  .bio-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bio-photo-card {
    margin-left: auto;
    margin-right: auto;
  }

  .bio-title {
    margin-top: 1.2rem;
  }
}
/* MOBİLDE BAŞKAN FOTO DÜZELTME */
@media (max-width: 768px) {
  .hero-slider {
    height: auto;          /* sabit vh yerine içerik kadar olsun */
    min-height: 0;
    padding-top: 4.5rem;   /* header'ın altında dursun */
    padding-bottom: 2rem;
    overflow: visible;     /* kafayı kesme :) */
  }

  .hero-slide-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-photo img {
    max-height: 320px;
    width: auto;
    height: auto;
  }
}
/* LOGO KALDIR */
.brand-logo-circle,
.navbar-kb .brand-logo-circle {
  display: none;
}

/* Logo kalkınca yazıyı sola biraz yaklaştır */
.navbar-kb .navbar-brand {
  gap: 0.4rem;
}
/* === ÖZGEÇMİŞ - YASİN ÖZLÜ STİLİ === */

.bio-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.bio-left {
  display: flex;
  justify-content: center;
}

.bio-avatar-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

/* Daire foto alanı */
.bio-avatar-circle {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Arkadaki mavi oval/disk */
.bio-avatar-bg {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #22c1f1, #0052c9);
}

/* Başkan fotoğrafı – hafif oval içinde */
.bio-avatar-circle img {
  position: relative;
  z-index: 1;
  height: 260px;
  width: auto;
  object-fit: cover;
  filter: drop-shadow(0 18px 35px rgba(15, 23, 42, 0.45));
}

/* Alt etiket kartı */
.bio-avatar-label {
  background: #ffffff;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.18);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  text-align: center;
}

.bio-avatar-name {
  font-size: 0.95rem;
  font-weight: 600;
}

.bio-avatar-role {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7280;
}

/* Sağ taraftaki başlık / metin zaten güzel, sadece biraz toparlayalım */
.bio-title {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.bio-subtitle {
  font-size: 1.02rem;
  color: #444;
  margin-bottom: 1.4rem;
  max-width: 620px;
}

/* Mobil görünüm */
@media (max-width: 900px) {
  .bio-layout {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .bio-left {
    justify-content: center;
  }

  .bio-avatar-circle {
    width: 220px;
    height: 220px;
  }

  .bio-avatar-circle img {
    height: 220px;
  }

  .bio-title {
    margin-top: 1.4rem;
    text-align: left;
  }
}
/* BAŞLIK TARAFI METİN */
.site-title-name {
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
}

.site-title-tagline {
  font-size: 0.78rem;
  color: #e5e7eb;
}

/* HAMBURGER MENÜ BUTONU */
.header-menu-toggle {
  position: relative;
  width: 40px;
  height: 32px;
  padding: 0;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  color: transparent;        /* "Menü" yazısını gizle */
  overflow: hidden;
}

/* 3 çizgi */
.header-menu-toggle::before,
.header-menu-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transform: translateX(-50%);
}

.header-menu-toggle::before {
  top: 10px;
  box-shadow: 0 6px 0 #ffffff;   /* ortadaki çizgi */
}

.header-menu-toggle::after {
  top: 22px;
}

.header-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* Mobilde nav gizli, butona basınca gelsin */
@media (max-width: 991.98px) {
  .main-nav {
    display: none;
  }
  .main-nav.is-open {
    display: block;
  }
}
/* Hamburger sadece mobil/tablette görünsün */
@media (min-width: 992px) {
  .header-menu-toggle {
    display: none;
  }
}

/* MOBİL / TABLET: hero slider düzeni */
@media (max-width: 991.98px) {
  .hero-slider {
    height: auto;
    min-height: 0;      /* yüksekliği içerik belirlesin */
    padding-top: 4.5rem;    /* header boşluğu */
    padding-bottom: 2.5rem;
  }

  /* İç yükseklik içeriğe göre olsun */
  .hero-slider-inner {
    height: auto;
  }

  /* Slide artık relative: içerik kadar yer kaplasın */
  .hero-slide {
    position: relative;
  }

  /* Metin + foto alt alta, ortalı */
  .hero-slide-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .hero-slide-content {
    align-items: center;
  }

  .hero-photo img {
    max-height: 340px;
    width: auto;
    height: auto;
  }

  .hero-text {
    max-width: 100%;
  }
}
/* === MOBİL SLIDER FİNAL DÜZEN (BOŞ MAVİ ALANI TEMİZLE) === */
@media (max-width: 768px) {

  /* Slider yüksekliği sadece içerik kadar olsun */
  .hero-slider,
  .hero-slider-inner,
  .hero-slide {
    height: auto !important;
    min-height: 0 !important;
  }

  /* Metin + başkan alt alta, ortalı */
  .hero-slide-layout {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1.2rem !important;
  }

  .hero-slide-content {
    align-items: center !important;
  }

  .hero-text {
    max-width: 100% !important;
  }

  .hero-photo img {
    max-height: 360px !important;
    width: auto !important;
    height: auto !important;
  }

  /* “Aşağı kaydırın” yazısı ve oku mobilde dursun,
     boşluk yapmasın diye gizliyoruz */
  .hero-scroll-indicator {
    display: none !important;
  }

  /* Noktalar da normal akışta, fotoğrafın hemen altında dursun */
  .hero-slider-dots {
    position: relative !important;
    bottom: auto !important;
    margin-top: 0.5rem !important;
  }
}

/* === MUSTAFA KOCAMAN MOBİL SLIDER HARD FIX :) === */
@media (max-width: 768px) {

  /* Slider tamamen içerik kadar olsun */
  .hero-slider {
    position: relative !important;
    height: auto !important;
    min-height: 0 !important;
    padding-top: 4.5rem !important;   /* header boşluğu */
    padding-bottom: 1.5rem !important;
    overflow: visible !important;
  }

  .hero-slider-inner {
    position: static !important;
    height: auto !important;
  }

  /* Sadece ilk slaydı göster, diğerlerini gizle */
  .hero-slide {
    position: relative !important;
    inset: auto !important;
    opacity: 1 !important;
  }
  .hero-slide + .hero-slide {
    display: none !important;
  }

  /* Arka planlar yine tam ekran yayılsın ama içerik normal aksın */
  .hero-slide-bg,
  .hero-slide-overlay {
    position: absolute !important;
    inset: 0;
  }

  /* İçerik: başlık + açıklama + butonlar + foto alt alta */
  .hero-slide-layout {
    position: relative;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1.2rem !important;
    padding: 0 1.5rem;
  }

  .hero-slide-content {
    height: auto !important;
    justify-content: flex-start !important;
    align-items: center !important;
  }

  .hero-text {
    max-width: 100% !important;
  }

  .hero-photo {
    margin-top: 0.5rem;
  }

  .hero-photo img {
    max-height: 360px !important;
    width: auto !important;
    height: auto !important;
    filter: drop-shadow(0 18px 35px rgba(15,23,42,0.4));
  }

  /* Aşağı kaydırın + noktalar mobilde dursun, boşluk yapmasın diye */
  .hero-scroll-indicator {
    display: none !important;
  }
  .hero-slider-dots {
    display: none !important;
  }
}
.hero-slide-bg { height: auto !important; min-height: 0 !important; }
/* === Mobilde hero üst / alt boşluklarını azalt === */
@media (max-width: 768px) {

  /* Header ile "Kartepe Belediye Başkanı" arasını daralt */
  .hero-slider {
    padding-top: 3rem !important;   /* eskiden 4.5rem civarıydı */
    padding-bottom: 0.5rem !important;
  }

  /* Slider içindeki extra üst boşlukları temizle */
  .hero-slide-content {
    padding-top: 0 !important;
  }

  /* Sliderdan hemen sonraki (4'lü) bölümün üst boşluğunu daralt */
  .section:first-of-type {
    padding-top: 0.5rem !important;
  }
}
/* === MOBİLDE ÜSTTEKİ SON BOŞLUĞU TAMAMEN KALDIR === */
@media (max-width: 768px) {

  /* Header altındaki default margin/padding temizle */
  .site-header {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Sliderın kendisindeki gizli margin/padding temizle */
  .hero-slider {
    margin-top: 0 !important;
    padding-top: 0.5rem !important;  /* çok hafif kalsın, istersen 0 yap */
  }

  /* Slider iç bloklarının üst boşluğunu da temizle */
  .hero-slide-content,
  .hero-slide-layout {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* WP admin bar varsa (telefonla giriş yapıyorsan) boşluk açmasın */
  body.logged-in.admin-bar .hero-slider {
    margin-top: 0 !important;
  }
}
/* Quick links 3'lü olduğunda masaüstünde ortala */
.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.quick-link {
  flex: 0 1 260px;
}

/* Mobilde zaten alt alta gelsin, ek ayar gerek yok */
/* Masaüstünde scroll-indicator ve noktaları biraz yukarı al */
@media (min-width: 992px) {
  .hero-scroll-indicator {
    bottom: 3rem; /* eskisinden daha yukarı */
  }

  .hero-slider-dots {
    bottom: 4rem;
  }

  /* Sliderın altındaki boşluk hafif kısalsın */
  .hero-slider {
    padding-bottom: 4rem;
  }
}
/* Masaüstünde hero slider alt boşluğu ve pozisyon */
@media (min-width: 992px) {
  .hero-slider {
    padding-bottom: 7rem;  /* altındaki beyaz alan biraz daha aşağı insin */
  }

  /* Quick link'ler (Mustafa Kocaman kimdir vb.) biraz yukarı gelsin */
  .quick-links {
    margin-top: -2rem;
  }
}
/* Scroll ok animasyonu */
.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.hero-scroll-arrow {
  display: block;
  font-size: 1.1rem;
  margin-top: 0.4rem;
  animation: hero-arrow-bounce 1.4s infinite;
}

@keyframes hero-arrow-bounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}
/* === Masaüstü hero slider alt boşluğu ayarı === */
@media (min-width: 992px) {

  /* Slider alt padding'i azalt */
  .hero-slider {
    padding-bottom: 3.5rem !important;
  }

  /* Sliderdan sonraki ilk section (quick-links) biraz yukarı gelsin */
  .section:first-of-type {
    margin-top: -2.5rem !important;
  }
}
/* === Hero scroll ok animasyonu === */
.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 3rem;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* Ok işareti */
.hero-scroll-indicator::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: 0.45rem auto 0;
  border-left: 2px solid rgba(255,255,255,0.85);
  border-bottom: 2px solid rgba(255,255,255,0.85);
  transform: rotate(-45deg);
  animation: hero-scroll-bounce 1.4s infinite;
}

@keyframes hero-scroll-bounce {
  0%, 100% {
    transform: translateY(0) rotate(-45deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(8px) rotate(-45deg);
    opacity: 1;
  }
}
/* === HERO SLIDER MASAÜSTÜ DÜZELTME === */

/* 1. Masaüstünde yükseklik + alt boşluk */
@media (min-width: 992px) {
  .hero-slider {
    height: 92vh;        /* Tam ekranın biraz altında */
    min-height: 620px;
    padding-bottom: 0 !important;  /* Fazla mavi şeridi kaldır */
  }

  /* Quick-links section'ını tekrar normal yerine çek */
  .section:first-of-type {
    margin-top: 0 !important;
  }
}

/* 2. Scroll yazısı tıklamayı engellemesin, noktalar tıklanabilir olsun */
.hero-scroll-indicator {
  pointer-events: none;   /* Altındaki şeylere tıklamayı engellemesin */
  z-index: 5;
}

.hero-slider-dots {
  z-index: 6;             /* Scroll yazısından bir katman yukarıda */
}

.hero-slider-dots button {
  pointer-events: auto;   /* Özellikle tıklanabilir kıl */
}
/* Hero altındaki 3'lü hızlı link bloğunu biraz yukarı çek */
@media (min-width: 992px) {
  .quick-links {
    margin-top: -1.25rem;
  }
}
.mk-alert {
  margin: 1.5rem auto;
  max-width: 960px;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.mk-alert-success {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.mk-alert-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}
/* === MOBİL MENÜ (HAMBURGER) === */

/* Masaüstüde hamburger gizli */
.header-menu-toggle {
  display: none;
}

/* Mobilde görünsün */
@media (max-width: 768px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(15,23,42,0.6);
    color: #ffffff;
    margin-left: auto;
  }

  .hamburger-icon {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
  }

  .hamburger-icon span {
    width: 18px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
  }

  /* Menü varsayılan olarak kapalı */
  .main-nav {
    display: none;
    position: absolute;
    right: 1rem;
    top: 60px;
    background: #0f172a;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(15,23,42,0.6);
    z-index: 90;
  }

  .main-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
  }

  /* Açıkken */
  .main-nav.is-open {
    display: block;
  }
}
/* === HEADER HER ZAMAN SLIDER'IN ÜSTÜNDE OLSUN === */
.site-header {
  position: relative;      /* gerekiyorsa sticky de olsa sorun yok */
  z-index: 9999;
}

/* Hero slider katmanlarını geriye at */
.hero-slider,
.hero-slide,
.hero-slide-bg,
.hero-slide-overlay {
  z-index: 0 !important;
}
/* Mobilde menü davranışı */
@media (max-width: 992px) {
  .site-header .main-nav {
    display: none;
    position: absolute;
    top: 56px;           /* header yüksekliğine göre ayarla */
    right: 0;
    left: 0;
    background: #001024;
    padding: 0.75rem 1rem 1rem;
  }

  .site-header .main-nav.is-open {
    display: block;
  }
}
/* === SABİT SOSYAL MEDYA BUTONLARI (TÜM SAYFALAR) === */

.mk-social-fab {
  position: fixed;
  right: 16px;           /* sola almak istersen: left:16px; right'ı sil */
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.mk-fab {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  background: #111827;
  box-shadow: 0 12px 30px rgba(15,23,42,0.5);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  opacity: 0.95;
}

.mk-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15,23,42,0.6);
  opacity: 1;
}

/* Instagram ikon (SVG) */
.mk-fab-ig svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.6;
}

/* Arka plan renkleri */
.mk-fab-ig {
  background: radial-gradient(circle at 30% 30%, #fdf497, #f56040, #d62976, #962fbf, #4f5bd5);
}

.mk-fab-fb {
  background: #1877f2;
  font-weight: 700;
  font-size: 18px;
  font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.mk-fab-x {
  background: #020617;
  font-weight: 700;
  font-size: 16px;
  font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

/* Mobilde biraz yukarı al */
@media (max-width: 768px) {
  .mk-social-fab {
    right: 12px;
    bottom: 80px;
  }
}
/* Özgeçmiş avatarında baş kısmını ortaya al */
.ozgecmis-avatar img,
.bio-avatar img,
.resume-avatar img {
  object-fit: cover;
  object-position: 50% 10%; /* 10 yukarı odak, yetmezse 0 yapabilirsin */
}
/* Özgeçmiş foto net ortalansın */
.bio-avatar-circle img {
    height: 260px !important;
    width: auto !important;
    object-fit: contain !important;
    object-position: center bottom !important;
}

.hero-slide-content {
    position: relative;
    z-index: 50 !important;
}



/* Slider katmanlarını düzgün sırala */
.hero-slider,
.hero-slider-inner,
.hero-slide {
  position: relative;
}

/* Arkadaki mavi gradient ve overlay tıklamayı engellemesin */
.hero-slide-bg,
.hero-slide-overlay {
  z-index: 1;
  pointer-events: none;  /* ÖNEMLİ: tıklamayı yutmasın */
}

/* Yazılar, butonlar, ok animasyonu ve noktalar öne gelsin */
.hero-slide-content,
.hero-cta-buttons,
.hero-scroll-hint,
.hero-slider-dots {
  position: relative;
  z-index: 2;
}
/* === Başkana Yazın formu düzeni === */
.mk-baskana-form {
  margin-top: 1.5rem;
}

.mk-baskana-form .mk-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.75rem;
}

.mk-baskana-form .form-row {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
}

.mk-baskana-form label {
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #111827;
}

.mk-baskana-form input,
.mk-baskana-form textarea {
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 0.60rem 0.9rem;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.mk-baskana-form input::placeholder {
  color: #9ca3af;
}

.mk-baskana-form input:focus,
.mk-baskana-form textarea:focus {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 1px rgba(37,99,235,0.15);
  background-color: #f9fafb;
}

/* Konu ve Mesaj satırları tam genişlik */
.mk-baskana-form .form-row-full {
  grid-column: 1 / -1;
}

/* Gönder butonu satırı */
.mk-baskana-form .form-row-submit {
  text-align: right;
}

/* Gönder butonu görünümü */
.mk-baskana-form .mk-submit-btn {
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.9rem;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(37,99,235,0.35);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease;
}

.mk-baskana-form .mk-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(37,99,235,0.45);
  background: linear-gradient(90deg, #1d4ed8, #1e40af);
}

.mk-baskana-form .mk-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 25px rgba(37,99,235,0.35);
}

/* Mobilde tek kolon olsun */
@media (max-width: 768px) {
  .mk-baskana-form .mk-form-grid {
    grid-template-columns: 1fr;
  }

  .mk-baskana-form .form-row-submit {
    text-align: center;
  }

  .mk-baskana-form .mk-submit-btn {
    width: 100%;
    max-width: 260px;
  }
}

/* === Başkana Yazın - durum mesajları === */
.mk-alert {
  margin-bottom: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-size: 0.93rem;
  line-height: 1.4;
}

.mk-alert-success {
  background: #ecfdf5;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.mk-alert-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

/* === Captcha satırı === */
.mk-captcha-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mk-captcha-text {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

