/* Wolfterm Modern CSS - Profesyonel Web Sitesi Tasarımı */

:root {
  /* Ana Renkler */
  --primary: #a3172d;
  --primary-dark: #8a1425;
  --primary-light: #c42d43;
  --secondary: #2f2f2f;
  --secondary-light: #4a4a4a;
  --accent: #7a8ba5;
  
  /* Nötr Renkler */
  --light: #ffffff;
  --light-gray: #f4f4f4;
  --medium-gray: #e0e0e0;
  --dark-gray: #333333;
  
  /* Yazı Tipi Boyutları */
  --font-xs: 0.75rem;   /* 12px */
  --font-sm: 0.875rem;  /* 14px */
  --font-md: 1rem;      /* 16px */
  --font-lg: 1.125rem;  /* 18px */
  --font-xl: 1.25rem;   /* 20px */
  --font-2xl: 1.5rem;   /* 24px */
  --font-3xl: 1.875rem; /* 30px */
  --font-4xl: 2.25rem;  /* 36px */
  --font-5xl: 3rem;     /* 48px */
  
  /* Boşluklar */
  --space-xs: 0.25rem;  /* 4px */
  --space-sm: 0.5rem;   /* 8px */
  --space-md: 1rem;     /* 16px */
  --space-lg: 1.5rem;   /* 24px */
  --space-xl: 2rem;     /* 32px */
  --space-2xl: 3rem;    /* 48px */
  
  /* Geçişler */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  
  /* Gölgeler */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  
  /* Border Radius */
  --radius-sm: 0.25rem; /* 4px */
  --radius-md: 0.5rem;  /* 8px */
  --radius-lg: 1rem;    /* 16px */
}

/* Temel Sıfırlama ve Genel Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  background-color: var(--light-gray);
  color: var(--dark-gray);
  line-height: 1.6;
  font-size: var(--font-md);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Header Stili */
header {
  background-color: var(--secondary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: var(--space-xs) 0;
  box-shadow: var(--shadow-lg);
}

/* Logo boyutu sabit kalacak */

header.scrolled .nav-top {
  padding: var(--space-xs) 0;
}

header.scrolled .nav-bottom {
  padding: var(--space-sm) 0;
}

header.scrolled .nav-large {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--font-sm);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xl) 0; /* Padding'i daha da artırdık */
  max-width: 1300px; /* Container genişliğini artırdık */
}

.logo-container {
  display: flex;
  align-items: center;
  padding: 8px;
  transition: var(--transition-fast);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-right: 15px;
}

.logo {
  height: 90px; /* Logoyu çok daha büyük yaptık */
  transition: var(--transition-fast);
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3)); /* Logo için daha belirgin gölge */
}

.logo:hover {
  transform: scale(1.05);
}

.logo-container:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.15);
}

/* Navigasyon */
nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.nav-top {
  display: flex;
  gap: var(--space-sm);
  justify-content: flex-end;
  margin-bottom: var(--space-sm);
}

.nav-bottom {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
}

.nav-small {
  color: var(--light);
  font-weight: 400;
  font-size: var(--font-sm);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
  opacity: 0.8;
}

.nav-small:hover {
  color: var(--primary-light);
  opacity: 1;
}

.nav-small.active {
  color: var(--primary-light);
  opacity: 1;
  background: rgba(163, 23, 45, 0.2);
}

.nav-large {
  color: var(--light);
  font-weight: 600;
  font-size: var(--font-lg);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  position: relative;
  background: linear-gradient(135deg, rgba(163, 23, 45, 0.1), rgba(163, 23, 45, 0.2));
  border: 1px solid rgba(163, 23, 45, 0.3);
}

.nav-large:hover {
  color: var(--primary-light);
  background: linear-gradient(135deg, rgba(163, 23, 45, 0.2), rgba(163, 23, 45, 0.3));
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(163, 23, 45, 0.3);
}

.nav-large i {
  margin-right: var(--space-sm);
}

/* Aktif menü stili */
.nav-large.active {
  background: linear-gradient(135deg, rgba(163, 23, 45, 0.3), rgba(163, 23, 45, 0.4));
  border-color: var(--primary-light);
  color: var(--primary-light);
}

/* Ürün grid sistemi */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.product-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.product-image-slider {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 3s ease-in-out;
  animation: slideImages 9s infinite;
}

.product-image-slider img {
  width: 33.333%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.product-card:hover .product-image-slider {
  animation-play-state: paused;
}

.product-card:hover .product-image-slider img {
  transform: scale(1.05);
}

@keyframes slideImages {
  0%, 30% { transform: translateX(0); }
  33.33%, 63.33% { transform: translateX(-33.333%); }
  66.66%, 96.66% { transform: translateX(-66.666%); }
  100% { transform: translateX(0); }
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: var(--space-xl);
}

.product-info h3 {
  color: var(--primary);
  font-size: var(--font-xl);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-sm);
  color: var(--secondary);
}

.spec-item i {
  color: var(--primary);
  width: 16px;
}

.product-features h4 {
  color: var(--secondary);
  font-size: var(--font-md);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.product-features ul {
  list-style: none;
  padding: 0;
}

.product-features li {
  padding: var(--space-xs) 0;
  font-size: var(--font-sm);
  color: var(--secondary-light);
  position: relative;
  padding-left: var(--space-md);
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Hero/Slider Bölümü */
.hero {
  height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  padding: var(--space-xl);
  width: 100%;
}

.hero h1 {
  font-size: var(--font-5xl);
  margin-bottom: var(--space-lg);
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  text-align: center;
}

.hero p {
  font-size: var(--font-xl);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-buttons {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--primary);
  color: var(--light);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-normal);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--light);
}

.btn-outline:hover {
  background-color: var(--light);
  color: var(--primary);
}

/* Bölüm Stilleri */
section {
  padding: var(--space-2xl) 0;
}

section.bg-light {
  background-color: var(--light);
}

section.bg-dark {
  background-color: var(--secondary-light);
  color: var(--light);
}

section.bg-primary {
  background-color: var(--primary);
  color: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  font-size: var(--font-3xl);
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary);
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: var(--font-lg);
}

/* Kart Stilleri */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.card {
  background-color: var(--light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  width: 100%;
  max-width: 350px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  height: 200px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-content {
  padding: var(--space-lg);
}

.card h3 {
  font-size: var(--font-xl);
  margin-bottom: var(--space-sm);
  color: var(--secondary);
}

.card p {
  margin-bottom: var(--space-md);
  color: var(--secondary-light);
}

.card-link {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  position: relative;
}

.card-link::after {
  content: '→';
  margin-left: var(--space-xs);
  transition: var(--transition-fast);
}

.card-link:hover::after {
  margin-left: var(--space-sm);
}

/* Özellikler Bölümü */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.feature {
  text-align: center;
  padding: var(--space-lg);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.feature h3 {
  margin-bottom: var(--space-md);
  font-size: var(--font-xl);
}

/* Hakkımızda Bölümü */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-text h2 {
  font-size: var(--font-3xl);
  margin-bottom: var(--space-lg);
  color: var(--primary);
}

.about-text p {
  margin-bottom: var(--space-md);
}

.about-img img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

/* Footer Stili */
footer {
  background-color: var(--secondary);
  color: var(--light);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-column h3 {
  font-size: var(--font-lg);
  margin-bottom: var(--space-md);
  color: var(--primary-light);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: var(--space-sm);
}

.footer-column a {
  color: var(--medium-gray);
}

.footer-column a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--secondary-light);
  font-size: var(--font-sm);
}

.social-icons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--secondary-light);
  border-radius: 50%;
  transition: var(--transition-normal);
}

.social-icons a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

/* Duyarlı Tasarım */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: var(--font-4xl);
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-img {
    order: -1;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    padding: var(--space-md);
  }
  
  .logo {
    margin-bottom: var(--space-md);
  }
  
  nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero h1 {
    font-size: var(--font-3xl);
  }
  
  .hero p {
    font-size: var(--font-lg);
  }
  
  .section-header h2 {
    font-size: var(--font-2xl);
  }
}

@media (max-width: 480px) {
  nav a {
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--font-sm);
  }
  
  .hero {
    height: 60vh;
  }
  
  .hero h1 {
    font-size: var(--font-2xl);
  }
  
  .hero p {
    font-size: var(--font-md);
  }
  
  .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-sm);
  }
  
  .card {
    max-width: 100%;
  }
  
  .hero-slider {
    margin: var(--space-lg) 0;
  }
  
  .slide {
    min-width: 280px;
    height: 200px;
  }
  
  .slide-image {
    height: 120px;
  }
  
  .slide-content h3 {
    font-size: var(--font-md);
  }
  
  .slide-content p {
    font-size: var(--font-sm);
  }
  
  .slider-btn {
    width: 35px;
    height: 35px;
    font-size: var(--font-sm);
  }
}

/* Hero Slider Main Styles */
.hero-slider-main {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide .hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2rem;
  background: rgba(0,0,0,0.3);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.hero-slide .hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-slide .hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  pointer-events: none;
}

.hero-nav-btn {
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.3);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s ease;
  pointer-events: all;
  backdrop-filter: blur(10px);
}

.hero-nav-btn:hover {
  background: rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.5);
  transform: scale(1.1);
}

.hero-slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
}

.hero-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: white;
  transform: scale(1.2);
}

.hero-dot:hover {
  background: rgba(255,255,255,0.8);
}

/* Product Slider Section */
.product-slider-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

/* Hero Slider Styles */
.hero-slider {
  margin: var(--space-2xl) 0;
  position: relative;
}

.slider-container {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: var(--space-md);
  padding: var(--space-md);
}

.slide {
  min-width: 320px;
  height: 250px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.slide:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.slide-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.slide:hover .slide-image {
  transform: scale(1.05);
}

.slide-content {
  padding: var(--space-md);
  text-align: center;
}

.slide-content h3 {
  font-size: var(--font-lg);
  color: var(--primary);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

.slide-content p {
  font-size: var(--font-sm);
  color: var(--secondary);
  opacity: 0.8;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--space-md);
  pointer-events: none;
}

.slider-btn {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  font-size: var(--font-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.slider-btn:active {
  transform: scale(0.95);
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: white;
  transform: scale(1.2);
}

/* Responsive Slider */
@media (max-width: 768px) {
  .slide {
    min-width: 280px;
    height: 220px;
  }
  
  .slide-image {
    height: 130px;
  }
  
  .slider-btn {
    width: 35px;
    height: 35px;
    font-size: var(--font-md);
  }
}

/* Sosyal Medya Beslemesi Stilleri */
.social-feed-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.social-feed-item {
  background: var(--light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.social-feed-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.social-feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--light);
}

.social-feed-header i {
  font-size: var(--font-2xl);
  margin-right: var(--space-md);
}

.social-feed-header h3 {
  margin: 0;
  font-size: var(--font-xl);
  font-weight: 600;
  flex: 1;
}

.follow-btn {
  background: rgba(255, 255, 255, 0.2);
  color: var(--light);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-sm);
  font-weight: 500;
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.follow-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.social-feed-content {
  padding: var(--space-lg);
}

.feed-post {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--medium-gray);
}

.feed-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.feed-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.feed-text {
  flex: 1;
}

.feed-text p {
  margin: 0 0 var(--space-sm) 0;
  font-size: var(--font-sm);
  line-height: 1.5;
  color: var(--dark-gray);
}

.feed-date {
  font-size: var(--font-xs);
  color: var(--accent);
  font-weight: 500;
}

/* WhatsApp & Telegram İletişim Stilleri */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--light-gray);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.contact-item:hover {
  background: var(--medium-gray);
}

.contact-item i {
  font-size: var(--font-2xl);
  color: var(--primary);
  margin-top: var(--space-xs);
}

.contact-item h4 {
  margin: 0 0 var(--space-sm) 0;
  font-size: var(--font-lg);
  color: var(--dark-gray);
}

.contact-item p {
  margin: 0 0 var(--space-md) 0;
  font-size: var(--font-sm);
  color: var(--secondary-light);
  line-height: 1.5;
}

.contact-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--light);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-sm);
  font-weight: 500;
  transition: var(--transition-fast);
}

.contact-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Sosyal Medya İkonları Güncellemesi */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--light);
  border-radius: 50%;
  margin-right: var(--space-sm);
  transition: var(--transition-fast);
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.social-icons a i {
  font-size: var(--font-lg);
}

/* WhatsApp özel renk */
.social-icons a[href*="wa.me"] {
  background: #25D366;
}

.social-icons a[href*="wa.me"]:hover {
  background: #1ebe57;
}

/* Telegram özel renk */
.social-icons a[href*="t.me"] {
  background: #0088cc;
}

.social-icons a[href*="t.me"]:hover {
  background: #006ba6;
}

/* Instagram özel renk */
.social-icons a[href*="instagram"] {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

/* LinkedIn özel renk */
.social-icons a[href*="linkedin"] {
  background: #0077b5;
}

.social-icons a[href*="linkedin"]:hover {
  background: #005885;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .social-feed-container {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .social-feed-header {
    padding: var(--space-md);
  }
  
  .social-feed-content {
    padding: var(--space-md);
  }
  
  .feed-post {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .feed-image {
    width: 100%;
    height: 200px;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-item i {
    margin-top: 0;
  }
}