/* ------------------------------ */
/* STICKY PHONE BAR - Site Renkleriyle Uyumlu */
/* ------------------------------ */
.sticky-phone-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #3FA7D6 0%, #276587 100%); /* Site renkleri */
  padding: 10px 20px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.phone-cta {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s ease;
}

.phone-cta:hover {
  opacity: 0.9;
}

.phone-icon {
  font-size: 20px;
}

.phone-number-text {
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* Mobil için sticky bar'ı alta al */
@media (max-width: 768px) {
  .sticky-phone-bar {
    bottom: 0;
    top: auto;
    padding: 12px 10px;
  }
  
  .phone-cta {
    font-size: 15px;
  }
  
  .phone-text {
    display: none; /* Mobilde sadece numara */
  }
  
  .phone-number-text {
    font-size: 16px;
  }
}

/* Body padding için */
body {
  padding-top: 45px; /* Sticky bar için alan */
}

@media (max-width: 768px) {
  body {
    padding-top: 0;
    padding-bottom: 50px; /* Mobilde alt için alan */
  }
}
