/* Sosyal Medya Sayfası Özel Stilleri */

/* Base Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section - Sosyal Medya Temalı */
.social-hero {
  background: linear-gradient(
    135deg,
    #e1306c 0%,
    #1877f2 25%,
    #1da1f2 50%,
    #0077b5 75%,
    #ff0050 100%
  );
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.social-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.floating-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.circle-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.social-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  text-align: left;
}

.social-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.social-title-gradient {
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-description {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.social-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn-social-primary {
  background: white;
  color: #e1306c;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-social-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  color: #1877f2;
  text-decoration: none;
}

.btn-social-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-social-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

.social-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.social-dashboard {
  width: 320px;
  height: 420px;
  background: #ffffff;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  animation: dashboard-float 4s ease-in-out infinite;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border-radius: 20px;
  position: relative;
  padding: 25px 20px;
}

.screen-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  height: 100%;
}

.social-platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}

.platform-card {
  background: linear-gradient(135deg, #e1306c, #1877f2);
  border-radius: 12px;
  padding: 18px 15px;
  text-align: center;
  color: white;
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.25);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.35);
}

.platform-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.platform-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.9;
}

.floating-social-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-social-icons i {
  position: absolute;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
  animation: iconFloat 8s ease-in-out infinite;
}

.floating-social-icons i:nth-child(1) {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
  color: #e1306c;
}

.floating-social-icons i:nth-child(2) {
  top: 30%;
  right: -15%;
  animation-delay: 1s;
  color: #1877f2;
}

.floating-social-icons i:nth-child(3) {
  bottom: 40%;
  left: -20%;
  animation-delay: 2s;
  color: #1da1f2;
}

.floating-social-icons i:nth-child(4) {
  bottom: 20%;
  right: -10%;
  animation-delay: 3s;
  color: #0077b5;
}

.floating-social-icons i:nth-child(5) {
  top: 60%;
  left: -15%;
  animation-delay: 4s;
  color: #ff0050;
}

.floating-social-icons i:nth-child(6) {
  top: 80%;
  right: -20%;
  animation-delay: 5s;
  color: #25d366;
}

@keyframes dashboard-float {
  0%,
  100% {
    transform: translateY(0px) rotate(1deg);
  }
  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.5;
  }
  25% {
    transform: translateY(-15px) translateX(8px);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-8px) translateX(-10px);
    opacity: 0.6;
  }
  75% {
    transform: translateY(-18px) translateX(4px);
    opacity: 0.7;
  }
}

/* Filter Section Styles */
.filter-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  line-height: 1.2;
}

.filter-title-accent {
  background: linear-gradient(135deg, #e1306c, #1877f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.filter-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Section Styles */
.stats-section {
  padding: 80px 0;
  background: #ffffff;
}

.stats-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.stat-card {
  background: white;
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #e1306c, #1877f2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
  font-size: 24px;
  position: relative;
  overflow: hidden;
}

.stat-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  transition: transform 0.6s ease;
  opacity: 0;
}

.stat-card:hover .stat-icon::before {
  transform: rotate(45deg) translate(50%, 50%);
  opacity: 1;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
  line-height: 1.3;
}

.story-section {
  padding: 80px 0;
  background: #f8fafc;
}

.story-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.story-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e1306c, #1877f2);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.story-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 24px;
  line-height: 1.2;
}

.story-title-accent {
  background: linear-gradient(135deg, #e1306c, #1877f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-modern {
  background: linear-gradient(135deg, #e1306c, #1877f2);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.25);
}

.btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.35);
  color: white;
  text-decoration: none;
}

.btn-text {
  color: #e1306c;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 14px 0;
}

.btn-text:hover {
  color: #1877f2;
  text-decoration: none;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
}

.cta-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.cta-title-accent {
  background: linear-gradient(135deg, #e1306c, #1877f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #e1306c, #1877f2);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(225, 48, 108, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.4);
  color: white;
  text-decoration: none;
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  text-decoration: none;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-16 {
  margin-bottom: 4rem;
}

/* Sosyal Medya Stratejisi Section Styles */
.strategy-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.strategy-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.strategy-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.strategy-badge {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.strategy-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.strategy-title .highlight {
  color: #ffd700;
  position: relative;
}

.strategy-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 50px;
  opacity: 0.95;
}

.strategy-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 50px 0;
}

.strategy-feature {
  text-align: center;
  padding: 25px 20px;
}

.strategy-feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.strategy-feature h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: white;
}

.strategy-feature p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.5;
}

.strategy-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.strategy-phone-btn {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.strategy-phone-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

.strategy-stats {
  margin-top: 40px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* İçerik Çeşitlerimiz Section Enhancement */
.content-types-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.content-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.content-type-card {
  background: white;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.content-type-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(225, 48, 108, 0.1),
    transparent
  );
  transform: rotate(-45deg) translate(-50%, -50%);
  transition: transform 0.6s ease;
  opacity: 0;
}

.content-type-card:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translate(50%, 50%);
}

.content-type-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.content-type-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.8rem;
  position: relative;
  z-index: 2;
}

.content-type-card h3 {
  color: #1e293b;
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.content-type-card p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .strategy-features {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .content-types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Sosyal Medya Platformlarımız Section Enhancement */
.platforms-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.platform-service-card {
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  transition: all 0.4s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.platform-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.platform-service-card:hover::before {
  opacity: 1;
}

.platform-service-card:nth-child(1)::before {
  background: linear-gradient(135deg, #1877f2, #4267b2);
}

.platform-service-card:nth-child(2)::before {
  background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.platform-service-card:nth-child(3)::before {
  background: linear-gradient(135deg, #0077b5, #005885);
}

.platform-service-card:nth-child(4)::before {
  background: linear-gradient(135deg, #ff0050, #e60023);
}

.platform-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.platform-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.platform-icon-container {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  position: relative;
  overflow: hidden;
}

.platform-icon-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  transition: transform 0.6s ease;
  opacity: 0;
}

.platform-service-card:hover .platform-icon-container::before {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

.platform-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
}

.platform-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.platform-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.platform-feature-item {
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.platform-feature-item:hover {
  color: white;
  transform: translateX(5px);
}

.platform-feature-item .checkmark {
  margin-right: 12px;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
}

/* Facebook & Instagram Card */
.facebook-card {
  background: linear-gradient(135deg, #1877f2 0%, #4267b2 100%);
  color: white;
}

/* Twitter Card */
.twitter-card {
  background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
  color: white;
}

/* LinkedIn Card */
.linkedin-card {
  background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
  color: white;
}

/* Pinterest & YouTube Card */
.pinterest-card {
  background: linear-gradient(135deg, #ff0050 0%, #e60023 100%);
  color: white;
}

/* Instagram Card */
.instagram-card {
  background: linear-gradient(135deg, #e1306c 0%, #c13584 50%, #833ab4 100%);
  color: white;
}

/* Next Sosyal Card */
.nextsosyal-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

@media (max-width: 1024px) {
  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .platforms-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .platform-service-card {
    padding: 25px 20px;
  }

  .platform-header {
    flex-direction: column;
    text-align: center;
    margin-bottom: 15px;
  }

  .platform-icon-container {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .platform-title {
    font-size: 1.1rem;
  }
}

/* Sosyal Medya Theme Button */
.btn-social-gradient {
  background: linear-gradient(135deg, #e1306c, #1877f2) !important;
  color: white !important;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-right: 20px;
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-social-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.35);
  background: linear-gradient(135deg, #c13584, #1657c4) !important;
  color: white !important;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .social-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 0 15px;
  }

  .social-title {
    font-size: 2.2rem;
  }

  .social-description {
    font-size: 1rem;
  }

  .social-dashboard {
    width: 280px;
    height: 380px;
  }

  .social-buttons {
    justify-content: center;
    gap: 15px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .filter-title {
    font-size: 2rem;
  }

  .story-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .social-title {
    font-size: 1.8rem;
  }

  .social-description {
    font-size: 0.95rem;
  }

  .social-dashboard {
    width: 240px;
    height: 320px;
  }

  .platform-card {
    padding: 12px 10px;
  }

  .platform-icon {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .platform-label {
    font-size: 11px;
  }

  .btn-social-primary,
  .btn-social-secondary,
  .btn-social-gradient,
  .btn-modern,
  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }

  .stats-section,
  .story-section,
  .cta-section {
    padding: 60px 0;
  }

  .filter-title,
  .story-title,
  .cta-title {
    font-size: 1.6rem;
  }

  .filter-subtitle,
  .cta-description {
    font-size: 0.95rem;
  }
}
