/* =========================
   ACCESSIBILITY
   ========================= */

/* Skip to Main Content Link */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--burgundy-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 4px 0;
}

.skip-to-main:focus {
    top: 0;
    outline: 3px solid var(--gold-color);
    outline-offset: 2px;
}

/* Enhanced Focus Styles */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
.btn:focus {
    outline: 3px solid var(--gold-color);
    outline-offset: 2px;
}

/* Remove default outline for mouse users */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
    outline: none;
}

/* Restore outline for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--gold-color);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@@media (prefers-contrast: high) {
    .btn {
        border-width: 2px;
    }
    
    .card {
        border-width: 2px;
    }
}

/* Reduced Motion Support */
@@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Screen Reader Only Text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

/* =========================
   BACK TO TOP BUTTON
   ========================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--burgundy-color) 0%, #8b2e35 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(110, 32, 37, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #8b2e35 0%, var(--burgundy-color) 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(110, 32, 37, 0.6);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top i {
    animation: bounce-up 2s infinite;
}

@@keyframes bounce-up {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@@media (max-width: 767.98px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
}

@@media (max-width: 575.98px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* =========================
   BREADCRUMB NAVIGATION
   ========================= */
.breadcrumb-wrapper {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    border-bottom: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
}

.breadcrumb-item {
    font-size: 0.9rem;
    font-weight: 500;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item a i {
    font-size: 0.95rem;
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "\f285";
    font-family: "bootstrap-icons";
    color: #adb5bd;
    padding-right: 0.5rem;
}

@@media (max-width: 575.98px) {
    .breadcrumb-wrapper {
        padding: 0.5rem 0 !important;
    }
    
    .breadcrumb-item {
        font-size: 0.8rem;
    }
    
    .breadcrumb-item a i {
        font-size: 0.85rem;
    }
}

/* =========================
   ROOT VARIABLES & COLORS
   ========================= */
:root {
  --primary-color: #6E2025;
  --secondary-color: #DDA027;
  --success-color: #10b981;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;
  --info-color: #06b6d4;
  --dark-color: #1e293b;
  --light-color: #f8fafc;
  --accent-color: #DDA027;
  --gold-color: #DDA027;
  --burgundy-color: #6E2025;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .fw-bold {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

/* =========================
   NAVBAR STYLES
   ========================= */
.navbar {
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 1rem;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--burgundy-color) !important;
}

.navbar-logo {
  height: 60px;
  width: auto;
}

.brand-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1.3;
  color: var(--burgundy-color);
}

.brand-text small {
  font-size: 0.7rem;
  font-weight: 700;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 500;
  color: #475569 !important;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
}

.dropdown-item {
  padding: 0.7rem 1.5rem;
  transition: all 0.3s ease;
}

.dropdown-item i {
  margin-right: 8px;
  width: 20px;
  text-align: center;
}

.dropdown-item:hover {
  background-color: #f1f5f9;
  color: var(--primary-color);
  padding-left: 2rem;
}

.uye-ol-btn {
  border-radius: 25px;
  padding: 0.5rem 1.5rem !important;
  font-weight: 600;
  border: 2px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  background-color: transparent !important;
  transition: all 0.3s ease;
}

.uye-ol-btn:hover {
  transform: translateY(-2px);
  background-color: var(--primary-color) !important;
  color: white !important;
  box-shadow: 0 4px 10px rgba(110, 32, 37, 0.3);
}

.bagis-btn {
  border-radius: 25px;
  padding: 0.5rem 1.5rem !important;
  font-weight: 600;
  background-color: var(--gold-color) !important;
  border-color: var(--gold-color) !important;
  color: white !important;
  box-shadow: 0 4px 10px rgba(221, 160, 39, 0.3);
  transition: all 0.3s ease;
}

.bagis-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(221, 160, 39, 0.5);
  background-color: #c48e1f !important;
}

/* =========================
   HERO SECTION
   ========================= */
.hero-modern {
  background: #f8f9fa;
  padding: 60px 0 40px;
  min-height: auto;
}

.min-vh-75 {
  min-height: auto;
}

.hero-title {
  line-height: 1.2;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -1px;
}

.letter-spacing-2 {
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-cards {
  position: relative;
  height: 350px;
}

.floating-card {
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.card-1 {
  top: 0;
  right: 20%;
  animation-delay: 0s;
}

.card-2 {
  top: 100px;
  right: 50%;
  animation-delay: 2s;
}

.card-3 {
  top: 200px;
  right: 10%;
  animation-delay: 4s;
}

.culture-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  text-align: center;
  min-width: 160px;
  transition: all 0.4s ease;
}

.culture-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.culture-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.culture-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.card-header-custom {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: white;
  font-size: 1.5rem;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-section {
  background: linear-gradient(135deg, var(--burgundy-color) 0%, var(--gold-color) 100%);
  border-radius: 0 0 50px 50px;
  margin-bottom: 3rem;
}

.hero-section h1 {
  color: var(--dark-color);
}

.hero-section p {
  opacity: 0.9;
}

/* =========================
   UNIVERSAL MOBILE RESPONSIVE
   ========================= */
@media (max-width: 991.98px) {
  /* Hero Modern - Tablet ve Mobil Ortak */
  .hero-modern {
    padding: clamp(30px, 5vw, 50px) 0;
  }
  
  .hero-modern .row {
    display: flex;
    flex-direction: column;
  }
  
  .hero-modern .col-lg-6:first-child {
    order: 1;
    text-align: center;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    width: 100%;
    max-width: 100%;
  }
  
  .hero-modern .col-lg-6:last-child {
    order: 2;
    width: 100%;
    max-width: 100%;
  }
  
  /* Hero Title - Responsive Text */
  .hero-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem) !important;
    line-height: 1.2 !important;
    margin-bottom: clamp(1rem, 3vw, 1.5rem) !important;
  }
  
  .letter-spacing-2 {
    font-size: clamp(0.7rem, 2vw, 0.85rem);
    letter-spacing: 1px;
  }
  
  /* Buttons - Responsive */
  .hero-modern .d-flex.gap-3 {
    justify-content: center;
    margin-top: clamp(1rem, 3vw, 1.5rem) !important;
    gap: clamp(0.5rem, 2vw, 0.75rem) !important;
    flex-wrap: nowrap;
  }
  
  .hero-modern .btn-lg {
    padding: clamp(0.4rem, 1.5vw, 0.6rem) clamp(0.8rem, 3vw, 1.5rem) !important;
    font-size: clamp(0.75rem, 2vw, 0.9rem) !important;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  /* Hero Cards - Flex Layout */
  .hero-cards {
    height: auto !important;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(0.5rem, 2vw, 1rem);
    flex-wrap: wrap;
    padding: clamp(0.75rem, 2vw, 1.25rem) 0;
    max-width: 100%;
  }
  
  .floating-card {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    animation: none !important;
    transform: none !important;
    flex: 0 0 auto;
  }
  
  .culture-card {
    min-width: auto !important;
    width: clamp(85px, 28vw, 120px);
    max-width: 120px;
    padding: clamp(0.6rem, 2vw, 1rem) clamp(0.3rem, 1vw, 0.6rem);
    box-sizing: border-box;
  }
  
  .culture-card h3 {
    font-size: clamp(0.75rem, 2.5vw, 1rem) !important;
    margin-top: clamp(0.4rem, 1vw, 0.6rem) !important;
    margin-bottom: clamp(0.3rem, 1vw, 0.5rem) !important;
    word-wrap: break-word;
  }
  
  .culture-card p {
    font-size: clamp(0.6rem, 1.8vw, 0.8rem) !important;
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
  }
  
  .card-header-custom {
    width: clamp(35px, 10vw, 50px) !important;
    height: clamp(35px, 10vw, 50px) !important;
    font-size: clamp(1rem, 3vw, 1.4rem) !important;
    border-radius: clamp(8px, 2vw, 12px) !important;
  }
  
  /* Typography General */
  .display-2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem) !important;
  }
  
  .display-5 {
    font-size: clamp(1.5rem, 4vw, 2rem) !important;
  }
  
  .lead {
    font-size: clamp(1rem, 2.5vw, 1.25rem) !important;
  }
  
  /* Spacing */
  section.py-5 {
    padding-top: clamp(2rem, 5vw, 3rem) !important;
    padding-bottom: clamp(2rem, 5vw, 3rem) !important;
  }
  
  .g-4 {
    gap: clamp(1rem, 3vw, 1.5rem) !important;
  }
  
  .g-5 {
    gap: clamp(1.5rem, 4vw, 3rem) !important;
  }
}

/* Extra Small Devices - Fine Tuning */
@media (max-width: 374.98px) {
  .hero-title {
    font-size: 1.35rem !important;
  }
  
  .culture-card {
    width: 80px;
    max-width: 80px;
  }
  
  .hero-modern .btn-lg {
    font-size: 0.7rem !important;
    padding: 0.35rem 0.7rem !important;
  }
  
  .card-header-custom {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.95rem !important;
  }
}

/* Landscape Mode */
@media (max-width: 991.98px) and (orientation: landscape) {
  .hero-modern {
    padding: 25px 0;
  }
  
  .hero-title {
    font-size: 1.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .hero-modern .d-flex.gap-3 {
    margin-top: 1rem !important;
  }
  
  .hero-cards {
    padding: 0.5rem 0;
  }
}

/* =========================
   CARDS & CONTENT BOXES
   ========================= */
.content-box {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Team Cards */
.team-card .team-avatar i {
  font-size: 5rem;
  color: var(--primary-color);
}

.team-card .card-title {
  color: var(--dark-color);
}

/* Etkinlik Cards */
.etkinlik-card .etkinlik-img {
  height: 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
}

.etkinlik-tarih {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

/* Burs Cards */
.burs-card .burs-icon i {
  font-size: 3rem;
}

/* Esnaf Cards */
.esnaf-card .esnaf-icon i {
  font-size: 3rem;
  color: var(--primary-color);
}

/* Eğitim Cards */
.egitim-card .card-header {
  padding: 1rem;
}

/* Proje Cards */
.proje-card {
  border-left: 4px solid var(--success-color);
}

/* =========================
   TIMELINE
   ========================= */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-color);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 30px;
}

.timeline-marker {
  position: absolute;
  left: 9px;
  top: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 4px solid white;
  box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-content {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.timeline-year {
  color: var(--primary-color);
  font-weight: bold;
}

/* =========================
   DUYURU STYLES
   ========================= */
.duyuru-item .card {
  border-left: 4px solid var(--info-color);
}

.duyuru-tarih {
  font-size: 0.9rem;
}

/* =========================
   GALERI
   ========================= */
.galeri-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.galeri-img {
  height: 250px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.galeri-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.galeri-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.galeri-item:hover .galeri-overlay {
  transform: translateY(0);
}

.galeri-item:hover .galeri-img img {
  transform: scale(1.1);
}

/* =========================
   İLETİŞİM
   ========================= */
.iletisim-item {
  display: flex;
  gap: 1rem;
}

.iletisim-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.social-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--dark-color);
  transform: translateY(-3px);
  color: white;
}

.map-placeholder {
  height: 400px;
  background: #f1f5f9;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
}

.map-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
}

/* =========================
   BAĞIŞ SECTION
   ========================= */
.bg-gradient {
  background: linear-gradient(135deg, var(--burgundy-color) 0%, var(--gold-color) 100%) !important;
}

.bagis-card {
  transition: all 0.3s ease;
}

.bagis-card:hover {
  transform: translateY(-10px);
}

.bagis-icon {
  font-size: 3rem;
  color: var(--secondary-color);
}

.feature-icon i {
  font-size: 2.5rem;
  color: var(--primary-color);
}

/* =========================
   FOOTER
   ========================= */
.footer {
  margin-top: auto;
}

.footer a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: white !important;
  padding-left: 5px;
}

.social-links a {
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  color: var(--primary-color) !important;
}

/* =========================
   UTILITIES
   ========================= */
.mission-list li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
}

.mission-list i {
  margin-right: 10px;
}

.btn {
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--burgundy-color);
  border-color: var(--burgundy-color);
}

.btn-primary:hover {
  background-color: #551a1e;
  border-color: #551a1e;
}

.btn-outline-primary {
  color: var(--burgundy-color);
  border-color: var(--burgundy-color);
}

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

.text-primary {
  color: var(--burgundy-color) !important;
}

.bg-primary {
  background-color: var(--burgundy-color) !important;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 991px) {
  .navbar-collapse {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  
  .bagis-btn {
    margin-top: 1rem;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .timeline::before {
    left: 10px;
  }
  
  .timeline-item {
    padding-left: 50px;
  }
}

/* =========================
   ANIMATIONS
   ========================= */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-box, .card {
  animation: fadeIn 0.6s ease-out;
}

/* Form Focus States */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--primary-color);
}

.form-control:focus {
  border-color: var(--primary-color);
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
/* =========================
   DERNEGIMIZ PAGE - CORPORATE STYLES
   ========================= */
.dernegimiz-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  margin-bottom: 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: white;
}

.stat-icon.bg-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #8b2e35 100%);
}

.stat-icon.bg-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.stat-icon.bg-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.stat-icon.bg-info {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.stat-label {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

.corporate-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.corporate-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.card-icon-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.corporate-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.corporate-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #e2e8f0;
}

.corporate-list li:last-child {
  border-bottom: none;
}

.corporate-list i {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.vision-goals {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.goal-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.goal-item:hover {
  background: #f1f5f9;
  transform: translateX(5px);
}

.goal-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--success-color);
  flex-shrink: 0;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, #8b2e35 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.service-card a i {
  transition: transform 0.3s ease;
}

.service-card:hover a i {
  transform: translateX(5px);
}

.cta-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, #8b2e35 100%);
  padding: 60px;
  border-radius: 20px;
  color: white;
}

.cta-banner h2 {
  color: white;
}

.cta-banner .btn-light {
  background: white;
  color: var(--primary-color);
  font-weight: 600;
  padding: 12px 30px;
  border: none;
}

.cta-banner .btn-light:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .dernegimiz-hero {
    padding: 60px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .corporate-card {
    padding: 30px;
  }

  .cta-banner {
    padding: 40px;
    text-align: center;
  }

  .cta-banner .col-lg-4 {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .dernegimiz-hero {
    padding: 40px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 25px;
  }

  .corporate-card {
    padding: 25px;
  }

  .card-icon-header {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner {
    padding: 30px 20px;
  }

  .service-card {
    padding: 30px 20px;
  }
}

/* =========================
   EGITIMLER PAGE - ZAZAKI GAMES
   ========================= */
.egitimler-page {
    background: #fff;
}

.egitimler-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.egitimler-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
}

.egitimler-header .subtitle {
    font-size: 1.2rem;
    color: #6c757d;
}

.games-section {
    padding: 60px 0;
}

.game-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.game-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.game-image-placeholder {
    width: 100%;
    height: 280px;
    border-radius: 0;
}

.game-content {
    padding: 30px;
}

.game-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
}

.game-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.game-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #8b2e35 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.game-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(169, 50, 62, 0.4);
    color: white;
}

.game-btn i {
    margin-right: 8px;
}

.info-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid #0284c7;
    padding: 30px;
    border-radius: 12px;
    margin: 60px 0;
}

.info-box h4 {
    color: #0c4a6e;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-box p {
    color: #475569;
    margin: 0;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .egitimler-header h1 {
        font-size: 2rem;
    }
    
    .game-image {
        height: 200px;
    }
    
    .game-content {
        padding: 20px;
    }
}

/* =========================
   DUYURULAR PAGE - CARD GRID
   ========================= */
.duyurular-page {
    background: #fff;
}

.duyurular-header {
    padding: 40px 0 20px;
    background: #f8f9fa;
}

.duyurular-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.duyurular-header .breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
}

.duyurular-header .breadcrumb-item.active {
    color: #495057;
}

.duyurular-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin: 10px 0 0 0;
}

.content-section {
    padding: 60px 0;
}

/* Duyuru Cards */
.duyuru-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.duyuru-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.duyuru-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.duyuru-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.duyuru-card:hover .duyuru-card-image img {
    transform: scale(1.05);
}

.duyuru-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.duyuru-card-badge.badge-danger {
    background: #dc3545;
}

.duyuru-card-badge.badge-success {
    background: #28a745;
}

.duyuru-card-badge.badge-info {
    background: #17a2b8;
}

.duyuru-card-badge.badge-warning {
    background: #ffc107;
    color: #212529;
}

.duyuru-card-badge.badge-primary {
    background: var(--primary-color);
}

.duyuru-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.duyuru-card-date {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.duyuru-card-date i {
    margin-right: 5px;
}

.duyuru-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
    line-height: 1.3;
}

.duyuru-card-excerpt {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.duyuru-card-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.duyuru-card:hover .read-more i {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* Modal Styles */
.modal-meta {
    color: #6c757d;
    font-size: 0.9rem;
}

.modal-meta i {
    margin-right: 5px;
}

.modal-body p {
    line-height: 1.8;
    color: #495057;
}

.modal-title {
    font-weight: 700;
    color: #212529;
}

@media (max-width: 768px) {
    .duyurular-header h1 {
        font-size: 2rem;
    }
    
    .duyuru-card-image {
        height: 180px;
    }
    
    .duyuru-card-body {
        padding: 20px;
    }
    
    .duyuru-card-title {
        font-size: 1.1rem;
    }
}



/* =========================
   ETKINLIKLER PAGE
   ========================= */
.etkinlikler-page {
    background: #fff;
}

.etkinlikler-header {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #c9a961 0%, #b89555 100%);
    text-align: center;
}

.etkinlikler-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.content-section {
    padding: 60px 0;
}

/* Etkinlik Cards */
.etkinlik-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.etkinlik-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.etkinlik-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.etkinlik-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.etkinlik-card:hover .etkinlik-image img {
    transform: scale(1.05);
}

.etkinlik-content {
    padding: 20px;
}

.etkinlik-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 12px;
    line-height: 1.3;
}

.etkinlik-date {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.etkinlik-date i {
    margin-right: 5px;
}

.etkinlik-excerpt {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .sidebar-section {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .etkinlikler-header h1 {
        font-size: 2rem;
    }
    
    .etkinlik-image {
        height: 180px;
    }
    
    .etkinlik-content {
        padding: 15px;
    }
}

/* =========================
   PROJELER PAGE
   ========================= */
.projeler-page {
    background: #fff;
}

.projeler-header {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #1a4d4d 0%, #0d3838 100%);
}

.projeler-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.projeler-header .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.projeler-header .breadcrumb-item a:hover {
    color: white;
}

.projeler-header .breadcrumb-item.active {
    color: rgba(255,255,255,0.9);
}

.projeler-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}

.projeler-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin: 15px 0 0 0;
}

.content-section {
    padding: 60px 0;
}

/* Proje Category Cards */
.proje-category-card {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.proje-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.proje-category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.proje-category-card:hover .proje-category-image {
    transform: scale(1.1);
}

.proje-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.proje-category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    z-index: 2;
}

.proje-category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Proje Details Section */
.proje-details-section {
    padding-top: 40px;
    border-top: 2px solid #e9ecef;
}

.info-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.proje-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.proje-item-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
}

.proje-item-text {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.proje-progress .progress {
    height: 10px;
    border-radius: 5px;
}

.proje-cta {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.proje-cta h4 {
    color: #212529;
    font-weight: 700;
}

@media (max-width: 991px) {
    .proje-category-card {
        height: 350px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .projeler-header h1 {
        font-size: 2rem;
    }
    
    .proje-category-card {
        height: 300px;
    }
    
    .proje-category-title {
        font-size: 1.4rem;
    }
    
    .info-card {
        padding: 25px;
    }
    
    .proje-cta {
        padding: 25px;
    }
}

/* =========================
   PROJE DETAY PAGE
   ========================= */
.proje-detay-page {
    background: #fff;
}

.proje-hero {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #000;
}

.proje-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proje-content-section {
    padding: 60px 0;
}

.proje-detay-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 30px;
}

.proje-detay-content {
    color: #495057;
    line-height: 1.8;
    font-size: 1rem;
}

.proje-detay-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
}

.proje-detay-content p {
    text-align: justify;
    margin-bottom: 20px;
}

/* Sidebar */
.proje-info-sidebar {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    position: sticky;
    top: 20px;
}

.proje-info-item {
    padding: 20px 0;
    border-bottom: 1px solid #dee2e6;
}

.proje-info-item:first-child {
    padding-top: 0;
}

.proje-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.proje-info-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.proje-info-value {
    font-size: 1rem;
    color: #212529;
    font-weight: 500;
    margin: 0;
}

.proje-actions {
    padding-top: 20px;
    border-top: 2px solid #dee2e6;
}

@media (max-width: 991px) {
    .proje-info-sidebar {
        margin-top: 40px;
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .proje-hero {
        height: 300px;
    }
    
    .proje-detay-title {
        font-size: 2rem;
    }
    
    .proje-content-section {
        padding: 40px 0;
    }
    
    .proje-info-sidebar {
        padding: 20px;
    }
}

/* =========================
   SIDEBAR SECTION - Recent Duyurular
   ========================= */
.sidebar-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--gold-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recent-duyuru-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-duyuru-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
}

.recent-duyuru-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-duyuru-item:hover {
    transform: translateX(5px);
}

.recent-duyuru-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-duyuru-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-duyuru-content {
    flex: 1;
}

.recent-duyuru-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-duyuru-meta {
    font-size: 0.8rem;
    color: #6c757d;
}

.recent-duyuru-meta i {
    margin-right: 4px;
}

/* =========================
   COMPREHENSIVE RESPONSIVE DESIGN
   ========================= */

/* Tablet Devices (768px - 991px) */
@@media (max-width: 991.98px) and (min-width: 768px) {
    /* Container Adjustments */
    .container {
        max-width: 720px;
    }
    
    /* Typography Scaling */
    h1 {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }
    
    h2 {
        font-size: clamp(1.75rem, 3.5vw, 2rem);
    }
    
    h3 {
        font-size: clamp(1.5rem, 3vw, 1.75rem);
    }
    
    /* Padding & Spacing */
    section.py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    /* Cards Grid */
    .row.g-4 {
        gap: 1.25rem !important;
    }
    
    /* Navbar */
    .navbar-brand {
        font-size: 0.95rem;
    }
    
    .navbar-logo {
        height: 50px;
    }
    
    /* Hero Sections */
    .hero-section {
        padding: 50px 0 !important;
    }
    
    /* Buttons */
    .btn-lg {
        padding: 0.6rem 1.25rem;
        font-size: 1rem;
    }
}

/* Mobile Devices (576px - 767px) */
@@media (max-width: 767.98px) and (min-width: 576px) {
    /* Container */
    .container {
        max-width: 540px;
    }
    
    /* Typography */
    h1, .display-4 {
        font-size: clamp(1.75rem, 5vw, 2rem);
    }
    
    h2, .display-5 {
        font-size: clamp(1.5rem, 4vw, 1.75rem);
    }
    
    h3 {
        font-size: 1.35rem;
    }
    
    h4 {
        font-size: 1.2rem;
    }
    
    /* Spacing */
    section.py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    .mt-5 {
        margin-top: 2rem !important;
    }
    
    /* Cards */
    .card-body {
        padding: 1.25rem;
    }
    
    /* Forms */
    .form-control, .form-select {
        font-size: 1rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 0.55rem 1.1rem;
        font-size: 0.95rem;
    }
}

/* Extra Small Devices (< 576px) */
@@media (max-width: 575.98px) {
    /* Container */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Typography */
    h1, .display-4, .display-2 {
        font-size: clamp(1.5rem, 6vw, 1.85rem);
        line-height: 1.2;
    }
    
    h2, .display-5 {
        font-size: clamp(1.35rem, 5vw, 1.6rem);
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    h4 {
        font-size: 1.1rem;
    }
    
    h5 {
        font-size: 1rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    /* Spacing */
    section.py-5, .content-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .mb-5 {
        margin-bottom: 1.5rem !important;
    }
    
    .mt-5 {
        margin-top: 1.5rem !important;
    }
    
    .mb-4 {
        margin-bottom: 1.25rem !important;
    }
    
    .mt-4 {
        margin-top: 1.25rem !important;
    }
    
    .g-4, .g-5 {
        gap: 1rem !important;
    }
    
    /* Cards */
    .card {
        margin-bottom: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    /* Buttons - Full Width on Mobile */
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 0.75rem !important;
    }
    
    .d-flex.gap-3 .btn {
        width: 100%;
    }
    
    /* Navbar */
    .navbar-brand {
        font-size: 0.85rem;
    }
    
    .navbar-logo {
        height: 45px;
    }
    
    .brand-text {
        font-size: 0.8rem;
    }
    
    .brand-text small {
        font-size: 0.65rem;
    }
    
    /* Hero & Header Sections */
    .hero-section {
        padding: 35px 0 !important;
        border-radius: 0 0 25px 25px;
    }
    
    .egitimler-header,
    .duyurular-header,
    .etkinlikler-header,
    .projeler-header {
        padding: 40px 0 25px !important;
    }
    
    /* Image Heights */
    .galeri-img {
        height: 200px !important;
    }
    
    .game-image {
        height: 180px !important;
    }
    
    /* Forms */
    .form-control, .form-select, textarea.form-control {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Tables */
    table {
        font-size: 0.875rem;
    }
    
    /* Breadcrumb */
    .breadcrumb {
        font-size: 0.85rem;
    }
    
    /* Footer */
    .footer {
        font-size: 0.9rem;
    }
    
    .footer .social-links a {
        font-size: 1.25rem;
    }
}

/* Galeri Page Responsive */
@@media (max-width: 767.98px) {
    .galeri-section .hero-section {
        padding: 40px 0 30px;
    }
    
    .galeri-section .hero-section h1 {
        font-size: 2rem;
    }
    
    .galeri-img {
        height: 200px;
    }
    
    .nav-pills {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .nav-pills .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Bağış Page Responsive */
@@media (max-width: 767.98px) {
    .bagis-section .hero-section {
        padding: 40px 0 30px;
    }
    
    .bagis-section .hero-section h1 {
        font-size: 2rem;
    }
    
    .bagis-card {
        margin-bottom: 1.5rem;
    }
    
    .bagis-card .card-body {
        padding: 1.5rem;
    }
    
    .bagis-icon {
        font-size: 2.5rem;
    }
    
    .bank-info {
        font-size: 0.9rem;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
}

/* İletişim Page Responsive */
@@media (max-width: 767.98px) {
    .iletisim-section .hero-section {
        padding: 40px 0 30px;
    }
    
    .iletisim-section .hero-section h1 {
        font-size: 2rem;
    }
    
    .iletisim-item {
        margin-bottom: 1.5rem;
    }
    
    .iletisim-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .map-placeholder i {
        font-size: 3rem;
    }
}

/* Yönetim Kurulu, Burslar, Esnaf Pages Responsive */
@@media (max-width: 767.98px) {
    .yonetim-kurulu-section .hero-section,
    .burslar-section .hero-section,
    .esnaf-section .hero-section {
        padding: 40px 0 30px;
    }
    
    .yonetim-kurulu-section .hero-section h1,
    .burslar-section .hero-section h1,
    .esnaf-section .hero-section h1 {
        font-size: 2rem;
    }
    
    .team-card .team-avatar i,
    .burs-icon i,
    .esnaf-icon i {
        font-size: 3.5rem;
    }
    
    .team-card .card-body,
    .burs-card .card-body,
    .esnaf-card .card-body {
        padding: 1.25rem;
    }
}

/* Ana Sayfa CTA Section Responsive */
@@media (max-width: 767.98px) {
    section.bg-primary.text-white {
        padding: 2.5rem 0 !important;
    }
    
    section.bg-primary .col-lg-4 {
        margin-top: 1.5rem;
    }
    
    section.bg-primary .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    section.bg-primary .btn:last-child {
        margin-bottom: 0;
    }
}

/* About Image Container Responsive */
@@media (max-width: 991.98px) {
    .about-image-container img {
        min-height: 300px !important;
    }
}

@@media (max-width: 767.98px) {
    .about-image-container img {
        min-height: 250px !important;
    }
}

/* Sticky Sidebar Disable on Mobile */
@@media (max-width: 991.98px) {
    .proje-info-sidebar,
    .sidebar-section {
        position: relative !important;
        top: 0 !important;
    }
}

/* Text Alignment on Mobile */
@@media (max-width: 767.98px) {
    .text-lg-end {
        text-align: center !important;
    }
    
    .text-md-end {
        text-align: center !important;
    }
}

/* Progress Bars on Mobile */
@@media (max-width: 575.98px) {
    .proje-progress .progress {
        height: 8px;
    }
    
    .progress-bar {
        font-size: 0.75rem;
    }
}

/* Grid Adjustments for Very Small Screens */
@@media (max-width: 374.98px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    h1, .display-4 {
        font-size: 1.4rem;
    }
    
    .card-body {
        padding: 0.85rem;
    }
    
    .btn {
        font-size: 0.85rem;
        padding: 0.45rem 0.85rem;
    }
    
    .navbar-logo {
        height: 40px;
    }
}
