/* 📞 Sabit Çağrı Balonu */
.call-bubble-wrap {
  position: fixed;
  bottom: 170px;
  right: 20px;
  z-index: 9999;
  font-family: sans-serif;
}

/* 💻 Desktop görünüm */
.call-bubble {
  display: flex;
  align-items: center;
  background-color: #1da75a;
  color: white;
  border-radius: 100px;
  text-decoration: none;
  padding: 16px 26px 16px 80px;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.call-bubble:hover {
  background-color: #16904d;
  transform: translateY(-2px);
  color: #ffff;
}

/* 🔔 Telefon ikon kısmı */
.call-icon {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 88px;
  height: 88px;
}

.ring {
  position: absolute;
  width: 88px;
  height: 88px;
  border: 2px solid #f7bc3c;
  border-radius: 50%;
  top: 0;
  left: 0;
  animation: ring-pulse 1.2s infinite ease-in-out;
  opacity: 0.5;
}

.ring-fill {
  position: absolute;
  width: 64px;
  height: 64px;
  background-color: rgba(37, 211, 102, 0.6);
  border-radius: 50%;
  top: 12px;
  left: 12px;
  animation: ring-fill 2s infinite ease-in-out;
}

.icon {
  position: absolute;
  width: 48px;
  height: 48px;
  background-color: #25d366;
  border-radius: 50%;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ring-shake 1.5s infinite ease-in-out;
}

.icon img {
  width: 24px;
  height: 24px;
}

/* 📄 Yazı kısmı */
.call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.line1 {
  font-size: 18px;
  font-weight: 700;
}

/* ✅ "bis 21:00 Uhr" tamamen kaldırıldı */
.line2 {
  display: none !important;
}

/* 📱 Mobil görünüm – sadece yuvarlak ikon */
@media (max-width: 768px) {
  .call-bubble {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    justify-content: center;
    align-items: center;
    background-color: #1da75a !important;
  }

  .call-icon {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    width: 60px !important;
    height: 60px !important;
  }

  .ring,
  .ring-fill {
    width: 60px !important;
    height: 60px !important;
    top: 0;
    left: 0;
    border-width: 2px;
  }

  .icon {
    width: 44px !important;
    height: 44px !important;
    top: 8px;
    left: 8px;
    background-color: #25d366 !important;
  }

  .icon img {
    width: 22px !important;
    height: 22px !important;
  }

  .call-text {
    display: none !important; /* yazıyı tamamen kaldır */
  }

  .call-bubble-wrap {
    bottom: 160px !important;
    right: 16px !important;
  }
}

/* 🔁 Animasyonlar (değişmedi) */
@keyframes ring-pulse {
  0% { transform: scale(0.7); opacity: 0.2; }
  50% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(0.7); opacity: 0.2; }
}

@keyframes ring-fill {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 0.3; }
}

@keyframes ring-shake {
  0% { transform: rotate(0); }
  25% { transform: rotate(-15deg); }
  50% { transform: rotate(15deg); }
  75% { transform: rotate(-10deg); }
  100% { transform: rotate(0); }
}

/* Customer Support Section - Mobil Uyumlu */
.customer-support-section {
    margin: 40px auto;
    padding: 40px 24px;
    width: 100%;
    max-width: 1200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #1da75a;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

/* Dekoratif arka plan elementi */
.customer-support-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(29, 167, 90, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.customer-support-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Sol taraf - Resim */
.customer-support-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1da75a, #25d366);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(29, 167, 90, 0.3);
    transition: transform 0.3s ease;
    height: 420px;
    width: 100%;
}

.customer-support-image:hover {
    transform: scale(1.02);
}

.customer-support-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    filter: brightness(1.1);
}

/* Sağ taraf - İçerik */
.customer-support-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.customer-support-title {
    font-size: 28px;
    font-weight: bold;
    color: #1da75a;
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.customer-support-description {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.customer-support-hours {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid #1da75a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.customer-support-hours-title {
    font-size: 20px;
    font-weight: bold;
    color: #1da75a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.customer-support-hours-title::before {
    content: "🕒";
    font-size: 24px;
}

.customer-support-hours-text {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.customer-support-contact {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.support-contact-button {
    background: linear-gradient(135deg, #1da75a, #25d366);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 167, 90, 0.3);
    flex: 1;
    min-width: 140px;
    justify-content: center;
}

.support-contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 167, 90, 0.4);
    text-decoration: none;
    color: white;
}

.support-contact-button::before {
    content: "📞";
    font-size: 18px;
}

.support-email-button {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    flex: 1;
    min-width: 140px;
    justify-content: center;
}

.support-email-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    text-decoration: none;
    color: white;
}

.support-email-button::before {
    content: "✉️";
    font-size: 18px;
}

/* RESPONSIVE DESIGN - Mobil Uyumlu */

/* Large Tablets & Small Desktops */
@media only screen and (max-width: 1024px) {
    .customer-support-section {
        margin: 30px auto;
        padding: 30px 20px;
    }
    
    .customer-support-grid {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }
    
    .customer-support-image {
        height: 300px;
        padding: 20px;
    }
    
    .customer-support-image img {
        max-width: 250px;
    }
    
    .customer-support-title {
        font-size: 26px;
    }
    
    .customer-support-description {
        font-size: 17px;
    }
    
    .customer-support-hours-title {
        font-size: 18px;
    }
    
    .customer-support-hours-text {
        font-size: 15px;
    }
}

/* Tablets */
@media only screen and (max-width: 920px) {
    .customer-support-section {
        padding: 25px 15px;
        margin: 25px auto;
        border-radius: 12px;
        border: 2px solid #1da75a;
    }
    
    .customer-support-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .customer-support-image {
        max-width: 350px;
        margin: 0 auto;
        height: 250px;
        width: 100%;
    }
    
    .customer-support-image img {
        max-width: 280px;
    }
    
    .customer-support-content {
        gap: 15px;
    }
    
    .customer-support-title {
        font-size: 24px;
        text-align: center;
    }
    
    .customer-support-description {
        text-align: center;
        font-size: 16px;
    }
    
    .customer-support-contact {
        justify-content: center;
        gap: 12px;
    }
}

/* Mobile Landscape */
@media only screen and (max-width: 768px) {
    .customer-support-section {
        padding: 20px 12px;
        margin: 20px auto;
        border-radius: 10px;
        border: 2px solid #1da75a;
    }
    
    .customer-support-grid {
        gap: 20px;
    }
    
    .customer-support-image {
        height: 400px;
        padding: 15px;
        max-width: 300px;
    }
    
    .customer-support-image img {
        max-width: 240px;
    }
    
    .customer-support-title {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .customer-support-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .customer-support-hours {
        padding: 15px;
        border-radius: 10px;
    }
    
    .customer-support-hours-title {
        font-size: 17px;
        margin-bottom: 8px;
    }
    
    .customer-support-hours-title::before {
        font-size: 20px;
    }
    
    .customer-support-hours-text {
        font-size: 14px;
    }
    
    .support-contact-button,
    .support-email-button {
        padding: 10px 18px;
        font-size: 14px;
        border-radius: 20px;
    }
    
    .support-contact-button::before,
    .support-email-button::before {
        font-size: 16px;
    }
}