.pro-section {
  padding: 80px 20px;
  background-color: #fff8e1;
  color: #333;
  font-family: Arial, sans-serif;
}

.pro-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  flex: 1 1 300px;
  background-color: #fff3d6;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pro-header:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.pro-header h1 {
  font-size: 2rem;
  color: #b88a00;
  margin-bottom: 20px;
}

.pro-header p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.pro-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  width: 300px;
  text-align: center;
}

.card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.card h3 {
  margin: 20px 0 10px;
  color: #b88a00;
}

.card p {
  padding: 0 15px 20px;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #555;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.about-mission {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.mission, .vision {
  background-color: #fff3d6;
  border-radius: 15px;
  padding: 30px;
  flex: 1 1 350px;
  max-width: 400px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.mission:hover, .vision:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.mission h2, .vision h2 {
  color: #b88a00;
  margin-bottom: 15px;
}

.mission p, .vision p {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
}

/* Responsive */
@media(max-width: 992px){
  .about-cards {
    gap: 20px;
  }
}

@media(max-width: 768px){
  .about-cards, .about-mission {
    flex-direction: column;
    align-items: center;
  }

  .card, .mission, .vision {
    max-width: 90%;
  }
}
.whatsapp-order {
  text-align: center;
  margin: 40px 0 0;
}

.whatsapp-order a {
  display: inline-block;
  background-color: #25D366; /* WhatsApp yeşili */
  color: white;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.3s, transform 0.2s;
}

.whatsapp-order a:hover {
  background-color: #128C7E; /* Koyu yeşil hover */
  transform: translateY(-3px);
}

.incele-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #b88a00;
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s ease;
}

/* Alt çizgi efekti */
.incele-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #b88a00;
  transition: width 0.3s ease;
}

.incele-link:hover {
  color: #8f6a00;
}

.incele-link:hover::after {
  width: 100%;
}

