/* ============================================================
   ÇUMRA TİCARET VE SANAYİ ODASI — Ana Stil
   Renk: Lacivert #1B3A6B + Altın #C8A84B
   ============================================================ */

:root {
  --primary:       #1B3A6B;
  --primary-dark:  #0F2240;
  --primary-light: #2A5298;
  --secondary:     #C8A84B;
  --secondary-dark:#A8893A;
  --accent:        #E74C3C;
  --success:       #27AE60;
  --bg-light:      #F4F6F9;
  --bg-white:      #FFFFFF;
  --text-dark:     #1A2332;
  --text-muted:    #6C757D;
  --border:        #E2E8F0;
  --shadow:        0 4px 24px rgba(27,58,107,.10);
  --shadow-lg:     0 12px 48px rgba(27,58,107,.18);
  --radius:        12px;
  --radius-sm:     8px;
  --transition:    .25s cubic-bezier(.4,0,.2,1);
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', 'Segoe UI', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--bg-light);
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary); }
img { max-width: 100%; display: block; }
h1,h2,h3,h4,h5,h6 { font-family: 'Roboto Condensed', 'Segoe UI', sans-serif; font-weight: 700; line-height: 1.2; }

/* ── Top Bar ── */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  padding: .45rem 0;
  border-bottom: 2px solid var(--secondary);
}
.topbar a { color: rgba(255,255,255,.8); }
.topbar a:hover { color: var(--secondary); }
.topbar .social-icons a {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  font-size: .75rem;
  margin-left: 4px;
  transition: var(--transition);
}
.topbar .social-icons a:hover { background: var(--secondary); color: #000; }

/* ── Header ── */
.site-header {
  background: var(--bg-white);
  box-shadow: 0 2px 12px rgba(27,58,107,.12);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.site-logo img { height: 90px; width: auto; }
.site-logo-text .name {
  display: block;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}
.site-logo-text .sub {
  font-size: .7rem;
  color: var(--secondary-dark);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ── Navigation ── */
.navbar { padding: 8px 0; }
.navbar-nav .nav-link {
  padding: 1.1rem .9rem;
  font-weight: 700;
  font-size: .87rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: .04em;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px 3px 0 0;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { left: 0; right: 0; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--primary); }

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--secondary);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: .5rem 0;
  min-width: 220px;
}
.dropdown-item {
  padding: .55rem 1.25rem;
  font-size: .87rem;
  font-weight: 600;
  color: var(--text-dark);
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.dropdown-item:hover { background: var(--bg-light); color: var(--primary); border-color: var(--secondary); }
.navbar-toggler { border: 2px solid var(--primary); }

/* ── Slider ── */
.hero-slider { position: relative; border-radius: 0; }
.hero-slider .carousel-item { height: 400px; }
.hero-slider .slide-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(.72);
  display: block;
}
.hero-slider .carousel-caption {
  text-align: left;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  left: 8%;
  right: 20%;
  padding: 0;
}
.hero-slider .carousel-caption h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
  margin-bottom: .5rem;
}
.hero-slider .carousel-caption p { font-size: 1.15rem; color: rgba(255,255,255,.9); margin-bottom: 1.5rem; }
.hero-slider .carousel-indicators button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: 2px solid #fff;
}
.hero-slider .carousel-indicators button.active { background: var(--secondary); border-color: var(--secondary); }

/* ── Quick Access Cards ── */
.quick-access { background: var(--primary); padding: 1.5rem 0; }
.qa-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 1rem;
  color: #fff;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.qa-card:hover { background: var(--secondary); color: #000; transform: translateY(-4px); }
.qa-card .icon { font-size: 2rem; margin-bottom: .5rem; }
.qa-card .label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }

/* ── Stats Counter ── */
.stats-section { background: var(--bg-white); padding: 3rem 0; }
.stat-item { text-align: center; padding: 1.5rem; }
.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  font-family: 'Roboto Condensed', sans-serif;
}
.stat-number span { color: var(--secondary); }
.stat-label { color: var(--text-muted); font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-top: .4rem; }

/* ── Section Base ── */
.section-title { font-size: 1.9rem; color: var(--primary); margin-bottom: .25rem; }
.section-subtitle { color: var(--text-muted); font-size: .95rem; margin-bottom: 2rem; }
.section-divider {
  width: 50px; height: 4px;
  background: var(--secondary);
  border-radius: 4px;
  margin: .4rem 0 1.5rem;
}

/* ── News Cards ── */
.news-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-card .img-wrap { height: 200px; overflow: hidden; }
.news-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.news-card:hover .img-wrap img { transform: scale(1.05); }
.news-card .card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.news-card .cat-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .2em .7em;
  border-radius: 20px;
  margin-bottom: .6rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.news-card h5 { font-size: 1rem; color: var(--text-dark); margin-bottom: .5rem; }
.news-card h5 a { color: inherit; }
.news-card h5 a:hover { color: var(--primary); }
.news-card .card-footer { background: none; border-top: 1px solid var(--border); padding: .75rem 1.25rem; font-size: .78rem; color: var(--text-muted); }
.news-card .read-more { margin-top: auto; }
.news-card .read-more a {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--primary); font-weight: 700; font-size: .85rem;
}
.news-card .read-more a:hover { color: var(--secondary); }

/* ── Announcement Sidebar ── */
.ann-list { }
.ann-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: .9rem 0;
  border-bottom: 1px solid var(--border);
}
.ann-item:last-child { border-bottom: none; }
.ann-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .9rem;
}
.ann-icon.urgent { background: #FDEEEE; color: var(--accent); }
.ann-icon.normal { background: #EEF2FF; color: var(--primary); }
.ann-item a { font-size: .87rem; font-weight: 600; color: var(--text-dark); }
.ann-item a:hover { color: var(--primary); }
.ann-date { font-size: .72rem; color: var(--text-muted); margin-top: 2px; }

/* ── Event Cards ── */
.event-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  display: flex; gap: 1rem; align-items: flex-start;
  transition: var(--transition);
}
.event-card:hover { box-shadow: var(--shadow-lg); transform: translateX(4px); }
.event-date-box {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  text-align: center;
  padding: .6rem .8rem;
  min-width: 56px;
  flex-shrink: 0;
}
.event-date-box .day { font-size: 1.6rem; font-weight: 900; line-height: 1; }
.event-date-box .mon { font-size: .65rem; text-transform: uppercase; letter-spacing: .06em; }
.event-info h6 { font-size: .95rem; margin-bottom: .2rem; }
.event-info .meta { font-size: .78rem; color: var(--text-muted); }

/* ── Breadcrumb ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 2.5rem 0;
}
.page-hero h1 { font-size: 2rem; margin-bottom: .3rem; }
.breadcrumb-item a { color: rgba(255,255,255,.7); }
.breadcrumb-item a:hover { color: var(--secondary); }
.breadcrumb-item.active { color: var(--secondary); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── Cards ── */
.tso-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

/* ── Buttons ── */
.btn-primary { background: var(--primary); border-color: var(--primary); }
.btn-primary:hover, .btn-primary:focus { background: var(--primary-light); border-color: var(--primary-light); }
.btn-gold { background: var(--secondary); border-color: var(--secondary); color: #000; font-weight: 700; }
.btn-gold:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); color: #000; }
.btn-outline-primary { border-color: var(--primary); color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: #fff; }

/* ── Board Members ── */
.board-card {
  text-align: center;
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.board-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.board-card .photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--secondary);
}
.board-card .photo-placeholder {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--text-muted);
  margin: 0 auto 1rem;
  border: 4px solid var(--secondary);
}
.board-card .name { font-size: 1.05rem; color: var(--primary); margin-bottom: .2rem; }
.board-card .title-text { font-size: .82rem; color: var(--text-muted); font-weight: 600; }

/* ── Document Library ── */
.doc-item {
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: var(--transition);
  margin-bottom: .75rem;
}
.doc-item:hover { box-shadow: var(--shadow); }
.doc-icon { font-size: 2rem; flex-shrink: 0; }
.doc-info .title { font-weight: 700; font-size: .95rem; }
.doc-info .meta { font-size: .75rem; color: var(--text-muted); }
.doc-download { margin-left: auto; }

/* ── Member Panel ── */
.panel-sidebar {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 1.5rem;
  color: #fff;
  position: sticky;
  top: 80px;
}
.panel-sidebar .user-info { text-align: center; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.2); }
.panel-sidebar .user-info .avatar {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto .75rem;
}
.panel-nav a {
  display: flex; align-items: center; gap: .75rem;
  padding: .7rem 1rem;
  color: rgba(255,255,255,.8);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .25rem;
  transition: var(--transition);
}
.panel-nav a:hover, .panel-nav a.active {
  background: rgba(255,255,255,.15);
  color: #fff;
}
.panel-nav a.active { background: var(--secondary); color: #000; }

/* ── Dues Table ── */
.dues-status { font-size: .75rem; font-weight: 700; padding: .3em .8em; border-radius: 20px; }
.dues-status.paid     { background: #d4edda; color: #155724; }
.dues-status.pending  { background: #fff3cd; color: #856404; }
.dues-status.overdue  { background: #f8d7da; color: #721c24; }
.dues-status.partial  { background: #cce5ff; color: #004085; }

/* ── Application Status ── */
.app-status-timeline { list-style: none; padding: 0; }
.app-status-timeline li {
  display: flex; gap: 1rem;
  padding-bottom: 1.5rem;
  position: relative;
}
.app-status-timeline li::before {
  content: '';
  position: absolute;
  left: 14px; top: 28px; bottom: 0;
  width: 2px;
  background: var(--border);
}
.app-status-timeline li:last-child { padding-bottom: 0; }
.app-status-timeline li:last-child::before { display: none; }
.step-dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .8rem; font-weight: 700;
}
.step-dot.done    { background: var(--success); color: #fff; }
.step-dot.active  { background: var(--primary); color: #fff; }
.step-dot.waiting { background: var(--border); color: var(--text-muted); }

/* ── Footer ── */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
}
.site-footer h5 {
  color: var(--secondary);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
  font-weight: 800;
}
.site-footer .footer-logo .name { font-size: 1.1rem; font-weight: 700; color: #fff; }
.site-footer .footer-logo .sub  { font-size: .75rem; color: rgba(255,255,255,.5); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .87rem; }
.footer-links a:hover { color: var(--secondary); padding-left: 4px; }
.footer-contact li { display: flex; gap: .5rem; margin-bottom: .6rem; font-size: .87rem; color: rgba(255,255,255,.75); }
.footer-contact li a { color: rgba(255,255,255,.75); text-decoration: none; }
.footer-contact li a:hover { color: var(--secondary); }
.footer-contact li i { color: var(--secondary); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
  margin-top: 3rem;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  margin: 0 3px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--secondary); color: #000; }

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  background: #25D366;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--transition);
  animation: waPulse 2s infinite;
}
.wa-float:hover { transform: scale(1.1); color: #fff; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 40px rgba(37,211,102,.8); }
}

/* ── Alert bar ── */
.urgent-bar { background: var(--accent); color: #fff; padding: .5rem 0; font-size: .82rem; }
.urgent-bar a { color: #fff; font-weight: 700; }

/* ── Search ── */
.search-box {
  display: flex; gap: 8px;
  background: var(--bg-light);
  border-radius: 40px;
  padding: 4px 4px 4px 16px;
  border: 2px solid var(--border);
  transition: var(--transition);
}
.search-box:focus-within { border-color: var(--primary); }
.search-box input { border: none; background: none; flex: 1; outline: none; font-size: .9rem; }
.search-box button { background: var(--primary); color: #fff; border: none; border-radius: 30px; padding: .3rem .9rem; font-size: .85rem; }

/* ── Admin panel temel stilleri ── */
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px;
  background: var(--primary-dark);
  flex-shrink: 0;
  position: fixed; top: 0; left: 0; bottom: 0;
  overflow-y: auto;
  z-index: 100;
  transition: var(--transition);
}
.admin-sidebar .brand {
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.admin-sidebar .brand .name { font-size: .95rem; font-weight: 800; color: #fff; }
.admin-sidebar .brand .sub  { font-size: .7rem; color: var(--secondary); }
.admin-nav { padding: 1rem 0; }
.admin-nav .nav-section {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
  padding: .75rem 1.25rem .3rem;
}
.admin-nav a {
  display: flex; align-items: center; gap: .75rem;
  padding: .65rem 1.25rem;
  color: rgba(255,255,255,.75);
  font-size: .87rem;
  font-weight: 600;
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.admin-nav a:hover  { color: #fff; background: rgba(255,255,255,.07); }
.admin-nav a.active { color: #fff; background: rgba(200,168,75,.15); border-color: var(--secondary); }
.admin-nav a .badge-count {
  margin-left: auto;
  background: var(--accent);
  color: #fff;
  font-size: .65rem;
  padding: .2em .55em;
  border-radius: 20px;
  font-weight: 700;
}
.admin-main {
  margin-left: 260px;
  flex: 1;
  background: var(--bg-light);
  min-height: 100vh;
}
.admin-topbar {
  background: var(--bg-white);
  padding: .85rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  position: sticky; top: 0; z-index: 99;
}
.admin-content { padding: 1.5rem; }
.admin-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.admin-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--bg-light);
}
.admin-card-header h5 { margin: 0; font-size: 1rem; color: var(--primary); }

/* Stat cards (admin dashboard) */
.stat-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 1rem;
}
.stat-card .icon-box {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.stat-card .num { font-size: 1.8rem; font-weight: 900; color: var(--text-dark); line-height: 1; }
.stat-card .lbl { font-size: .78rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; }

/* ── Tables ── */
.tso-table { width: 100%; border-collapse: collapse; }
.tso-table th { background: var(--bg-light); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--text-muted); padding: .75rem 1rem; border-bottom: 2px solid var(--border); }
.tso-table td { padding: .85rem 1rem; border-bottom: 1px solid var(--border); font-size: .9rem; vertical-align: middle; }
.tso-table tr:hover td { background: var(--bg-light); }

/* ── Responsive ── */
@media (max-width: 991px) {
  .hero-slider .carousel-item { height: 300px; }
  .hero-slider .carousel-caption h2 { font-size: 1.5rem; }
  .hero-slider .carousel-caption { right: 5%; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
}
@media (max-width: 768px) {
  .topbar .d-none-mobile { display: none !important; }
  .hero-slider .carousel-item { height: 240px; }
  .hero-slider .carousel-caption { display: none; }
  .stat-number { font-size: 1.8rem; }
}

/* CODEGA Credit */
.codega-credit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(200, 168, 75, 0.25);
  background: rgba(200, 168, 75, 0.06);
  transition: all .3s ease;
}
.codega-credit:hover {
  border-color: rgba(200, 168, 75, 0.6);
  background: rgba(200, 168, 75, 0.12);
}
.codega-credit .credit-label {
  font-size: .68rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.codega-credit .credit-brand {
  font-size: .78rem;
  font-weight: 700;
  color: #C8A84B;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── Hero Section Wrap (Slider + Başkan) ─────────────────── */
.hero-outer {
  background: #0a1930;
  padding: 14px 0 0;
}
.hero-section-wrap {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,.5);
}
.hero-slider-col {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  position: relative;
}
.baskan-col {
  width: 230px;
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
  background: #1B3A6B;
  border-left: 2px solid #C8A84B;
}
.baskan-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.baskan-header {
  background: #C8A84B;
  color: #0d1f3c;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.baskan-photo-wrap {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background: #0d1f3c;
  padding: 12px 12px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.baskan-photo {
  width: calc(100% - 0px);
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 8px 8px 0 0;
  border: 2px solid rgba(200,168,75,.5);
  border-bottom: none;
  transition: transform .4s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}
.baskan-card:hover .baskan-photo { transform: scale(1.02); }
.baskan-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(200,168,75,.2);
}
.baskan-info {
  flex-shrink: 0;
  padding: .8rem .9rem .9rem;
  background: #112756;
  border-top: 2px solid #C8A84B;
}
.baskan-name {
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .15rem;
  line-height: 1.3;
}
.baskan-title {
  font-size: .68rem;
  color: #C8A84B;
  margin: 0 0 .65rem;
}
.baskan-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: .68rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: rgba(200,168,75,.12);
  border: 1px solid rgba(200,168,75,.35);
  border-radius: 5px;
  padding: 5px 10px;
  transition: all .2s;
}
.baskan-link:hover {
  background: #C8A84B;
  border-color: #C8A84B;
  color: #0d1f3c;
}

@media (max-width: 991px) {
  .baskan-col { width: 190px; }
}
@media (max-width: 767px) {
  .hero-outer { padding: 0; }
  .hero-section-wrap { flex-direction: column; border-radius: 0; }
  .baskan-col { width: 100%; }
  .baskan-photo-wrap { min-height: 180px; max-height: 220px; }
}

/* Slider link wrap */
.slide-link-wrap {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}
.hero-slider .carousel-caption { z-index: 2; pointer-events: none; }
.hero-slider .carousel-caption a,
.hero-slider .carousel-caption .btn { pointer-events: auto; }
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next { z-index: 3; }
.hero-slider .carousel-item { position: relative; }

/* ── Hiyerarşik Yönetim Kurulu ───────────────────────────── */
.hiyerarsi-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 560px;
  margin: 0 auto;
}
.hiyerarsi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.hiyerarsi-line {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, #C8A84B, rgba(200,168,75,.3));
  margin: 0 auto;
}
.hiyerarsi-level-0 .board-card-h { border-color: #C8A84B; background: linear-gradient(135deg,#1B3A6B,#0d2146); color: #fff; }
.hiyerarsi-level-0 .board-card-h { width: 340px; }
.hiyerarsi-level-1 .board-card-h { width: 310px; }
.hiyerarsi-level-2 .board-card-h { width: 290px; }
.board-card-h {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1.25rem;
  background: #fff;
  border: 2px solid rgba(200,168,75,.3);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: all .25s;
  width: 300px;
  position: relative;
}
.board-card-h:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,.14);
  transform: translateY(-2px);
  border-color: #C8A84B;
}
.hiyerarsi-level-0 .board-card-h:hover { transform: translateY(-2px); }
.board-photo-h {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #C8A84B;
}
.hiyerarsi-level-0 .board-photo-h { width: 72px; height: 72px; border-color: #C8A84B; box-shadow: 0 0 0 3px rgba(200,168,75,.3); }
.board-photo-h img { width: 100%; height: 100%; object-fit: cover; }
.board-photo-placeholder-h {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(27,58,107,.08);
  font-size: 1.8rem;
  color: #1B3A6B;
}
.hiyerarsi-level-0 .board-photo-placeholder-h { background: rgba(255,255,255,.1); color: #C8A84B; }
.board-name-h {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: .15rem;
}
.hiyerarsi-level-0 .board-name-h { color: #fff; font-size: 1.05rem; }
.board-title-h {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 600;
}
.hiyerarsi-level-0 .board-title-h { color: #C8A84B; }

/* Level badge - sıra göstergesi */
.board-card-h::before {
  content: '';
  position: absolute;
  left: -2px; top: -2px; bottom: -2px;
  width: 4px;
  background: #C8A84B;
  border-radius: 12px 0 0 12px;
  opacity: .5;
}
.hiyerarsi-level-0 .board-card-h::before { opacity: 1; width: 5px; }

@media (max-width: 576px) {
  .hiyerarsi-level-0 .board-card-h,
  .hiyerarsi-level-1 .board-card-h,
  .hiyerarsi-level-2 .board-card-h,
  .board-card-h { width: 100%; }
}

/* Section title bar */
.section-title-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
}
.section-title-bar::before,
.section-title-bar::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,168,75,.4), transparent);
}
.section-title-bar span {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
  padding: 4px 12px;
  border: 1px solid rgba(200,168,75,.3);
  border-radius: 20px;
  background: rgba(200,168,75,.06);
}

/* ── Kurumsal Üye Listesi ───────────────────────────────── */
.kurumsal-liste {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.09);
}
.kurumsal-kart {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border-bottom: 1px solid #edf0f5;
  transition: background .2s;
  position: relative;
}
.kurumsal-kart:last-child { border-bottom: none; }
.kurumsal-kart:hover { background: #f8faff; }
.kurumsal-kart:first-child {
  background: linear-gradient(135deg, #1B3A6B 0%, #0d2146 100%);
  border-bottom: 2px solid #C8A84B;
}
.kurumsal-kart:first-child:hover { background: linear-gradient(135deg, #1e4280 0%, #0f2650 100%); }
.kurumsal-sira {
  width: 48px;
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  color: #adb5bd;
  flex-shrink: 0;
  padding: 0 .5rem;
}
.kurumsal-kart:first-child .kurumsal-sira { color: rgba(200,168,75,.6); }
.kurumsal-foto {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  margin: .75rem 0 .75rem .5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(200,168,75,.25);
}
.kurumsal-kart:first-child .kurumsal-foto {
  width: 72px;
  height: 72px;
  border-color: rgba(200,168,75,.5);
  margin: 1rem 0 1rem .5rem;
}
.kurumsal-foto img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
}
.kurumsal-foto-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #f0f3f8;
  color: #adb5bd;
  font-size: 1.6rem;
}
.kurumsal-kart:first-child .kurumsal-foto-ph {
  background: rgba(255,255,255,.08);
  color: rgba(200,168,75,.4);
}
.kurumsal-bilgi {
  flex: 1;
  padding: 0 1rem;
  min-width: 0;
}
.kurumsal-ad {
  font-size: .98rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .15rem;
}
.kurumsal-kart:first-child .kurumsal-ad {
  color: #fff;
  font-size: 1.05rem;
}
.kurumsal-gorev {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.kurumsal-kart:first-child .kurumsal-gorev { color: #C8A84B; }
.kurumsal-rozet {
  padding: 0 1.25rem 0 .5rem;
  flex-shrink: 0;
}
.rozet {
  display: inline-flex;
  align-items: center;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.rozet.baskan { background: #C8A84B; color: #0d1f3c; }
.rozet.byk    { background: rgba(27,58,107,.1); color: var(--primary); border: 1px solid rgba(27,58,107,.2); }
.rozet.uye    { background: #f0f3f8; color: #6c757d; }

@media (max-width: 576px) {
  .kurumsal-sira { display: none; }
  .kurumsal-rozet { padding: 0 .75rem; }
  .rozet { font-size: .6rem; padding: 3px 7px; }
}

/* ── İletişim Sayfası ───────────────────────────────────── */
.iletisim-bar {
  background: var(--primary);
  padding: 0;
  border-bottom: 3px solid #C8A84B;
}
.iletisim-bar-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  border-right: 1px solid rgba(255,255,255,.1);
  height: 100%;
}
.iletisim-bar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200,168,75,.2);
  border: 1px solid rgba(200,168,75,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #C8A84B;
  flex-shrink: 0;
}
.iletisim-bar-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: .2rem;
}
.iletisim-bar-val {
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: block;
  line-height: 1.4;
}
.iletisim-bar-val:hover { color: #C8A84B; }
.iletisim-bar-sub {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-top: .2rem;
}
.iletisim-map-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  border: 2px solid rgba(27,58,107,.1);
}
.iletisim-map-placeholder {
  height: 320px;
  background: #e9eef5;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #adb5bd;
}
.iletisim-wa-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #25D366;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1rem;
  transition: all .25s;
  box-shadow: 0 4px 15px rgba(37,211,102,.3);
}
.iletisim-wa-btn:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,.35);
}
.iletisim-wa-btn i:first-child { font-size: 1.8rem; }
.iletisim-form-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,.1);
  border: 1px solid rgba(27,58,107,.08);
}
.iletisim-form-header {
  background: linear-gradient(135deg, var(--primary) 0%, #0d2146 100%);
  color: #fff;
  padding: 1.1rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #C8A84B;
}
.iletisim-form-card .form-control {
  border: 1px solid #dee2e6;
  border-radius: 7px;
  padding: .6rem .9rem;
  font-size: .9rem;
}
.iletisim-form-card .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,58,107,.1);
}

@media (max-width: 767px) {
  .iletisim-bar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
}

/* ═══════════════════════════════════════════════════════════
   KAPSAMLI MOBİL UYUM - v2
═══════════════════════════════════════════════════════════ */

/* ── Tablet: 992px ve altı ──────────────────────────────── */
@media (max-width: 991px) {

  /* Navbar */
  .navbar-brand img { max-height: 70px !important; }
  .navbar { padding: 6px 0; }

  /* Hero */
  .hero-outer { padding: 10px 0 0; }
  .hero-section-wrap { border-radius: 4px 4px 0 0; max-width: 100%; margin: 0 8px; }
  .baskan-col { width: 200px; }

  /* Footer */
  .site-footer .row > div { margin-bottom: 1.5rem; }

  /* Board cards */
  .board-card-h { width: 100% !important; }
  .hiyerarsi-level-0 .board-card-h { width: 100% !important; }
}

/* ── Mobil: 768px ve altı ───────────────────────────────── */
@media (max-width: 768px) {

  /* Topbar */
  .topbar { padding: 4px 0; font-size: .8rem; }
  .topbar .container { flex-wrap: wrap; gap: .3rem; }

  /* Navbar logo */
  .navbar-brand img { max-height: 60px !important; }
  .site-logo { padding: 4px 0; }

  /* Hero: mobilde gizle */
  .hero-outer { display: none; }

  /* Quick access */
  .qa-card { padding: .7rem .5rem; }
  .qa-card .icon { font-size: 1.4rem; }
  .qa-card .label { font-size: .65rem; }

  /* Stats */
  .stats-section { padding: 1.5rem 0; }
  .counter-val { font-size: 2rem; }

  /* News cards */
  .news-card .img-wrap { height: 160px; }

  /* Section başlıkları */
  .section-header-bar h2 { font-size: 1.2rem; }

  /* Page hero */
  .page-hero { padding: 1.5rem 0; }
  .page-hero h1 { font-size: 1.4rem; }

  /* Board hiyerarşi */
  .hiyerarsi-wrap { max-width: 100%; }
  .board-card-h { width: 100% !important; }

  /* İletişim */
  .iletisim-bar .row > div { border-bottom: 1px solid rgba(255,255,255,.1); border-right: none !important; }
  .iletisim-bar-item { padding: .9rem 1rem; }

  /* Footer bottom */
  .footer-bottom .container { flex-direction: column; gap: .5rem; text-align: center; }
  .codega-credit { justify-content: center; }

  /* Yönetim kurulu */
  .hiyerarsi-level-0 .board-card-h { width: 100% !important; }

  /* Meclis grid */
  .row.g-3 .col-md-6.col-lg-4 { flex: 0 0 100%; max-width: 100%; }
  .row.g-3 .col-md-5 { flex: 0 0 100%; max-width: 100%; }
}

/* ── Küçük mobil: 576px ve altı ─────────────────────────── */
@media (max-width: 576px) {

  /* Topbar */
  .topbar .social-icons { display: none; }

  /* Navbar */
  .navbar-brand img { max-height: 52px !important; }

  /* Hero slider yükseklik */
  .hero-slider .carousel-item { height: 180px; }

  /* Hero zaten 768px altında gizlendi */

  /* Quick access: 4 kolon yerine 3 */
  .qa-card .label { font-size: .6rem; }

  /* Sayfa içerikleri */
  .container { padding-left: 12px; padding-right: 12px; }

  /* İletişim formu */
  .iletisim-form-card .p-4 { padding: 1rem !important; }
  .iletisim-wa-btn { padding: .75rem 1rem; }

  /* Footer */
  .footer-contact li { font-size: .8rem; }
  .footer-links a { font-size: .8rem; }

  /* Anasayfa section padding */
  section.py-5 { padding-top: 2rem !important; padding-bottom: 2rem !important; }

  /* Tablo responsive */
  .admin-table { font-size: .78rem; }
  .admin-table td, .admin-table th { padding: .5rem .6rem; }

  /* Board hiyerarşi tam genişlik */
  .hiyerarsi-wrap { padding: 0 4px; }
  .board-card-h { border-radius: 8px; }
  .board-photo-h { width: 48px !important; height: 48px !important; }

  /* WhatsApp float daha küçük */
  .wa-float { width: 50px; height: 50px; font-size: 1.4rem; right: 12px; bottom: 12px; }
}

/* ── Navbar mobil hamburger ──────────────────────────────── */
@media (max-width: 991px) {
  .navbar-collapse { background: var(--primary); padding: .5rem 1rem 1rem; border-radius: 0 0 8px 8px; }
  .navbar-nav .nav-link { padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.85) !important; }
  .navbar-nav .nav-link:last-child { border-bottom: none; }
  .navbar-nav .dropdown-menu { background: rgba(0,0,0,.15); border: none; box-shadow: none; padding: 0 0 0 1rem; }
  .navbar-nav .dropdown-item { color: rgba(255,255,255,.75); font-size: .85rem; padding: .4rem 0; }
  .navbar-nav .dropdown-item:hover { background: transparent; color: var(--gold); }
  .navbar-toggler { padding: .3rem .5rem; }
  .navbar-toggler-icon { filter: invert(1); }
}

/* ── Admin panel mobil ───────────────────────────────────── */
@media (max-width: 991px) {
  .admin-sidebar { transform: translateX(-100%); box-shadow: 4px 0 20px rgba(0,0,0,.3); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-content { margin-left: 0 !important; padding: 1rem; }
  .dash-welcome { padding: 1rem 1.25rem; }
  .dash-welcome h4 { font-size: 1rem; }
  .stat-card { padding: .9rem 1rem; }
  .stat-val { font-size: 1.5rem; }
  .stat-icon { width: 42px; height: 42px; font-size: 1.2rem; }
}

@media (max-width: 576px) {
  .admin-content { padding: .75rem; }
  .page-header h1 { font-size: 1.1rem; }
  .admin-card .card-header { padding: .7rem 1rem; font-size: .85rem; }
  .admin-card .card-body { padding: 1rem; }
  .iletisim-bar-item { flex-direction: column; gap: .4rem; text-align: center; align-items: center; }
}

/* ═══════════════════════════════════════════════════════════
   MOBİL ÖZEL İYİLEŞTİRMELER
═══════════════════════════════════════════════════════════ */

/* Mobil hero banner - slider yerine */
.mobile-hero-banner {
  display: none;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #0a1627 100%);
  padding: 1.75rem 1rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mobile-hero-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A84B' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.mobile-hero-banner .logo-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(200,168,75,.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  overflow: hidden;
}
.mobile-hero-banner .logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
.mobile-hero-banner h1 {
  font-size: 1.15rem; font-weight: 800; color: #fff;
  margin: 0 0 .25rem; line-height: 1.3;
}
.mobile-hero-banner p {
  font-size: .78rem; color: rgba(255,255,255,.6);
  margin: 0 0 1rem;
}
.mobile-hero-badges {
  display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap;
}
.mobile-hero-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .7rem; font-weight: 600;
  color: #C8A84B;
  background: rgba(200,168,75,.1);
  border: 1px solid rgba(200,168,75,.3);
  border-radius: 20px; padding: 4px 10px;
}

@media (max-width: 768px) {
  .mobile-hero-banner { display: block; }

  /* Quick access mobil */
  .quick-access { padding: .75rem 0; }
  .qa-card { padding: .8rem .4rem; gap: .35rem; border-radius: 10px; }
  .qa-card .icon { font-size: 1.5rem; }
  .qa-card .label { font-size: .62rem; letter-spacing: 0; }

  /* Haber kartları */
  .news-card { border-radius: 10px; }
  .news-card .card-img-wrap { height: 150px; }
  .news-card .card-body { padding: .75rem; }
  .news-card .card-title { font-size: .9rem; }

  /* Duyuru kartları */
  .ann-icon { width: 36px; height: 36px; font-size: 1rem; }

  /* Section başlıkları */
  .section-header-bar { padding: .5rem 0; margin-bottom: 1rem; }
  .section-header-bar h2 { font-size: 1.1rem; }

  /* Stats counter */
  .counter-item { padding: 1rem .5rem; }
  .counter-val { font-size: 2rem; }
  .counter-label { font-size: .75rem; }

  /* Sayfa hero */
  .page-hero { padding: 1.25rem 0; }
  .page-hero h1 { font-size: 1.25rem; }

  /* Breadcrumb */
  .breadcrumb { font-size: .75rem; }

  /* Tablo responsive scroll */
  .table-responsive-mobile { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Form iyileştirme */
  .form-control { font-size: 16px !important; } /* iOS zoom engelle */

  /* Footer */
  .site-footer { padding: 2rem 0 1rem; }
  .footer-logo { text-align: center; }
  .footer-social { justify-content: center; }
  .footer-links { text-align: center; }
  .footer-contact { text-align: center; }
  .footer-contact li { justify-content: center; }
}

@media (max-width: 576px) {
  /* Mobile hero banner daha kompakt */
  .mobile-hero-banner { padding: 1.25rem 1rem 1.25rem; }
  .mobile-hero-banner .logo-wrap { width: 60px; height: 60px; }
  .mobile-hero-banner h1 { font-size: 1rem; }

  /* Quick access 4 sütun - sadece xs */
  .qa-card { padding: .65rem .25rem; }
  .qa-card .icon { font-size: 1.3rem; }
  .qa-card .label { font-size: .58rem; }

  /* WhatsApp float */
  .wa-float { right: 10px; bottom: 10px; width: 48px; height: 48px; font-size: 1.35rem; }
}

/* ═══════════════════════════════════════════════════════════
   ORGANİZASYON ŞEMASI
═══════════════════════════════════════════════════════════ */
.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 1rem 0 2rem;
}

/* Grup başlık barı */
.org-group { width: 100%; }
.org-group-title {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 1.25rem;
}
.org-meclis .org-group-title { color: #2563eb; border-color: #2563eb; }
.org-yk     .org-group-title { color: var(--primary); border-color: var(--primary); }

/* Node satırları */
.org-nodes {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Dikey bağlantı çizgisi */
.org-vline {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(27,58,107,.3), rgba(200,168,75,.5));
  margin: 0 auto;
}

/* Temel node */
.org-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  gap: .5rem;
  padding: 1rem .75rem .85rem;
  background: #fff;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  width: 140px;
  transition: all .25s;
  position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.org-node:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,.12);
  border-color: #C8A84B;
  color: inherit;
}
.org-node-photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid #e2e8f0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #94a3b8;
  background: #f8faff;
  flex-shrink: 0;
  transition: border-color .25s;
}
.org-node:hover .org-node-photo { border-color: #C8A84B; }
.org-node-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.org-node-name {
  font-size: .8rem; font-weight: 700;
  color: var(--primary); line-height: 1.3;
}
.org-node-title {
  font-size: .68rem; color: #64748b;
  font-weight: 500; line-height: 1.3;
}

/* Meclis node - mavi */
.org-node-meclis {
  border-color: rgba(37,99,235,.2);
  background: #f0f6ff;
}
.org-node-meclis .org-node-photo { border-color: #2563eb; background: #dbeafe; color: #2563eb; }
.org-node-meclis .org-node-name  { color: #1d4ed8; }
.org-node-meclis:hover { border-color: #2563eb; }

/* Daha fazla node */
.org-node-more {
  border: 2px dashed #cbd5e1;
  background: #f8faff;
  color: #64748b;
}
.org-node-more .org-node-photo { background: #f1f5f9; color: #94a3b8; font-size: 1.4rem; }
.org-node-more .org-node-name  { color: #475569; }

/* YK Başkan node */
.org-node-baskan {
  width: 160px;
  background: linear-gradient(135deg, #1B3A6B, #0d2146);
  border-color: #C8A84B;
}
.org-node-baskan .org-node-photo { border-color: #C8A84B; background: rgba(255,255,255,.1); color: #C8A84B; }
.org-node-baskan .org-node-name  { color: #fff; font-size: .88rem; }
.org-node-baskan .org-node-title { color: #C8A84B; }
.org-node-baskan::before {
  content: '★';
  position: absolute; top: -10px;
  background: #C8A84B; color: #0d1f3c;
  font-size: .6rem; width: 20px; height: 20px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.org-node-baskan:hover { border-color: #e8c85a; transform: translateY(-5px); }

/* YK Başkan Yrd */
.org-node-byk {
  border-color: rgba(27,58,107,.3);
  background: #f0f4fb;
}
.org-node-byk .org-node-photo { border-color: var(--primary); color: var(--primary); }
.org-node-byk .org-node-name  { color: var(--primary); }

/* YK Üye */
.org-node-uye {
  background: #fff;
}

/* Genel Sekreter */
.org-gs-wrap { display: flex; justify-content: center; }
.org-node-gs {
  width: 160px;
  border-color: #C8A84B;
  background: linear-gradient(135deg, #fdfaf3, #fff9ed);
}
.org-node-gs .org-node-photo { border-color: #C8A84B; color: #C8A84B; }
.org-node-gs .org-node-name  { color: #92400e; }
.org-node-gs .org-node-title { color: #b45309; }
.org-node-gs:hover { border-color: #a16207; }

/* Birim row */
.org-birimler { display: flex; flex-direction: column; align-items: center; width: 100%; }
.org-birim-row {
  display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center;
  padding: 0 1rem;
}
.org-node-birim { width: 130px; background: #f8faff; }
.org-node-birim .org-node-photo { width: 52px; height: 52px; font-size: 1.4rem; }

/* Bilgi işlem */
.org-node-tech {
  border-color: rgba(99,102,241,.3);
  background: #f5f3ff;
}
.org-node-tech .org-node-photo { border-color: #6366f1; color: #6366f1; background: #eef2ff; }
.org-node-tech .org-node-name  { color: #4338ca; }

/* Lejant */
.org-legend {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}
.org-legend-item {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; color: #64748b;
}
.org-dot {
  width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
}
.org-dot-meclis { background: #2563eb; }
.org-dot-yk     { background: #1B3A6B; }
.org-dot-gs     { background: #C8A84B; }
.org-dot-birim  { background: #94a3b8; }

@media (max-width: 768px) {
  .org-node { width: 110px; padding: .75rem .5rem; }
  .org-node-baskan, .org-node-gs { width: 130px; }
  .org-node-photo { width: 52px; height: 52px; font-size: 1.4rem; }
  .org-node-name { font-size: .72rem; }
  .org-node-title { font-size: .62rem; }
  .org-nodes { gap: .6rem; }
  .org-birim-row { gap: .6rem; }
}

/* ═══════════════════════════════════════════════════════════
   TARİHÇE SAYFASI
═══════════════════════════════════════════════════════════ */
.tarihce-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.tarihce-section {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.tarihce-section::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: -2.5rem;
  width: 2px;
  background: linear-gradient(to bottom, rgba(200,168,75,.4), transparent);
}
.tarihce-section:last-child::after { display: none; }

.tarihce-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1B3A6B, #0d2146);
  color: #C8A84B;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(27,58,107,.25);
  border: 2px solid rgba(200,168,75,.3);
  position: relative;
  z-index: 1;
}
.tarihce-body {
  flex: 1;
  padding-bottom: 1rem;
}
.tarihce-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin: .4rem 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid rgba(200,168,75,.25);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.tarihce-body p {
  font-size: .92rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: .75rem;
}
.tarihce-body p:last-child { margin-bottom: 0; }

.tarihce-quote {
  margin: 1rem 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #f8faff, #f0f4fb);
  border-left: 4px solid #C8A84B;
  border-radius: 0 8px 8px 0;
  font-size: .95rem;
  font-style: italic;
  color: #1B3A6B;
  line-height: 1.7;
}
.tarihce-quote cite {
  display: block;
  margin-top: .5rem;
  font-size: .8rem;
  font-style: normal;
  font-weight: 700;
  color: #C8A84B;
}

@media (max-width: 576px) {
  .tarihce-section { gap: 1rem; }
  .tarihce-icon { width: 44px; height: 44px; font-size: 1rem; }
  .tarihce-section::after { left: 21px; }
  .tarihce-body h3 { font-size: .95rem; }
}

/* ═══════════════════════════════════════════════════════════
   HAKKIMIZDA SAYFASI
═══════════════════════════════════════════════════════════ */
.hakkimizda-wrap { max-width: 900px; margin: 0 auto; }

.hk-stat-card {
  background: linear-gradient(135deg, #1B3A6B, #0d2146);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  border: 1px solid rgba(200,168,75,.25);
  transition: transform .2s;
}
.hk-stat-card:hover { transform: translateY(-3px); }
.hk-stat-icon { font-size: 1.5rem; color: #C8A84B; margin-bottom: .4rem; }
.hk-stat-val { font-size: 1.6rem; font-weight: 800; color: #fff; line-height: 1.1; }
.hk-stat-lbl { font-size: .72rem; color: rgba(255,255,255,.55); font-weight: 500; margin-top: .2rem; letter-spacing: .04em; text-transform: uppercase; }

.hk-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}
.hk-section:last-child { border-bottom: none; }
.hk-section h3 {
  font-size: 1.1rem; font-weight: 700; color: var(--primary);
  margin-bottom: 1rem; display: flex; align-items: center; gap: .6rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid rgba(200,168,75,.3);
}
.hk-section h3 i { color: #C8A84B; font-size: 1rem; }
.hk-section p { font-size: .93rem; line-height: 1.85; color: #374151; margin-bottom: .8rem; }

.hk-gorev-item {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .88rem; color: #374151; line-height: 1.5;
  padding: .5rem .75rem;
  background: #f8faff;
  border-radius: 8px;
  border-left: 3px solid rgba(200,168,75,.4);
}
.hk-gorev-item i { color: #16a34a; font-size: .9rem; flex-shrink: 0; margin-top: .15rem; }

.hk-iletisim-item {
  display: flex; align-items: flex-start; gap: .85rem;
  font-size: .88rem; color: #374151; line-height: 1.6;
}
.hk-iletisim-item i {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(27,58,107,.08);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   MİSYON VİZYON SAYFASI
═══════════════════════════════════════════════════════════ */
.mv-wrap { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }
.mv-card {
  border-radius: 14px; padding: 2rem;
  position: relative; overflow: hidden;
}
.mv-misyon {
  background: linear-gradient(135deg, #1B3A6B 0%, #0d2146 100%);
  color: #fff; border: 1px solid rgba(200,168,75,.3);
}
.mv-vizyon {
  background: #fff;
  border: 2px solid rgba(27,58,107,.15);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.mv-card-icon {
  font-size: 2.5rem; margin-bottom: .75rem;
  color: #C8A84B;
}
.mv-vizyon .mv-card-icon { color: var(--primary); }
.mv-card-label {
  font-size: .68rem; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; margin-bottom: .35rem;
  color: #C8A84B;
}
.mv-vizyon .mv-card-label { color: var(--primary); }
.mv-card h3 {
  font-size: 1.25rem; font-weight: 800; margin-bottom: 1rem;
  color: #fff;
}
.mv-vizyon h3 { color: var(--primary); }
.mv-card p {
  font-size: .92rem; line-height: 1.85; margin-bottom: .75rem;
  color: rgba(255,255,255,.82);
}
.mv-vizyon p { color: #374151; }
.mv-degerler {
  background: #f8faff; border-radius: 14px;
  padding: 2rem; border: 1px solid #e2e8f0;
}
.mv-degerler h3 {
  font-size: 1.1rem; font-weight: 700; color: var(--primary);
  margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem;
  border-bottom: 2px solid rgba(200,168,75,.3); padding-bottom: .6rem;
}
.mv-degerler h3 i { color: #C8A84B; }
.mv-deger-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 1.25rem 1rem;
  background: #fff; border-radius: 10px;
  border: 1px solid #e2e8f0; height: 100%;
  transition: all .2s;
}
.mv-deger-item:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.08); border-color: #C8A84B; }
.mv-deger-item i { font-size: 1.8rem; color: var(--primary); margin-bottom: .5rem; }
.mv-deger-title { font-weight: 700; font-size: .88rem; color: var(--primary); margin-bottom: .3rem; }
.mv-deger-desc { font-size: .78rem; color: #6b7280; line-height: 1.5; }

/* ── Özgeçmiş Sayfası Foto ──────────────────────────────── */
.ozgecmis-foto-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  position: sticky;
  top: 100px;
}
.ozgecmis-foto {
  width: 220px;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  border: 3px solid rgba(200,168,75,.4);
  display: block;
  margin: 0 auto;
}
.ozgecmis-foto-ph {
  width: 220px;
  height: 260px;
  border-radius: 14px;
  background: #f0f4fb;
  border: 2px solid rgba(200,168,75,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: #c8d3e8;
  margin: 0 auto;
}
.ozgecmis-kimlik {
  background: linear-gradient(135deg, #1B3A6B, #0d2146);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  width: 100%;
  border: 1px solid rgba(200,168,75,.3);
}
.ozgecmis-ad {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .25rem;
}
.ozgecmis-gorev {
  font-size: .75rem;
  color: #C8A84B;
  font-weight: 500;
}

@media (max-width: 767px) {
  .ozgecmis-foto-wrap { position: static; margin-bottom: 1.5rem; }
  .ozgecmis-foto, .ozgecmis-foto-ph { width: 160px; height: 190px; }
}

/* ── Dil Seçici ─────────────────────────────────────────── */
.lang-switcher {
  position: relative;
  margin-left: .5rem;
}
.lang-btn {
  display: flex; align-items: center; gap: .3rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  color: rgba(255,255,255,.9);
  font-size: .72rem; font-weight: 700;
  padding: 3px 8px;
  cursor: pointer;
  transition: all .2s;
  line-height: 1;
  letter-spacing: .04em;
}
.lang-btn:hover { background: rgba(255,255,255,.18); border-color: rgba(200,168,75,.5); }
.lang-btn i { font-size: .55rem; transition: transform .2s; }
.lang-btn.open i { transform: rotate(180deg); }
.lang-menu {
  display: none;
  position: absolute;
  right: 0; top: calc(100% + 6px);
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  min-width: 110px;
  z-index: 2000;
  overflow: hidden;
}
.lang-menu.show { display: block; animation: langFadeIn .15s ease; }
@keyframes langFadeIn { from { opacity:0; transform:translateY(-4px); } to { opacity:1; transform:translateY(0); } }
.lang-item {
  display: flex; align-items: center; gap: .5rem;
  padding: .5rem .85rem;
  font-size: .78rem; font-weight: 600;
  color: #1e293b !important; text-decoration: none;
  transition: background .15s;
}
.lang-item span { color: #1e293b !important; }
.lang-item:hover { background: #f0f4fb; color: var(--primary) !important; }
.lang-item:hover span { color: var(--primary) !important; }
.lang-item.active { background: rgba(27,58,107,.06); color: var(--primary) !important; font-weight: 700; }

/* ── Döviz Kuru Ticker ──────────────────────────────────── */
.kur-ticker {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.kur-item {
  display: flex;
  align-items: center;
  gap: .2rem;
  white-space: nowrap;
}
.kur-item i { font-size: .75rem; color: #C8A84B; }
.kur-altin-icon {
  font-size: .65rem;
  font-weight: 800;
  background: #C8A84B;
  color: #0d1f3c;
  border-radius: 3px;
  padding: 1px 4px;
  line-height: 1.4;
}
.kur-sep {
  color: rgba(255,255,255,.2);
  font-size: .7rem;
}

/* ═══════════════════════════════════════════════════════════
   MEGA MENU - HİZMETLER
═══════════════════════════════════════════════════════════ */
.mega-item { position: static !important; }

.mega-menu {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  top: var(--navbar-h, 70px) !important;
  width: 100% !important;
  max-width: 100% !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: 0 12px 40px rgba(0,0,0,.18) !important;
  background: #fff !important;
  border-top: 3px solid var(--primary) !important;
}

.mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  padding: 2rem 1.5rem;
  gap: 0;
}

.mega-col {
  flex: 1;
  padding: 0 1.5rem;
}
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child  { padding-right: 0; }

.mega-col-title {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .85rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid #C8A84B;
}
.mega-col-title i { color: #C8A84B; font-size: 1rem; }

.mega-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.mega-col ul li a {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .5rem;
  font-size: .845rem;
  color: #374151;
  text-decoration: none;
  border-radius: 6px;
  transition: all .15s;
  font-weight: 500;
}
.mega-col ul li a i {
  font-size: .6rem;
  color: #C8A84B;
  flex-shrink: 0;
  transition: transform .15s;
}
.mega-col ul li a:hover {
  background: #f0f4fb;
  color: var(--primary);
  padding-left: .9rem;
}
.mega-col ul li a:hover i { transform: translateX(3px); }

.mega-divider {
  width: 1px;
  background: #e2e8f0;
  align-self: stretch;
  flex-shrink: 0;
  margin: 0 .5rem;
}

/* Hızlı başvuru CTA */
.mega-cta {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}
.mega-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .65rem 1rem;
  background: linear-gradient(135deg, var(--primary), #0d2146);
  color: #fff !important;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all .2s;
  box-shadow: 0 4px 12px rgba(27,58,107,.3);
}
.mega-cta-btn i { font-size: 1rem; color: #C8A84B; }
.mega-cta-btn:hover {
  background: linear-gradient(135deg, #244b8a, var(--primary));
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(27,58,107,.4);
}

/* Mobilde mega menu gizle, normal dropdown göster */
@media (max-width: 991px) {
  .mega-menu {
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    border-top: none !important;
    background: transparent !important;
  }
  .mega-inner { flex-direction: column; padding: .5rem 0; gap: 0; }
  .mega-col { padding: 0; }
  .mega-divider { display: none; }
  .mega-col-title { font-size: .68rem; margin-top: 1rem; }
  .mega-col ul li a { padding: .35rem .5rem; font-size: .82rem; color: rgba(255,255,255,.8); }
  .mega-col ul li a:hover { background: rgba(255,255,255,.1); color: #fff; }
  .mega-cta { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   HİZMET DETAY SAYFASI (Kapasite Raporu vb.)
═══════════════════════════════════════════════════════════ */
.hizmet-wrap { max-width: 1100px; margin: 0 auto; }

.hizmet-banner {
  display: flex; align-items: center; gap: 1.5rem;
  background: linear-gradient(135deg, #1B3A6B, #0d2146);
  border-radius: 14px; padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(200,168,75,.25);
}
.hizmet-banner-icon {
  font-size: 2.5rem; color: #C8A84B;
  width: 70px; height: 70px; flex-shrink: 0;
  background: rgba(200,168,75,.12);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.hizmet-banner h2 { color: #fff; font-size: 1.4rem; font-weight: 800; margin: 0 0 .35rem; }
.hizmet-banner p  { color: rgba(255,255,255,.65); font-size: .88rem; margin: 0; line-height: 1.6; }

.hizmet-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  overflow: hidden;
}
.hizmet-card-header {
  background: linear-gradient(135deg, #f8faff, #eef2fb);
  border-bottom: 2px solid var(--primary);
  padding: .85rem 1.25rem;
  font-size: .8rem; font-weight: 800;
  color: var(--primary);
  letter-spacing: .06em; text-transform: uppercase;
  display: flex; align-items: center; gap: .5rem;
}
.hizmet-card-header i { color: #C8A84B; font-size: 1rem; }
.hizmet-card-body { padding: 1.25rem; }

.hizmet-evrak-list {
  padding-left: 1.2rem; margin: 0;
  display: flex; flex-direction: column; gap: .6rem;
}
.hizmet-evrak-list li {
  font-size: .88rem; color: #374151; line-height: 1.6;
  padding: .4rem .6rem;
  border-radius: 6px;
  border-left: 3px solid rgba(200,168,75,.4);
  background: #fafbff;
}
.hizmet-badge {
  display: inline-block; font-size: .65rem; font-weight: 700;
  background: rgba(27,58,107,.08); color: var(--primary);
  border-radius: 4px; padding: 1px 6px; margin: 0 2px;
}

.hizmet-uyari {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px; padding: .9rem 1rem;
}
.hizmet-uyari-title {
  font-size: .78rem; font-weight: 700; color: #92400e;
  display: flex; align-items: center; gap: .4rem;
  margin-bottom: .5rem;
}
.hizmet-uyari ul { margin: 0; padding-left: 1.1rem; }
.hizmet-uyari ul li { font-size: .83rem; color: #78350f; line-height: 1.6; }

.hizmet-ucret-title {
  font-size: .68rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--primary); padding: .6rem 1.25rem .3rem;
}
.hizmet-ucret-table {
  width: 100%; border-collapse: collapse; font-size: .85rem;
}
.hizmet-ucret-table thead th {
  background: var(--primary); color: #fff;
  padding: .5rem 1rem; font-size: .72rem; font-weight: 700;
}
.hizmet-ucret-table tbody tr { border-bottom: 1px solid #e2e8f0; }
.hizmet-ucret-table tbody td { padding: .55rem 1rem; }
.hizmet-ucret-table .ucret {
  font-weight: 700; color: var(--primary); text-align: right;
}

.hizmet-iban-item {
  padding: .6rem 0;
  border-bottom: 1px solid #f0f4f8;
  display: flex; flex-direction: column; gap: .2rem;
}
.hizmet-iban-item:last-child { border-bottom: none; }
.hizmet-banka { font-size: .75rem; color: #6b7280; font-weight: 600; }
.hizmet-iban-item code {
  font-size: .78rem; background: #f0f4fb;
  padding: 3px 8px; border-radius: 5px;
  color: var(--primary); font-weight: 600;
  letter-spacing: .03em; word-break: break-all;
}

.hizmet-iletisim-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .45rem 0; font-size: .86rem; color: #374151;
}
.hizmet-iletisim-item i {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(27,58,107,.08); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; flex-shrink: 0;
}
.hizmet-iletisim-item strong { display: block; font-size: .88rem; }
.hizmet-iletisim-item span { font-size: .82rem; color: #6b7280; }

.hizmet-link-btn {
  display: flex; align-items: center; gap: .5rem;
  padding: .6rem .9rem;
  background: #f0f4fb; color: var(--primary);
  border-radius: 8px; font-size: .83rem; font-weight: 600;
  text-decoration: none; transition: all .2s;
  border: 1px solid rgba(27,58,107,.15);
}
.hizmet-link-btn:hover { background: var(--primary); color: #fff; }
.hizmet-link-btn i { font-size: .9rem; }

/* ── Footer Bottom ──────────────────────────────────────── */
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  padding: .25rem 0;
}
.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
}
.footer-policy-links {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.footer-policy-links a {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .15s;
}
.footer-policy-links a:hover { color: #C8A84B; }
.footer-policy-links span {
  color: rgba(255,255,255,.2);
  font-size: .7rem;
}

@media (max-width: 768px) {
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: .5rem; }
  .footer-policy-links { justify-content: center; }
}

/* ── Scroll To Top ──────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1B3A6B, #0d2146);
  color: #C8A84B;
  border: 2px solid rgba(200,168,75,.4);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s, visibility .25s, transform .25s;
  z-index: 999;
}
#scrollTop.show {
  opacity: 1; visibility: visible; transform: translateY(0);
}
#scrollTop:hover {
  background: linear-gradient(135deg, #C8A84B, #a8882e);
  color: #0d1f3c;
  border-color: transparent;
  transform: translateY(-2px);
}
@media (max-width: 576px) {
  #scrollTop { bottom: 5rem; right: 1rem; width: 40px; height: 40px; }
}

/* ═══════════════════════════════════════════════════════════
   POLİTİKA SAYFALARI (KVKK / Çerez / Gizlilik)
═══════════════════════════════════════════════════════════ */
.politika-wrap { max-width: 860px; margin: 0 auto; }

.politika-hero {
  display: flex; align-items: center; gap: 1.5rem;
  background: linear-gradient(135deg, #1B3A6B, #0d2146);
  border-radius: 14px; padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(200,168,75,.25);
}
.politika-hero i { font-size: 2.5rem; color: #C8A84B; flex-shrink: 0; }
.politika-hero h2 { color: #fff; font-size: 1.4rem; font-weight: 800; margin: 0 0 .3rem; }
.politika-hero p  { color: rgba(255,255,255,.6); font-size: .88rem; margin: 0; }

.politika-body { display: flex; flex-direction: column; gap: 0; }
.politika-section {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}
.politika-section:last-child { border-bottom: none; }
.politika-section h3 {
  font-size: 1rem; font-weight: 700; color: var(--primary);
  margin: 0 0 .85rem; display: flex; align-items: center; gap: .5rem;
}
.politika-section p { font-size: .9rem; line-height: 1.85; color: #374151; margin-bottom: .6rem; }
.politika-section p:last-child { margin-bottom: 0; }

.politika-list {
  margin: .5rem 0 0; padding-left: 1.1rem;
  display: flex; flex-direction: column; gap: .4rem;
}
.politika-list li { font-size: .88rem; color: #374151; line-height: 1.6; }

.politika-info-box {
  background: #f8faff; border-radius: 10px;
  border: 1px solid #e2e8f0; overflow: hidden;
  margin-top: .75rem;
}
.pib-row {
  display: flex; align-items: center; gap: 1rem;
  padding: .6rem 1rem; border-bottom: 1px solid #e2e8f0;
  font-size: .85rem;
}
.pib-row:last-child { border-bottom: none; }
.pib-row span:first-child { font-weight: 700; color: var(--primary); min-width: 80px; }
.pib-row span:last-child  { color: #374151; }

.politika-tarih { font-size: .78rem; color: #9ca3af; font-style: italic; margin-top: .75rem; }

/* Çerez tablosu */
.cerez-table-wrap { overflow-x: auto; margin-top: .75rem; }
.cerez-table {
  width: 100%; border-collapse: collapse; font-size: .85rem;
}
.cerez-table th {
  background: var(--primary); color: #fff;
  padding: .6rem 1rem; font-size: .75rem; font-weight: 700; text-align: left;
}
.cerez-table td { padding: .65rem 1rem; border-bottom: 1px solid #e2e8f0; color: #374151; }
.cerez-table tr:last-child td { border-bottom: none; }
.cerez-badge {
  display: inline-block; font-size: .68rem; font-weight: 700;
  border-radius: 20px; padding: 3px 10px;
}
.cerez-badge.zorunlu  { background: #dcfce7; color: #15803d; }
.cerez-badge.tercih   { background: #dbeafe; color: #1d4ed8; }
.cerez-badge.analitik { background: #fef9c3; color: #a16207; }

/* ── Footer Çumra Stats ─────────────────────────────────── */
.footer-cumra-stats {
  display: flex; gap: .5rem;
  margin: 1rem 0 .85rem;
}
.fcs-item {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: .55rem .5rem;
  text-align: center;
}
.fcs-val {
  display: block;
  font-size: .88rem; font-weight: 800;
  color: #C8A84B; line-height: 1.2;
}
.fcs-lbl {
  display: block;
  font-size: .6rem; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: .05em;
  margin-top: .15rem;
}

.footer-catalhoyuk {
  display: flex; align-items: center; gap: .65rem;
  background: rgba(200,168,75,.08);
  border: 1px solid rgba(200,168,75,.2);
  border-radius: 8px;
  padding: .6rem .85rem;
  margin-bottom: .75rem;
}
.footer-catalhoyuk i {
  color: #C8A84B; font-size: 1.1rem; flex-shrink: 0;
}
.footer-catalhoyuk strong {
  display: block; font-size: .82rem; color: #C8A84B; font-weight: 700;
}
.footer-catalhoyuk span {
  display: block; font-size: .68rem; color: rgba(255,255,255,.4);
  margin-top: .1rem;
}
