/* =====================================================
   ŞENGÜL KÖYÜ DERNEĞİ - Modern Tasarım v2
   ===================================================== */

:root {
  --primary: #0f4d2e;
  --primary-dark: #083820;
  --primary-light: #1e6b40;
  --accent: #c9a14c;
  --accent-dark: #a78338;
  --accent-light: #e8c878;
  --cream: #faf7f0;
  --beige: #f5efe0;
  --dark: #1a1f1c;
  --text: #3a3f3c;
  --text-light: #6b7470;
  --border: #e8e4d9;
  --shadow-sm: 0 2px 8px rgba(15, 77, 46, .06);
  --shadow-md: 0 8px 30px rgba(15, 77, 46, .08);
  --shadow-lg: 0 20px 60px rgba(15, 77, 46, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
  color: var(--text);
  margin: 0;
  padding: 0;
  background: #fff;
  line-height: 1.7;
  font-size: 15px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--dark);
  font-weight: 700;
  letter-spacing: -0.01em;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--accent-dark); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1180px; }

/* =====================================================
   TOP BAR
   ===================================================== */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  padding: 10px 0;
  letter-spacing: .3px;
}
.top-info span { margin-right: 22px; }
.top-info i { margin-right: 6px; color: var(--accent-light); width: 14px; }
.top-social a {
  color: rgba(255,255,255,.7);
  margin-left: 12px;
  font-size: 15px;
  transition: color .2s, transform .2s;
  display: inline-block;
}
.top-social a:hover { color: var(--accent-light); transform: translateY(-2px); }

/* =====================================================
   NAV
   ===================================================== */
.main-nav {
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}
.navbar-brand .brand-logo { max-height: 56px; }
.brand-text-block { display: flex; align-items: center; gap: 14px; }
.brand-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--accent-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 16px rgba(15, 77, 46, .25);
}
.brand-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 21px;
  color: var(--primary-dark);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.main-nav .nav-link {
  color: var(--text);
  font-weight: 500;
  font-size: 14.5px;
  padding: 10px 18px !important;
  border-radius: 50px;
  margin: 0 3px;
  transition: all .25s ease;
  position: relative;
}
.main-nav .nav-link:hover {
  color: var(--primary);
  background: var(--cream);
}
.main-nav .nav-link.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(15, 77, 46, .25);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 620px;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 56, 32, .92) 0%, rgba(15, 77, 46, .70) 50%, rgba(15, 77, 46, .50) 100%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: .8;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
  padding: 60px 0;
  animation: fadeInUp .9s ease both;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(201, 161, 76, .18);
  color: var(--accent-light);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  border: 1px solid rgba(232, 200, 120, .25);
}
.hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero p {
  font-size: 18px;
  margin-bottom: 36px;
  color: rgba(255,255,255,.9);
  max-width: 580px;
  line-height: 1.7;
}

/* CAROUSEL CONTROLS */
.carousel-control-prev, .carousel-control-next {
  width: 60px;
  opacity: .6;
}
.carousel-control-prev:hover, .carousel-control-next:hover { opacity: 1; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .3px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(201, 161, 76, .35);
}
.btn-accent:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(201, 161, 76, .45);
}
.btn-outline-light {
  border-color: rgba(255,255,255,.4);
  color: #fff;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--primary-dark);
  border-color: #fff;
}
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* =====================================================
   PAGE BANNER
   ===================================================== */
.page-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  padding: 90px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,32L80,37.3C160,43,320,53,480,53.3C640,53,800,43,960,32C1120,21,1280,11,1360,5.3L1440,0L1440,60L0,60Z'/%3E%3C/svg%3E") no-repeat;
  background-size: cover;
}
.page-banner h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
  position: relative; z-index: 2;
}
.page-banner nav {
  position: relative; z-index: 2;
  font-size: 14.5px;
  color: rgba(255,255,255,.7);
}
.page-banner nav a { color: var(--accent-light); }
.page-banner nav a:hover { color: #fff; }
.page-banner nav i { font-size: 10px; margin: 0 10px; opacity: .6; }
.page-banner nav span { color: #fff; }

/* =====================================================
   SECTIONS
   ===================================================== */
.site-main { min-height: 400px; }
.section { padding: 90px 0; position: relative; }
.section-light { background: var(--cream); }
.section-cream { background: var(--beige); }
.section-dark { background: var(--primary-dark); color: rgba(255,255,255,.9); }

.section-title { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title p {
  color: var(--text-light);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* =====================================================
   HAKKIMIZDA
   ===================================================== */
.hakkimizda-img-wrap {
  position: relative;
  padding: 20px;
}
.hakkimizda-img-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 70%; height: 70%;
  background: var(--accent);
  border-radius: 16px;
  z-index: 0;
  opacity: .15;
}
.hakkimizda-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 60%; height: 60%;
  border: 2px solid var(--accent);
  border-radius: 16px;
  z-index: 0;
}
.hakkimizda-img {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  width: 100%;
}
.hakkimizda-content h2 {
  font-size: 38px;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.2;
}
.hakkimizda-content .lead-text {
  color: var(--text);
  font-size: 16.5px;
  line-height: 1.8;
  margin-bottom: 28px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text);
}
.feature-list i {
  color: var(--accent);
  font-size: 18px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* =====================================================
   STATS
   ===================================================== */
.stats-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M30 30c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10z'/%3E%3C/g%3E%3C/svg%3E");
}
.stat-item {
  text-align: center;
  position: relative; z-index: 2;
}
.stat-item .icon {
  width: 70px; height: 70px;
  background: rgba(201, 161, 76, .18);
  border: 1px solid rgba(232, 200, 120, .3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--accent-light);
  font-size: 26px;
}
.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item .label {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =====================================================
   FEATURES (Neden Biz)
   ===================================================== */
.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 38px 28px;
  height: 100%;
  text-align: center;
  border: 1px solid var(--border);
  transition: all .35s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.feature-card .icon-wrap {
  width: 80px; height: 80px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--cream), var(--beige));
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 32px;
  transition: all .35s ease;
}
.feature-card:hover .icon-wrap {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--accent-light);
  transform: rotate(-8deg);
}
.feature-card h4 {
  font-size: 19px;
  color: var(--dark);
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--text-light);
  font-size: 14.5px;
  margin: 0;
}

/* =====================================================
   HABER CARD
   ===================================================== */
.haber-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  height: 100%;
  display: flex; flex-direction: column;
  border: 1px solid var(--border);
}
.haber-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.haber-card .card-img {
  height: 230px;
  background: #ddd;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.haber-card .card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.4));
  opacity: 0;
  transition: opacity .35s;
}
.haber-card:hover .card-img::after { opacity: 1; }
.haber-card .card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.haber-card .card-date {
  color: var(--accent-dark);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.haber-card .card-date i { margin-right: 6px; color: var(--accent); }
.haber-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dark);
  line-height: 1.35;
}
.haber-card h3 a { color: inherit; }
.haber-card h3 a:hover { color: var(--primary); }
.haber-card p {
  color: var(--text-light);
  font-size: 14.5px;
  flex: 1;
  line-height: 1.7;
}
.haber-card .btn-read {
  align-self: flex-start;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  margin-top: 14px;
  letter-spacing: .3px;
}
.haber-card .btn-read:hover { color: var(--accent-dark); }
.haber-card .btn-read i {
  margin-left: 6px;
  transition: transform .25s;
  font-size: 11px;
}
.haber-card .btn-read:hover i { transform: translateX(6px); }

/* =====================================================
   GALERI
   ===================================================== */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}
.galeri-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .35s;
}
.galeri-item:hover { box-shadow: var(--shadow-lg); }
.galeri-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}
.galeri-item:hover img { transform: scale(1.1); }
.galeri-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 56, 32, .85));
  opacity: 0;
  transition: opacity .35s;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: #fff;
  font-weight: 500;
}
.galeri-item:hover .overlay { opacity: 1; }
.galeri-item .zoom-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.5);
  width: 60px; height: 60px;
  background: rgba(255,255,255,.95);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  opacity: 0;
  transition: all .35s;
}
.galeri-item:hover .zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(8, 56, 32, .95);
  z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  padding: 30px;
  cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 92%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute;
  top: 30px; right: 30px;
  width: 50px; height: 50px;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  color: #fff;
  border: none;
  width: 54px; height: 54px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: background .2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* =====================================================
   TUZUK
   ===================================================== */
.tuzuk-content {
  background: #fff;
  padding: 60px;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.tuzuk-content h2 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-dark);
  font-size: 32px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 18px;
  margin-bottom: 28px;
  text-align: center;
}
.tuzuk-content h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  font-size: 22px;
  margin-top: 42px;
  margin-bottom: 16px;
  padding-left: 18px;
  border-left: 4px solid var(--accent);
}
.tuzuk-content ol, .tuzuk-content ul { padding-left: 22px; }
.tuzuk-content li { margin-bottom: 6px; line-height: 1.8; }
.tuzuk-content p {
  margin-bottom: 14px;
  line-height: 1.85;
  color: var(--text);
}
.tuzuk-content strong { color: var(--primary-dark); }

/* =====================================================
   HABER DETAY
   ===================================================== */
.haber-detay {
  background: #fff;
  padding: 50px;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.haber-detay h1 {
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.2;
}
.haber-detay .meta {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.haber-detay .meta i { color: var(--accent); margin-right: 6px; }
.haber-detay img {
  border-radius: 12px;
  margin: 25px 0;
  box-shadow: var(--shadow-md);
}
.haber-detay .lead {
  font-size: 18px;
  color: var(--text);
  font-style: italic;
  padding: 20px 24px;
  background: var(--cream);
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  margin: 25px 0;
}
.haber-detay .haber-icerik p { margin-bottom: 18px; line-height: 1.85; }

aside .haber-card { box-shadow: var(--shadow-sm); }
aside h4 {
  font-size: 22px;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 24px;
}
aside h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--accent);
}

/* =====================================================
   ILETISIM
   ===================================================== */
.iletisim-card {
  background: #fff;
  padding: 36px 26px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  height: 100%;
  border: 1px solid var(--border);
  transition: all .35s;
}
.iletisim-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.iletisim-card .icon {
  width: 76px; height: 76px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--accent-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 18px;
  box-shadow: 0 10px 24px rgba(15, 77, 46, .25);
}
.iletisim-card h4 {
  color: var(--dark);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}
.iletisim-card p {
  color: var(--text-light);
  margin: 0;
  font-size: 14.5px;
}
.iletisim-card a { color: var(--text); font-weight: 500; }
.iletisim-card a:hover { color: var(--primary); }

.iletisim-form {
  background: #fff;
  padding: 42px 38px;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.iletisim-form h3 {
  font-size: 26px;
  margin-bottom: 6px;
}
.iletisim-form .form-control {
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 14.5px;
  background: var(--cream);
  transition: all .2s;
}
.iletisim-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 77, 46, .08);
  background: #fff;
}
.iletisim-form .form-control::placeholder { color: #a8b0ab; }
.harita-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 420px;
}
.harita-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: linear-gradient(180deg, var(--primary-dark) 0%, #051e11 100%);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
}
.site-footer h5 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 14px;
}
.site-footer h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 35px; height: 3px;
  background: var(--accent);
}
.footer-links, .footer-contact { list-style: none; padding: 0; }
.footer-links li, .footer-contact li {
  margin-bottom: 12px;
  font-size: 14.5px;
}
.footer-links a {
  color: rgba(255,255,255,.7);
  transition: all .2s;
}
.footer-links a i {
  color: var(--accent);
  margin-right: 10px;
  font-size: 10px;
  opacity: .8;
}
.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 6px;
}
.footer-contact i {
  color: var(--accent);
  margin-right: 12px;
  width: 18px;
}
.footer-social a {
  color: #fff;
  width: 42px; height: 42px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-right: 8px;
  margin-top: 16px;
  font-size: 15px;
  transition: all .25s;
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 50px;
  padding: 24px 0;
  text-align: center;
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
}

/* =====================================================
   FORMS / ALERTS
   ===================================================== */
.alert { border-radius: 12px; border: none; padding: 14px 18px; }
.alert-success { background: #e7f5ec; color: #1e6b40; }
.alert-danger { background: #fbe7e9; color: #b3252e; }
.alert-info { background: #e9f0f8; color: #1d3a6b; }
.alert-warning { background: #fff5e0; color: #8a6500; }

/* PAGINATION */
.pagination .page-link {
  color: var(--primary);
  border: 1px solid var(--border);
  margin: 0 3px;
  border-radius: 10px !important;
  padding: 10px 16px;
  font-weight: 600;
}
.pagination .page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.anim-fadeup { animation: fadeInUp .8s ease both; }
.anim-fadeup-2 { animation: fadeInUp .8s ease .15s both; }
.anim-fadeup-3 { animation: fadeInUp .8s ease .3s both; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991px) {
  .hero h1 { font-size: 40px; }
  .section-title h2 { font-size: 32px; }
}
@media (max-width: 768px) {
  body { font-size: 14.5px; }
  .hero { min-height: 460px; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .page-banner { padding: 60px 0 50px; }
  .page-banner h1 { font-size: 30px; }
  .section { padding: 60px 0; }
  .section-title { margin-bottom: 40px; }
  .section-title h2 { font-size: 28px; }
  .top-bar { display: none; }
  .tuzuk-content { padding: 28px 22px; }
  .haber-detay { padding: 28px 22px; }
  .haber-detay h1 { font-size: 26px; }
  .iletisim-form { padding: 28px 22px; }
  .stat-item .num { font-size: 38px; }
  .hakkimizda-img-wrap { padding: 12px; }
  .lightbox-nav { width: 42px; height: 42px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}
