/* ============================================
   PAGES — Shared CSS for Content Pages
   (Hakkımızda, İletişim, SSS, Nasıl Kullanılır, Kullanım Koşulları)
   ============================================ */

/* --- PAGE RESET & BASE --- */
.page-body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 50%, #e2e8f0 100%);
  color: #334155;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
}

/* --- SITE NAVBAR --- */
.site-navbar {
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-navbar .navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.5rem;
}
.site-navbar .nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  color: #f8fafc;
  transition: opacity 0.2s;
}
.site-navbar .nav-brand:hover {
  opacity: 0.85;
}
.site-navbar .nav-brand-icon {
  font-size: 1.3rem;
}
.site-navbar .nav-links {
  display: flex !important;
  align-items: center;
  gap: 0.25rem;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.site-navbar .nav-links li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.site-navbar .nav-link-item {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: all 0.25s ease;
  display: inline-block;
}
.site-navbar .nav-link-item:hover,
.site-navbar .nav-link-item.active {
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.08);
}

/* Highlighted nav link (CV Oluştur) */
.site-navbar .nav-link-highlight {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18) 0%, rgba(139, 92, 246, 0.14) 100%);
  color: #93c5fd !important;
  border: 1px solid rgba(59, 130, 246, 0.2);
  font-weight: 600;
}
.site-navbar .nav-link-highlight:hover,
.site-navbar .nav-link-highlight.active {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.28) 0%, rgba(139, 92, 246, 0.22) 100%);
  color: #ffffff !important;
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.15);
}

/* Mobile hamburger */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #f8fafc;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 768px) {
  .nav-mobile-toggle {
    display: block;
  }
  .site-navbar .nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1rem !important;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .site-navbar .nav-links.open {
    display: flex !important;
  }
  .site-navbar .nav-link-highlight {
    text-align: center;
    margin-top: 0.5rem;
  }
}

/* --- PAGE HERO --- */
.page-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #0f172a 100%);
  padding: 4rem 1.5rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59, 130, 246, 0.12);
  color: #93c5fd;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(59, 130, 246, 0.15);
}
.page-hero h1 {
  color: #f8fafc;
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  line-height: 1.25;
  position: relative;
}
.page-hero-gradient {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero p {
  color: #94a3b8;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

/* --- PAGE CONTENT --- */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

/* --- CONTENT CARDS --- */
.content-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 2.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}
.content-card:hover {
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.content-card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.content-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 1.25rem 0 0.5rem;
}
.content-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #475569;
  margin: 0 0 0.75rem;
}
.content-card p:last-child {
  margin-bottom: 0;
}
.content-card ul, .content-card ol {
  padding-left: 1.25rem;
  margin: 0.5rem 0 0.75rem;
}
.content-card li {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 0.35rem;
}

/* Highlight box */
.content-highlight {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-left: 4px solid #3b82f6;
  padding: 1.25rem 1.5rem;
  border-radius: 0 12px 12px 0;
  margin: 1rem 0;
}
.content-highlight p {
  color: #1e40af;
  font-size: 0.88rem;
  margin: 0;
}

/* --- FEATURE GRID --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.feature-card {
  background: white;
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: #3b82f6;
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 0.85rem;
  display: block;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem;
}
.feature-card p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* --- STEPS --- */
.step-list {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.step-item {
  counter-increment: step-counter;
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  align-items: flex-start;
}
.step-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transform: translateX(4px);
}
.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0f172a, #334155);
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.4rem;
}
.step-content p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* --- FAQ ACCORDION --- */
.faq-item {
  background: white;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  transition: all 0.2s ease;
  gap: 1rem;
}
.faq-question:hover {
  color: #3b82f6;
}
.faq-arrow {
  font-size: 1.2rem;
  color: #94a3b8;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: #3b82f6;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #475569;
  margin: 0 0 0.5rem;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}

/* --- CONTACT FORM --- */
.contact-form-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.contact-field {
  margin-bottom: 1.25rem;
}
.contact-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}
.contact-field input,
.contact-field textarea,
.contact-field select {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-family: inherit;
  transition: all 0.25s ease;
  background: #f8fafc;
  color: #334155;
  box-sizing: border-box;
}
.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
  outline: none;
  border-color: #3b82f6;
  background: white;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .contact-row {
    grid-template-columns: 1fr;
  }
}
.contact-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f172a, #334155);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 0.5rem;
}
.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.3);
}
.contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Contact info cards */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-info-item {
  background: white;
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
}
.contact-info-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.contact-info-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.contact-info-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}
.contact-info-value {
  font-size: 0.82rem;
  color: #64748b;
}
.contact-info-value a {
  color: #3b82f6;
  text-decoration: none;
}

/* --- STATS BAR --- */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin: 2rem 0;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}
.stat-item {
  text-align: center;
}
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0f172a, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 2px;
}

/* --- CTA BANNER --- */
.page-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  margin: 3rem 0 0;
  position: relative;
  overflow: hidden;
}
.page-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-cta h2 {
  color: #f8fafc;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  position: relative;
}
.page-cta p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
  position: relative;
}
.page-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #0f172a;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  position: relative;
}
.page-cta .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* --- SITE FOOTER --- */
.site-footer {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f8fafc;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  text-decoration: none;
}
.footer-brand-icon {
  font-size: 1.3rem;
}
.footer-desc {
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 0;
}
.footer-heading {
  color: #f8fafc;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #60a5fa;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-copy {
  color: #475569;
  font-size: 0.78rem;
  margin: 0;
}
.footer-powered {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-size: 0.78rem;
}
.footer-powered img {
  max-height: 18px;
  width: auto;
  object-fit: contain;
}

/* --- BREADCRUMB --- */
.page-breadcrumb {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb-list a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-list a:hover {
  color: #3b82f6;
}
.breadcrumb-list .breadcrumb-sep {
  color: #cbd5e1;
}
.breadcrumb-list .breadcrumb-current {
  color: #334155;
  font-weight: 600;
}

/* --- TEAM SECTION --- */
.team-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0f172a, #334155);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.team-avatar img {
  width: 60px;
  height: auto;
}
.team-avatar-letter {
  color: white;
  font-weight: 800;
  font-size: 2rem;
}
.team-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.25rem;
}
.team-info p {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* --- VALUE PROPOSITION --- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.value-card {
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
}
.value-card:hover {
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}
.value-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.value-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.25rem;
}
.value-card p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .page-hero {
    padding: 3rem 1.25rem 2.5rem;
  }
  .page-hero h1 {
    font-size: 1.6rem;
  }
  .page-hero p {
    font-size: 0.92rem;
  }
  .page-content {
    padding: 2rem 1rem 4rem;
  }
  .content-card {
    padding: 1.5rem 1.25rem;
  }
  .contact-form-card {
    padding: 1.5rem;
  }
  .page-cta {
    padding: 2rem 1.5rem;
  }
  .stats-bar {
    gap: 1.5rem;
    padding: 1.5rem;
  }
  .team-section {
    flex-direction: column;
    text-align: center;
  }
}
