/* Panel Options Custom CSS */
.panel-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 5px;
}

.panel-option {
  position: relative;
}

.panel-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.panel-label {
  display: block;
  padding: 20px 15px;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
  text-align: center;
  margin-bottom: 0;
}

.panel-label:hover {
  border-color: #5b37f4;
  box-shadow: 0 5px 15px rgba(91, 55, 244, 0.1);
}

.panel-option input[type="radio"]:checked + .panel-label {
  border-color: #5b37f4;
  background: linear-gradient(135deg, #5b37f4 0%, #7c5dfa 100%);
  color: #fff;
  box-shadow: 0 8px 25px rgba(91, 55, 244, 0.3);
}

.panel-content h6 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: inherit;
}

.panel-content p {
  margin: 0 0 10px 0;
  font-size: 13px;
  opacity: 0.8;
  color: inherit;
}

.panel-content .price {
  font-size: 14px;
  font-weight: 700;
  color: #5b37f4;
  background: rgba(91, 55, 244, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}

.panel-option input[type="radio"]:checked + .panel-label .price {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .panel-options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .panel-label {
    padding: 15px 10px;
  }

  .panel-content h6 {
    font-size: 14px;
  }

  .panel-content p {
    font-size: 12px;
  }
}

/* Action buttons height increase */
.action-buttons .btn-common {
  padding: 15px 30px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

/* Only header register button solid background */
.nav-right-content .btn-common.fill-btn {
  background: #5b37f4 !important;
  color: #fff !important;
  border: 2px solid #5b37f4 !important;
}

.nav-right-content .btn-common.fill-btn:hover {
  background: #4a2ed1 !important;
  border-color: #4a2ed1 !important;
  color: #fff !important;
}

/* Popup Notification Styles */
.popup-notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  max-width: 400px;
  width: 90%;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-notification.show {
  opacity: 1;
  visibility: visible;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.popup-icon.success {
  color: #28a745;
}

.popup-icon.error {
  color: #dc3545;
}

.popup-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.popup-message {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.popup-close-btn {
  background: linear-gradient(135deg, #5b37f4 0%, #7c5dfa 100%);
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(91, 55, 244, 0.3);
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.popup-close-btn:hover {
  background: linear-gradient(135deg, #4a2ed1 0%, #6b4df7 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91, 55, 244, 0.4);
}

.popup-close-btn.error {
  background: linear-gradient(135deg, #dc3545 0%, #e85d75 100%);
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.popup-close-btn.error:hover {
  background: linear-gradient(135deg, #c82333 0%, #d94467 100%);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  text-decoration: none;
}

.whatsapp-float i {
  color: #fff;
  font-size: 28px;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
  transform: scale(1.1);
  color: #fff;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4),
      0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
}

/* WhatsApp tooltip */
.whatsapp-float::before {
  content: "WhatsApp ile iletişime geç";
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid #333;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
  opacity: 1;
  visibility: visible;
}

/* Client References Section */
.client-references-section {
  padding: 60px 0;
}

.client-logos-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-items: center;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.client-logo-item {
  text-align: center;
  transition: all 0.3s ease;
  padding: 30px 20px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  min-width: 280px;
}

.client-logo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(91, 55, 244, 0.15);
}

.client-logo {
  max-width: 180px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.client-logo-item:hover .client-logo {
  transform: scale(1.05);
}

.client-info h6 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.client-info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}

/* İletişim Bilgileri Bölümü Padding Azaltma */
.contact-address {
  padding: 40px !important;
}

.apply-form-inner {
  padding: 40px !important;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
  .copyright-area-inner {
    text-align: center !important;
    flex-direction: column;
    gap: 15px;
  }

  .copyright-area-inner p {
    margin-bottom: 0;
    text-align: center;
  }

  .footer-social-area {
    justify-content: center;
  }

  .client-logos-wrapper {
    gap: 30px;
  }

  .client-logo-item {
    min-width: 250px;
    width: 100%;
    max-width: 300px;
  }

  .client-logo {
    max-width: 150px;
    max-height: 60px;
  }

  /* Mobilde İletişim Bilgileri Padding Daha Da Azalt */
  .contact-address {
    padding: 20px !important;
  }

  .apply-form-inner {
    padding: 20px !important;
  }
}
