/* Almanca Kutusu Custom Styles */

/* (Temizlendi) Logo ile ilgili kullanılmayan CSS kaldırıldı */
:root {
  --bg: #0B0F14;
  --surface: #0F172A;
  --primary: #22D3EE;
  --primary-600: #06B6D4;
  --accent: #8B5CF6;
  --accent-600: #7C3AED;
  --text: #E5E7EB;
  --muted: #94A3B8;
}

body {
  background: var(--bg);
  color: var(--text);
}

/* Card Styles */
.card {
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Road / Timeline Enhancements */
.road-grid{position:relative}
.road-step{position:relative}
/* mobile step dot kaldırıldı */
.chip{display:inline-block;padding:.375rem .625rem;border-radius:9999px;background:color-mix(in srgb,var(--surface) 60%, transparent);border:1px solid rgba(255,255,255,.1);font-size:.875rem}
.chip[aria-pressed="true"]{outline:2px solid var(--primary);background:rgba(34,211,238,.12)}

/* Mobile Step-1 attention pulse */
.chip-attn{
  border-color: rgba(255,255,255,.95) !important;
  outline: 0 !important;
  animation: chip-attn 420ms ease-in-out both;
  box-shadow: 0 0 0 2px rgba(255,255,255,.12), 0 10px 22px rgba(0,0,0,.35);
}
@keyframes chip-attn{
  0%{transform:scale(1)}
  45%{transform:scale(1.08)}
  100%{transform:scale(1)}
}

/* SEO secondary links (footer bottom) */
.footer-secondary-links{
  font-size:12px;
  color:#888;
  display:flex;
  gap:12px;
  justify-content:center;
  margin-top:24px;
  flex-wrap:wrap;
}
.footer-secondary-links a{
  color:#888;
  text-decoration:none;
}
.footer-secondary-links a:hover{
  text-decoration:underline;
}

/* Step Number style */
.step-num{font-weight:900;font-family:Manrope,Inter,system-ui,sans-serif;line-height:1;}
@media (min-width:768px){.step-num{font-size:56px}}
@media (max-width:767.98px){.step-num{font-size:40px}}

/* Brush highlight for emphasis */
.brush-hl{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 200'><path d='M20 150 C150 120, 260 170, 400 150 C540 130, 650 180, 780 140 L780 200 L20 200 Z' fill='rgba(34,211,238,0.18)'/></svg>");
  background-repeat:no-repeat;
  background-size:100% 100%;
  background-position:0 70%;
  padding:0 .15em;
  border-radius:4px;
}

/* Stronger brush highlight */
.brush-strong{
  background-image: linear-gradient(transparent 62%, rgba(34,211,238,.35) 0), linear-gradient(transparent 80%, rgba(139,92,246,.20) 0);
  background-size: 100% 100%, 100% 100%;
  background-repeat: no-repeat;
  padding: 0 .2em;
  border-radius: 6px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.card:hover {
  border-color: rgba(34, 211, 238, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.card-h {
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text);
}

.card-p {
  color: #cbd5e1;
  line-height: 1.6;
}

/* Button Styles */
.btn-ghost {
  margin-top: 10px;
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--text);
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 14px;
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(34, 211, 238, 0.1);
}

/* Accordion Styles */
.acc {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.acc:hover {
  border-color: rgba(34, 211, 238, 0.2);
}

.acc-btn {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.acc-btn:hover {
  color: var(--primary);
  background: rgba(34, 211, 238, 0.05);
}

.acc-btn::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  transition: transform 0.3s ease;
}

.acc-btn[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(45deg);
}

.acc-panel {
  padding: 0 16px 16px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Swiper Customizations */
.swiper, .testimonials {
  --swiper-theme-color: #22D3EE;
  --swiper-navigation-size: 24px;
}

.swiper-button-next,
.swiper-button-prev {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(34, 211, 238, 0.1);
  border-color: var(--primary);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Neon Glow Effects */
.neon-glow {
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

.neon-glow:hover {
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.5);
}

/* Aurora Background for Hero */
@keyframes aurora {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.aurora-bg {
  background: linear-gradient(
    -45deg,
    rgba(34, 211, 238, 0.1),
    rgba(139, 92, 246, 0.15),
    rgba(34, 211, 238, 0.05),
    rgba(139, 92, 246, 0.1)
  );
  background-size: 400% 400%;
  animation: aurora 8s ease-in-out infinite;
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
  .card,
  .btn-ghost,
  .acc,
  .acc-btn,
  .swiper-button-next,
  .swiper-button-prev,
  .swiper-pagination-bullet {
    transition: none;
  }
  
  .aurora-bg {
    animation: none;
  }
  
  .card:hover {
    transform: none;
  }
}

/* Focus Styles for Better Accessibility */
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip Link */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Responsive Utilities */
@media (max-width: 768px) {
  .card-h {
    font-size: 18px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* Hero Video Styles */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* WhatsApp Banner - artık HTML'de responsive yapısı var */

/* Video Preload ve Fallback */
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}

/* Print Styles */
@media print {
  .swiper-button-next,
  .swiper-button-prev,
  .swiper-pagination,
  button,
  nav,
  video {
    display: none !important;
  }
  
  .card {
    border: 1px solid #ccc;
    page-break-inside: avoid;
  }
}

