body {
  background-color: #ffffff;
  color: #333;
}

/* Banner Slider */
.hero-slider {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13, 37, 89, 0.65), rgba(13, 37, 89, 0.55));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  backdrop-filter: blur(4px);
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.08);
}

.hero-prev { left: 16px; }
.hero-next { right: 16px; }

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.hero-dot.active,
.hero-dot:hover {
  background: #fff;
  transform: scale(1.2);
}

.page-hero {
  background: linear-gradient(135deg, #0d2559 0%, #1a3a7a 100%);
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  color: white;
  font-size: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  color: white;
}

.mobile-menu {
  display: none;
}

.mobile-menu.open {
  display: block;
}

/* Hover Animasyonları */
.hover-lift {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(13, 37, 89, 0.14);
}

.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.04);
}

.hover-glow {
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 8px 24px rgba(16, 133, 66, 0.18);
  border-color: #108542;
}

.btn-animated {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-animated:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn-animated:active {
  transform: translateY(0);
}

.service-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(13, 37, 89, 0.14);
  border-color: #108542;
}

.service-card:hover .icon-box {
  transform: scale(1.1) rotate(3deg);
  background: #d4e4fc;
}

.icon-box {
  transition: transform 0.35s ease, background 0.35s ease;
}

.partner-card {
  transition: all 0.3s ease;
}

.partner-card:hover {
  border-color: #108542;
  background: #f0fdf4;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(16, 133, 66, 0.12);
}

.info-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(13, 37, 89, 0.1);
  border-color: #1a4a8a;
}

.feature-icon {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(13, 37, 89, 0.15);
}

.process-step::after {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 2px;
  background: #dbeafe;
}

.process-step .step-circle {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.process-step:hover .step-circle {
  transform: scale(1.12);
  box-shadow: 0 6px 16px rgba(13, 37, 89, 0.25);
}

.article-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(13, 37, 89, 0.12);
}

.section-divider {
  transition: width 0.5s ease;
}

h2:hover + .section-divider,
.text-center:hover .section-divider {
  width: 80px;
}

@media (max-width: 768px) {
  .process-step::after {
    display: none;
  }

  .hero-nav {
    width: 36px;
    height: 36px;
  }
}

.prose-section h3 {
  color: #0d2559;
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose-section p {
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.cta-section {
  background: linear-gradient(135deg, #0d2559 0%, #1a4a8a 100%);
}

.form-input {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
  border-color: #108542;
  box-shadow: 0 0 0 3px rgba(16, 133, 66, 0.15);
}
