.contact-info {
  padding: 10px 0;
}

.contact-box {
  position: relative;
  background: linear-gradient(90deg, #0ea5e9, #0284c7);
  border-radius: 20px;
  padding: 60px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.contact-left h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-left .hours {
  font-weight: 600;
}

.phone-btn {
  background: #0f172a;
  color: #fff;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.phone-btn:hover {
  background: #1e293b;
  transform: translateY(-3px);
}

/* Dekoratif Küpler */
.shape {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  opacity: 0.9;
}

.shape11 { background: #f97316; bottom: 20px; left: 40px; transform: rotate(12deg); }
.shape22 { background: #facc15; top: 50%; left: 48%; transform: rotate(20deg); }
.shape33 { background: #0ea5e9; top: 30%; right: 80px; transform: rotate(-10deg); }
.shape44 { background: #f97316; top: 20%; left: 35%; transform: rotate(18deg); }

/* Mobil */
@media (max-width: 900px) {
  .contact-box {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 40px 25px;
  }

  .contact-left h2 {
    font-size: 30px;
  }

  .phone-btn {
    font-size: 18px;
    padding: 14px 28px;
  }
}
