/* ===================================
   FIRSAT54 - YENİLENMİŞ TASARIM
   Yeni Renkler: #8CBA8C, #D5E3D5, Siyah Yazı
   =================================== */

/* CSS Variables - YENİ RENK PALETİ */
:root {
  --primary-color: #1DC22D;        /* Canlı yeşil - Butonlar (sabit) */
  --primary-dark: #0e6610;         /* Koyu yeşil - Buton hover */
  --secondary-color: #f39c12;      /* Turuncu - İkincil (sabit) */
  --dark-bg: #8CBA8C;              /* Açık yeşil - Footer */
  --darker-bg: #6A9A6A;            /* Biraz daha koyu - Hover için */
  --light-bg: #D5E3D5;             /* Çok açık yeşil - Arka plan ve Header */
  --section-bg: #E5F0E5;           /* Biraz daha açık - Section bg */
  --text-dark: #000000;            /* SİYAH - Ana metin */
  --text-light: #333333;           /* Koyu gri - Alt metin */
  --white: #FFFFFF;                /* Beyaz - Buton yazıları */
  --success: #1DC22D;
  --border-color: #8CBA8C;         /* Açık yeşil kenarlıklar */
  --card-shadow: 0 2px 15px rgba(140, 186, 140, 0.2);
  --card-hover: 0 8px 25px rgba(140, 186, 140, 0.3);
  --radius: 12px;
  --radius-sm: 8px;
  
  /* YENİ - En üst banner rengi */
  --top-banner-bg: #1F521F;        /* Koyu yeşil - En üst banner */
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);  /* SİYAH */
  background: var(--light-bg);  /* #D5E3D5 */
  overflow-x: hidden;
}

/* Touch-friendly */
button, a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===================================
   TOP BANNER - En üst kısım (YAZI BEYAZ)
   =================================== */

.top-banner {
  background: var(--top-banner-bg);  /* #1F521F - YENİ RENK */
  color: #FFFFFF;  /* BEYAZ */
  padding: 1rem 0;
  text-align: center;
  border-bottom: 3px solid var(--white);
}

.banner-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFFFFF;  /* BEYAZ */
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header {
  background: var(--light-bg);  /* #D5E3D5 */
  border-bottom: 3px solid var(--dark-bg);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(140, 186, 140, 0.2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-dark);  /* SİYAH */
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
  /* Logo renkli kalacak, filter yok */
}

.nav {
  display: none;
}

.nav a {
  color: var(--text-dark);  /* SİYAH */
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 500;
  transition: color 0.3s;
  padding: 0.5rem;
}

.nav a:hover {
  color: var(--primary-color);
}

/* Kampanya Butonu (Header'da sağ üst) */
.kampanya-btn {
  display: block;
  background: var(--primary-color);  /* #1DC22D */
  border: 2px solid var(--dark-bg);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(29, 194, 45, 0.2);
}

.kampanya-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(29, 194, 45, 0.3);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--light-bg);
  padding: 1rem;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(140, 186, 140, 0.2);
  border-bottom: 3px solid var(--dark-bg);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  color: var(--text-dark);  /* SİYAH */
  text-decoration: none;
  padding: 1rem;
  border-bottom: 2px solid var(--dark-bg);
  font-size: 1.1rem;
  font-weight: 500;
}

.mobile-menu a:hover {
  background: var(--dark-bg);
  color: var(--text-dark);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  background: linear-gradient(135deg, var(--section-bg) 0%, var(--white) 100%);
  color: var(--text-dark);  /* SİYAH */
  padding: 3rem 0;
  text-align: center;
  border-bottom: 3px solid var(--dark-bg);
}

.hero-content h1 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: #000000;  /* SİYAH */
  font-weight: 700;
}

.subtitle {
  font-size: 1rem;
  color: #333333;  /* KOYU GRİ */
  margin-bottom: 2rem;
  padding: 0 1rem;
}

/* Form - Touch Friendly */
.notify-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 400px;
  margin: 0 auto 1rem;
  padding: 0 1rem;
}

.notify-form input {
  padding: 1rem;
  border: 2px solid var(--dark-bg);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: #000000;  /* SİYAH */
  font-size: 1rem;
  min-height: 48px;
}

.notify-form input::placeholder {
  color: #666666;  /* GRİ */
}

.notify-form input:focus {
  box-shadow: 0 0 0 3px rgba(140, 186, 140, 0.3);
}

.notify-form button {
  padding: 1rem 1.5rem;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--primary-color);  /* #1DC22D */
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  min-height: 48px;
  transition: all 0.3s;
  border: 2px solid var(--primary-color);
}

.notify-form button:hover:not(:disabled) {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--card-hover);
}

.small {
  font-size: 0.85rem;
  color: #333333;  /* KOYU GRİ */
}

/* ===================================
   SECTIONS
   =================================== */

.section {
  padding: 3rem 0;
}

.section-title {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 0.75rem;
  color: #000000;  /* SİYAH */
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  color: #333333;  /* KOYU GRİ */
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* ===================================
   İLÇE DROPDOWN
   =================================== */

.districts-section {
  background: var(--section-bg);
  border-bottom: 3px solid var(--dark-bg);
}

.ilce-dropdown-container {
  max-width: 500px;
  margin: 0 auto 2rem;
  text-align: center;
}

.ilce-dropdown {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  border: 3px solid var(--dark-bg);
  border-radius: 50px;
  background: var(--white);
  color: #000000;  /* SİYAH */
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238CBA8C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 1.2rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
}

.ilce-dropdown:hover {
  border-color: var(--darker-bg);
  box-shadow: var(--card-hover);
}

.ilce-dropdown:focus {
  border-color: var(--darker-bg);
  box-shadow: 0 0 0 3px rgba(140, 186, 140, 0.3);
}

.selected-ilce-info {
  margin-top: 1rem;
}

.ilce-badge {
  display: inline-block;
  background: var(--dark-bg);
  color: #000000;  /* SİYAH */
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: var(--card-shadow);
}

/* ===================================
   CATEGORIES
   =================================== */

.categories-section {
  background: var(--white);
  border-bottom: 3px solid var(--dark-bg);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.category-card {
  background: var(--white);
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  color: #000000;  /* SİYAH */
  box-shadow: var(--card-shadow);
  border: 2px solid var(--dark-bg);
  transition: all 0.3s;
}

.category-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--card-hover);
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.category-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #000000;  /* SİYAH */
  font-weight: 600;
}

.category-card p {
  font-size: 0.8rem;
  color: #333333;  /* KOYU GRİ */
  margin-bottom: 0.75rem;
}

.category-count {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ===================================
   POPULAR
   =================================== */

.popular-section {
  background: var(--section-bg);
  border-bottom: 3px solid var(--dark-bg);
}

.popular-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.popular-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 2px solid var(--dark-bg);
  position: relative;
  transition: all 0.3s;
}

.popular-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover);
}

.discount-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  z-index: 10;
}

.popular-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popular-content {
  padding: 1.5rem;
}

.popular-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #000000;  /* SİYAH */
}

.popular-content p {
  color: #333333;  /* KOYU GRİ */
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.popular-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #333333;  /* KOYU GRİ */
}

.btn-primary {
  width: 100%;
  padding: 0.875rem;
  background: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  min-height: 44px;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* ===================================
   BLOG
   =================================== */

.blog-section {
  background: var(--white);
  border-bottom: 3px solid var(--dark-bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 2px solid var(--dark-bg);
}

.blog-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-content {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  background: var(--dark-bg);
  color: #000000;  /* SİYAH */
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  color: #000000;  /* SİYAH */
}

.blog-content p {
  color: #333333;  /* KOYU GRİ */
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===================================
   STORIES
   =================================== */

.stories-section {
  background: var(--section-bg);
  border-bottom: 3px solid var(--dark-bg);
}

.stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.story-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  border: 2px solid var(--dark-bg);
  position: relative;
}

.story-quote {
  font-size: 4rem;
  color: var(--dark-bg);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
}

.story-text {
  font-style: italic;
  color: #333333;  /* KOYU GRİ */
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  font-size: 1rem;
  background: var(--primary-color);
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #000000;  /* SİYAH */
}

.author-info p {
  font-size: 0.85rem;
  color: #333333;  /* KOYU GRİ */
}

/* ===================================
   FAQ
   =================================== */

.faq-section {
  background: var(--white);
  border-bottom: 3px solid var(--dark-bg);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--dark-bg);
}

.faq-question {
  width: 100%;
  padding: 1.25rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;  /* SİYAH */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--dark-bg);
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  color: #333333;  /* KOYU GRİ */
  line-height: 1.8;
}

/* ===================================
   ESNAF CTA
   =================================== */

.esnaf-cta-box {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  color: #000000;  /* SİYAH */
  padding: 3rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  border: 3px solid var(--white);
}

.esnaf-cta-box h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #000000;  /* SİYAH */
}

.esnaf-cta-box > p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #000000;  /* SİYAH */
}

.esnaf-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #000000;  /* SİYAH */
}

.feature-icon {
  font-size: 1.25rem;
}

.btn-esnaf {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--white);
  color: #000000;  /* SİYAH */
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  min-height: 44px;
  transition: all 0.3s;
  border: 2px solid var(--white);
}

.btn-esnaf:hover {
  background: transparent;
  color: var(--white);
}

/* ===================================
   PLATFORMS
   =================================== */

.platforms-section {
  background: var(--section-bg);
  border-bottom: 3px solid var(--dark-bg);
}

.platforms {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.platforms a,
.platforms button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  min-height: 48px;
  transition: all 0.3s;
}

.btn-android {
  background: var(--primary-color);
  color: var(--white);
}

.btn-android:hover {
  background: var(--primary-dark);
  box-shadow: var(--card-hover);
}

.btn-ios {
  background: var(--white);
  color: var(--primary-color);
}

.btn-ios:hover {
  background: var(--section-bg);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
  background: var(--dark-bg);  /* #8CBA8C */
  color: #000000;  /* SİYAH */
  padding: 3rem 0 1.5rem;
  border-top: 3px solid var(--white);
  margin-top: 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #000000;  /* SİYAH */
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--white);
}

.footer-section p,
.footer-section ul {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #000000;  /* SİYAH */
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.6rem;
  transition: transform 0.2s;
}

.footer-section ul li:hover {
  transform: translateX(5px);
}

.footer-section a {
  color: #000000;  /* SİYAH */
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
}

.footer-section a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
  font-size: 1.3rem;
  transition: all 0.3s;
  color: #000000;  /* SİYAH */
}

.social-links a:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 0.3rem;
  color: #000000;  /* SİYAH */
}

.project-credit {
  font-size: 0.85rem;
  opacity: 0.8;
}

.project-credit a {
  color: #000000;  /* SİYAH */
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}

.project-credit a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ===================================
   MODAL
   =================================== */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  border: 3px solid var(--dark-bg);
}

.close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  color: #333333;
}

.close:hover {
  color: #000000;
}

/* ===================================
   INSTALL PROMPT
   =================================== */

.install-prompt {
  display: none;
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(140, 186, 140, 0.3);
  z-index: 1500;
  text-align: center;
  width: calc(100% - 2rem);
  max-width: 400px;
  border: 3px solid var(--dark-bg);
}

.install-prompt.active {
  display: block;
}

.install-prompt p {
  color: #000000;
  font-weight: 600;
}

.install-prompt button {
  margin: 0.5rem 0.3rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  min-height: 44px;
}

.install-prompt button:first-child {
  background: var(--primary-color);
  color: var(--white);
}

.install-prompt button:first-child:hover {
  background: var(--primary-dark);
}

.install-prompt button.secondary {
  background: var(--white);
  color: var(--primary-color);
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
  text-align: center;
}

/* ===================================
   TABLET (768px+)
   =================================== */

@media (min-width: 768px) {
  .nav {
    display: block;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .banner-text {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .popular-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .platforms {
    flex-direction: row;
    justify-content: center;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===================================
   DESKTOP (1024px+)
   =================================== */

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  
  .hero {
    padding: 5rem 0;
  }
  
  .hero-content h1 {
    font-size: 2.75rem;
  }
  
  .subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
  }
  
  .notify-form {
    flex-direction: row;
    max-width: 600px;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .popular-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .stories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Küçük telefonlar için */
@media (max-width: 480px) {
  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .ilce-dropdown {
    font-size: 1rem;
    padding: 0.9rem 1.2rem;
  }
  
  .ilce-badge {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
  }
}