/* ── MODERN DESIGN SYSTEM & TOKENS ── */
:root {
  --red: #D81B48;
  --red-gradient: linear-gradient(135deg, #E31B4C 0%, #B80E38 100%);
  --navy: #0F172A;
  --navy-light: #1E293B;
  --navy-dark: #070E17;
  --gold: #D97706;
  --gold-light: #F59E0B;
  --white: #FFFFFF;
  --gray-bg: #F8FAFC;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.12), 0 10px 15px -5px rgba(15, 23, 42, 0.06);
  --shadow-red: 0 10px 25px -5px rgba(216, 27, 72, 0.35);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { 
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; 
  color: var(--text-main); 
  background: #FFFFFF; 
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── TOP BAR ── */
.top-bar { 
  background: #0b121e; 
  color: #94a3b8; 
  font-size: 12.5px; 
  padding: 8px 0; 
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar-inner { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  flex-wrap: wrap; 
  gap: 14px; 
}
.top-left { 
  display: flex; 
  align-items: center; 
  gap: 8px; 
}
.top-slogan-text { 
  color: #ffffff; 
  font-size: 13px; 
  font-weight: 500; 
  letter-spacing: 0.2px; 
}
.top-right { 
  display: flex; 
  align-items: center; 
  gap: 22px; 
}
.top-nav-link { 
  color: #cbd5e1; 
  font-size: 12.5px; 
  font-weight: 500; 
  display: inline-flex; 
  align-items: center; 
  gap: 7px; 
  text-decoration: none; 
  transition: color 0.2s ease; 
}
.top-nav-link i { 
  font-size: 13px; 
  color: #94a3b8; 
}
.top-nav-link:hover { 
  color: #ffffff; 
}
.top-nav-link:hover i { 
  color: #ffffff; 
}
.top-social-list { 
  display: flex; 
  align-items: center; 
  gap: 15px; 
  margin-left: 6px; 
}
.top-social-list a { 
  color: #94a3b8; 
  font-size: 13px; 
  text-decoration: none; 
  transition: color 0.2s ease, transform 0.2s ease; 
}
.top-social-list a:hover { 
  color: #ffffff; 
  transform: translateY(-1px); 
}

/* ── MAIN HEADER & UNIFIED NAVBAR ── */
.site-header { 
  background: #ffffff; 
  padding: 12px 0; 
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.04); 
  position: sticky; 
  top: 0; 
  z-index: 1000; 
  border-bottom: 1px solid #f1f5f9; 
}
.site-header-inner { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  gap: 24px; 
}
.brand-link { 
  display: flex; 
  align-items: center; 
  gap: 15px; 
  text-decoration: none; 
  flex-shrink: 0; 
}
.brand-logo-img { 
  width: 68px; 
  height: 68px; 
  object-fit: contain; 
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.12)); 
  transition: transform 0.3s ease; 
}
.brand-link:hover .brand-logo-img { 
  transform: scale(1.04); 
}
.brand-titles { 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
}
.brand-province { 
  font-size: 14.5px; 
  font-weight: 800; 
  color: #0f172a; 
  letter-spacing: 0.6px; 
  line-height: 1.15; 
}
.brand-org-name { 
  font-size: 14px; 
  font-weight: 800; 
  color: #0f172a; 
  line-height: 1.25; 
  letter-spacing: 0.2px; 
}

/* ── NAVBAR (DESKTOP) ── */
.main-nav { 
  display: flex; 
  align-items: center; 
}
.nav-list { 
  list-style: none; 
  display: flex; 
  align-items: center; 
  gap: 22px; 
  margin: 0; 
  padding: 0; 
}
.nav-list > li { 
  position: relative; 
}
.nav-list > li > a { 
  color: #1e293b; 
  text-decoration: none; 
  font-size: 12.5px; 
  font-weight: 700; 
  letter-spacing: 0.3px; 
  padding: 10px 0; 
  display: flex; 
  align-items: center; 
  gap: 5px; 
  transition: color 0.2s ease; 
}
.nav-list > li > a i { 
  font-size: 9px; 
  color: #64748b; 
  transition: transform 0.2s ease, color 0.2s ease; 
}
.nav-list > li > a:hover,
.nav-list > li > a.active { 
  color: #b91c1c; 
}
.nav-list > li > a:hover i,
.nav-list > li > a.active i { 
  color: #b91c1c; 
}
.nav-list > li.dropdown { 
  padding-bottom: 8px; 
  margin-bottom: -8px; 
}
.nav-list > li.dropdown:hover > a i { 
  transform: rotate(180deg); 
  color: #b91c1c; 
}
.nav-list > li.dropdown:hover .dropdown-menu { 
  opacity: 1; 
  visibility: visible; 
  pointer-events: auto; 
  transform: translateY(0); 
}
.dropdown-menu { 
  display: block; 
  opacity: 0; 
  visibility: hidden; 
  pointer-events: none; 
  position: absolute; 
  top: 100%; 
  left: 0; 
  background: #ffffff; 
  min-width: 230px; 
  border-radius: 8px; 
  border-top: 3px solid #b91c1c; 
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.14); 
  z-index: 1000; 
  padding: 6px 0; 
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s; 
  transform: translateY(6px); 
}
/* Invisible hover bridge between menu link and dropdown */
.dropdown-menu::before { 
  content: ''; 
  position: absolute; 
  top: -15px; 
  left: 0; 
  right: 0; 
  height: 15px; 
  background: transparent; 
}
.dropdown-menu a { 
  display: block; 
  padding: 11px 20px; 
  color: #334155; 
  text-decoration: none; 
  font-size: 13px; 
  font-weight: 600; 
  border-bottom: 1px solid #f8fafc; 
  transition: all 0.2s ease; 
}
.dropdown-menu a:last-child { 
  border-bottom: none; 
}
.dropdown-menu a:hover { 
  background: #f8fafc; 
  color: #b91c1c; 
  padding-left: 24px; 
}

/* ── HEADER ACTIONS (BAĞIŞ YAP) ── */
.header-action-group { 
  display: flex; 
  align-items: center; 
  gap: 14px; 
  flex-shrink: 0; 
}
.btn-bagis-nav { 
  background: #991b1b; 
  color: #ffffff !important; 
  text-decoration: none; 
  font-size: 13px; 
  font-weight: 800; 
  letter-spacing: 0.5px; 
  padding: 9px 20px; 
  border-radius: 6px; 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  box-shadow: 0 4px 14px rgba(153, 27, 27, 0.25); 
  transition: all 0.25s ease; 
}
.btn-bagis-nav i { 
  font-size: 14px; 
}
.btn-bagis-nav:hover { 
  background: #7f1d1d; 
  transform: translateY(-1px); 
  box-shadow: 0 6px 18px rgba(153, 27, 27, 0.35); 
}
.hamburger { 
  display: none; 
  background: none; 
  border: none; 
  font-size: 22px; 
  color: #0f172a; 
  cursor: pointer; 
  padding: 6px; 
  border-radius: 6px; 
  transition: background 0.2s; 
}
.hamburger:hover { 
  background: #f1f5f9; 
}

/* ── HERO SLIDER SECTION (FULL WIDTH - SCREENSHOT DESIGN) ── */
.hero-slider-section { 
  padding: 0; 
  background: #ffffff; 
  width: 100%; 
  position: relative; 
}
.slider-wrapper { 
  position: relative; 
  width: 100%; 
}
.hero-slider { 
  position: relative; 
  width: 100%; 
  height: 520px; 
  border-radius: 0; 
  overflow: hidden; 
  box-shadow: none; 
  border: none; 
  background: #0b121e; 
}
.hero-slider .slide { 
  position: absolute; 
  inset: 0; 
  opacity: 0; 
  visibility: hidden; 
  pointer-events: none; 
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out; 
  z-index: 1; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}
.hero-slider .slide.active { 
  opacity: 1; 
  visibility: visible; 
  pointer-events: auto; 
  z-index: 2; 
}
.hero-slider .slide::before { 
  content: ''; 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.05) 50%, rgba(15, 23, 42, 0.25) 100%); 
  z-index: 2; 
  pointer-events: none; 
}
.hero-slider .slide-img { 
  position: absolute; 
  inset: 0; 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: center; 
  display: block; 
  z-index: 1; 
}

/* Slide Content Container (Static in all slides & Semi-transparent) */
.slide-content-container { 
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  z-index: 10; 
  width: 100%; 
  pointer-events: none; 
}
.hero-content-wrap { 
  pointer-events: auto; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 36px; 
  width: 100%;
  max-width: 980px; 
  min-height: 254px;
  box-sizing: border-box;
  margin: 0 auto; 
  background: rgba(255, 255, 255, 0.82); 
  backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px); 
  padding: 26px 42px; 
  border-radius: 20px; 
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15); 
  border: 1px solid rgba(255, 255, 255, 0.7); 
}
.hero-seal-box { 
  flex-shrink: 0; 
  width: 200px; 
  height: 200px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}
.hero-seal-img { 
  width: 100%; 
  height: 100%; 
  object-fit: contain; 
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.35)); 
  animation: heroPulse 4s infinite ease-in-out; 
}
@keyframes heroPulse { 
  0%, 100% { transform: scale(1); } 
  50% { transform: scale(1.03); } 
}
.hero-text-box { 
  flex: 1;
  text-align: center; 
}
.hero-text-slider { 
  display: grid; 
  grid-template-columns: 1fr; 
  align-items: center; 
  width: 100%; 
  margin-bottom: 22px; 
}
.hero-text-item { 
  grid-column: 1; 
  grid-row: 1; 
  opacity: 0; 
  visibility: hidden; 
  pointer-events: none; 
  transition: opacity 0.45s ease-in-out, visibility 0.45s ease-in-out; 
  text-align: center; 
}
.hero-text-item.active { 
  opacity: 1; 
  visibility: visible; 
  pointer-events: auto; 
}
.hero-main-heading { 
  font-size: 46px; 
  font-weight: 900; 
  color: #0b1322; 
  line-height: 1.15; 
  letter-spacing: -0.5px; 
  margin-bottom: 12px; 
  text-transform: uppercase; 
  text-shadow: 0 0 20px #ffffff, 0 2px 10px rgba(255, 255, 255, 0.95); 
}
.hero-heading-red { 
  color: #b91c1c; 
  text-shadow: 0 0 20px #ffffff, 0 2px 10px rgba(255, 255, 255, 0.95); 
}
.hero-sub-text { 
  font-size: 16px; 
  font-weight: 700; 
  color: #0f172a; 
  line-height: 1.5; 
  max-width: 620px; 
  margin: 0 auto; 
  text-shadow: 0 0 16px #ffffff, 0 1px 8px rgba(255, 255, 255, 0.95); 
}
.hero-buttons-row { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 16px; 
}
.btn-hero-solid { 
  background: #991b1b; 
  color: #ffffff; 
  text-decoration: none; 
  font-size: 13.5px; 
  font-weight: 800; 
  letter-spacing: 0.5px; 
  padding: 12px 30px; 
  border-radius: 6px; 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  box-shadow: 0 6px 18px rgba(153, 27, 27, 0.35); 
  transition: all 0.25s ease; 
}
.btn-hero-solid:hover { 
  background: #7f1d1d; 
  transform: translateY(-2px); 
  box-shadow: 0 8px 24px rgba(153, 27, 27, 0.45); 
}
.btn-hero-outline { 
  background: #ffffff; 
  color: #1e293b; 
  border: 1.5px solid #991b1b; 
  text-decoration: none; 
  font-size: 13.5px; 
  font-weight: 800; 
  letter-spacing: 0.5px; 
  padding: 12px 26px; 
  border-radius: 6px; 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1); 
  transition: all 0.25s ease; 
}
.btn-hero-outline:hover { 
  background: #991b1b; 
  color: #ffffff; 
  transform: translateY(-2px); 
  box-shadow: 0 6px 18px rgba(153, 27, 27, 0.25); 
}

/* Side Navigation Arrows (Left & Right) */
.slider-arrow { 
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
  width: 48px; 
  height: 48px; 
  border-radius: 50%; 
  background: rgba(15, 23, 42, 0.6); 
  backdrop-filter: blur(4px); 
  -webkit-backdrop-filter: blur(4px); 
  border: 1px solid rgba(255, 255, 255, 0.2); 
  color: #ffffff; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  cursor: pointer; 
  font-size: 18px; 
  z-index: 10; 
  transition: all 0.25s ease; 
}
.slider-arrow:hover { 
  background: rgba(185, 28, 28, 0.95); 
  transform: translateY(-50%) scale(1.1); 
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4); 
}
.slider-prev { 
  left: 24px; 
}
.slider-next { 
  right: 24px; 
}
.slide-btn-secondary { 
  background: rgba(255, 255, 255, 0.15); 
  color: #ffffff; 
  border: 1px solid rgba(255, 255, 255, 0.3); 
}
.slide-btn-secondary:hover { 
  background: rgba(255, 255, 255, 0.25); 
}

/* Pagination Dots (Centered below slider banner) */
.slider-dots { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 12px; 
  margin-top: 20px; 
  margin-bottom: 4px; 
}
.slider-dot { 
  width: 14px; 
  height: 14px; 
  border-radius: 50%; 
  background: #94a3b8; 
  border: none; 
  cursor: pointer; 
  padding: 0; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}
.slider-dot:hover { 
  background: #64748b; 
  transform: scale(1.15); 
}
.slider-dot.active { 
  background: #0f172a; 
  transform: scale(1.2); 
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.15); 
}

/* ── FLOATING 5-CARD ROW (MOVED DOWN BELOW SLIDER) ── */
.floating-cards-section { 
  margin-top: 32px; 
  position: relative; 
  z-index: 10; 
  margin-bottom: 35px; 
}
.floating-cards-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr) 1.55fr; 
  gap: 16px; 
  align-items: stretch; 
}
.feature-card { 
  background: #ffffff; 
  border: 1px solid #e2e8f0; 
  border-radius: 10px; 
  padding: 26px 18px 22px 18px; 
  text-align: center; 
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06); 
  display: flex; 
  flex-direction: column; 
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease; 
}
.feature-card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12); 
  border-color: #cbd5e1; 
}
.fc-icon { 
  color: #991b1b; 
  font-size: 34px; 
  margin-bottom: 16px; 
  transition: transform 0.3s ease; 
}
.feature-card:hover .fc-icon { 
  transform: scale(1.1); 
}
.fc-title { 
  font-size: 13.5px; 
  font-weight: 800; 
  color: #0f172a; 
  text-transform: uppercase; 
  letter-spacing: 0.3px; 
  margin-bottom: 10px; 
}
.fc-desc { 
  font-size: 12.5px; 
  line-height: 1.5; 
  color: #64748b; 
  margin-bottom: 18px; 
  flex-grow: 1; 
}
.fc-link { 
  color: #991b1b; 
  font-size: 12.5px; 
  font-weight: 700; 
  text-decoration: none; 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 6px; 
  transition: gap 0.2s ease; 
}
.fc-link:hover { 
  gap: 9px; 
  color: #7f1d1d; 
}

/* ── DUYURULAR & HABERLER WIDGET CARD ── */
.news-widget-card { 
  background: #0b172a; 
  border-radius: 10px; 
  padding: 18px 20px; 
  color: #ffffff; 
  box-shadow: 0 12px 30px rgba(11, 23, 42, 0.28); 
  display: flex; 
  flex-direction: column; 
}
.nwc-header { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding-bottom: 12px; 
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
  margin-bottom: 12px; 
}
.nwc-title { 
  font-size: 13px; 
  font-weight: 800; 
  text-transform: uppercase; 
  color: #ffffff; 
  letter-spacing: 0.5px; 
}
.nwc-more { 
  font-size: 11.5px; 
  color: #93c5fd; 
  text-decoration: none; 
  font-weight: 600; 
  transition: color 0.2s ease; 
}
.nwc-more:hover { 
  color: #ffffff; 
  text-decoration: underline; 
}
.nwc-list { 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
}
.nwc-item { 
  display: flex; 
  gap: 12px; 
  align-items: center; 
  text-decoration: none; 
  padding: 6px 8px; 
  border-radius: 6px; 
  transition: background 0.2s ease; 
}
.nwc-item:hover { 
  background: rgba(255, 255, 255, 0.07); 
}
.nwc-thumb { 
  width: 52px; 
  height: 44px; 
  border-radius: 5px; 
  object-fit: cover; 
  flex-shrink: 0; 
}
.nwc-info { 
  display: flex; 
  flex-direction: column; 
  min-width: 0; 
}
.nwc-item-title { 
  font-size: 11.5px; 
  font-weight: 700; 
  color: #f8fafc; 
  white-space: nowrap; 
  overflow: hidden; 
  text-overflow: ellipsis; 
  line-height: 1.3; 
}
.nwc-date { 
  font-size: 10px; 
  color: #94a3b8; 
  margin: 1px 0; 
}
.nwc-text { 
  font-size: 10.5px; 
  color: #cbd5e1; 
  line-height: 1.35; 
  display: -webkit-box; 
  -webkit-line-clamp: 1; 
  -webkit-box-orient: vertical; 
  overflow: hidden; 
}

/* ── HAKKIMIZDA & İSTATİSTİKLER SECTION ── */
.about-stats-section { 
  padding: 60px 0 50px 0; 
  background: #ffffff; 
}
.about-stats-grid { 
  display: grid; 
  grid-template-columns: 1.15fr 1.85fr; 
  gap: 50px; 
  align-items: center; 
}
.about-badge { 
  display: inline-block; 
  color: #991b1b; 
  font-size: 12px; 
  font-weight: 800; 
  letter-spacing: 1.2px; 
  text-transform: uppercase; 
  margin-bottom: 8px; 
  border-bottom: 2px solid #991b1b; 
  padding-bottom: 2px; 
}
.about-heading { 
  font-size: 26px; 
  font-weight: 800; 
  color: #0f172a; 
  margin-bottom: 14px; 
  line-height: 1.25; 
}
.about-desc { 
  font-size: 13.5px; 
  line-height: 1.65; 
  color: #475569; 
  margin-bottom: 12px; 
}
.btn-about-action { 
  background: #991b1b; 
  color: #ffffff; 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  padding: 10px 24px; 
  border-radius: 6px; 
  font-size: 13px; 
  font-weight: 700; 
  text-decoration: none; 
  margin-top: 10px; 
  box-shadow: 0 4px 14px rgba(153, 27, 27, 0.25); 
  transition: all 0.25s ease; 
}
.btn-about-action:hover { 
  background: #7f1d1d; 
  transform: translateY(-2px); 
  box-shadow: 0 6px 18px rgba(153, 27, 27, 0.35); 
}
.stats-counter-row { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 16px; 
  text-align: center; 
}
.stat-counter-box { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  padding: 10px; 
}
.stat-c-icon { 
  color: #991b1b; 
  font-size: 30px; 
  margin-bottom: 12px; 
}
.stat-c-number { 
  font-size: 32px; 
  font-weight: 900; 
  color: #0f172a; 
  line-height: 1; 
  margin-bottom: 6px; 
}
.stat-c-title { 
  font-size: 13.5px; 
  font-weight: 800; 
  color: #1e293b; 
  margin-bottom: 4px; 
}
.stat-c-sub { 
  font-size: 11.5px; 
  line-height: 1.4; 
  color: #64748b; 
}

/* ── RESPONSIVE STYLES ── */
@media (max-width: 1200px) {
  .nav-list { gap: 14px; }
  .nav-list > li > a { font-size: 11.5px; }
  .floating-cards-grid { grid-template-columns: repeat(2, 1fr) 1fr; }
  .news-widget-card { grid-column: span 3; }
}

@media (max-width: 992px) {
  .site-header { padding: 10px 0; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #0f172a;
    box-shadow: -5px 0 25px rgba(0,0,0,0.3);
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    z-index: 2000;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .hamburger { display: block; }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 15px 0;
  }
  .nav-list > li > a {
    color: #e2e8f0;
    padding: 12px 20px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    justify-content: space-between;
  }
  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #1e293b;
    border-radius: 0;
    box-shadow: none;
    border: none;
  }
  .nav-list > li.dropdown.active .dropdown-menu {
    display: block;
  }
  .dropdown-menu a {
    color: #cbd5e1;
    padding-left: 32px;
  }
  .hero-content-wrap {
    flex-direction: column;
    gap: 20px;
  }
  .hero-seal-box {
    width: 140px;
    height: 140px;
  }
  .hero-main-heading {
    font-size: 32px;
  }
  .floating-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-widget-card {
    grid-column: span 2;
  }
  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .stats-counter-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .top-bar-inner { justify-content: center; }
  .top-left { width: 100%; justify-content: center; }
  .top-right { width: 100%; justify-content: center; flex-wrap: wrap; gap: 12px; }
  .floating-cards-grid { grid-template-columns: 1fr; }
  .news-widget-card { grid-column: span 1; }
  .hero-main-heading { font-size: 26px; }
  .btn-bagis-nav { padding: 7px 14px; font-size: 12px; }
}

/* ── CONTAINER ── */
.container { max-width:1240px; margin:0 auto; padding:0 20px; }



/* Başkan Katmanı */
.baskan-hero-layer {
  position: absolute;
  right: 4%;
  bottom: 0;
  height: 96%;
  z-index: 6;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.baskan-hero-layer img {
  height: 82%;
  max-height: 420px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
  border-radius: 12px 12px 0 0;
}
.baskan-badge-card {
  width: 100%;
  min-width: 260px;
  max-width: 320px;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 12px 20px;
  text-align: center;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  box-shadow: 0 -6px 25px rgba(0,0,0,0.4);
  border-top: 3px solid var(--red);
  margin-top: -6px;
  z-index: 7;
}
.baskan-badge-card strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.baskan-badge-card span {
  display: block;
  font-size: 11px;
  color: #CBD5E1;
  font-weight: 600;
  margin-top: 2px;
}
.baskan-badge-card small {
  display: block;
  font-size: 10px;
  color: #94A3B8;
  margin-top: 2px;
}

/* ── HIZLI ERİŞİM ── */
.quick-access { background:#FFFFFF; padding:0; box-shadow: var(--shadow-md); border-bottom: 1px solid var(--border); }
.quick-access .container { display:grid; grid-template-columns:repeat(6,1fr); }
.quick-item { 
  padding: 24px 14px; 
  text-align: center; 
  cursor: pointer; 
  border-right: 1px solid var(--border-light); 
  transition: var(--transition); 
  text-decoration: none; 
  color: var(--text-main); 
  position: relative;
  overflow: hidden;
}
.quick-item:last-child { border-right:none; }
.quick-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--transition);
}
.quick-item:hover { background: var(--gray-bg); transform: translateY(-2px); }
.quick-item:hover::before { transform: scaleX(1); }
.quick-item .qi-icon { 
  font-size: 28px; 
  color: var(--red); 
  margin-bottom: 10px; 
  display: block; 
  transition: var(--transition); 
}
.quick-item:hover .qi-icon { transform: scale(1.15); }
.quick-item h4 { font-size: 13px; font-weight: 800; line-height: 1.3; color: var(--navy); }
.quick-item p { font-size: 11px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  padding: 64px 0;
  background-color: var(--navy);
  background-image: linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(200, 16, 46, 0.82)), url('../../uploads/slider/slider1.png');
  background-size: cover;
  background-position: center center;
  color: #ffffff;
  box-shadow: inset 0 -10px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 4px solid var(--red);
}
.page-hero h1 {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.5px;
}
.page-hero .breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-weight: 500;
}
.page-hero .breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
}
.page-hero .breadcrumb a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* ── SECTION ── */
.section { padding: 64px 0; }
.section-alt { background: var(--gray-bg); }
.section-title { font-size: 1.75rem; font-weight: 900; color: var(--navy); margin-bottom: 6px; letter-spacing: -0.5px; }
.section-line { width: 56px; height: 4px; background: var(--red-gradient); border-radius: 2px; margin-bottom: 28px; }
.section-header { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:28px; }
.more-link { color:var(--red); text-decoration:none; font-size:13px; font-weight:700; white-space:nowrap; transition: var(--transition); }
.more-link:hover { color:#900a20; text-decoration:underline; }

/* ── 4 KOLON GRID ── */
.grid-section { background: var(--gray-bg); padding: 56px 0; }
.content-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }

.col-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.col-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: #CBD5E1;
}

.col-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}

.col-card-title {
  font-size: 14px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.4px;
  margin: 0;
}

.header-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  transition: var(--transition);
}
.header-link:hover { color: #a00c24; text-decoration: underline; }

.col-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.col-card-flex-body {
  justify-content: space-between;
}

/* 1. Başkanın Mesajı Card */
.baskan-flex {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.baskan-img-area {
  flex-shrink: 0;
  width: 105px;
}
.baskan-img {
  width: 105px;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}
.baskan-img-ph {
  width: 105px;
  height: 140px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 38px;
}
.baskan-text-area { flex: 1; }
.baskan-excerpt {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.baskan-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}
.baskan-unvan {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
}
.btn-baskan-red {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--red-gradient);
  color: #fff;
  padding: 11px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  margin-top: auto;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.25);
}
.btn-baskan-red:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 6px 18px rgba(225, 29, 72, 0.4); 
}

/* 2. Son Haberler List */
.news-list { display:flex; flex-direction:column; gap:14px; }
.news-item { display:flex; gap:14px; align-items:center; }
.news-thumb { width:68px; height:50px; object-fit:cover; border-radius:var(--radius-sm); flex-shrink:0; box-shadow: var(--shadow-sm); }
.news-thumb-ph { width:68px; height:50px; background:var(--border-light); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; color:var(--text-muted); font-size:18px; flex-shrink:0; }
.news-info h4 { font-size:13px; font-weight:700; color:var(--navy); line-height:1.35; margin-bottom:3px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.news-info h4 a { color:inherit; text-decoration:none; transition: var(--transition); }
.news-info h4 a:hover { color:var(--red); }
.news-date { font-size:11px; color:var(--text-muted); font-weight:500; }

/* 3. Etkinlik Takvimi List */
.events-list { display:flex; flex-direction:column; gap:14px; }
.event-item { display:flex; gap:14px; align-items:center; }
.event-date-box { width:46px; flex-shrink:0; border-radius:var(--radius-sm); overflow:hidden; border:1px solid var(--border); box-shadow: var(--shadow-sm); }
.event-date-box .month-badge { background:var(--red); color:#fff; font-size:9px; font-weight:800; text-align:center; padding:3px 0; text-transform:uppercase; letter-spacing:.5px; }
.event-date-box .day-number { background:#fff; color:var(--navy); font-size:17px; font-weight:900; text-align:center; padding:4px 0; line-height:1; }
.event-info h4 { font-size:13px; font-weight:700; color:var(--navy); line-height:1.35; margin-bottom:3px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.event-info h4 a { color:inherit; text-decoration:none; transition: var(--transition); }
.event-info h4 a:hover { color:var(--red); }
.event-date-text { font-size:11px; color:var(--text-muted); font-weight:500; }

/* 4. Duyurular List */
.duyuru-list { display:flex; flex-direction:column; gap:14px; }
.duyuru-item { display:flex; gap:14px; align-items:center; }
.duyuru-icon-wrap { width:32px; height:32px; border-radius:50%; background:rgba(225,29,72,0.1); display:flex; align-items:center; justify-content:center; color:var(--red); font-size:15px; flex-shrink:0; }
.duyuru-info h4 { font-size:13px; font-weight:700; color:var(--navy); line-height:1.35; margin-bottom:3px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.duyuru-info h4 a { color:inherit; text-decoration:none; transition: var(--transition); }
.duyuru-info h4 a:hover { color:var(--red); }
.duyuru-date { font-size:11px; color:var(--text-muted); font-weight:500; }

/* Bottom Outline Button */
.btn-col-outline {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 18px;
  transition: var(--transition);
  background: var(--gray-bg);
}
.btn-col-outline:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ── ŞUBELER ── */
.subeler-section {
  padding: 56px 0;
  background: var(--gray-bg);
}
.subeler-wrapper-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.subeler-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  position: relative;
}
.subeler-center-title {
  flex: 1;
  text-align: center;
}
.subeler-center-title h2 {
  font-size: 19px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.5px;
  margin: 0;
  text-transform: uppercase;
}
.subeler-center-title .title-red-bar {
  width: 54px;
  height: 4px;
  background: var(--red-gradient);
  margin: 6px auto 0;
  border-radius: 2px;
}
.btn-all-subeler {
  position: absolute;
  right: 0;
  top: -4px;
  background: #ffffff;
  color: var(--navy);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
}
.btn-all-subeler:hover {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
}

.subeler-slider-box { position: relative; }
.subeler-slider { position: relative; overflow: hidden; padding: 4px; }
.subeler-track { display: flex; gap: 18px; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }

.sube-card {
  flex: 0 0 calc(16.666% - 15px);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 14px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sube-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
  transform: translateY(-4px);
}
.sube-ilce {
  font-size: 13px;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.sube-baslik {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-top: 2px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.sube-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #F1F5F9;
  margin: 0 auto 12px;
  display: block;
  background: #E2E8F0 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='35' r='20' fill='%2394a3b8'/%3E%3Cpath d='M10 90 Q50 55 90 90' fill='%2394a3b8'/%3E%3C/svg%3E") center/cover;
  box-shadow: var(--shadow-sm);
}
.sube-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
  line-height: 1.2;
}
.sube-unvan {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.sube-tel {
  font-size: 11px;
  color: var(--text-main);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 14px;
  margin-top: auto;
}
.btn-sube {
  background: var(--red);
  color: #ffffff !important;
  width: 100%;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(200, 16, 46, 0.2);
}
.btn-sube:hover {
  background: #a00c24;
  box-shadow: 0 6px 16px rgba(200, 16, 46, 0.35);
  transform: translateY(-1px);
}

.sube-prev-btn,
.sube-next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--navy);
  z-index: 10;
  transition: var(--transition);
}
.sube-prev-btn { left: -20px; }
.sube-next-btn { right: -20px; }
.sube-prev-btn:hover,
.sube-next-btn:hover {
  background: var(--red);
  color: #ffffff;
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

/* ── SAYAÇ / İSTATİSTİKLER BARI ── */
.stats-section {
  background: var(--navy-dark);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stats-grid { 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  flex-wrap: wrap; 
  gap: 10px; 
  max-width: 1100px;
  margin: 0 auto;
}
.stat-item {
  flex: 1 1 200px;
  max-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-icon-box {
  font-size: 34px;
  color: var(--gold-light);
  opacity: 0.95;
  flex-shrink: 0;
}
.stat-content { display: flex; flex-direction: column; }
.stat-value { font-size: 24px; font-weight: 900; color: #fff; line-height: 1.1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 3px; font-weight: 500; white-space: nowrap; }

/* ── 5 KARTLI MEDYA & BAĞIŞ KISMI ── */
.media-section { padding: 40px 0 60px; background: #FFFFFF; }
.media-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.mcard {
  position: relative;
  height: 175px;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.mcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.mcard-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.mcard:hover .mcard-img { transform: scale(1.08); }
.mcard-overlay {
  position: relative;
  z-index: 2;
  padding: 18px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0) 100%);
  width: 100%;
}
.mcard-overlay h4 { font-size: 13px; font-weight: 800; color: #fff; margin: 0 0 2px; letter-spacing: 0.4px; }
.mcard-overlay p { font-size: 11px; color: rgba(255,255,255,0.8); margin: 0; font-weight: 500; }

.mcard-bagis {
  background: var(--red-gradient);
  padding: 20px;
  justify-content: space-between;
  box-shadow: 0 8px 25px rgba(225, 29, 72, 0.35);
}
.mcard-bagis-top { display: flex; justify-content: space-between; align-items: flex-start; }
.mcard-bagis-top h4 { font-size: 14px; font-weight: 900; color: #fff; margin: 0 0 4px; }
.mcard-bagis-top p { font-size: 11px; color: rgba(255,255,255,0.9); line-height: 1.35; margin: 0; font-weight: 500; }
.mcard-bagis-icon { font-size: 40px; color: #fff; opacity: 0.95; margin-left: 6px; }
.mcard-bagis-btn {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.mcard-bagis-btn span { font-size: 12px; font-weight: 800; color: var(--navy); }

/* ── CARD GRID (HABERLER & FAALİYETLER) ── */
.cards-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.card { 
  background:#fff; 
  border-radius:var(--radius-lg); 
  overflow:hidden; 
  box-shadow:var(--shadow-sm); 
  transition:var(--transition); 
  border:1px solid var(--border); 
  display: flex;
  flex-direction: column;
}
.card:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); border-color:#CBD5E1; }
.card-img { width:100%; aspect-ratio:16/9; object-fit:cover; display:block; transition: transform 0.5s ease; }
.card:hover .card-img { transform: scale(1.05); }
.card-img-ph { width:100%; aspect-ratio:16/9; background:linear-gradient(135deg,var(--navy) 0%,var(--red) 100%); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.35); font-size:48px; }
.card-body { padding:24px; display:flex; flex-direction:column; flex:1; }
.card-meta { font-size:12px; color:var(--text-muted); margin-bottom:10px; display:flex; gap:16px; font-weight:500; }
.card-meta i { color:var(--red); }
.card-title { font-size:16px; font-weight:800; color:var(--navy); margin-bottom:10px; line-height:1.4; }
.card-title a { color:inherit; text-decoration:none; transition:var(--transition); }
.card-title a:hover { color:var(--red); }
.card-text { font-size:13px; color:var(--text-muted); line-height:1.7; margin-bottom:16px; }
.card-badge { display:inline-block; background:rgba(225,29,72,0.1); color:var(--red); font-size:11px; font-weight:800; padding:4px 10px; border-radius:var(--radius-full); margin-bottom:10px; align-self:flex-start; text-transform:uppercase; letter-spacing:0.5px; }

.btn-devam {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red-gradient);
  color: #FFFFFF !important;
  font-size: 12px;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.28);
  transition: var(--transition);
}
.btn-devam:hover {
  background: linear-gradient(135deg, #BE123C 0%, #9F1239 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.45);
  color: #FFFFFF !important;
}
.btn-devam i {
  transition: transform 0.2s ease;
}
.btn-devam:hover i {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFFFFF;
  color: var(--navy) !important;
  border: 2px solid var(--navy);
  font-size: 13px;
  font-weight: 800;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--navy);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline i {
  transition: transform 0.2s ease;
}
.btn-outline:hover i {
  transform: translateX(-4px);
}

/* ── PAGINATION ── */
.pagination { display:flex; gap:8px; justify-content:center; margin:40px 0; }
.page-btn { padding:9px 16px; border-radius:var(--radius-sm); border:1px solid var(--border); color:var(--text-main); text-decoration:none; font-size:13px; font-weight:700; transition:var(--transition); background:#fff; }
.page-btn:hover,.page-btn.active { background:var(--red-gradient); color:#fff; border-color:var(--red); box-shadow:0 4px 12px rgba(225,29,72,0.3); }

/* ── GALERİ ── */
.gallery-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.gallery-item { aspect-ratio:1; overflow:hidden; border-radius:var(--radius-md); cursor:pointer; position:relative; box-shadow:var(--shadow-sm); }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; display:block; }
.gallery-item:hover img { transform:scale(1.08); }
.gallery-badge { position:absolute; top:12px; left:12px; background:rgba(15,23,42,0.85); color:#fff; font-size:11px; font-weight:800; padding:4px 12px; border-radius:var(--radius-full); letter-spacing:.5px; text-transform:uppercase; backdrop-filter:blur(6px); z-index:2; border:1px solid rgba(255,255,255,0.15); }
.gallery-overlay { position:absolute; inset:0; background:rgba(15,23,42,0.4); display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity .3s; color:#fff; font-size:28px; z-index:3; backdrop-filter:blur(2px); }
.gallery-item:hover .gallery-overlay { opacity:1; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-dark);
  color: #fff;
  padding: 56px 0 0;
  border-top: 4px solid var(--red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.8fr 1.8fr 1.6fr;
  gap: 28px;
  padding-bottom: 48px;
}
.footer-col {
  border-right: 1px solid rgba(255,255,255,0.08);
  padding-right: 24px;
}
.footer-col-last { border-right: none; padding-right: 0; }
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .6px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: #FFFFFF; padding-left: 4px; }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.footer-logo-img { width: 75px; height: 75px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid rgba(255,255,255,0.2); }
.footer-logo-ph { width: 75px; height: 75px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; }
.footer-brand-title { font-size: 12px; font-weight: 900; color: #fff; line-height: 1.3; text-transform: uppercase; letter-spacing: 0.3px; }
.footer-desc { font-size: 12px; color: #94A3B8; line-height: 1.6; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  color: #fff;
  font-size: 13px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}
.footer-social a:hover { background: var(--red); transform: translateY(-2px); }

.footer-contact-item { 
  display: flex; 
  gap: 10px; 
  align-items: flex-start; 
  font-size: 12px; 
  color: #94A3B8; 
  margin-bottom: 12px; 
  text-decoration: none; 
  transition: var(--transition); 
}
.footer-contact-item:hover { 
  color: #FFFFFF; 
  transform: translateX(3px); 
}
.footer-contact-item i { color: var(--gold-light); font-size: 14px; width: 16px; margin-top: 3px; flex-shrink: 0; }
.footer-bulten-text { font-size: 12px; color: #94A3B8; margin-bottom: 14px; line-height: 1.5; }
.ebulten-input {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 12px;
  margin-bottom: 10px;
  outline: none;
  transition: var(--transition);
}
.ebulten-input:focus { border-color: var(--red); background: rgba(255,255,255,0.12); }
.ebulten-btn {
  width: 100%;
  padding: 11px;
  background: var(--red-gradient);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
}
.ebulten-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(225, 29, 72, 0.45); }

/* Alt Kırmızı Bant Footer */
.footer-bottom-red {
  background: var(--red-gradient);
  padding: 16px 0;
  color: #FFFFFF;
  font-size: 12px;
  box-shadow: 0 -4px 20px rgba(225, 29, 72, 0.25);
}
.footer-bottom-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 8px; color: #FFFFFF; }
.footer-copy i { color: #FFFFFF; }
.footer-bottom-nav { display: flex; gap: 12px; align-items: center; font-size: 12px; color: #FFFFFF; }
.footer-bottom-nav a { color: #FFFFFF; text-decoration: none; font-size: 12px; font-weight: 700; transition: var(--transition); }
.footer-bottom-nav a:hover { color: var(--gold-light); text-decoration: underline; }
.footer-bottom-nav span { opacity: 0.6; color: #FFFFFF; }

/* ── MOBILE NAV BACKDROP & DRAWER HEADER ── */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.nav-backdrop.active { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }

.mobile-drawer-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-drawer-title { color: #fff; font-weight: 800; font-size: 14px; display: flex; align-items: center; gap: 8px; letter-spacing: 0.5px; }
.mobile-drawer-title i { color: var(--gold-light); }
.mobile-drawer-close {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.mobile-drawer-close:hover { background: var(--red); }

.mobile-nav-actions {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.btn-bagis-mobile, .btn-uye-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
}
.btn-bagis-mobile { background: var(--red-gradient); color: #fff !important; }
.btn-uye-mobile { background: var(--gold-light); color: var(--navy) !important; }

/* ── FORM CONTROLS & LAYOUT ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--text-main);
  background: #FFFFFF;
  transition: var(--transition);
  outline: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}
.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.15);
  background: #FFFFFF;
}
textarea.form-control {
  min-height: 110px;
  resize: vertical;
}
select.form-control {
  cursor: pointer;
  appearance: auto;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red-gradient);
  color: #FFFFFF !important;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(225, 29, 72, 0.3);
  text-decoration: none;
}
.btn-submit:hover {
  background: linear-gradient(135deg, #BE123C 0%, #9F1239 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(225, 29, 72, 0.45);
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .content-grid { grid-template-columns:repeat(2,1fr); }
  .stats-grid { 
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    gap: 16px; 
  }
  .stat-item { 
    border-right: none; 
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    justify-content: flex-start;
  }
  .subeler-track .sube-card { flex:0 0 calc(33.333% - 14px); }
  .cards-grid { grid-template-columns:repeat(2,1fr); }
  .media-grid-5 { grid-template-columns:repeat(3,1fr); }
  .quick-access .container { grid-template-columns:repeat(3,1fr); }
  .footer-grid { grid-template-columns:repeat(2,1fr); }
  .footer-col { border-right:none; }
  .baskan-hero-layer { right: 2%; height: 80%; }
  .baskan-hero-layer img { max-height: 360px; }
}

@media(max-width:992px) {
  /* TOP BAR MOBİL OPTİMİZASYON */
  .top-bar { padding: 6px 0; font-size: 11px; }
  .top-bar .container { flex-direction: row; justify-content: space-between; align-items: center; gap: 8px; }
  .top-address, .top-map-link { display: none !important; }
  .top-info { display: flex; gap: 10px; align-items: center; }
  .top-right { display: flex; gap: 12px; align-items: center; }

  /* HEADER MOBİL OPTİMİZASYON */
  .site-header { padding: 10px 0; }
  .site-header .container { display: flex; justify-content: space-between; align-items: center; }
  .logo-img { height: 52px; width: 52px; }
  .logo-text h1 { font-size: 13px; line-height: 1.25; }
  .logo-text .slogan { font-size: 9.5px; }
  .header-btns { display: none !important; }

  /* HAMBURGER BUTON */
  .hamburger { 
    display: flex !important; 
    align-items: center; 
    justify-content: center; 
    width: 42px; 
    height: 42px; 
    background: var(--navy); 
    color: #fff; 
    border-radius: var(--radius-sm); 
    font-size: 18px; 
    border: none; 
    cursor: pointer; 
    transition: var(--transition); 
  }
  .hamburger.active { background: var(--red); }

  /* DRAWER MENÜ */
  .mobile-drawer-header { display: flex !important; }
  .mobile-nav-actions { display: flex !important; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    max-width: 88vw;
    height: 100vh;
    background: var(--navy-dark);
    z-index: 99999;
    display: flex !important;
    flex-direction: column !important;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 35px rgba(0,0,0,0.5);
    padding: 0;
  }
  .main-nav.open { right: 0; }
  .main-nav .container { padding: 0; width: 100% !important; display: flex !important; flex-direction: column !important; }
  .nav-list { display: flex !important; flex-direction: column !important; width: 100% !important; }
  .nav-list > li > a { padding: 14px 20px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-list > li > a:hover, .nav-list > li > a.active { background: rgba(225,29,72,0.15); color: #fff; border-left: 4px solid var(--red); }

  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: #06111F; display: none; padding: 6px 0; border-radius: 0; border-top: none; }
  .dropdown.active .dropdown-menu { display: block; }
  .dropdown-menu a { color: #94A3B8; padding-left: 32px; border-bottom: 1px solid rgba(255,255,255,0.04); }
}

@media(max-width:768px) {
  .hero-slider { height: 420px; }
  .baskan-hero-layer { display: none !important; }
  .slide-overlay-content { margin: 0 12px; padding: 16px 16px; }
  .slide-main-title { font-size: 26px; }
  .slide-sub-title { font-size: 13px; margin-bottom: 20px; }
  .slide-buttons-row { flex-wrap: wrap; gap: 8px; }
  .hs-btn { padding: 10px 16px; font-size: 12px; }

  .cards-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .media-grid-5 { grid-template-columns: repeat(2,1fr); }
  
  /* İSTATİSTİKLER MOBİL 2 KOLON KART KUTULARI */
  .stats-section { padding: 24px 0; }
  .stats-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 12px; 
  }
  .stat-item { 
    border-right: none; 
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    justify-content: flex-start;
    gap: 12px;
  }
  .stat-icon-box { font-size: 28px; }
  .stat-value { font-size: 20px; }
  .stat-label { font-size: 11px; white-space: normal; line-height: 1.25; }

  .quick-access .container { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  
  /* FOOTER MOBİL 2 KOLON YAN YANA */
  .footer-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 28px 20px; 
  }
  .footer-col { 
    border-right: none; 
    padding-right: 0; 
  }
  .footer-col-brand,
  .footer-col-last { 
    grid-column: span 2; 
  }

  .page-hero { padding: 40px 0; }
  .page-hero h1 { font-size: 22px; }
  .subeler-track .sube-card { flex: 0 0 calc(50% - 10px); }
  
  /* ŞUBELER MOBİL UYUMU */
  .subeler-section { padding: 36px 0; }
  .subeler-wrapper-card { padding: 20px 14px 24px; }
  .subeler-top-bar { flex-direction: column; align-items: center; gap: 12px; margin-bottom: 20px; }
  .subeler-center-title h2 { font-size: 16px; }
  .btn-all-subeler { position: static; margin-top: 4px; }
  .subeler-track .sube-card { flex: 0 0 calc(50% - 9px); padding: 16px 10px; }
  .sube-photo { width: 72px; height: 72px; margin-bottom: 8px; }
  .sube-ilce { font-size: 12px; }
  .sube-name { font-size: 13px; }
  .sube-prev-btn { left: 0px; width: 34px; height: 34px; font-size: 12px; }
  .sube-next-btn { right: 0px; width: 34px; height: 34px; font-size: 12px; }

  .footer-bottom-flex { flex-direction: column; text-align: center; gap: 10px; }
  .footer-bottom-nav { flex-wrap: wrap; justify-content: center; }
}

@media(max-width:480px) {
  .logo-text h1 { font-size: 11.5px; }
  .logo-text .slogan { font-size: 8.5px; }
  .top-info span:not(:first-child) { display: none; }
  .quick-access .container { grid-template-columns: repeat(2,1fr); }
  .media-grid-5 { grid-template-columns: 1fr; }
  
  .subeler-track .sube-card { flex: 0 0 100%; padding: 18px 14px; }
  .sube-photo { width: 80px; height: 80px; }
  
  .stats-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px; 
  }
  .stat-item {
    padding: 10px 12px;
    gap: 10px;
  }
  .stat-icon-box { font-size: 24px; }
  .stat-value { font-size: 18px; }
  .stat-label { font-size: 10.5px; }

  .footer-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 22px 12px; 
  }
  .footer-col h4 {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .footer-col ul li a {
    font-size: 11.5px;
  }
}

/* ── HİZMET DETAY LAYOUT ── */
.hizmet-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 992px) {
  .hizmet-detail-grid {
    grid-template-columns: 1fr;
  }
}
