/* ==========================================================================
   PAGES.CSS - Yeni Sayfalar İçin Stil Dosyası
   Makaleler, Yazarlar, Hakkımızda ve İletişim sayfaları için özel stiller
   ========================================================================== */

/* ==========================================================================
   GENEL SAYFA STİLLERİ
   ========================================================================== */

/* Page Header - Tüm sayfalar için ortak başlık */
.page-header {
  background: #f8f8f8;
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header::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 1000 100"><path fill="%23ffffff" opacity="0.1" d="M0,50 Q250,0 500,50 T1000,50 V100 H0 V50Z"/></svg>');
  background-size: 100% 100%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #666;
}

.breadcrumb span {
  color: #999;
}

.page-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.page-description {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Active navigation item */
.mobile-nav-item.active {
  color: #333;
  font-weight: 600;
}

/* ==========================================================================
   MAKALELER SAYFASI
   ========================================================================== */

/* Articles Filter */
.articles-filter {
  background: white;
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}

.filter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.search-box {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 50px;
  padding: 5px;
  flex: 1;
  max-width: 400px;
}

.search-box input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 20px;
  font-size: 16px;
  outline: none;
  color: #333;
}

.search-box input::placeholder {
  color: #999;
}

.search-btn {
  background: #333;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover {
  background: #555;
  transform: translateY(-1px);
}

.filter-options {
  display: flex;
  gap: 15px;
}

.category-filter,
.sort-filter {
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 25px;
  background: white;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
  padding-right: 40px;
}


.category-filter:hover,
.sort-filter:hover {
  border-color: #333;
  box-shadow: 0 2px 8px rgba(51, 51, 51, 0.1);
}

/* Simple Custom Dropdown with Scrollbar */
.custom-dropdown {
  position: relative;
  min-width: 200px;
}

.dropdown-selected {
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 25px;
  background: white;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.dropdown-selected:hover {
  border-color: #333;
  box-shadow: 0 2px 8px rgba(51, 51, 51, 0.1);
}

.dropdown-selected i {
  transition: transform 0.3s ease;
  font-size: 12px;
  color: #666;
}

.custom-dropdown.open .dropdown-selected i {
  transform: rotate(180deg);
}

.dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

.custom-dropdown.open .dropdown-options {
  display: block;
}

.dropdown-option {
  padding: 12px 20px;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}

.dropdown-option:last-child {
  border-bottom: none;
}

.dropdown-option:hover {
  background: #f8f9fa;
}

.dropdown-option.selected {
  background: #333;
  color: white;
}

.dropdown-option.selected:hover {
  background: #555;
}

/* Scrollbar Styles */
.dropdown-options::-webkit-scrollbar {
  width: 8px;
}

.dropdown-options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.dropdown-options::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.dropdown-options::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* Articles Grid */
.articles-grid {
  background: #f8f9fa;
  padding: 60px 0;
}

  .articles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
  }

.article-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.article-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(51, 51, 51, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-content {
  padding: 30px;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
}

.article-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.article-card:hover .article-title {
  color: #333;
}

.article-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article-stats {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: #999;
}

.article-stats i {
  margin-right: 5px;
}

.read-more-btn {
  background: transparent;
  border: none;
  padding: 0;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: lowercase;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 500;
}

.read-more-btn:hover {
  color: #666;
}

.read-more-btn:hover .read-more-icon {
  background: #555;
}

.read-more-icon {
  width: 35px;
  height: 35px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.read-more-icon i {
  transform: rotate(-45deg);
  font-size: 14px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.page-btn {
  background: white;
  border: 1px solid #ddd;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-btn:hover:not(:disabled) {
  background: #333;
  color: white;
  border-color: #333;
}

.page-btn.active {
  background: #333;
  color: white;
  border-color: #333;
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-dots {
  color: #999;
  font-weight: 500;
}

/* ==========================================================================
   YAZARLAR SAYFASI
   ========================================================================== */

/* Featured Author */
.featured-author {
  background: white;
  padding: 80px 0;
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.featured-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, #ff6b6b, #feca57);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.featured-name {
  font-size: clamp(24px, 4.2vw, 36px);
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.featured-title {
  font-size: 18px;
  color: #666;
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
}

.featured-bio {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

.featured-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.profile-btn {
  background: #333;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-btn:hover {
  background: #555;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(85, 85, 85, 0.3);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #333;
  color: white;
  transform: translateY(-2px);
}

/* Authors Section */
.authors-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.section-title {
  font-size: clamp(24px, 4.2vw, 36px);
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 50px;
}

.authors-filter {
  text-align: center;
  margin-bottom: 50px;
}

.filter-tabs {
  display: inline-flex;
  background: white;
  border-radius: 50px;
  padding: 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.filter-tab {
  background: transparent;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tab.active,
.filter-tab:hover {
  background: #333;
  color: white;
}

.authors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.author-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.author-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.author-image {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.author-card:hover .author-image img {
  transform: scale(1.1);
}

.author-name {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.author-title {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  margin-bottom: 5px;
}

.author-institution {
  font-size: 13px;
  color: #999;
  margin-bottom: 15px;
}

.author-bio {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.author-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.author-stats .stat {
  text-align: center;
}

.author-stats .number {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

.author-stats .label {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
}

.author-actions {
  display: flex;
  justify-content: center;
  align-items: center;
}

.view-profile-btn {
  background: #333;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-profile-btn:hover {
  background: #555;
  transform: translateY(-2px);
}

.author-social {
  display: flex;
  gap: 8px;
}

.author-social a {
  width: 32px;
  height: 32px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.author-social a:hover {
  background: #333;
  color: white;
}

/* Enhanced CTA Section */
.cta-section {
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-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 1000 300"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
}

.cta-icon-large {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: white;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 3;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
}

.cta-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.floating-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { animation-delay: 0s; }
.floating-icon:nth-child(2) { animation-delay: 1.5s; }
.floating-icon:nth-child(3) { animation-delay: 3s; }
.floating-icon:nth-child(4) { animation-delay: 4.5s; }

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-10px) rotate(5deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-20px) rotate(-5deg);
    opacity: 1;
  }
  75% {
    transform: translateY(-10px) rotate(3deg);
    opacity: 0.8;
  }
}

.cta-text {
  text-align: left;
}

.cta-text h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(45deg, #ffffff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.benefit:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.benefit-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.benefit span {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.cta-primary-btn {
  background: white;
  color: #333;
  border: none;
  padding: 18px 35px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.cta-primary-btn:hover::before {
  left: 100%;
}

.cta-primary-btn:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-icon {
  font-size: 18px;
}

.btn-text {
  font-weight: 600;
}

.btn-arrow {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.cta-primary-btn:hover .btn-arrow {
  transform: translateX(5px);
}

.cta-secondary-btn {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 16px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cta-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* ==========================================================================
   HAKKIMIZDA SAYFASI
   ========================================================================== */

/* About Hero */
.about-hero {
  background: white;
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.2;
}

.about-description {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 40px;
}

.about-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(51, 51, 51, 0.9);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
}

/* Mission Vision */
.mission-vision {
  background: #f8f9fa;
  padding: 80px 0;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.mv-item {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.mv-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #333, #555);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 28px;
}

.mv-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.mv-description {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

/* Our Story */
.our-story {
  background: white;
  padding: 80px 0;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.story-images {
  position: relative;
}

.story-img-1 {
  width: 70%;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.story-img-2 {
  width: 60%;
  position: absolute;
  bottom: -30px;
  right: 0;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.story-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}

.story-text {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.story-quote {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #333;
  margin-top: 30px;
}

.story-quote blockquote {
  font-size: 18px;
  color: #333;
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.6;
}

.story-quote cite {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

/* Team Section */
.team-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-description {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 20px auto 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.team-member {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.member-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.member-position {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  margin-bottom: 15px;
}

.member-bio {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.member-social a {
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.member-social a:hover {
  background: #333;
  color: white;
  transform: translateY(-2px);
}

/* Achievements */
.achievements {
  background: white;
  padding: 80px 0;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.achievement-item {
  text-align: center;
  padding: 30px;
  border-radius: 20px;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.achievement-item:hover {
  background: white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.achievement-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 24px;
}

.achievement-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.achievement-year {
  display: inline-block;
  background: #333;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.achievement-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* ==========================================================================
   İLETİŞİM SAYFASI
   ========================================================================== */

/* Contact Hero */
.contact-hero {
  background: white;
  padding: 80px 0;
}

.contact-intro {
  text-align: center;
  margin-bottom: 60px;
}

.contact-title {
  font-size: clamp(24px, 4.2vw, 36px);
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.contact-description {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.contact-option {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-option:hover {
  background: white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.option-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #333, #555);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 24px;
}

.option-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.option-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.option-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.option-link:hover {
  color: #555;
}

/* Contact Form Section */
.contact-form-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.form-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.form-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #333;
  box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 30px;
}

.form-checkbox input {
  margin-top: 3px;
}

.form-checkbox label {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.form-checkbox a {
  color: #333;
  text-decoration: none;
}

.submit-btn {
  background: #333;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
}

.submit-btn:hover {
  background: #555;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(51, 51, 51, 0.3);
}

/* Contact Info */
.contact-info {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.info-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.info-icon {
  width: 45px;
  height: 45px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.info-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.social-connect {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.social-connect h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.social-connect .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-connect .social-icon {
  width: 50px;
  height: 50px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-connect .social-icon:hover {
  background: #333;
  color: white;
  transform: translateY(-3px);
}

/* Map Section */
.map-section {
  background: white;
  padding: 80px 0;
}

.map-title {
  font-size: clamp(22px, 3.8vw, 32px);
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  height: 400px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-content {
  text-align: center;
  color: #666;
}

.map-content i {
  font-size: 48px;
  color: #333;
  margin-bottom: 20px;
}

.map-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.map-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.map-btn {
  background: #333;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.map-btn:hover {
  background: #555;
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.faq-title {
  font-size: clamp(24px, 3.8vw, 32px);
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 50px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-question i {
  color: #333;
  margin-top: 2px;
  flex-shrink: 0;
}

.faq-answer {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ==========================================================================
   RESPONSİVE TASARIM
   ========================================================================== */

/* ==========================================================================
   TABLET RESPONSİVE TASARIM (768px - 1024px)
   ========================================================================== */

@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .page-header {
    padding: 50px 0 30px;
  }

  .page-title {
    font-size: 40px;
  }

  .featured-content {
    gap: 40px;
  }

  .cta-content {
    gap: 60px;
  }

  .cta-text h2 {
    font-size: 36px;
  }

  .about-content,
  .story-content,
  .contact-content {
    gap: 40px;
  }
}

/* ==========================================================================
   MOBİL RESPONSİVE TASARIM (768px ve altı)
   ========================================================================== */

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .page-header {
    padding: 40px 0 30px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
  
  .page-header .container { 
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
  
  .breadcrumb { 
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    text-align: center !important;
  }

  .page-title {
    font-size: 32px;
    margin-bottom: 10px;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
  }
  
  .page-description {
    font-size: 16px;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
  }

  /* ==========================================================================
     MAKALELER SAYFASI RESPONSİV
     ========================================================================== */

  .articles-filter {
    padding: 30px 0;
  }

  .filter-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .search-box {
    max-width: 100%;
  }

  .filter-options {
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .category-filter,
  .sort-filter {
    padding: 12px 16px;
    font-size: 14px;
    min-width: 140px;
    flex: 1;
    max-width: 48%;
    text-align: center;
    white-space: nowrap;
    overflow: visible;
  }

  .articles-grid {
    padding: 40px 0;
  }

  .articles-container {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 10px;
  }

  .article-card {
    margin: 0;
  }

  .article-image {
    height: 200px;
  }

  .article-content {
    padding: 25px;
  }

  .article-title {
    font-size: 18px;
  }

  .pagination {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  /* ==========================================================================
     YAZARLAR SAYFASI RESPONSİV
     ========================================================================== */

  .featured-author {
    padding: 60px 0;
  }

  .featured-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .featured-image {
    max-width: 280px;
    margin: 0 auto;
  }

  .featured-name {
    font-size: 28px;
  }

  .featured-title {
    font-size: 16px;
  }

  .featured-bio {
    font-size: 15px;
  }

  .featured-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
  }

  .featured-actions {
    justify-content: center;
    flex-direction: column;
    gap: 20px;
  }

  .profile-btn {
    padding: 12px 25px;
    font-size: 15px;
  }

  .authors-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .authors-filter {
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .filter-tabs {
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    background: none;
    box-shadow: none;
    justify-content: center;
  }

  .filter-tab {
    padding: 12px 16px;
    font-size: 13px;
    min-width: 70px;
    border-radius: 25px;
    background: white;
    border: 2px solid #e9ecef;
    white-space: nowrap;
  }
  
  .filter-tab.active {
    background: #333;
    color: white;
    border-color: #333;
  }

  .authors-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .author-card {
    padding: 25px;
    margin: 0 10px;
  }

  .author-image {
    width: 80px;
    height: 80px;
  }

  .author-name {
    font-size: 18px;
  }

  .author-actions {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .view-profile-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  /* CTA responsive */
  .cta-section {
    padding: 80px 0;
  }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .cta-visual {
    height: 180px;
    order: -1;
  }

  .cta-text {
    text-align: center;
  }

  .cta-text h2 {
    font-size: 28px;
  }

  .cta-description {
    font-size: 16px;
  }

  .cta-icon-large {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }

  .floating-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .cta-benefits {
    gap: 15px;
  }

  .benefit {
    padding: 12px 15px;
  }

  .benefit-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .benefit span {
    font-size: 14px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .cta-primary-btn,
  .cta-secondary-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 15px 25px;
  }

  /* ==========================================================================
     HAKKIMIZDA SAYFASI RESPONSİV
     ========================================================================== */

  .about-hero,
  .mission-vision,
  .our-story,
  .team-section,
  .achievements {
    padding: 60px 0;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-title {
    font-size: 32px;
  }

  .about-description {
    font-size: 16px;
  }

  .about-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .about-image {
    max-width: 300px;
    margin: 0 auto;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mv-item {
    padding: 30px 20px;
  }

  .mv-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .mv-title {
    font-size: 20px;
  }

  .mv-description {
    font-size: 14px;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-images {
    text-align: center;
  }

  .story-img-1 {
    width: 90%;
  }

  .story-img-2 {
    position: static;
    margin-top: 20px;
    width: 80%;
  }

  .story-title {
    font-size: 28px;
    text-align: center;
  }

  .story-text {
    font-size: 15px;
  }

  .story-quote {
    padding: 20px;
  }

  .story-quote blockquote {
    font-size: 16px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-member {
    padding: 25px;
    margin: 0 10px;
  }

  .member-image {
    width: 100px;
    height: 100px;
  }

  .member-name {
    font-size: 20px;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .achievement-item {
    padding: 25px;
    margin: 0 10px;
  }

  .achievement-icon {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }

  .achievement-title {
    font-size: 16px;
  }

  /* ==========================================================================
     İLETİŞİM SAYFASI RESPONSİV
     ========================================================================== */

  .contact-hero,
  .contact-form-section,
  .map-section,
  .faq-section {
    padding: 60px 0;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-description {
    font-size: 16px;
  }

  .contact-options {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-option {
    padding: 30px 20px;
    margin: 0 10px;
  }

  .option-icon {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }

  .option-title {
    font-size: 18px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-title {
    font-size: 26px;
    text-align: center;
  }

  .form-description {
    font-size: 15px;
    text-align: center;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px;
    font-size: 15px;
  }

  .submit-btn {
    padding: 12px 30px;
    font-size: 15px;
    width: 100%;
  }

  .contact-info {
    padding: 30px 20px;
  }

  .info-title {
    font-size: 20px;
    text-align: center;
  }

  .info-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .social-connect {
    padding: 25px 20px;
  }

  .social-connect .social-icon {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .map-title {
    font-size: 26px;
  }

  .map-placeholder {
    height: 300px;
  }

  .map-content i {
    font-size: 40px;
  }

  .map-content h3 {
    font-size: 20px;
  }

  .map-content p {
    font-size: 14px;
  }

  .faq-title {
    font-size: 26px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-item {
    padding: 25px 20px;
    margin: 0 5px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 40px 0 30px;
  }
  
  .page-header .container {
    text-align: left !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-header h1.page-title,
  .page-header .page-title {
    font-size: 28px !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: block !important;
    width: 100% !important;
    transform: translateX(0) !important;
  }
  
  .page-header .page-description {
    text-align: left !important;
    margin-left: 20px !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: block !important;
    width: calc(100% - 20px) !important;
  }

  .articles-grid,
  .authors-section,
  .about-hero,
  .contact-hero,
  .contact-form-section,
  .map-section,
  .faq-section,
  .mission-vision,
  .our-story,
  .team-section,
  .achievements,
  .cta-section {
    padding: 50px 0;
  }

  .contact-form,
  .contact-info {
    padding: 25px;
  }

  .pagination {
    gap: 5px;
  }

  .page-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  
  /* 480px altı ekranlar için filter düzenlemeleri */
  .filter-options {
    flex-direction: column;
    gap: 15px;
  }
  
  .category-filter,
  .sort-filter {
    max-width: 100%;
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    text-align: left;
  }
}


