/* ═══════════════════════════════════════════
   AldınAldın Clean Light Theme
   ═══════════════════════════════════════════ */

:root {
  --orange-primary: #E8751A;
  --orange-light: #fff2e8;
  --orange-border: #ffd5b5;
  
  --bg-body: #fffaf6; /* Çok hafif turuncumsu beyaz */
  --bg-card: #ffffff;
  
  --text-dark: #1f2937;
  --text-muted: #4b5563;
  --text-light: #9ca3af;
  
  --border-color: #e5e7eb;
  
  --whatsapp: #25D366;
  --whatsapp-bg: #e5fbf0;
  --telegram: #0088cc;
  --telegram-bg: #e5f4fb;
  --instagram: #e1306c;
  --instagram-bg: #fceaf0;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-body);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ── */
#siteHeader {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0; /* Logo boyutuna göre şekillenen menü çubuğu */
  position: relative; 
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo significantly enlarged */
.logo-link {
  display: block;
}

.logo-link img {
  height: 32px; /* Kırpılmış haliyle çok daha zarif ve okunur bir başlık boyutu */
  width: auto;
  display: block;
}

.back-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--orange-primary);
}

/* ── HERO ── */
.hero {
  padding: 60px 0 80px; /* Menü bar genişlediği için ekstra boşluğa gerek yok */
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 50px;
}

/* ── CHANNELS GRID ── */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  text-align: left;
}

.channel-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.channel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.channel-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.channel-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.channel-icon.whatsapp {
  background-color: var(--whatsapp-bg);
  color: var(--whatsapp);
}

.channel-icon.telegram {
  background-color: var(--telegram-bg);
  color: var(--telegram);
}

.channel-icon.instagram {
  background-color: var(--instagram-bg);
  color: var(--instagram);
}

.channel-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.channel-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.channel-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.channel-card a {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.channel-card a:hover {
  opacity: 0.9;
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: white;
}

.btn-telegram {
  background-color: var(--telegram);
  color: white;
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

/* ── STATS CARD ── */
.stats-wrapper {
  max-width: 800px;
  margin: 0 auto 40px;
}

.stats-card {
  background: #ffffff;
  border: 1px solid var(--orange-border);
  border-radius: 20px;
  padding: 48px 32px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.stats-title {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 500;
}

.stats-title strong {
  color: var(--orange-primary);
  font-weight: 800;
  font-size: 1.5rem;
}

.stats-main {
  margin-bottom: 24px;
}

.stats-number {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--orange-primary);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.stats-label {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stats-info {
  font-size: 1rem;
  color: var(--text-light);
}

.stats-info strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* ── HERO NOTE ── */
.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  background-color: #f3f4f6;
  padding: 10px 20px;
  border-radius: 100px;
}

/* ── FAQ SECTION ── */
.faq-section {
  padding: 40px 0 80px;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
  border-color: var(--orange-border);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  list-style: none;
  user-select: none;
  color: var(--text-dark);
  transition: color 0.2s;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  color: var(--orange-primary);
}

.faq-chevron {
  color: var(--text-light);
  transition: transform 0.3s;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ── FOOTER ── */
.site-footer {
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 60px 0;
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Enlarged Footer Logo */
.footer-brand img {
  height: 56px; /* İdeal ve şık footer boyutu */
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 24px;
}

.footer-copy {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.4rem;
  }
  
  .logo-link img {
    height: 24px; /* Mobilde temiz ve orantılı boyut */
  }
  .hero {
    padding: 60px 0 60px;
  }
  
  .channels-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .stats-card {
    padding: 32px 20px;
  }

  .stats-number {
    font-size: 3.5rem;
  }
  
  .hero-note {
    text-align: left;
    align-items: flex-start;
  }
  
  .hero-note svg {
    margin-top: 3px;
  }

  .faq-question {
    font-size: 1rem;
    padding: 16px 20px;
  }
}
