/* Custom mystical styles for the site */

/* Apply consistent background to entire site */
html, body {
  background: linear-gradient(135deg, #1a1a2e, #000000) !important;
  color: #fff;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1507181060635-991ab72e5ccd?q=80&w=1932&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: -1;
}

/* Remove all section-specific backgrounds and use the body background */
.featured-tellers-section, .fortune-types-section, .how-it-works-section, 
.testimonials-section, .blog-section, .newsletter-section, .footer,
.hero-section, .site-wrapper, 
main, section, footer {
  background: transparent !important; /* Force transparency to show body background */
  color: #fff;
  position: relative;
  border: none;
  margin: 0;
  padding-bottom: 70px;
}

/* Remove before pseudo-elements from sections since we have a global background */
.featured-tellers-section::before, .fortune-types-section::before, 
.how-it-works-section::before, .testimonials-section::before, .blog-section::before, 
.newsletter-section::before, .footer::before,
.hero-section::before, section::before {
  display: none; /* Hide all section backgrounds */
}

/* Completely redesigned Fortune Teller Cards for modern, mystical look */
.teller-slider-container {
  padding: 20px 0;
  overflow: visible;
}

.teller-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  animation: none !important; /* Disable auto-sliding animation */
  width: 100% !important;
  transform: none !important;
}

.teller-slider-item {
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
}

.fortune-teller-card {
  height: 100%;
  border-radius: 15px;
  background: rgba(26, 26, 46, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 107, 0, 0.3);
  overflow: hidden;
  transition: all 0.4s ease;
  transform: perspective(1000px) rotateY(0deg);
  position: relative;
  display: flex;
  flex-direction: column;
}

.fortune-teller-card:hover {
  transform: perspective(1000px) rotateY(5deg) translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
  border-color: rgba(255, 107, 0, 0.6);
}

.fortune-teller-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(26, 26, 46, 0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.fortune-teller-card:hover::before {
  opacity: 1;
}

.fortune-teller-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 107, 0, 0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.fortune-teller-card:hover::after {
  opacity: 0.5;
}

.fortune-teller-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  z-index: 2;
}

.fortune-teller-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fortune-teller-card:hover .fortune-teller-image img {
  transform: scale(1.08);
}

.teller-online-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 10px;
  border-radius: 30px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  backdrop-filter: blur(5px);
  z-index: 3;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.online-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 5px;
  display: inline-block;
}

.teller-online-badge.online .online-indicator {
  background-color: #4CAF50;
  box-shadow: 0 0 10px #4CAF50;
  animation: pulse 2s infinite;
}

.teller-online-badge.offline .online-indicator {
  background-color: #f44336;
  box-shadow: 0 0 5px #f44336;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.fortune-teller-info {
  padding: 25px;
  background: rgba(26, 26, 46, 0.9);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.teller-name {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #ff6b00 !important;
  text-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  position: relative;
  display: block;
  text-align: center;
}

.teller-name::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #ff6b00;
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

.teller-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 15px;
  justify-content: center;
}

.specialty-badge {
  background-color: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.3);
  color: #fff !important;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.fortune-teller-card:hover .specialty-badge {
  background-color: rgba(255, 107, 0, 0.25);
  border-color: rgba(255, 107, 0, 0.5);
}

.teller-rating {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.teller-rating .stars {
  color: #ff6b00;
  margin-right: 8px;
  display: flex;
}

.teller-rating .stars i {
  margin-right: 2px;
  filter: drop-shadow(0 0 3px rgba(255, 107, 0, 0.3));
}

.rating-count {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.teller-bio {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9) !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
  line-height: 1.5;
}

.fortune-teller-card .btn-primary {
  background: linear-gradient(90deg, #ff6b00, #ff8533);
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.fortune-teller-card .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
  background: linear-gradient(90deg, #ff8533, #ff6b00);
}

.fortune-teller-card .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.fortune-teller-card .btn-primary:hover::before {
  left: 100%;
}

/* Adjust for responsive design */
@media (min-width: 768px) {
  .teller-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .teller-slider {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Hide slider navigation since we're using a grid layout */
.teller-slider-nav {
  display: none !important;
}

/* General text color updates for dark backgrounds */
.section-title, .section-subtitle, .how-it-works-section p, 
.fortune-types-section p, .featured-tellers-section p, 
.blog-section p, .testimonials-section p {
  color: #fff !important;
}

/* Updated Mystical Card Design */
.fortune-teller-card, .fortune-type-card, .how-step, .blog-card, .testimonial-card, .mistik-blog-card {
  background: rgba(26, 26, 46, 0.9);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  color: #fff;
  position: relative;
  z-index: 1;
}

.fortune-teller-card:hover, .fortune-type-card:hover, .how-step:hover, .blog-card:hover, .testimonial-card:hover, .mistik-blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2);
  border-color: rgba(255, 107, 0, 0.6);
}

.fortune-teller-card::before, .fortune-type-card::before, .how-step::before, .blog-card::before, .testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(26, 26, 46, 0.2));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fortune-teller-card:hover::before, .fortune-type-card:hover::before, .how-step:hover::before, .blog-card:hover::before, .testimonial-card:hover::before {
  opacity: 1;
}

/* Specific style adjustments for cards */
.fortune-teller-info, .fortune-type-card, .how-step, .blog-card-content, .testimonial-content {
  background: transparent;
  color: #fff !important;
}

.teller-name, .fortune-type-title, .step-title, .blog-card-title, .author-name {
  color: #ff6b00 !important;
  text-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

.specialty-badge {
  background-color: rgba(255, 107, 0, 0.2);
  border: 1px solid rgba(255, 107, 0, 0.3);
  color: #fff !important;
}

.teller-rating .stars, .testimonial-rating {
  color: #ff6b00;
}

.teller-bio, .fortune-type-description, .step-description, .blog-card-excerpt, .testimonial-content p {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Footer styling updates */
.footer-widget-title {
  color: #ff6b00 !important;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #ff6b00;
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

.footer-about-text, .footer-links li a, .app-description {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* App store links in footer */
.app-widget {
  display: flex;
  flex-direction: column;
}

.app-description {
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.app-store-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.app-store-link {
  display: block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-right: 10px;
  max-width: 100px;
}

.app-store-link:last-child {
  margin-right: 0;
}

.app-store-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 107, 0, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.app-store-link:hover {
  transform: translateY(-3px);
}

.app-store-link:hover::before {
  opacity: 1;
  animation: pulsateGlow 2s infinite;
}

@keyframes pulsateGlow {
  0% { opacity: 0.3; }
  50% { opacity: 0.7; }
  100% { opacity: 0.3; }
}

.app-store-img {
  height: 35px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.app-store-link:hover .app-store-img {
  filter: drop-shadow(0 5px 10px rgba(255, 107, 0, 0.5));
}

.footer-links li a:hover {
  color: #ff6b00 !important;
}

.footer-social ul li a {
  background-color: rgba(255, 107, 0, 0.2);
  color: #fff !important;
}

.footer-social ul li a:hover {
  background-color: rgba(255, 107, 0, 0.5);
}

/* Make sure section icons are visible */
.section-icon {
  position: relative;
  z-index: 2;
}

/* Magical glow effect for section titles */
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.7), transparent);
  transform: translateX(-50%);
}

/* Mystical icon effects */
.section-icon {
  position: relative;
  overflow: hidden;
}

.section-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.8) 0%, transparent 70%);
  opacity: 0.3;
  animation: rotate 5s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Add subtle animation to cards */
.fortune-teller-card, .fortune-type-card, .how-step, .blog-card {
  animation: float 8s ease-in-out infinite;
  animation-delay: calc(var(--card-index, 0) * 0.5s);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Mystical hover effects for buttons */
.btn-primary, .btn-outline-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before, .btn-outline-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
  z-index: -1;
}

.btn-primary:hover::before, .btn-outline-primary:hover::before {
  left: 100%;
  transition: all 0.5s ease;
}

/* Style app store buttons */
.app-store-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 20px 0;
}

.app-store-button {
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}

.app-store-button:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

/* Add twinkle animation to hero stats */
.hero-stat-number {
  position: relative;
}

.hero-stat-number::after {
  content: '';
  position: absolute;
  top: 0;
  right: -10px;
  width: 15px;
  height: 15px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
  0% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0; transform: scale(0.5); }
}

/* Make links in dark backgrounds more visible */
.fortune-type-link, .blog-card-content .btn-link, .author-detail a {
  color: #ff6b00 !important;
}

.fortune-type-link:hover, .blog-card-content .btn-link:hover, .author-detail a:hover {
  color: #ff9d5c !important;
}

/* Fix any remaining section bg issues */
.bg-light, .bg-gradient {
  background: transparent !important;
}

/* Fix for the step numbers and content layout */
.how-step {
  position: relative;
  padding: 30px 20px 20px;
  height: 100%;
  min-height: 240px;
  background: rgba(26, 26, 46, 0.9);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.step-number {
  color: #ff6b00 !important;
  border: 2px solid rgba(255, 107, 0, 0.3);
  background-color: rgba(26, 26, 46, 0.9);
  width: 40px;
  height: 40px;
  line-height: 36px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 20px;
}

.step-icon {
  margin: 5px auto 15px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ff6b00;
  background-color: rgba(255, 107, 0, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Orange wave animations between sections */
.wave-divider {
  position: relative;
  height: 70px;
  background: transparent;
  overflow: hidden;
  z-index: 1;
}

.wave-divider .wave {
  position: absolute;
  left: 0;
  width: 200%;
  height: 100%;
  background-repeat: repeat-x;
  transform-origin: center bottom;
  animation: wave-animation 15s linear infinite;
}

.wave-divider .wave-1 {
  bottom: 0;
  height: 35px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath fill='%23ff6b00' opacity='0.2' d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: 1200px 35px;
  opacity: 0.8;
  animation-duration: 15s;
}

.wave-divider .wave-2 {
  bottom: 0;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath fill='%23ff6b00' opacity='0.3' d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: 1200px 40px;
  opacity: 0.6;
  animation-duration: 10s;
  animation-delay: -2s;
}

.wave-divider .wave-3 {
  bottom: 0;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath fill='%23ff6b00' opacity='0.4' d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: 1200px 30px;
  opacity: 0.4;
  animation-duration: 8s;
  animation-delay: -5s;
}

@keyframes wave-animation {
  0% {
    transform: translateX(0) translateZ(0);
  }
  50% {
    transform: translateX(-25%) translateZ(0);
  }
  100% {
    transform: translateX(-50%) translateZ(0);
  }
}

/* Adjust section padding to account for waves */
.featured-tellers-section, .fortune-types-section, .how-it-works-section, 
.testimonials-section, .blog-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* Floating animation for the fortune teller image */
.floating-fortune-teller {
  animation: float-teller 6s ease-in-out infinite;
  max-height: 500px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.8));
}

@keyframes float-teller {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Square mystical blog cards */
.mistik-blog-card {
  background: linear-gradient(145deg, rgba(30, 30, 60, 0.8), rgba(20, 20, 40, 0.9));
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 107, 0, 0.1);
  padding: 25px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 107, 0, 0.2);
  height: 100%;
  transition: all 0.4s ease;
}

.mistik-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 107, 0, 0.2);
  border-color: rgba(255, 107, 0, 0.4);
}

.mistik-blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 107, 0, 0.2) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.mistik-blog-card .blog-card-date {
  color: #ff6b00;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.mistik-blog-card .blog-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.mistik-blog-card .blog-card-title {
  position: relative;
  z-index: 1;
}

.mistik-blog-card .blog-card-excerpt {
  position: relative;
  z-index: 1;
}

.mistik-blog-card .btn-link {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-top: 10px;
}

/* Make the wave dividers more visible */
.wave-divider {
  z-index: 5;
  margin-top: -20px;
  margin-bottom: -20px;
}

/* Mystic Carousel - Uzman Falcılarımız için özel carousel */
.mystic-carousel-container {
    position: relative;
    overflow: visible;
    padding: 30px 0;
    margin: 0 auto;
    width: 100%;
}

.mystic-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 60px;
    border-radius: 15px;
}

.mystic-carousel {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    transition: transform 0.5s ease;
}

.mystic-carousel-item {
    flex: 0 0 auto;
    width: 280px;
    min-width: 280px;
    max-width: 280px;
    transform: translateZ(0);
    position: relative;
}

.mystic-carousel-item .fortune-teller-card {
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: 100%;
    transition: all 0.3s ease;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mystic-carousel-item .fortune-teller-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 136, 0, 0.2);
}

.mystic-carousel-item .fortune-teller-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 136, 0, 0.05) 0%, rgba(102, 16, 242, 0.05) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mystic-carousel-item .fortune-teller-card:hover::before {
    opacity: 1;
}

.mystic-carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 999;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
}

.mystic-carousel-prev,
.mystic-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: rgba(255, 107, 0, 0.95);
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 107, 0, 0.7);
    pointer-events: auto;
    opacity: 0.95;
    z-index: 1000;
}

.mystic-carousel-prev:hover,
.mystic-carousel-next:hover {
    background-color: rgba(255, 107, 0, 1);
    transform: translateY(-50%) scale(1.15);
    opacity: 1;
    box-shadow: 0 5px 25px rgba(255, 107, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.5);
}

.mystic-carousel-prev {
    left: -32px;
}

.mystic-carousel-next {
    right: -32px;
}

.mystic-carousel-prev i,
.mystic-carousel-next i {
    font-size: 26px;
    line-height: 1;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Responsive ayarlamaları */
@media screen and (max-width: 768px) {
    .mystic-carousel-wrapper {
        margin: 0 40px;
    }
    
    .mystic-carousel-prev,
    .mystic-carousel-next {
        width: 50px;
        height: 50px;
    }
    
    .mystic-carousel-prev {
        left: -25px;
    }
    
    .mystic-carousel-next {
        right: -25px;
    }
    
    .mystic-carousel-prev i,
    .mystic-carousel-next i {
        font-size: 20px;
    }
}

@media screen and (max-width: 576px) {
    .mystic-carousel-wrapper {
        margin: 0 35px;
    }
    
    .mystic-carousel-prev,
    .mystic-carousel-next {
        width: 40px;
        height: 40px;
    }
    
    .mystic-carousel-prev {
        left: -20px;
    }
    
    .mystic-carousel-next {
        right: -20px;
    }
    
    .mystic-carousel-prev i,
    .mystic-carousel-next i {
        font-size: 16px;
    }
}

/* Butonlar için parlayan mistik efekt */
.mystic-btn-glowing {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mystic-btn-glowing::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    transform-origin: center;
}

.mystic-btn-glowing:hover::before {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

.mystic-btn-glowing::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: transparent;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 136, 0, 0.5);
    transition: all 0.3s ease;
}

.mystic-btn-glowing:hover::after {
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 30px rgba(255, 136, 0, 0.9);
    animation: pulse-border 1.5s infinite;
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 136, 0, 0.6);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 136, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 136, 0, 0);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Nasıl Çalışır Bölümü Kategori Kartları Tasarımı - Vibrant and Mystical */
.category-card {
    position: relative;
    background: linear-gradient(45deg, rgba(16, 14, 35, 0.85), rgba(32, 28, 70, 0.85));
    border-radius: 15px;
    padding: 25px 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 126, 0, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 126, 0, 0.2) inset;
    text-align: center;
}
.category-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/mystical-pattern.png') no-repeat;
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 126, 0, 0.4) inset;
    border-color: rgba(255, 126, 0, 0.5);
}

.category-card:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #ff7e00, #ffb700, #ff7e00);
    background-size: 200% auto;
    opacity: 0.7;
    animation: gradient 3s linear infinite;
}

.category-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    z-index: 1;
}

.category-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 126, 0, 0.12);
    border-radius: 50%;
    margin-bottom: 15px;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 126, 0, 0.4);
    animation: pulse 5s infinite ease-in-out;
}

.category-icon i {
    font-size: 24px;
    color: #ff7e00;
    text-shadow: 0 0 10px rgba(255, 126, 0, 0.8);
}

.category-icon:before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 126, 0, 0.5);
    animation: spin 20s linear infinite;
}

.category-icon:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 126, 0, 0.3);
    animation: spin 30s linear infinite reverse;
}

.category-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ff7e00;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.category-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff7e00, transparent);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.category-steps {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}

.step-item:last-child {
    margin-bottom: 0;
}

/* Connecting line between steps */
.step-item:not(:last-child):after {
    content: '';
    position: absolute;
    left: 50%;
    top: 35px;
    height: 35px;
    width: 2px;
    background: linear-gradient(to bottom, #ff7e00, rgba(255, 126, 0, 0.1));
    z-index: 0;
}

.step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff7e00, #ffb700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 15px rgba(255, 126, 0, 0.7);
}

.step-number:before {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 126, 0, 0.5);
    animation: spin 15s linear infinite;
}

.step-number:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    animation: shine 4s infinite;
}

.step-content {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(255, 126, 0, 0.15);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    backdrop-filter: blur(5px);
}

.step-content:before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 126, 0, 0.15);
}

.step-description {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Mystical glow effect for step content */
.step-content:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 126, 0, 0.3) inset;
    border-color: rgba(255, 126, 0, 0.3);
}

/* Enhanced animations */
@keyframes glowingBorder {
    0% {
        box-shadow: 0 0 5px rgba(255, 126, 0, 0.3), 0 0 10px rgba(255, 126, 0, 0.2) inset;
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 126, 0, 0.6), 0 0 20px rgba(255, 126, 0, 0.4) inset;
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 126, 0, 0.3), 0 0 10px rgba(255, 126, 0, 0.2) inset;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes shine {
    0% {
        transform: rotate(0deg);
        opacity: 0;
    }
    25% {
        opacity: 0.5;
    }
    50% {
        opacity: 0;
    }
    100% {
        transform: rotate(360deg);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .category-card {
        margin-bottom: 25px;
        padding: 20px 15px;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .category-icon i {
        font-size: 20px;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .category-card {
        padding: 20px 15px;
    }
    
    .category-icon {
        width: 45px;
        height: 45px;
    }
    
    .category-icon i {
        font-size: 18px;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 0.85rem;
    }
}

/* Nasıl Çalışır Bölümü İçin Ek Animasyon Stilleri */
.mystical-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, rgba(255, 126, 0, 0.9), rgba(255, 183, 0, 0.9));
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
    filter: blur(1.5px);
    box-shadow: 0 0 20px rgba(255, 126, 0, 0.9), 0 0 30px rgba(255, 126, 0, 0.5) inset;
    animation: floatParticle 20s linear infinite, glowParticle 4s ease-in-out infinite;
}

.mystical-particle:nth-child(odd) {
    width: 12px;
    height: 12px;
    animation-duration: 25s;
    background: linear-gradient(45deg, rgba(255, 183, 0, 0.9), rgba(255, 126, 0, 0.9));
}

.mystical-particle:nth-child(3n) {
    width: 15px;
    height: 15px;
    animation-duration: 30s;
    animation-direction: reverse;
    background: radial-gradient(circle, rgba(255, 126, 0, 1) 0%, rgba(255, 183, 0, 0.5) 70%);
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(0, 60px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, -30px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes glowParticle {
    0% {
        opacity: 0.5;
        box-shadow: 0 0 15px rgba(255, 126, 0, 0.6);
        filter: blur(1.5px);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 30px rgba(255, 126, 0, 1);
        filter: blur(2.5px);
    }
    100% {
        opacity: 0.5;
        box-shadow: 0 0 15px rgba(255, 126, 0, 0.6);
        filter: blur(1.5px);
    }
}

/* Kart Efektleri */
.category-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.category-card.reveal-card {
    opacity: 1;
    transform: translateY(0);
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.category-header, .category-steps {
    transform: translateZ(10px);
}

/* Kategori başlıkları için özel parıltı efekti */
.category-title {
    position: relative;
    overflow: hidden;
}

.category-title:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 126, 0, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

/* Nasıl Çalışır Bölümü için ek stillendirme */
#nasil-calisir {
    position: relative;
    overflow: hidden;
}

#nasil-calisir:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 126, 0, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 30%, rgba(255, 126, 0, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 30% 70%, rgba(255, 126, 0, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 70% 80%, rgba(255, 126, 0, 0.05) 0%, transparent 20%);
    animation: sparkleBackground 20s infinite ease-in-out;
    pointer-events: none;
    z-index: 0;
}

@keyframes sparkleBackground {
    0% {
        background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%;
    }
    25% {
        background-position: 10% 10%, 90% 10%, 10% 90%, 90% 90%;
    }
    50% {
        background-position: 20% 20%, 80% 20%, 20% 80%, 80% 80%;
    }
    75% {
        background-position: 10% 10%, 90% 10%, 10% 90%, 90% 90%;
    }
    100% {
        background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%;
    }
}

/* Mystical Testimonials Section */
.mystic-testimonials-container {
    position: relative;
    padding: 30px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.mystic-testimonials-wrapper {
    position: relative;
    padding: 20px 0;
    overflow: hidden;
}

.mystic-testimonial-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    gap: 30px;
    padding: 20px 10px;
}

.testimonial-card-wrapper {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

@media (max-width: 992px) {
    .testimonial-card-wrapper {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .testimonial-card-wrapper {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

.testimonial-card {
    position: relative;
    background: linear-gradient(135deg, rgba(16, 14, 35, 0.9) 0%, rgba(32, 28, 70, 0.9) 100%);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 126, 0, 0.1) inset;
    border: 1px solid rgba(255, 126, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateY(0deg);
    transform-style: preserve-3d;
}

.testimonial-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/mystical-pattern.png') center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.testimonial-card:hover {
    transform: perspective(1000px) rotateY(5deg) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 126, 0, 0.2) inset;
    border-color: rgba(255, 126, 0, 0.4);
}

.testimonial-card:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff7e00, #ffb700, #ff7e00);
    background-size: 200% auto;
    opacity: 0.7;
    animation: gradientShift 3s linear infinite;
}

.testimonial-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    z-index: 1;
}

.testimonial-rating {
    color: #ff7e00;
    font-size: 16px;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 5px rgba(255, 126, 0, 0.5));
}

.testimonial-icon {
    color: rgba(255, 126, 0, 0.2);
    font-size: 36px;
    position: absolute;
    top: -15px;
    right: -5px;
    transform: rotate(3deg);
    z-index: 0;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    min-height: 120px;
    display: flex;
    align-items: center;
}

.testimonial-content p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.testimonial-author {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 126, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(255, 126, 0, 0.3);
    margin-right: 15px;
    flex-shrink: 0;
    background: #000;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .author-image img {
    transform: scale(1.1);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ff7e00;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.author-detail {
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
}

.author-detail a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-detail a:hover {
    color: #ff7e00;
}

/* Navigation buttons */
.mystic-carousel-navigation {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.nav-prev,
.nav-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 126, 0, 0.8), rgba(255, 183, 0, 0.8));
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    pointer-events: auto;
    opacity: 0.8;
    position: relative;
    overflow: hidden;
}

.nav-prev {
    left: -25px;
    margin-left: -15px;
}

.nav-next {
    right: -25px;
    margin-right: -15px;
}

.nav-prev:before,
.nav-next:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-prev:hover,
.nav-next:hover {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 5px 20px rgba(255, 126, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
}

.nav-prev:hover:before,
.nav-next:hover:before {
    opacity: 1;
    animation: ripple 1s linear;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Carousel indicators */
.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 126, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicator.active {
    background-color: #ff7e00;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 126, 0, 0.7);
}

/* Mystical divider */
.mystical-divider {
    height: 3px;
    width: 100px;
    background: linear-gradient(90deg, transparent, #ff7e00, transparent);
    margin: 20px auto 40px;
    position: relative;
}

.mystical-divider:before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #ff7e00;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 126, 0, 0.7);
}

.mystical-divider:after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 126, 0, 0.5);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 126, 0, 0.3);
    animation: pulseDivider 2s infinite;
}

.mystical-glow {
    position: relative;
}

.mystical-glow:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 126, 0, 0.3) 0%, transparent 70%);
    opacity: 0.5;
    z-index: -1;
    filter: blur(20px);
}

@keyframes pulseDivider {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.5;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Fade out non-active slides */
.testimonial-card-wrapper.inactive {
    opacity: 0.4;
    transform: scale(0.9);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .nav-prev {
        margin-left: 10px;
    }
    .nav-next {
        margin-right: 10px;
    }
}

@media (max-width: 992px) {
    .testimonial-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 20px;
    }
    
    .nav-prev, .nav-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .testimonial-content {
        min-height: auto;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
    
    .author-name {
        font-size: 16px;
    }
}

/* Mystic FAQ Section Styles */
.faq-section {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
}

.faq-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('../images/mystical-pattern.png'),
        radial-gradient(circle at 10% 20%, rgba(255, 126, 0, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(255, 126, 0, 0.05) 0%, transparent 30%);
    background-size: 500px, 50%, 50%;
    background-position: center, left top, right bottom;
    opacity: 0.08;
    z-index: 0;
    animation: slowFadeBackground 10s infinite alternate;
}

@keyframes slowFadeBackground {
    0% {
        opacity: 0.05;
        background-position: center, left top, right bottom;
    }
    100% {
        opacity: 0.12;
        background-position: center, left 5% top 5%, right 5% bottom 5%;
    }
}

.mystic-faq-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.faq-card {
    position: relative;
    background: linear-gradient(135deg, rgba(16, 14, 35, 0.85) 0%, rgba(32, 28, 70, 0.85) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 10px rgba(255, 126, 0, 0.1) inset;
    border: 1px solid rgba(255, 126, 0, 0.15);
    transition: all 0.4s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 126, 0, 0.2) inset;
    border: 1px solid rgba(255, 126, 0, 0.3);
}

.faq-card:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff7e00, #ffb700, #ff7e00);
    background-size: 200% auto;
    opacity: 0.6;
    animation: gradientShift 3s linear infinite;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    background: rgba(255, 126, 0, 0.05);
    border-radius: 15px 15px 0 0;
}

.faq-question:hover {
    background: rgba(255, 126, 0, 0.1);
}

.faq-question[aria-expanded="true"] {
    background: rgba(255, 126, 0, 0.15);
}

/* Add glow effect around question when hovered */
.faq-question:hover .faq-icon {
    box-shadow: 0 0 15px rgba(255, 126, 0, 0.6);
}

.faq-question:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 126, 0, 0);
    transition: all 0.3s ease;
    z-index: -1;
}

.faq-question:hover:before {
    background: rgba(255, 126, 0, 0.05);
}

.question-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 126, 0, 0.15);
    border-radius: 50%;
    color: #ff7e00;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-card:hover .faq-icon {
    background: rgba(255, 126, 0, 0.25);
    box-shadow: 0 5px 15px rgba(255, 126, 0, 0.2);
}

.faq-icon:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 126, 0, 0.4);
    animation: spin 20s linear infinite;
}

.faq-icon i {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.question-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #fff;
    transition: all 0.3s ease;
}

.faq-card:hover .question-text h3 {
    color: #ff9d5c;
}

.faq-toggle-icon {
    position: relative;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.faq-toggle-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ff7e00;
    font-size: 16px;
}

.faq-toggle-icon .fa-minus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.faq-toggle-icon .fa-plus {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-toggle-icon.expanded .fa-plus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-toggle-icon.expanded .fa-minus {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0);
}

/* Make the pointer cursor visible on question */
.faq-question {
    cursor: pointer;
}

.faq-answer {
    position: relative;
    padding: 0;
    display: none; /* Başlangıçta tüm cevaplar gizli */
    background-color: rgba(26, 26, 46, 0.95); /* Cevabın arka plan rengi */
}

.faq-answer.show {
    display: block; /* Gösterildiğinde */
}

.answer-text {
    padding: 25px 25px 25px 90px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.7;
    position: relative;
}

/* Plus ve minus icon değişimi */
.faq-toggle-icon .fa-plus {
    display: inline-block;
}

.faq-toggle-icon .fa-minus {
    display: none;
}

.faq-toggle-icon.expanded .fa-plus {
    display: none;
}

.faq-toggle-icon.expanded .fa-minus {
    display: inline-block;
}

/* Mystic Glow Button */
.mystic-glow-button {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    color: #ff7e00;
    border: 2px solid #ff7e00;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(255, 126, 0, 0.3);
    transition: all 0.4s ease;
    z-index: 1;
}

.mystic-glow-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 126, 0, 0.1), rgba(255, 183, 0, 0.1));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -2;
}

.mystic-glow-button:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 300%;
    height: 200%;
    background: linear-gradient(60deg, transparent, rgba(255, 126, 0, 0.2), transparent);
    transform: rotate(30deg);
    transition: all 0.8s ease;
    z-index: -1;
}

.mystic-glow-button:hover {
    color: #fff;
    border-color: #ff7e00;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 126, 0, 0.5);
    transform: translateY(-5px);
}

.mystic-glow-button:hover:before {
    opacity: 1;
}

.mystic-glow-button:hover:after {
    left: 100%;
    transition: all 1.2s ease;
}

/* Add mystical particles for FAQ section */
.faq-section .mystical-particle {
    animation-duration: 25s;
}

/* Responsive styles */
@media (max-width: 992px) {
    .question-text h3 {
        font-size: 17px;
    }
    
    .answer-text {
        padding: 0 25px 25px 80px;
    }
}

@media (max-width: 768px) {
    .question-text {
        gap: 15px;
    }
    
    .faq-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }
    
    .question-text h3 {
        font-size: 16px;
    }
    
    .answer-text {
        padding: 0 25px 25px 70px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .faq-question {
        padding: 18px 20px;
    }
    
    .question-text {
        gap: 12px;
        flex: 1;
    }
    
    .faq-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 14px;
    }
    
    .question-text h3 {
        font-size: 15px;
    }
    
    .answer-text {
        padding: 0 20px 20px 65px;
        font-size: 14px;
    }
}

/* FAQ Styles - basitleştirilmiş */
.faq-question {
    position: relative;
    padding: 25px;
    background-color: rgba(30, 30, 55, 0.9);
    border-radius: 10px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.faq-question:hover {
    border-color: rgba(255, 126, 0, 0.4);
    box-shadow: 0 0 15px rgba(255, 126, 0, 0.2);
}

.question-text {
    display: flex;
    align-items: center;
    flex: 1;
}

.question-text h3 {
    color: white;
    font-size: 18px;
    margin: 0;
    padding-left: 20px;
}

.faq-icon {
    background: linear-gradient(135deg, #ff7e00, #ff5100);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

/* Toggle Icon */
.faq-toggle-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.faq-toggle-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ff7e00;
    font-size: 16px;
}

/* Plus/Minus Icon Styles */
.faq-toggle-icon .fa-plus {
    display: block;
}

.faq-toggle-icon .fa-minus {
    display: none;
}

.faq-toggle-icon.expanded .fa-plus {
    display: none;
}

.faq-toggle-icon.expanded .fa-minus {
    display: block;
}

/* Answer Styles */
.faq-answer {
    margin-top: -15px;
    margin-bottom: 25px;
    padding: 0 25px 25px 85px;
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 0 0 10px 10px;
    display: none;
}

.answer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.7;
}

.answer-text p {
    margin: 0;
}

/* Custom header styles to match the screenshot */
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.main-menu {
    display: flex;
    justify-content: center;
    flex: 1;
}

.logo img {
    max-height: 60px;
}

.header .menu-link {
    color: #fff;
    font-size: 16px;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.header .menu-link:hover,
.header .menu-link.active {
    color: var(--primary-color);
}

.auth-buttons .login-btn,
.auth-buttons .register-btn {
    margin-left: 10px;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.auth-buttons .login-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
}

.auth-buttons .register-btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.auth-buttons .login-btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.auth-buttons .register-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

/* Social bar customization */
.social-bar-inner {
    padding: 5px 0;
}

.info-item {
    font-size: 14px;
}

.social-icons a {
    font-size: 16px;
    margin-left: 15px;
}

/* Mobile responsiveness improvements */
@media (max-width: 991px) {
    .header-inner {
        padding: 15px 0;
    }
    
    .social-bar {
        display: none; /* Hide social bar on mobile */
    }
    
    .main-menu {
        display: none; /* Hide main menu on mobile, show mobile menu instead */
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

/* Custom styling for the rest of the site */
/* ... existing styles ... */ 

/* ===== HEADER & TOPBAR IMPROVEMENTS ===== */
/* Social Bar / Topbar improvements */
.social-bar {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(26, 26, 46, 0.8)) !important;
  padding: 4px 0 !important;
  border-bottom: 1px solid rgba(255, 107, 0, 0.3);
  position: relative;
  z-index: 1000;
  backdrop-filter: blur(10px);
  height: auto !important;
  max-height: 35px;
}

.social-bar::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.5), transparent);
}

.social-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 !important;
}

.info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.info-item {
  margin-right: 15px;
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

.info-item i {
  color: #ff6b00;
  margin-right: 5px;
}

.social-icons a {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 14px !important;
  margin-left: 12px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ff6b00 !important;
}

/* Header improvements */
.header {
  background: rgba(10, 10, 20, 0.6) !important; /* Match topbar background */
  border-bottom: none;
  padding: 8px 0 !important;
  position: relative;
  z-index: 999;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  height: auto !important;
  max-height: 65px;
  transition: all 0.3s ease;
}

/* Style for sticky header - keep original gradient background */
.header.sticky-header {
  background: linear-gradient(135deg, rgba(16, 14, 35, 0.7), rgba(30, 30, 55, 0.7)) !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 107, 0, 0.1);
}

/* Remove the orange line at the bottom */
.header::after {
  display: none;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 !important;
}

/* Logo size reduction */
.logo img {
  max-height: 45px !important;
  transition: all 0.3s ease;
}

.logo:hover img {
  filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.4));
}

/* Main menu styling */
.main-menu {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-item {
  margin: 0 5px;
  position: relative;
}

.menu-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 14px !important;
  font-weight: 500;
  padding: 8px 12px !important;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: block;
}

/* Replace orange underline with more subtle hover effect */
.menu-link::after {
  display: none;
}

.menu-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.3s ease, left 0.3s ease;
  opacity: 0;
}

.menu-link:hover::before,
.menu-link.active::before {
  width: 80%;
  left: 10%;
  opacity: 1;
}

.menu-link:hover,
.menu-link.active {
  color: #ff6b00 !important;
  text-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

/* Auth buttons */
.auth-buttons {
  display: flex;
  align-items: center;
}

.login-btn,
.register-btn {
  font-size: 13px !important;
  padding: 6px 15px !important;
  border-radius: 20px !important;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.login-btn {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.8), rgba(38, 1, 1, 0.9)) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.register-btn {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.9), rgba(38, 1, 1, 1)) !important;
}

.register-btn:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  transform: translateY(-2px);
}

/* Remove glowing underline animation */
.menu-link:hover::before {
  animation: none;
  filter: none;
  background: rgba(255, 255, 255, 0.2);
}

/* Replace mystical particles with more subtle effect */
.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48ZyBmaWxsPSJub25lIiBzdHJva2U9IiNmZmY1IiBzdHJva2Utd2lkdGg9IjEiPjxwYXRoIGQ9Ik0xIDMwaDD4Ii8+PHBhdGggZD0iTTMwIDFsMCBNMzAgMzBsMCIvPjxwYXRoIGQ9Ik0xNSAxNWwyOSAyOSIvPjxwYXRoIGQ9Ik00NSAxNWwtMjkgMjkiLz48L2c+PC9zdmc+');
  background-size: 60px 60px;
  opacity: 0.03;
  pointer-events: none;
}

/* Mobile menu improvements */
.mobile-menu-toggle {
  display: none;
  color: #fff;
  font-size: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

@media (max-width: 991px) {
  .main-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }
  
  .header {
    max-height: 55px;
  }
  
  .logo img {
    max-height: 35px !important;
  }
}

@media (max-width: 576px) {
  .info-item {
    font-size: 11px !important;
  }
  
  .header {
    max-height: 50px;
  }
  
  .logo img {
    max-height: 32px !important;
  }
}

/* Mobile menu when active */
.mobile-menu.active {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, rgba(16, 14, 35, 0.85), rgba(30, 30, 55, 0.85));
  backdrop-filter: blur(10px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1001;
  padding: 60px 20px 20px;
  overflow-y: auto;
  transition: transform 0.3s ease;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.4);
}

.mobile-menu-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu.active .menu-list {
  flex-direction: column;
  align-items: flex-start;
}

.mobile-menu.active .menu-item {
  width: 100%;
  margin: 0;
}

.mobile-menu.active .menu-link {
  padding: 12px 0 !important;
  font-size: 16px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.mobile-menu.active .menu-link::after {
  display: none;
}

.mobile-menu.active .auth-buttons {
  margin-top: 20px;
  flex-direction: column;
  width: 100%;
}

.mobile-menu.active .login-btn,
.mobile-menu.active .register-btn {
  width: 100%;
  margin: 5px 0;
  text-align: center;
}

/* Social Bar / Topbar improvements - more subtle */
.social-bar {
  background: rgba(10, 10, 20, 0.6) !important;
  padding: 4px 0 !important;
  border-bottom: none;
  position: relative;
  z-index: 1000;
  backdrop-filter: blur(10px);
  height: auto !important;
  max-height: 32px;
}

/* Remove orange line at bottom */
.social-bar::before {
  display: none;
}

/* ===== END HEADER & TOPBAR IMPROVEMENTS ===== */

/* Force solid background for open mobile menu */
body.menu-open .mobile-menu.open, 
.mobile-menu.open { /* Target both possibilities */
    background: #0c0c15 !important; /* Solid dark color */
    backdrop-filter: none !important; /* Remove blur effect */
    opacity: 1 !important;
}

/* Responsive styles for blog cards */
@media (max-width: 767px) {
    .mistik-blog-card {
        padding: 20px;
        margin-bottom: 20px;
        display: block;
        width: 100%;
        height: auto;
        transform: none !important;
    }
    
    .blog-card-title {
        font-size: 18px;
        min-height: auto;
        margin-bottom: 10px;
    }
    
    .blog-card-excerpt {
        min-height: auto;
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .blog-section .row [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 20px;
    }
}

/* Mobile Footer Responsive Adjustments */
@media (max-width: 767px) {
    .footer-widget-title {
        text-align: center;
    }
    
    .footer-widget-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }
    
    .footer-links {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links li {
        text-align: center;
    }
    
    .footer-links li a {
        display: inline-block;
        padding: 5px;
    }
    
    .footer-about-text {
        text-align: center;
    }
    
    .app-store-links {
        justify-content: center;
    }
}

/* Category Slider for Mobile */
.category-slider-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0 40px;
    width: 100%;
}

.category-slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.category-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.category-slide {
    min-width: 100%;
    width: 100%;
    flex: 0 0 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.category-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    width: 100%;
}

.category-dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 126, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.category-dot.active {
    background: rgba(255, 126, 0, 0.9);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255, 126, 0, 0.6);
}

/* Adjust category card for mobile */
@media (max-width: 991px) {
    .category-card {
        margin-bottom: 0;
        transform: none !important;
        animation: none !important;
    }

    .category-slide .category-card {
        padding: 20px 15px;
        height: auto;
        min-height: auto;
        transform: none !important;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .category-icon i {
        font-size: 20px;
    }
    
    .step-content {
        padding: 10px;
    }
    
    .step-description {
        font-size: 14px;
    }
}

/* Blog Slider for Mobile */
.blog-slider-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0 40px;
    width: 100%;
}

.blog-slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.blog-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.blog-slide {
    min-width: 100%;
    width: 100%;
    flex: 0 0 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.blog-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    width: 100%;
}

.blog-dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 126, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.blog-dot.active {
    background: rgba(255, 126, 0, 0.9);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255, 126, 0, 0.6);
}

/* Adjust blog card for mobile */
@media (max-width: 991px) {
    .blog-slide .mistik-blog-card {
        margin-bottom: 0;
        transform: none !important;
        animation: none !important;
        height: 100%;
    }
    
    .blog-card-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .blog-card-excerpt {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/* Make blog slider work on smaller screens */
@media (max-width: 576px) {
    .blog-slide .mistik-blog-card {
        padding: 20px 15px;
    }
    
    .blog-card-title {
        font-size: 18px;
    }
}

/* Fortune Types Slider for Mobile */
.fortune-slider-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0 40px;
    width: 100%;
}

.fortune-slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.fortune-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.fortune-slide {
    min-width: 100%;
    width: 100%;
    flex: 0 0 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.fortune-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    width: 100%;
}

.fortune-dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 126, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.fortune-dot.active {
    background: rgba(255, 126, 0, 0.9);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255, 126, 0, 0.6);
}

/* Adjust fortune type card for mobile */
@media (max-width: 991px) {
    .fortune-slide .fortune-type-card {
        margin-bottom: 0;
        transform: none !important;
        animation: none !important;
        height: 100%;
    }
    
    .fortune-slide .fortune-type-image {
        height: 200px;
    }
    
    .fortune-slide .type-name {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .fortune-slide .type-description {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/* Make fortune slider work on smaller screens */
@media (max-width: 576px) {
    .fortune-slide .fortune-type-card {
        padding: 0;
    }
    
    .fortune-slide .fortune-type-content {
        padding: 15px;
    }
    
    .fortune-slide .type-name {
        font-size: 18px;
    }
}

/* === MOBILE MENU BACKGROUND FIX (Apply Last - v3) === */
/* Using maximum specificity to override any conflicting styles */
html body.menu-open .mobile-menu.open {
    background: #0c0c15 !important; /* Solid dark color, OVERRIDES EVERYTHING */
    backdrop-filter: none !important; /* Remove blur */
    opacity: 1 !important; /* Ensure full opacity */
    visibility: visible !important; /* Ensure visibility */
    z-index: 9999 !important; /* Ensure it's on top */
}
/* === END MOBILE MENU BACKGROUND FIX === */

/* Responsive adjustments for Section Titles */
@media (max-width: 767px) {
    h2.section-title, h1.section-title {
        font-size: 1.8rem; /* Reduce font size for mobile */
        word-spacing: normal; /* Reset word spacing if needed */
    }
    
    .section-subtitle {
         font-size: 1rem; /* Adjust subtitle font size */
    }
}
