/* About Page Styles - Index ile Tutarlı Modern Tasarım */

/* Hero Section - Index tarzında */
.about-hero, .products-hero, .solutions-hero, .industries-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);
  color: white;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/about/hero-bg.jpg') center/cover no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg, 
    rgba(30, 58, 138, 0.6) 0%, 
    rgba(30, 64, 175, 0.4) 100%
  );
  z-index: 2;
}

/* Grid pattern overlay - Index'teki gibi */
.about-hero::before, .products-hero::before, .solutions-hero::before, .industries-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 2;
}

.about-hero .container, .products-hero .container, .solutions-hero .container, .industries-hero .container {
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1s ease-out;
  color: white !important;
}

.hero-description {
  font-size: 1.3rem;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1s ease-out 0.2s both;
  color: white !important;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Company Story Section - Index tarzında */
.company-story-section {
  padding: 8rem 0;
  background: white;
}

.story-content {
  padding-right: 2rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.story-highlights {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 200px;
  border: 1px solid #e2e8f0;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  color: white;
  font-size: 1.5rem;
}

.highlight-content h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.highlight-content p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.9rem;
}

.story-image {
  position: relative;
}

.story-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.story-image:hover img {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.image-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
}

/* Mission Vision Values Section - Index tarzında */
.mvv-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.mvv-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid transparent;
}

.mvv-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-15px);
}

.mission-card:hover {
  border-color: #EF4444;
}

.vision-card:hover {
  border-color: #10B981;
}

.values-card:hover {
  border-color: #F59E0B;
}

.mvv-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mvv-card:hover .mvv-icon {
  transform: scale(1.1);
}

.mission-card .mvv-icon {
  background: linear-gradient(135deg, #EF4444, #DC2626);
}

.vision-card .mvv-icon {
  background: linear-gradient(135deg, #10B981, #059669);
}

.values-card .mvv-icon {
  background: linear-gradient(135deg, #F59E0B, #D97706);
}

.mvv-icon i {
  color: white;
  font-size: 2rem;
}

.mvv-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.mvv-description {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.mvv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.mvv-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  font-weight: 500;
}

.mvv-list i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  font-size: 0.9rem;
}

/* Team Section - Index tarzında */
.team-section {
  padding: 8rem 0;
  background: white;
}

.team-card {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.team-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-15px);
}

.team-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(30, 64, 175, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
  color: white;
}

.team-content {
  padding: 2rem;
  text-align: center;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.team-position {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-description {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* Achievements Section - Index tarzında */
.achievements-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.achievement-card {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid transparent;
}

.achievement-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-15px);
  border-color: var(--primary-color);
}

.achievement-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
  transform: scale(1.1);
}

.achievement-icon i {
  color: white;
  font-size: 2rem;
}

.achievement-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1;
}

.achievement-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.achievement-description {
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* Timeline Section - Index tarzında */
.timeline-section {
  padding: 8rem 0;
  background: white;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-year {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 80px;
}

.timeline-content {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  width: calc(50% - 60px);
  position: relative;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border: 15px solid transparent;
  transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -30px;
  border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -30px;
  border-right-color: white;
}

.timeline-content h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.timeline-content p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* CTA Section - Index ile Aynı */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-grid)"/></svg>');
  opacity: 0.3;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  min-width: 220px;
  padding: 1rem 2rem;
  background: white !important;
  color: #1E3A8A !important;
  border: 2px solid white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
}

.cta-btn:hover {
  background: #f8fafc !important;
  color: #1E3A8A !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Animations - Index'teki gibi */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 992px) {
  .story-content {
    padding-right: 0;
    margin-bottom: 4rem;
  }
  
  .story-highlights {
    flex-direction: column;
    gap: 1rem;
  }
  
  .highlight-item {
    min-width: auto;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .about-hero, .products-hero, .solutions-hero, .industries-hero {
    height: 40vh;
    min-height: 300px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2.2rem;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 60px;
  }
  
  .timeline-marker {
    left: 20px;
    transform: none;
  }
  
  .timeline-content {
    width: 100%;
    margin: 0 !important;
    margin-top: 1rem !important;
  }
  
  .timeline-content::before {
    display: none;
  }
  
  .achievement-number {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    min-width: 280px;
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 576px) {
  .about-hero, .products-hero, .solutions-hero, .industries-hero {
    height: 35vh;
    min-height: 250px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .mvv-card {
    padding: 2rem 1.5rem;
  }
  
  .team-content {
    padding: 1.5rem;
  }
  
  .achievement-card {
    padding: 2rem 1.5rem;
  }
  
  .timeline-content {
    padding: 2rem 1.5rem;
  }
}