/* Şirket Profili Modern Styles */

/* Navbar Scroll Hide */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.site-header.hidden {
  transform: translateY(-100%);
}

/* Body padding for fixed header */
body {
  padding-top: 80px;
}

/* Hero Section */
.company-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  padding: 40px 0 80px;
  position: relative;
  overflow: hidden;
}

.company-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(198, 29, 35, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(198, 29, 35, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(35, 31, 32, 0.7);
  margin: 0;
  font-weight: 400;
}

/* Company Overview Section */
.company-overview {
  padding: 100px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.company-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(198, 29, 35, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(198, 29, 35, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.overview-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.overview-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 30px 0;
  letter-spacing: -0.5px;
  transition: all 300ms ease;
}

.overview-title:hover {
  color: var(--brand);
  transform: translateX(10px);
}

.overview-description {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(35, 31, 32, 0.8);
  margin: 0 0 25px 0;
  transition: all 300ms ease;
}

.overview-description:hover {
  color: var(--black);
  transform: translateX(5px);
}

.overview-description strong {
  color: var(--black);
  font-weight: 600;
  transition: all 300ms ease;
}

.overview-description:hover strong {
  color: var(--brand);
}

.overview-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(198, 29, 35, 0.05) 0%, rgba(198, 29, 35, 0.02) 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(198, 29, 35, 0.2);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.image-placeholder:hover {
  transform: translateY(-10px) scale(1.02);
  background: linear-gradient(135deg, rgba(198, 29, 35, 0.1) 0%, rgba(198, 29, 35, 0.05) 100%);
  border-color: var(--brand);
  box-shadow: 0 20px 40px rgba(198, 29, 35, 0.15);
}

.image-placeholder svg {
  color: rgba(198, 29, 35, 0.3);
  margin-bottom: 15px;
  transition: all 300ms ease;
}

.image-placeholder:hover svg {
  color: var(--brand);
  transform: scale(1.1);
}

.image-placeholder p {
  font-size: 16px;
  color: rgba(35, 31, 32, 0.6);
  margin: 0;
  font-weight: 500;
  transition: all 300ms ease;
}

.image-placeholder:hover p {
  color: var(--brand);
}


/* Vision Section */
.vision-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(198, 29, 35, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(198, 29, 35, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.vision-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 24px;
  padding: 60px 50px;
  box-shadow: 0 20px 60px rgba(35, 31, 32, 0.1);
  border: 1px solid rgba(35, 31, 32, 0.05);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(35, 31, 32, 0.15);
}

.vision-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 30px 0;
  letter-spacing: -0.5px;
  transition: all 300ms ease;
}

.vision-title:hover {
  color: var(--brand);
  transform: scale(1.05);
}

.vision-text {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(35, 31, 32, 0.8);
  margin: 0;
  transition: all 300ms ease;
}

.vision-text:hover {
  color: var(--black);
}


/* Responsive Design */

@media (max-width: 900px) {
  .company-hero {
    padding: 20px 0 60px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .overview-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .overview-title {
    font-size: 30px;
  }
  
  .overview-description {
    font-size: 16px;
  }
  
  .image-placeholder {
    width: 250px;
    height: 250px;
  }
  
  .vision-content {
    padding: 40px 30px;
  }
  
  .vision-title {
    font-size: 30px;
  }
  
  .vision-text {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .company-hero {
    padding: 20px 0 40px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .overview-title {
    font-size: 24px;
  }
  
  .overview-description {
    font-size: 15px;
  }
  
  .image-placeholder {
    width: 200px;
    height: 200px;
  }
  
  .vision-content {
    padding: 30px 20px;
  }
  
  .vision-title {
    font-size: 24px;
  }
  
  .vision-text {
    font-size: 16px;
  }
}