/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

/* Tasarım Sistemi Değişkenleri */
:root {
  --primary: #6db61e; /* Logo Fıstık Yeşili */
  --primary-rgb: 109, 182, 30;
  --primary-light: #82cd33; /* Hafif Açık Fıstık Yeşili */
  --primary-soft: #f7fdf0; /* Yumuşak Fıstık Yeşili Arka Plan */
  --accent: #585659; /* Logo Kömür Grisi */
  --accent-rgb: 88, 86, 89;
  --accent-hover: #444245;
  --text-main: #2c2a2d; /* Koyu Kömür */
  --text-muted: #605e62; /* Nötr Gri */
  --bg-primary: #f8fafc; /* Açık Gri/Mavi */
  --bg-secondary: #ffffff; /* Beyaz */
  --border-color: #e2e8f0;
  
  --font-sans: 'Inter', sans-serif;
  --font-title: 'Outfit', sans-serif;
  
  --max-width: 1280px;
  --header-height: 80px;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 25px 35px -5px rgba(109, 182, 30, 0.1), 0 15px 15px -5px rgba(0, 0, 0, 0.03);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

/* Temel Sıfırlamalar ve Yapı */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

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

button, input, select, textarea {
  font-family: inherit;
}

/* Düzen Elemanları */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* Başlık Grubu */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px auto;
}

.section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: var(--font-title);
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 400;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
  .section-desc {
    font-size: 16px;
  }
}

/* Buton Tasarımları */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-title);
  box-shadow: var(--shadow-sm);
}

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

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

.btn-primary:hover {
  background-color: var(--primary-light);
  box-shadow: 0 10px 20px -5px rgba(6, 78, 59, 0.3);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--bg-secondary);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 10px 20px -5px rgba(217, 119, 6, 0.3);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-secondary);
}

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

.btn-white:hover {
  background-color: var(--primary-soft);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}

/* Üst Menü / Navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header.scrolled {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(226, 232, 240, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 54px;
  width: auto;
  display: block;
  transition: var(--transition-smooth);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Mobil Hamburger Menü Butonu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  position: absolute;
  transition: var(--transition-smooth);
}

.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 11px; }
.mobile-toggle span:nth-child(3) { top: 22px; }

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

@media (max-width: 992px) {
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-secondary);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px 40px;
    gap: 24px;
    transition: var(--transition-smooth);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 18px;
    width: 100%;
    display: block;
  }
}

/* Hero Bölümü */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, var(--primary-soft) 0%, var(--bg-primary) 100%);
  padding-top: calc(var(--header-height) + 15px);
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: white;
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-badge span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
}

.hero-title {
  font-size: 54px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--accent);
}

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 580px;
}

@media (max-width: 992px) {
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-btns {
  display: flex;
  gap: 16px;
}

@media (max-width: 992px) {
  .hero-btns {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 38px;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
}

/* Hero Grafik/İllüstrasyon */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle-bg {
  width: 440px;
  height: 440px;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.08) 0%, rgba(15, 118, 110, 0.03) 100%);
  border-radius: 50%;
  position: absolute;
  z-index: 1;
}

/* CSS ile oluşturulan şık market sepeti/gıda görseli */
.food-card-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
}

/* Slider Konteyner */
.slider-container {
  width: 100%;
  max-width: 400px;
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(226, 232, 240, 0.8);
  overflow: hidden;
  transform: rotate(-3deg);
  transition: var(--transition-smooth);
  z-index: 2;
}

.slider-container:hover {
  transform: rotate(0deg) translateY(-8px);
}

.slider-wrapper {
  position: relative;
  height: 380px;
  width: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px 20px 32px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  color: white;
}

.slide-caption h4 {
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.slide-caption p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

/* Slider Navigasyon Okları */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  z-index: 10;
}

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

.slider-nav.prev {
  left: 12px;
}

.slider-nav.next {
  right: 12px;
}

/* Slayt Noktaları */
.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

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

.dot.active {
  background: var(--primary);
  transform: scale(1.3);
  width: 16px;
  border-radius: 4px;
}

.floating-badge {
  position: absolute;
  background: var(--primary);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  transition: var(--transition-smooth);
}

.fb-1 {
  top: -20px;
  right: -10px;
  background: var(--accent);
  transform: rotate(8deg);
}

.fb-2 {
  bottom: -15px;
  left: -20px;
  transform: rotate(-6deg);
}

.floating-badge span:first-child {
  font-size: 22px;
  font-weight: 800;
  font-family: var(--font-title);
}

.floating-badge span:last-child {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

@media (max-width: 576px) {
  .hero-visual {
    margin-top: 40px;
    transform: scale(0.9);
  }
}

/* Satış Modelleri / Hizmetler */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

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

.service-card {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-card.toptan::before {
  background-color: var(--accent);
}

.service-icon {
  width: 64px;
  height: 64px;
  background-color: var(--primary-soft);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}

.service-card.toptan .service-icon {
  background-color: rgba(217, 119, 6, 0.1);
  color: var(--accent);
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
  margin-bottom: 32px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
}

.service-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
}

.service-card.toptan .service-features li::before {
  color: var(--accent);
}

/* Kategoriler Bölümü */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.category-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(6, 78, 59, 0.2);
}

.cat-icon-container {
  width: 52px;
  height: 52px;
  background-color: var(--primary-soft);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.cat-details h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary);
}

.cat-details p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Hakkımızda / Neden Biz */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-graphics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-box {
  background: white;
  padding: 30px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
  font-family: var(--font-title);
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.about-features {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.about-feature-item p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Teklif Formu & İletişim */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-soft);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-details h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.info-details p, .info-details a {
  font-size: 14px;
  color: var(--text-muted);
}

.map-placeholder {
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

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

@media (max-width: 576px) {
  .form-wrapper {
    padding: 24px;
  }
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  outline: none;
  font-size: 15px;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.15);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* Başarılı Form Modalı */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 90%;
  max-width: 480px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-icon {
  width: 72px;
  height: 72px;
  background-color: var(--primary-soft);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px auto;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.modal-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Alt Bilgi / Footer */
.footer {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

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

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

.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
}

.footer-desc {
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

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

.footer-title {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-hours li {
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 16px;
}

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

/* KVKK & Aydınlatma Metni Modal Stilleri */
.kvkk-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.kvkk-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.kvkk-modal-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.kvkk-modal-backdrop.active .kvkk-modal-card {
  transform: scale(1);
}

.kvkk-modal-header {
  padding: 20px 24px;
  background-color: var(--primary-soft);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kvkk-modal-header h3 {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.kvkk-modal-close {
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.kvkk-modal-close:hover {
  background: var(--primary);
  color: white;
}

.kvkk-modal-tabs {
  display: flex;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border-color);
  padding: 8px 24px 0 24px;
  gap: 8px;
}

.kvkk-tab-btn {
  padding: 10px 20px;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  border-radius: 8px 8px 0 0;
  transition: var(--transition-fast);
}

.kvkk-tab-btn.active {
  background: #ffffff;
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.kvkk-modal-body {
  padding: 24px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-main);
  max-height: 55vh;
}

.kvkk-modal-body h4 {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 16px;
  margin-bottom: 8px;
}

.kvkk-modal-body p {
  margin-bottom: 12px;
}

.kvkk-modal-body ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.kvkk-modal-body li {
  margin-bottom: 6px;
}

.kvkk-alert-box {
  background-color: var(--primary-soft);
  border: 1px solid rgba(109, 182, 30, 0.2);
  border-left: 4px solid var(--primary);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--text-main);
}

.kvkk-modal-footer {
  padding: 16px 24px;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
}

