/*
 Tema Adı: Randevify Tema
 Yazar: [Adınız]
 Açıklama: Randevify için modern ve dinamik bir WordPress teması
 Sürüm: 1.0
 Metin Alanı: randevify
*/

/* index.html'deki CSS kodları */
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  background: #1D1D1F;
  color: #F7F7F9;
  overflow-x: hidden;
}
.smooth-scale { transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.smooth-scale:hover { transform: scale(1.04); }
.hero-gradient {
  background: linear-gradient(135deg, #0A0A0C, #1D1D1F, #0A0A0C);
  background-size: 200% 200%;
}
.section-transition {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.section-transition.visible { opacity: 1; transform: translateY(0); }
.accordion-item p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}
.accordion-item p:not(.hidden) { max-height: 300px; opacity: 1; }
.nav-link { transition: color 0.3s ease, border-bottom 0.3s ease; }
.nav-link:hover, .social-icon:hover { color: #4BAFFF; }
.active-nav { color: #2A8EFF; border-bottom: 2px solid #2A8EFF; }
.chat-widget { transition: all 0.3s ease; }
.chat-widget:hover { transform: translateY(-3px); }
.holographic-text { position: relative; }
.holographic-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: #2A8EFF;
  opacity: 0.5;
  filter: blur(1px);
  animation: holographicFade 3s ease-in-out infinite;
  z-index: -1;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(42, 142, 255, 0.2);
  border-radius: 50%;
  animation: subtlePulse 2.5s ease-in-out infinite;
}
.futuristic-btn {
  background: linear-gradient(90deg, #2A8EFF, #4BAFFF);
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  color: #F7F7F9;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: neonGlow 1.5s ease-in-out infinite;
}
.futuristic-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #4BAFFF, #2A8EFF);
  box-shadow: 0 0 15px rgba(42, 142, 255, 0.7);
}
.futuristic-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.5s ease;
  opacity: 0;
}
.futuristic-btn:hover::before {
  opacity: 0.3;
  width: 100%;
  height: 100%;
}
#back-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: none;
  background: linear-gradient(90deg, #2A8EFF, #4BAFFF);
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
  transition: opacity 0.3s ease;
  animation: neonGlow 1.5s ease-in-out infinite;
}
#back-to-top:hover {
  background: linear-gradient(90deg, #4BAFFF, #2A8EFF);
}
@media (max-width: 768px) {
  #back-to-top { display: none !important; }
}
#live-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(90deg, #2A8EFF, #4BAFFF);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: neonGlow 1.5s ease-in-out infinite;
}
#live-chat:hover {
  background: linear-gradient(90deg, #4BAFFF, #2A8EFF);
  transform: translateY(-3px);
}
#chat-container {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 320px;
  background: #161618;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  padding: 12px;
  border: 1px solid rgba(42, 142, 255, 0.2);
}
#chat-messages {
  max-height: 250px;
  overflow-y: auto;
  color: #F7F7F9;
  margin-bottom: 12px;
  padding: 8px;
}
#chat-input {
  display: flex;
  gap: 8px;
}
#chat-input input {
  flex: 1;
  padding: 8px;
  background: #0A0A0C;
  border: 1px solid rgba(42, 142, 255, 0.2);
  border-radius: 8px;
  color: #F7F7F9;
  font-size: 0.95rem;
}
#chat-input button {
  padding: 8px 12px;
  background: linear-gradient(90deg, #2A8EFF, #4BAFFF);
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-weight: 600;
}
#chat-input button:hover {
  background: linear-gradient(90deg, #4BAFFF, #2A8EFF);
}
.message {
  margin: 8px 0;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.95rem;
}
.bot-message {
  background: #0A0A0C;
  border-left: 3px solid #2A8EFF;
}
.user-message {
  background: linear-gradient(90deg, #2A8EFF, #4BAFFF);
  align-self: flex-end;
  color: white;
}
@media (max-width: 768px) {
  .hamburger { display: block; }
  .mobile-menu {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background: #161618;
    padding: 1rem;
    z-index: 39;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
  }
  .mobile-menu.active { transform: translateY(0); }
  h1 { font-size: 1.8rem; line-height: 1.3; }
  .container { padding: 0.5rem; }
  .hero-gradient { background-size: 250% 250%; }
  #hero .max-w-3xl { max-width: 100%; padding: 0 1rem; }
  #features .grid-cols-1, #testimonials .grid-cols-1, #blog .grid-cols-1 { grid-template-columns: 1fr; }
  #pricing .flex-col { flex-direction: column; }
  #progress { display: none; }
  #live-chat { bottom: 10px; right: 10px; padding: 6px 12px; font-size: 0.8rem; }
  #chat-container { width: 90%; left: 5%; bottom: 70px; }
  .nav-link { padding: 0.5rem; }
  img { max-width: 100%; height: auto; }
  .futuristic-btn { padding: 10px 20px; font-size: 0.9rem; }
}
#pricing .bg-gradient-to-br .futuristic-btn {
  background: linear-gradient(90deg, #2A8EFF, #4BAFFF);
  color: #FFFFFF;
}
#pricing .bg-gradient-to-br .futuristic-btn:hover {
  background: linear-gradient(90deg, #4BAFFF, #2A8EFF);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(42, 142, 255, 0.9);
}
#pricing .bg-gradient-to-br .futuristic-btn.bg-white {
  background: #FFFFFF;
  color: #2A8EFF;
  text-shadow: 0 0 2px #2A8EFF;
}
#pricing .bg-gradient-to-br .futuristic-btn.bg-white:hover {
  background: #F7F7F9;
  color: #2A8EFF;
  text-shadow: 0 0 3px #2A8EFF;
}

/* advanced-booking.html'deki CSS kodları */
.section-bg {
  background: linear-gradient(135deg, #F9FAFB 0%, #E0E7FF 100%);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.time-chip {
  background: #E0E7FF;
  border-radius: 20px;
  padding: 8px 16px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.time-chip:hover:not(.disabled) {
  background: #93C5FD;
  transform: scale(1.05);
}
.time-chip.disabled {
  background: #D1D5DB;
  opacity: 0.6;
  cursor: not-allowed;
}
.time-chip.selected {
  background: #3B82F6;
  color: #FFFFFF;
  transform: scale(1.1);
}
.form-input {
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  padding: 10px;
  color: #1F2937;
  transition: border-color 0.3s ease;
}
.form-input:focus {
  border-color: #3B82F6;
  outline: none;
}
.custom-btn {
  background: #3B82F6;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.custom-btn:hover {
  background: #60A5FA;
  transform: translateY(-2px);
}
.footer {
  background: #1E3A8A;
  border-top: 1px solid #93C5FD;
}
.guide-step {
  background: #F9FAFB;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-step:hover {
  transform: translateY(-4px);
}
.support-bot-btn {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: #3B82F6;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s ease;
}
.support-bot-btn:hover {
  transform: scale(1.1);
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px; /* Daha geniş bir modal */
  height: 90vh; /* Daha yüksek bir modal */
  background: #FFFFFF;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  overflow-y: auto; /* İçerik taşarsa kaydırılabilir */
  display: flex;
  flex-direction: column;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #1F2937;
  cursor: pointer;
}
.chatbot-widget {
  width: 100%;
  height: 100%; /* Modalın tamamını kaplar */
  border: none;
  overflow: hidden;
}
df-messenger {
  --df-messenger-bot-message: #3B82F6;
  --df-messenger-button-titlebar-color: #1E3A8A;
  --df-messenger-chat-background-color: #F9FAFB;
  --df-messenger-font-color: #1F2937;
  --df-messenger-send-icon: #FFFFFF;
  width: 100% !important;
  height: 100% !important; /* Modalın tamamını doldur */
  max-height: 100% !important;
  --df-messenger-min-height: 600px;
  --df-messenger-chat-width: 100%;
  --df-messenger-input-font-size: 18px; /* Yazı boyutunu büyüt */
  --df-messenger-input-box-height: 70px; /* Input kutusu yüksekliği artırıldı */
  --df-messenger-input-padding: 20px; /* Daha fazla iç boşluk */
  --df-messenger-input-border-radius: 12px; /* Daha yuvarlak köşeler */
}
df-messenger df-messenger-input {
  height: 70px !important; /* Input alanını genişlet */
  padding: 20px !important; /* Daha fazla iç boşluk */
  font-size: 18px !important; /* Daha büyük yazı */
  border-radius: 12px !important; /* Yuvarlak köşeler */
  transition: height 0.3s ease, padding 0.3s ease; /* Animasyonlu geçiş */
}
df-messenger df-messenger-input:focus {
  height: 80px !important; /* Odaklandığında daha büyük */
  padding: 25px !important; /* Daha fazla iç boşluk */
}
@media (max-width: 768px) {
  df-messenger df-messenger-input {
    height: 60px !important;
    padding: 15px !important;
    font-size: 16px !important;
  }
  df-messenger df-messenger-input:focus {
    height: 70px !important;
    padding: 20px !important;
  }
  .modal-content { width: 95%; height: 85vh; }
  .admin-content { width: 95%; height: 85vh; }
  .booking-section, .admin-section { width: 100%; }
  .guide-step { height: 100px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .custom-btn { padding: 10px 18px; }
  .modal-content { max-width: 900px; }
  .admin-content { max-width: 1200px; }
  .side-by-side { gap: 15px; }
  .guide-step { height: 90px; }
}
@media (min-width: 1025px) {
  .side-by-side .booking-section { flex: 1; }
  .side-by-side .admin-section { flex: 1; }
  .guide-step { height: 80px; }
}
.admin-panel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}
.admin-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1400px;
  height: 90vh;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.admin-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #1F2937;
  cursor: pointer;
}
.admin-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.admin-tab {
  padding: 10px 20px;
  background: #E0E7FF;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.admin-tab.active {
  background: #3B82F6;
  color: #FFFFFF;
}
.admin-tab:hover {
  background: #93C5FD;
}
.tab-content {
  display: none;
  flex: 1;
}
.tab-content.active {
  display: block;
}
.side-by-side {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}
.booking-section, .admin-section {
  flex: 1;
  min-width: 0;
}
.nav-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}