/* Hero Button Styles for Solution Pages */
.hero-button {
  width: 15vw;
  height: 4.5vw;
  border-radius: 10px;
  background-color: #001d3d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.15vw;
  font-size: 1.4vw;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-button:hover {
  background-color: #002a5c;
  transform: translateY(-2px);
}

.hero-button a {
  color: #fff;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
}

/* Mobile Responsive for Hero Button */
@media (max-width: 768px) {
  .hero-button {
    width: 180px;
    height: 45px;
    font-size: 14px;
  }
}

/* İletişim Sayfası Stilleri */
.contact-info-section {
  margin-top: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #000000;
}

.contact-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.contact-detail {
  font-size: 1rem;
  color: #000000;
  margin: 0;
  line-height: 1.6;
}

.contact-detail a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
}

.contact-detail a:hover {
  text-decoration: underline;
}

/* Mobile Responsive for Contact */
@media (max-width: 768px) {
  .contact-item {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .contact-title {
    font-size: 1.1rem;
  }

  .contact-detail {
    font-size: 0.9rem;
  }
}

/* Modern Content Section Styles */
.modern-content-section {
  padding: 6rem 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.modern-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2vw;
  position: relative;
  z-index: 2;
}

.content-header {
  text-align: center;
  margin-bottom: 2rem;
}

.content-title {
  font-size: 3rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.content-subtitle {
  font-size: 1.2rem;
  color: #000000;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
}

.content-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-wrapper:hover .image-overlay {
  opacity: 1;
}

.overlay-content h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 0;
}

.content-text {
  padding-right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.main-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 2rem;
  font-weight: 400;
}

.subsection-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.conclusion-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
  margin-top: 2rem;
  font-style: italic;
  background: transparent;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #000000;
  font-weight: 500;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
}

.feature-item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  font-weight: bold;
  color: #000000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .modern-content-section {
    padding: 4rem 0;
  }

  .content-title {
    font-size: 2rem;
  }

  .content-subtitle {
    font-size: 1rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-text {
    padding-right: 0;
    height: auto;
  }

  .main-image {
    height: 300px;
  }

  .feature-item {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }
}

/* About Section */
.about-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

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

.about-tag {
  background: #1a1b1f;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 2rem;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  max-width: 800px;
}

/* Stats Section */
.stats-section {
  padding: 3rem 0;
  background: white;
  border-top: 1px solid #e9ecef;
}

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

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1b1f;
  margin-bottom: 0.5rem;
}

.stat-text {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 500;
}

/* Challenge Section */
.challenge-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.challenge-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1b1f;
  text-align: center;
  margin-bottom: 3rem;
}

.challenge-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.challenge-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.challenge-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 2rem;
}

.challenge-features {
  list-style: none;
  padding: 0;
}

.challenge-features li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
}

.challenge-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}

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

  .challenge-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .challenge-image img {
    height: 250px;
  }
}

/* Solutions Grid Styles */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 0.75rem;
  transition: all 0.3s ease;
  border: 2px solid #e9ecef;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: black;
}

.card-image {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1b1f;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.card-description {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-features {
  margin-bottom: 1.5rem;
}

.feature-item {
  font-size: 0.9rem;
  color: #495057;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.card-link {
  color: #ffffff;
  background-color: #001d3d;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: auto;
}

.card-link:hover {
  background-color: #002a5c;
  color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .solutions-grid,
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
  }

  .solution-card,
  .product-card {
    padding: 0.5rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-description {
    font-size: 0.9rem;
  }
}

/* Product Cards Styles */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid #e9ecef;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: #007bff;
}

/* General Card Styles */
.info-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid #e9ecef;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: #007bff;
}

.info-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1b1f;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.info-card-text {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.5;
  flex-grow: 1;
}
