/* Baynur Sigorta - Premium Ana Stil Dosyası */
:root {
  --primary: #C2D839;
  --primary-dark: #A8C02E;
  --primary-light: #D6E85C;
  --secondary: #1B6B8A;
  --secondary-dark: #14526A;
  --secondary-light: #2589AD;
  --dark: #1A1A2E;
  --light: #F8F9FA;
  --white: #FFFFFF;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-500: #64748B;
  --gray-700: #334155;
  /* Koyu Lacivert Tonları */
  --navy: #0A1628;
  --navy-dark: #050D18;
  --navy-light: #122240;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ==================== GLASSMORPHISM ==================== */
.glass {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
}

.glass-dark {
  background: rgba(32,92,124,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(32,92,124,0.15);
  border-radius: 20px;
}

.glass-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 20px;
}

.glass-primary {
  background: rgba(194,216,57,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(194,216,57,0.2);
  border-radius: 16px;
}

/* ==================== PREMIUM ANIMASYONLAR ==================== */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-5px) rotate(1deg); }
  50% { transform: translateY(-10px) rotate(0deg); }
  75% { transform: translateY(-5px) rotate(-1deg); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(194,216,57,0.3); }
  50% { box-shadow: 0 0 40px rgba(194,216,57,0.6), 0 0 60px rgba(194,216,57,0.3); }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.02); }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scale-in {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes border-dance {
  0%, 100% { border-color: var(--primary); }
  50% { border-color: var(--secondary); }
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes bounce-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(194,216,57,0.5)); }
  50% { filter: drop-shadow(0 0 20px rgba(194,216,57,0.8)); }
}

/* Animasyon sınıfları */
.animate-float { animation: float 4s ease-in-out infinite; }
.animate-float-slow { animation: float-slow 6s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
.animate-pulse-soft { animation: pulse-soft 3s ease-in-out infinite; }
.animate-slide-up { animation: slide-up 0.8s ease forwards; }
.animate-shimmer {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}
.animate-gradient {
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
}
.animate-bounce-soft { animation: bounce-soft 2s ease-in-out infinite; }
.animate-glow { animation: glow-pulse 2s ease-in-out infinite; }

/* ==================== BUTON STİLLERİ ==================== */
.btn-glow {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  transition: left 0.6s ease;
}

.btn-glow:hover::before {
  left: 100%;
}

.btn-glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(194,216,57,0.4);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--secondary-dark);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

/* ==================== SCROLL ANİMASYONLARI ==================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* Gecikme sınıfları */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

/* Header Bottom Lightning Border - Only visible when scrolled */
.header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-dark), var(--secondary), var(--navy-dark));
  overflow: hidden;
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg,
    transparent,
    rgba(194,216,57,0.5),
    #C2D839,
    rgba(194,216,57,0.5),
    transparent
  );
  animation: none;
  z-index: 1002;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Show lightning border only when scrolled */
.header.scrolled::before,
.header.scrolled::after {
  opacity: 1;
}

.header.scrolled::after {
  animation: header-lightning 2.5s ease-in-out infinite;
}

@keyframes header-lightning {
  0% { left: -50%; }
  100% { left: 100%; }
}

.header .header-logo {
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}

.header.scrolled .header-logo {
  filter: none;
}

.header.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.header.scrolled .nav-link {
  color: var(--secondary);
}

.header.scrolled .header-phone {
  color: var(--secondary);
}

.header.scrolled .header-phone:hover {
  color: var(--primary-dark);
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 70%;
}

.nav-link:hover {
  color: var(--primary);
}

/* ==================== HERO SECTION ==================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 50%, var(--secondary-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(194,216,57,0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-soft 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23BEDA3C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* ==================== PREMIUM KARTLAR ==================== */
.insurance-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--primary);
}

.insurance-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.insurance-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(194,216,57,0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.insurance-card:hover::before {
  transform: scaleX(1);
  animation: shimmer 2s infinite;
}

.insurance-card:hover::after {
  opacity: 1;
}

.insurance-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(32,92,124,0.15), 0 10px 20px rgba(194,216,57,0.1);
  border-bottom-color: var(--secondary);
}

/* 3D İkon Stilleri */
.insurance-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  background: linear-gradient(145deg, var(--white), var(--gray-100));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
  /* 3D Efekt */
  box-shadow:
    0 10px 30px rgba(32,92,124,0.1),
    0 5px 15px rgba(0,0,0,0.05),
    inset 0 -3px 0 rgba(0,0,0,0.05),
    inset 0 3px 0 rgba(255,255,255,0.8);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.insurance-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, transparent 50%);
  pointer-events: none;
}

.insurance-icon::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 10%;
  width: 80%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(32,92,124,0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(5px);
  transition: all 0.4s ease;
}

.insurance-card:hover .insurance-icon {
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  transform: scale(1.15) rotate(5deg) translateY(-5px);
  box-shadow:
    0 20px 40px rgba(194,216,57,0.3),
    0 10px 20px rgba(0,0,0,0.1),
    inset 0 -3px 0 rgba(0,0,0,0.1),
    inset 0 3px 0 rgba(255,255,255,0.4);
}

.insurance-card:hover .insurance-icon::after {
  bottom: -12px;
  opacity: 0.8;
  width: 90%;
  left: 5%;
}

.insurance-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--secondary);
  stroke-width: 1.5;
  fill: none;
  transition: all 0.4s ease;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
}

.insurance-card:hover .insurance-icon svg {
  stroke: var(--secondary-dark);
  transform: scale(1.1);
  filter: drop-shadow(0 3px 5px rgba(0,0,0,0.15));
}

/* 3D Icon Box - Genel */
.icon-3d {
  background: linear-gradient(145deg, var(--white), var(--gray-100));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 25px rgba(32,92,124,0.1),
    0 4px 10px rgba(0,0,0,0.05),
    inset 0 -2px 0 rgba(0,0,0,0.05),
    inset 0 2px 0 rgba(255,255,255,0.8);
  position: relative;
  transition: all 0.4s ease;
}

.icon-3d::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, transparent 50%);
  pointer-events: none;
}

.icon-3d:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 30px rgba(32,92,124,0.15),
    0 6px 15px rgba(0,0,0,0.08),
    inset 0 -2px 0 rgba(0,0,0,0.05),
    inset 0 2px 0 rgba(255,255,255,0.8);
}

/* Primary 3D Icon */
.icon-3d-primary {
  background: linear-gradient(145deg, var(--primary-light), var(--primary));
  box-shadow:
    0 8px 25px rgba(194,216,57,0.25),
    0 4px 10px rgba(0,0,0,0.05),
    inset 0 -2px 0 rgba(0,0,0,0.1),
    inset 0 2px 0 rgba(255,255,255,0.4);
}

/* Premium Card - Genel */
.premium-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--gray-200);
  border-bottom: 4px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.premium-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(32,92,124,0.12);
  border-bottom-color: var(--secondary);
}

/* Info Card with Bottom Border */
.info-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.4s ease;
  border: 1px solid var(--gray-200);
  border-bottom: 3px solid var(--primary);
  position: relative;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(32,92,124,0.1);
  border-bottom-color: var(--secondary);
}

/* Blog Card */
.blog-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--gray-200);
  border-bottom: 4px solid var(--primary);
}

.blog-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 25px 50px rgba(32,92,124,0.15);
  border-bottom-color: var(--secondary);
}

.blog-card img {
  transition: all 0.6s ease;
}

.blog-card:hover img {
  transform: scale(1.08);
}

/* Company Card */
.company-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--gray-200);
  border-bottom: 3px solid transparent;
  text-align: center;
}

.company-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(32,92,124,0.12);
  border-bottom-color: var(--primary);
  background: linear-gradient(to bottom, var(--white), rgba(194,216,57,0.05));
}

/* Principle Card */
.principle-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.4s ease;
  border: 1px solid var(--gray-200);
  border-bottom: 3px solid var(--primary);
}

.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(32,92,124,0.1);
  border-bottom-color: var(--secondary);
}

/* Contact Card */
.contact-card {
  background: var(--gray-100);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.4s ease;
  border-bottom: 3px solid transparent;
}

.contact-card:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(32,92,124,0.08);
  border-bottom-color: var(--primary);
}

/* Campaign Card */
.campaign-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--gray-200);
  border-bottom: 4px solid var(--primary);
}

.campaign-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 30px 60px rgba(32,92,124,0.18);
  border-bottom-color: var(--secondary);
}

/* ==================== GÖRSEL HOVER EFEKTLERİ ==================== */
.image-hover-zoom {
  overflow: hidden;
  border-radius: 20px;
}

.image-hover-zoom img {
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-hover-zoom:hover img {
  transform: scale(1.1);
}

.image-hover-shine {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.image-hover-shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.image-hover-shine:hover::after {
  transform: translateX(100%);
}

/* ==================== FORM STİLLERİ ==================== */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 8px;
  font-size: 14px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--gray-200);
  border-radius: 14px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(194,216,57,0.15), 0 4px 20px rgba(194,216,57,0.1);
}

.form-select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--gray-200);
  border-radius: 14px;
  font-size: 16px;
  background: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(194,216,57,0.15);
}

/* ==================== WHATSAPP BUTONU ==================== */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  animation: bounce-soft 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 10px 40px rgba(37,211,102,0.5);
  animation: none;
}

.whatsapp-btn svg {
  width: 34px;
  height: 34px;
  fill: white;
}

/* ==================== LIGHTNING SHIMMER ==================== */
.lightning-shimmer-container {
  position: relative;
  height: 6px;
  background: var(--navy-dark);
  overflow: hidden;
}

.lightning-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    transparent 40%,
    rgba(194,216,57,0.3) 45%,
    rgba(194,216,57,0.8) 48%,
    #C2D839 50%,
    rgba(194,216,57,0.8) 52%,
    rgba(194,216,57,0.3) 55%,
    transparent 60%,
    transparent 100%
  );
  animation: lightning-move 4s ease-in-out infinite;
}

.lightning-shimmer-2 {
  animation: lightning-move 4s ease-in-out infinite 1s;
  opacity: 0.6;
}

.lightning-shimmer-3 {
  animation: lightning-move 4s ease-in-out infinite 2s;
  opacity: 0.3;
}

@keyframes lightning-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Electric Glow Pulse */
.lightning-shimmer-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(194,216,57,0.2) 0%, transparent 70%);
  animation: electric-pulse 1.5s ease-in-out infinite;
}

@keyframes electric-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* ==================== FOOTER ==================== */
.footer {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary-light), var(--primary));
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(194,216,57,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(27,107,138,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer h4 {
  color: var(--white);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

/* ==================== MOBİL MENÜ ==================== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,82,106,0.98);
  backdrop-filter: blur(20px);
  z-index: 1001;
  padding: 100px 30px 30px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-link {
  display: block;
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  padding: 20px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  position: relative;
}

.mobile-menu-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.mobile-menu-link:hover::before {
  width: 50px;
}

.mobile-menu-link:hover {
  color: var(--primary);
  padding-left: 15px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1002;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header.scrolled .hamburger span {
  background: var(--secondary);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .desktop-nav { display: none !important; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
}

@media (max-width: 768px) {
  .hero { min-height: auto; padding: 100px 0 40px; }
  .insurance-card { padding: 24px; }
  .whatsapp-btn { bottom: 20px; right: 20px; width: 58px; height: 58px; }
}

/* Stats mobil düzeltme */
@media (max-width: 640px) {
  .stat-number {
    font-size: 24px !important;
  }
  .stat-card {
    padding: 10px 5px !important;
  }
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-top {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 998;
  border: none;
  box-shadow: 0 4px 15px rgba(32,92,124,0.3);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(194,216,57,0.4);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
  stroke: white;
}

/* ==================== YAPRAK MOTİFLİ AYIRICI ==================== */
.leaf-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
  margin: 0 auto;
  max-width: 400px;
}

.leaf-divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--primary), transparent);
  border-radius: 2px;
}

.leaf-divider-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leaf-divider-icon svg {
  width: 32px;
  height: 32px;
  fill: url(#leafGradient);
  animation: leaf-sway 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(194,216,57,0.3));
}

@keyframes leaf-sway {
  0%, 100% {
    transform: rotate(-5deg) scale(1);
  }
  50% {
    transform: rotate(5deg) scale(1.05);
  }
}

.leaf-divider-icon::before,
.leaf-divider-icon::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: leaf-dots 2s ease-in-out infinite;
}

.leaf-divider-icon::before {
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.leaf-divider-icon::after {
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1s;
}

@keyframes leaf-dots {
  0%, 100% {
    opacity: 0.3;
    transform: translateX(-50%) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
  }
}

/* ==================== EKSTRA EFEKTLER ==================== */
.gradient-border {
  position: relative;
  background: var(--white);
  border-radius: 20px;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
  border-radius: 22px;
  z-index: -1;
  background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hover-lift {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(32,92,124,0.15);
}

/* Floating decorative elements */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float-slow 8s ease-in-out infinite;
}

.floating-shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: 10%;
  right: -5%;
}

.floating-shape-2 {
  width: 200px;
  height: 200px;
  background: var(--secondary-light);
  bottom: 20%;
  left: -3%;
  animation-delay: -2s;
}

/* Stats animasyonlu */
.stat-number {
  font-size: 35px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-card {
  text-align: center;
  padding: 30px;
  transition: all 0.4s ease;
}

.stat-card:hover .stat-number {
  transform: scale(1.1);
}

/* Section divider */
.section-divider {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--primary), transparent);
  border-radius: 2px;
  margin: 0 auto;
  max-width: 200px;
}

/* ==================== ARKAPLAN OVERLAY STİLLERİ ==================== */
.bg-overlay {
  position: relative;
}

.bg-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(27,107,138,0.7) 50%, rgba(10,22,40,0.85) 100%);
  z-index: 1;
}

.bg-overlay > * {
  position: relative;
  z-index: 2;
}

/* Section Background with Overlay */
.section-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-bg-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.section-bg-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.85) 50%,
    rgba(255,255,255,0.95) 100%);
}

/* Light Section Background */
.section-bg-light {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-bg-light img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-bg-light::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(248,249,250,0.92) 0%,
    rgba(255,255,255,0.88) 50%,
    rgba(248,249,250,0.92) 100%);
}

/* Dark Section Background (Navy) */
.section-bg-dark {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-bg-dark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.section-bg-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,22,40,0.95) 0%,
    rgba(18,34,64,0.9) 50%,
    rgba(10,22,40,0.95) 100%);
}

/* Footer Background Overlay */
.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

.footer-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    var(--navy) 0%,
    rgba(10,22,40,0.97) 50%,
    var(--navy-dark) 100%);
}

/* ==================== HERO SHIELD ANİMASYONU ==================== */
.hero-shield-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-shield {
  animation: float-slow 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(194,216,57,0.3));
}

.hero-shield svg {
  overflow: visible;
}

/* Shield Body Animation */
.shield-body {
  animation: shield-glow 3s ease-in-out infinite;
}

@keyframes shield-glow {
  0%, 100% {
    filter: url(#glow) drop-shadow(0 0 20px rgba(194,216,57,0.5));
  }
  50% {
    filter: url(#glow) drop-shadow(0 0 40px rgba(194,216,57,0.8));
  }
}

/* Shield Inner Pulse */
.shield-inner {
  animation: shield-inner-pulse 2s ease-in-out infinite;
}

@keyframes shield-inner-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* Checkmark Drawing Animation */
.shield-check {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: draw-check 2s ease forwards, check-glow 2s ease-in-out infinite 2s;
}

@keyframes draw-check {
  to { stroke-dashoffset: 0; }
}

@keyframes check-glow {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(194,216,57,0.5)); }
  50% { filter: drop-shadow(0 0 15px rgba(194,216,57,1)); }
}

/* Pulse Rings Animation */
.pulse-ring {
  transform-origin: center;
  animation: pulse-ring-expand 3s ease-out infinite;
}

.pulse-ring-1 { animation-delay: 0s; }
.pulse-ring-2 { animation-delay: 1s; }
.pulse-ring-3 { animation-delay: 2s; }

@keyframes pulse-ring-expand {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ==================== DEĞİŞEN KELİME ANİMASYONU ==================== */
.rotating-word {
  display: inline-block;
  position: relative;
  min-width: 280px;
  text-align: center;
}

.rotating-word.fade-out {
  animation: word-fade-out 0.4s ease forwards;
}

.rotating-word.fade-in {
  animation: word-fade-in 0.4s ease forwards;
}

@keyframes word-fade-out {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
  }
}

@keyframes word-fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ==================== 3D SHIELD STYLES ==================== */
.hero-shield-3d-container {
  position: relative;
}

.hero-shield-3d-container canvas {
  display: block;
}

.shield-text-overlay {
  z-index: 10;
  text-shadow: 0 0 30px rgba(194,216,57,0.5);
}

/* Text Shimmer Animation */
.animate-text-shimmer {
  background-size: 200% auto;
  animation: text-shimmer 3s linear infinite;
}

@keyframes text-shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
