.contact {
  background: linear-gradient(rgba(11, 18, 32, 0.85), rgba(11, 18, 32, 0.9)), url("../../images/haqqımızda.png") no-repeat center center / cover;
  background-attachment: -webkit-scroll;
  background-attachment: fixed;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  background: #124573;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.contact-info h3 { margin-bottom: 20px; color: var(--text-main); }
.contact-info p { margin-bottom: 10px; color: var(--text-muted); }

.whatsapp {
  display: inline-block;
  margin-top: 20px;
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  padding: 30px;
  border-radius: 12px;
}

.contact-form input, .contact-form textarea { padding: 12px; border: none; border-radius: 8px; outline: none; }

/* Göndər düyməsi yeni qırmızı rəngdə */
.contact-form button { 
  background: #F80505; 
  color: #ffffff;
  padding: 12px; 
  border: none; 
  border-radius: 8px; 
  cursor: pointer; 
  font-weight: bold; 
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #c40404;
}

.map { margin-top: 40px; border-radius: 12px; overflow: hidden; }

@media (max-width: 600px) { .contact-container { flex-direction: column; } }