/* Bekçilik Sınavı 2026 - Premium Website Styles */

:root {
  --primary: #3B82F6;
  --primary-dark: #2563EB;
  --primary-light: #60A5FA;
  --secondary: #8B5CF6;
  --secondary-dark: #7C3AED;
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --text-primary: #1F2937;
  --text-secondary: #6B7280;
  --background: #F9FAFB;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-800: #1F2937;
  --gray-900: #111827;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--background);
}

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

/* Header - Modern Glassmorphism */
header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.2s;
  padding: 8px 0;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.download-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Hero Section - Modern Gradient */
.hero {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-dark) 50%, var(--secondary-dark) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: pulse 15s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(to right, #fff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.store-badge {
  height: 56px;
  transition: all 0.3s;
  border-radius: 12px;
}

.store-badge:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Quick Links Section - NEW */
.quick-links {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.quick-link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--gray-50);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s;
  border: 1px solid transparent;
}

.quick-link-card:hover {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
  transform: translateY(-4px);
}

.quick-link-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.quick-link-text h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.quick-link-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-primary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--gray-50);
  padding: 40px 32px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.feature-card:hover {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.3);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Stats Section */
.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-dark) 100%);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-item h3 {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(to right, #fff, var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-item p {
  opacity: 0.8;
  font-size: 1.1rem;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 32px;
  padding: 80px 60px;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-box h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.cta-box p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* Legal Links Row */
.legal-links-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.legal-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all 0.2s;
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.legal-link:hover {
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.legal-link-icon {
  font-size: 20px;
}

/* Legal Pages */
.legal-page {
  padding: 60px 0;
  background: var(--white);
  min-height: calc(100vh - 200px);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--text-primary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-content .last-updated {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 0.9rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--primary);
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin-left: 24px;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.legal-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.legal-content a {
  color: var(--primary);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-content th,
.legal-content td {
  padding: 14px 16px;
  text-align: left;
  border: 1px solid var(--gray-200);
}

.legal-content th {
  background: var(--gray-100);
  font-weight: 600;
  color: var(--text-primary);
}

.legal-content td {
  color: var(--text-secondary);
}

/* Support Page */
.support-page {
  padding: 60px 0;
  background: var(--white);
}

.support-content {
  max-width: 800px;
  margin: 0 auto;
}

.support-card {
  background: var(--gray-50);
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

.support-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
}

.support-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.support-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.support-card a:hover {
  text-decoration: underline;
}

.support-card details {
  border-bottom: 1px solid var(--gray-200);
}

.support-card details:last-of-type {
  border-bottom: none;
}

.support-card summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.support-card summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
}

.support-card details[open] summary::after {
  content: '−';
}

/* Delete Account */
.delete-steps {
  background: var(--gray-100);
  padding: 28px;
  border-radius: 16px;
  margin: 24px 0;
  border-left: 4px solid var(--primary);
}

.delete-steps ol {
  margin-left: 24px;
}

.delete-steps li {
  margin-bottom: 14px;
  color: var(--text-primary);
  line-height: 1.7;
}

.warning-box {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border-left: 4px solid var(--warning);
  padding: 20px 28px;
  border-radius: 0 16px 16px 0;
  margin: 24px 0;
}

.warning-box p {
  color: #92400E;
  margin: 0;
  font-weight: 500;
}

/* Footer */
footer {
  background: var(--gray-900);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--gray-300);
  margin-top: 12px;
  line-height: 1.7;
}

.footer-links h4 {
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--white);
}

.footer-links a {
  display: block;
  color: var(--gray-300);
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.2s;
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-300);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .quick-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .quick-link-card {
    padding: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .legal-links-row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .cta-box {
    padding: 50px 30px;
  }

  .cta-box h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .quick-links-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}