/* ============================================================
   🌾 NARİN KARDEŞLER TARIM — STİL DOSYASI (style.css)
   ============================================================ */

/* ── 1. DEĞİŞKENLER VE TEMEL RENK PALETİ ──────────────── */
:root {
  --primary: #1B5E20;       /* Koyu yeşil - Güven ve doğallık */
  --primary-dark: #0D3B0E;  /* Daha koyu yeşil - Derinlik ve vurgu */
  --primary-light: #2E7D32; /* Canlı yeşil - Yaprak rengi */
  --accent: #66BB6A;        /* Açık yeşil */
  --gold: #D4A017;          /* Altın/Amber - Başak ve bereket sarısı */
  --gold-dark: #B38600;
  --dark: #1A1A1A;          /* Footer arka planı */
  --dark-light: #2A2A2A;    /* Kartlar veya yan menüler */
  --white: #FFFFFF;
  --light-bg: #F9F9F9;      /* Yumuşak açık gri arka plan */
  --text: #333333;          /* Gövde metni koyuluğu */
  --text-light: #666666;    /* İkincil metinler */
  --border-color: #E0E0E0;
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --font-heading: 'Zilla Slab', Georgia, serif;
  --font-body: 'Open Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ── 2. SIFIRLAMA (RESET) VE GENEL AYARLAR ────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul, ol {
  list-style: none;
}

/* ── 3. TIPOGRAFİ VE GENEL BİLEŞENLER ─────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }
}

/* Üst Başlık Etiketi */
.title-bg-small {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--gold-dark);
  background-color: rgba(212, 160, 23, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 15px;
}

/* Başlık Alanı */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-dark);
  position: relative;
  padding-bottom: 15px;
}

.section-title span {
  color: var(--gold);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
}

.section-header-left {
  text-align: left;
  margin-bottom: 30px;
}

.section-header-left .section-title::after {
  left: 0;
  transform: none;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 15px;
}

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  gap: 10px;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── 4. NAVBAR (STICKY HEADER) ────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
}

header.navbar-scrolled {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  padding: 0;
}

.header-wrapper {
  padding: 5px 0;
  transition: var(--transition);
}

header.navbar-scrolled .header-wrapper {
  padding: 2px 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 160px;
  transition: var(--transition);
}

header.navbar-scrolled .logo img {
  height: 95px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

header.navbar-scrolled .nav-link {
  color: var(--text);
}

.nav-link:hover,
.nav-item.active .nav-link {
  color: var(--gold) !important;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--primary);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  border-radius: 0 0 4px 4px;
  padding: 10px 0;
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.dropdown-item:hover {
  background-color: var(--light-bg);
  color: var(--primary);
  padding-left: 25px;
}

/* Mobile Drawer Elements Hidden on Desktop */
.drawer-header,
.drawer-footer {
  display: none !important;
}

/* Mobil Hamburger Menü */
.navbar-toggler {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
  position: relative;
}

.navbar-toggler .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text);
  margin: 5px 0;
  transition: var(--transition);
}

header.navbar-scrolled .navbar-toggler .bar {
  background-color: var(--text);
}

/* Transform to X when active */
.navbar-toggler.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggler.active .bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── 5. HERO SLIDER ───────────────────────────────────── */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

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

.slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  display: flex;
  align-items: center;
}

.slider-item.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4));
}

.slider-content {
  position: relative;
  color: var(--white);
  z-index: 2;
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.3s;
}

.slider-item.active .slider-content {
  opacity: 1;
  transform: translateY(0);
}

.slider-info {
  display: inline-block;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.slider-title {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 30px;
}

.slider-title span {
  color: var(--gold);
}

.slider-btn {
  margin-top: 15px;
}

/* Navigasyon Okları */
.slider-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-nav button:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.slider-prev {
  left: 30px;
}

.slider-next {
  right: 30px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--gold);
  transform: scale(1.2);
}

/* ── 6. SAYAÇLAR (COUNTERS) ───────────────────────────── */
.counters-section {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 50px 0;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  text-align: center;
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.counter-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 15px;
  transition: var(--transition);
}

.counter-item:hover .counter-icon {
  background-color: var(--gold);
  color: var(--white);
  transform: rotateY(360deg);
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.counter-suffix {
  font-size: 2.5rem;
  color: var(--gold);
}

.counter-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-top: 5px;
}

/* ── 7. HİKAYEMİZ (ABOUT/STORY) ───────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.story-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.story-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.story-image-wrapper {
  position: relative;
  padding: 10px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  overflow: hidden;
}

.story-image-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.story-image-wrapper img.story-logo-img {
  object-fit: contain;
  background-color: var(--white);
  padding: 30px;
}

.story-image-wrapper:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg), 0 10px 20px rgba(27, 94, 32, 0.1);
}

.story-image-wrapper:hover img {
  transform: scale(1.02);
}

/* ── 8. ÜRÜNLER (PRODUCTS) ────────────────────────────── */
.products-section {
  background-color: var(--light-bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background-color: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.product-image {
  width: calc(100% - 30px);
  aspect-ratio: 16 / 10;
  height: auto;
  margin: 15px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover .product-image {
  border-color: var(--gold);
}

.product-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(27, 94, 32, 0.1);
  color: var(--primary);
  border-radius: 50%;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.product-card:hover .product-icon {
  background-color: var(--primary);
  color: var(--white);
}

.product-title {
  font-size: 1.35rem;
  margin-bottom: 15px;
}

.product-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* ── 9. VİDEO BÖLÜMÜ (VIDEO SECTION) ─────────────────── */
.video-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 450px;
}

.video-bg {
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.play-btn {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  background-color: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  animation: pulse 2s infinite;
  border: none;
}

.play-btn:hover {
  background-color: var(--primary);
}

.video-content {
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--primary-dark);
  color: var(--white);
}

.video-content h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.video-content h2 span {
  color: var(--gold);
}

.video-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

/* ── 10. REFERANSLAR (REFERENCES) ────────────────────── */
.references-section {
  background-color: var(--white);
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.ref-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.references-slider {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation: refScroll 25s linear infinite;
}

.references-slider:hover {
  animation-play-state: paused;
}

.ref-item {
  width: 150px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-light);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 0.9rem;
  background-color: var(--light-bg);
  opacity: 0.7;
  transition: var(--transition);
  cursor: pointer;
  padding: 10px;
}

.ref-item:hover {
  opacity: 1;
  border-color: var(--primary);
  color: var(--primary);
}

@keyframes refScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── 11. SAYFA BANNERİ (PAGE HEADER) ─────────────────── */
.page-header {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: 0;
  padding-top: 80px; /* Header space */
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header-title {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
}

.breadcrumb a {
  color: var(--gold);
}

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

.breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}

/* ── 12. GALERİ VE LIGHTBOX ──────────────────────────── */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  height: auto;
  border-radius: 8px;
  padding: 10px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.gallery-item-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 6px;
  background-color: rgba(27, 94, 32, 0.85);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay i {
  font-size: 2rem;
  margin-bottom: 10px;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item-overlay span {
  font-size: 0.95rem;
  font-weight: 600;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay i,
.gallery-item:hover .gallery-item-overlay span {
  transform: translateY(0);
}

/* Lightbox Overlay */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 80%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ── 13. İLETİŞİM SAYFASI ────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background-color: var(--light-bg);
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.contact-card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-card h4 i {
  color: var(--primary);
}

.contact-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-form-wrapper {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 0.95rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  outline: none;
  transition: var(--transition);
  font-family: var(--font-body);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.15);
}

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

.form-feedback {
  margin-top: 15px;
  padding: 10px 15px;
  border-radius: 4px;
  font-weight: 600;
  display: none;
}

.form-feedback.success {
  display: block;
  background-color: rgba(46, 125, 50, 0.1);
  color: #1B5E20;
  border: 1px solid rgba(46, 125, 50, 0.2);
}

.form-feedback.error {
  display: block;
  background-color: rgba(211, 47, 47, 0.1);
  color: #c62828;
  border: 1px solid rgba(211, 47, 47, 0.2);
}

.map-container {
  margin-top: 50px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── 14. FOOTER VE TELİF BARİ (FOOTER) ────────────────── */
.site-footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 60px 0 0 0;
}

.footer-main {
  padding-bottom: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 50px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 110px;
  display: block;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary);
  color: var(--white);
}

.footer-title {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--gold);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.footer-contact-info i {
  color: var(--gold);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 768px) {
  .footer-bottom .container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

.visitor-counter {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.visitor-counter i {
  color: var(--gold);
}

.visitor-counter strong {
  color: var(--white);
  font-weight: 700;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

/* ── 15. BACK TO TOP BUTONU ──────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--gold);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--primary);
}

/* ── 16. ANIMASYONLAR (ANIMATIONS) ───────────────────── */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(212, 160, 23, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ── 17. RESPONSIVE TASARIM KURALLARI (RESPONSIVE) ────── */
@media (max-width: 991px) {
  /* Navigation */
  .navbar-toggler {
    display: block;
  }

  .navbar-toggler.active {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .logo img {
    height: 100px;
  }

  header.navbar-scrolled .logo img {
    height: 75px;
  }

  .navbar-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    padding: 30px;
    align-items: flex-start;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
    gap: 20px;
    transform: translateX(100%);
  }

  /* Mobile Drawer Header and Footer Display and Style */
  .drawer-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
  }

  .drawer-header img {
    height: 45px;
    object-fit: contain;
  }

  .drawer-close {
    background: none;
    border: none;
    font-size: 2.2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    padding: 5px;
  }

  .drawer-close:hover {
    color: var(--primary);
  }

  .drawer-footer {
    display: block !important;
    margin-top: auto;
    width: 100%;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
  }

  .drawer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
  }

  .drawer-contact a {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none;
  }

  .drawer-contact a:hover {
    color: var(--primary);
  }

  .drawer-socials {
    display: flex;
    gap: 15px;
  }

  .drawer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: var(--light-bg);
    border-radius: 50%;
    color: var(--text);
    font-size: 1.1rem;
    transition: var(--transition);
  }

  .drawer-socials a:hover {
    background-color: var(--primary);
    color: var(--white);
  }

  .navbar-nav.active {
    transform: translateX(0);
  }

  .nav-link {
    color: var(--text);
  }

  header.navbar-scrolled .nav-link {
    color: var(--text);
  }

  .navbar-toggler .bar {
    background-color: var(--text);
  }
  
  header.navbar-scrolled .navbar-toggler .bar {
    background-color: var(--text);
  }

  /* Grid Layouts */
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .video-section {
    grid-template-columns: 1fr;
  }

  .video-bg {
    height: 300px;
    background-position: 70% center;
  }

  .video-content {
    padding: 40px 30px;
  }

  .slider-title {
    font-size: 2.5rem;
  }

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

@media (max-width: 768px) {
  .hero-section {
    height: 45vh;
    min-height: 300px;
  }

  .slider-item-3 {
    background-position: 70% center !important;
  }

  .slider-content {
    padding: 0 15px;
  }

  .slider-info {
    font-size: 0.8rem;
    margin-bottom: 8px;
    letter-spacing: 1.5px;
  }

  .slider-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .slider-btn .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

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

  .slider-title {
    font-size: 1.8rem;
  }

  .slider-nav button {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .slider-prev {
    left: 10px;
  }

  .slider-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .counters-grid {
    grid-template-columns: 1fr;
  }

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

  .why-us-grid {
    grid-template-columns: 1fr;
  }
}
