/* ===========================================
   HAKKIMIZDA PAGE STYLES
   Modern Dijital Tasarım
   =========================================== */

/* Hero Section */
.hero-about {
  padding: 150px 0 100px;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.hero-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 40%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(114, 9, 183, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  color: var(--text-accent);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.hero-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: var(--gradient-primary);
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-description {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  color: var(--bg-dark);
  overflow: hidden;
}

.hero-wave svg {
  width: 100%;
  height: 100px;
}

/* Vision Mission Section */
.vision-mission {
  padding: 100px 0;
  background: var(--bg-dark);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 60px;
}

.vm-card {
  background: var(--bg-glass);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 20px;
  padding: 50px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.05;
  transform: scale(0);
  transition: transform 0.5s ease;
}

.vm-card:hover::before {
  transform: scale(1);
}

.vm-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 217, 255, 0.5);
  box-shadow: var(--glow-cyan);
}

.vm-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
  color: var(--text-accent);
}

.vm-icon svg {
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.vm-card h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text-primary);
  font-weight: 700;
}

.vm-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* Values Section */
.values {
  padding: 100px 0;
  background: var(--bg-darker);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  color: var(--text-accent);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 42px;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background: var(--bg-glass);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: 15px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.value-card:hover::before {
  transform: scaleY(1);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--glow-cyan);
  border-color: rgba(0, 217, 255, 0.4);
}

.value-number {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  opacity: 0.3;
}

.value-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text-primary);
  font-weight: 700;
}

.value-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Services Overview Section */
.services-overview {
  padding: 100px 0;
  background: var(--bg-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-item {
  background: var(--bg-glass);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 217, 255, 0.15);
}

.service-item:hover {
  transform: translateY(-15px);
  box-shadow: var(--glow-neon);
  border-color: rgba(0, 255, 217, 0.4);
}

.service-icon {
  font-size: 60px;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.service-item h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text-primary);
  font-weight: 700;
}

.service-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Why Us Section */
.why-us {
  padding: 100px 0;
  background: var(--bg-darker);
}

.why-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-text h2 {
  font-size: 42px;
  margin-bottom: 40px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.advantages-list {
  list-style: none;
  padding: 0;
}

.advantages-list li {
  margin-bottom: 25px;
  padding: 20px;
  background: var(--bg-glass);
  border-radius: 12px;
  border-left: 3px solid var(--text-accent);
  transition: all 0.3s ease;
}

.advantages-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 217, 255, 0.2);
}

.advantages-list strong {
  color: var(--text-primary);
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}

.why-us-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--gradient-dark);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.05);
  box-shadow: var(--glow-cyan);
  border-color: rgba(0, 217, 255, 0.5);
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

/* Process Section */
.process {
  padding: 100px 0;
  background: var(--bg-dark);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 60px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  z-index: 0;
}

.process-step {
  background: var(--bg-glass);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: var(--glow-cyan);
  border-color: rgba(0, 217, 255, 0.5);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 auto 20px;
  box-shadow: var(--glow-cyan);
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-primary);
  font-weight: 700;
}

.process-step p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.cta-content p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn {
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-primary);
  box-shadow: var(--glow-cyan);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-accent);
  border-color: var(--text-accent);
}

.btn-secondary:hover {
  background: var(--text-accent);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .values-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .why-us-content {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-content h2 {
    font-size: 28px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
}

