.contact-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #fff8e1, #ffffff);
  font-family: Arial, sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 30px;
  text-align: center;
  flex: 1 1 300px;
  background-color: #fff3d6;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s; 
}

.contact-header:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.contact-header h2 {
  font-size: 2rem;
  color: #b88a00;
  margin-bottom: 10px;
}

.contact-header p {
  color: #555;
  font-size: 1.05rem;
}

/* KARTLAR */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.contact-card h3 {
  margin-top: 18px;
  font-size: 1.3rem;
  color: #333;
}

.contact-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 8px 0 12px;
}

.contact-card a {
  color: #b88a00;
  font-weight: bold;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* İKONLAR */
.icon {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
}

.icon.phone { background: #c99700; }
.icon.mail { background: #d4a200; }
.icon.social { background: #b88a00; }

/* SOSYAL */
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: #fff8e1;
  color: #b88a00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #b88a00;
  color: #fff;
  transform: scale(1.1);
}
