﻿/* ==============================
   SiteFiyati v1 - Modern Design System
   ============================== */

:root {
  --primary: #6366F1;
  --secondary: #A855F7;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --g50: #F9FAFB;
  --g100: #F3F4F6;
  --g200: #E5E7EB;
  --g300: #D1D5DB;
  --g400: #9CA3AF;
  --g500: #6B7280;
  --g600: #4B5563;
  --g700: #374151;
  --g800: #1F2937;
  --g900: #111827;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 24px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 40px rgba(0,0,0,.15);
  --radius-sm: .5rem;
  --radius-md: .75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--g900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section.soft {
  background: var(--g50);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: .75rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: var(--g600);
  font-size: 1.125rem;
}

/* ==============================
   HEADER
   ============================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--g200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
  position: relative; /* mobile icon absolute konum için referans */
}

.logo {
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--g900);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  gap: .5rem;
  list-style: none;
}

.nav-list a {
  padding: .65rem 1.25rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--g600);
  font-weight: 600;
  transition: all .25s;
  font-size: .95rem;
}

.nav-list a:hover,
.nav-list a.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  gap: .75rem;
  align-items: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--g900);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle i {
  transition: transform 0.3s;
}

.mobile-menu-toggle.active i {
  transform: rotate(90deg);
}

/* WhatsApp Sticky Button - Side Center - ALWAYS VISIBLE */
.whatsapp-float {
  position: fixed;
  right: 0; /* Her zaman görünür */
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  padding: 14px 20px 14px 18px;
  border-radius: 50px 0 0 50px;
  box-shadow: -4px 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
  overflow: hidden;
  color: white !important;
}

.whatsapp-float:visited,
.whatsapp-float:link,
.whatsapp-float:active {
  color: white !important;
  text-decoration: none !important;
}

.whatsapp-float:hover {
  transform: translateY(-50%) translateX(-10px); /* Hover'da biraz daha içeri gelir */
  box-shadow: -6px 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.whatsapp-float:hover::before {
  opacity: 1;
}

.whatsapp-float i {
  font-size: 2rem;
  color: white;
  z-index: 1;
  animation: whatsappBounce 2s infinite;
}

.whatsapp-float span {
  color: white !important;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  z-index: 1;
  letter-spacing: 0.3px;
}

a.whatsapp-float span {
  color: white !important;
}

@keyframes whatsappBounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* ==============================
   BUTTONS
   ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 2px solid transparent;
  padding: .85rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-decoration: none;
  transition: all .25s;
  cursor: pointer;
  font-size: .95rem;
}

.btn-lg {
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, .3);
}

.btn-outline {
  background: var(--white);
  border-color: var(--g200);
  color: var(--g900);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: white;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background: #20BA5A;
  border-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
  font-size: 1.3em;
  margin-right: 0.5rem;
}

.btn.full {
  width: 100%;
  justify-content: center;
}

/* ==============================
   HERO
   ============================== */
.hero {
  background: linear-gradient(135deg, rgba(99, 102, 241, .06), rgba(168, 85, 247, .06));
  padding: 6rem 0 5rem;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60vw;
  height: 60vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(closest-side, rgba(99, 102, 241, .12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

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

.hero-content p {
  color: var(--g600);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.badge {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: var(--radius-md);
  padding: .65rem 1rem;
  color: var(--g700);
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* ==============================
   MOCKUP
   ============================== */
.hero-mockup {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1500px;
}

.mockup-window {
  background: var(--white);
  border: 2px solid var(--g200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: rotateY(-5deg) rotateX(5deg);
  transition: all 0.5s ease;
}

.mockup-window:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 0 30px 80px rgba(102, 126, 234, 0.3);
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  background: var(--g100);
  border-bottom: 1px solid var(--g200);
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background: #EF4444;
}

.dot.yellow {
  background: #F59E0B;
}

.dot.green {
  background: #10B981;
}

.mockup-url {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: var(--g600);
  font-weight: 600;
}

.mockup-body {
  padding: 2.5rem;
  min-height: 500px;
}

.mockup-header {
  height: 80px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: .95;
  margin-bottom: 2rem;
  animation: slideDown 1s ease-out;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

@keyframes slideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 0.95;
  }
}

.mockup-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mockup-cards .card {
  height: 150px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--g100) 0%, var(--g50) 100%);
  animation: riseAndFloat 3s ease-in-out infinite;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.mockup-cards .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

.mockup-cards .card.delay {
  animation-delay: 0.5s;
}

.mockup-cards .card.delay::before {
  animation-delay: 0.5s;
}

.mockup-cards .card.delay2 {
  animation-delay: 1s;
}

.mockup-cards .card.delay2::before {
  animation-delay: 1s;
}

@keyframes riseAndFloat {
  0%, 100% {
    transform: translateY(0px);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px);
    opacity: 0.9;
  }
}

@keyframes rise {
  from {
    transform: translateY(20px);
    opacity: .2;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.float.mini {
  position: absolute;
  right: -12px;
  top: -12px;
  background: var(--white);
  border: 1px solid var(--g200);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: .65rem .95rem;
  font-size: .9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.float.mini.order {
  top: auto;
  bottom: -12px;
}

.float.mini.success i {
  color: var(--success);
}

/* ==============================
   PRICING
   ============================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--g100);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all .3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.pricing-card .ribbon {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: .45rem .85rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.pricing-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-head .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pricing-head h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 800;
}

.price {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  justify-content: center;
}

.price strong {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -.5px;
}

.price span {
  color: var(--g600);
  font-size: 1.1rem;
  font-weight: 600;
}

.features {
  list-style: none;
  margin: 0 0 2rem 0;
}

.features li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--g100);
  color: var(--g700);
  font-size: .95rem;
}

.features li:last-child {
  border-bottom: none;
}

.features li i {
  color: var(--success);
  flex-shrink: 0;
}

/* ==============================
   FEATURE GRID
   ============================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.fcard {
  background: var(--white);
  border: 2px solid var(--g100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all .3s;
}

.fcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.ficn {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-size: 1.75rem;
}

.fcard h4 {
  margin: .5rem 0 .35rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.fcard p {
  color: var(--g600);
  font-size: .9rem;
  margin: 0;
}

/* ==============================
   REFERENCES
   ============================== */
.ref-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.ref {
  background: var(--white);
  border: 2px solid var(--g100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  font-weight: 800;
  color: var(--g700);
  transition: all .3s;
}

.ref:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-4px);
}

/* ==============================
   CTA
   ============================== */
.cta .cta-box {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.cta-box h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: .95;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, .3);
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, .75);
  color: var(--white);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .15);
  border-color: var(--white);
}

/* ==============================
   FAQ
   ============================== */
.faq {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 2px solid var(--g100);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all .3s;
}

.faq-item:hover {
  border-color: var(--g300);
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--g900);
  transition: all .3s;
}

.faq-q:hover {
  color: var(--primary);
}

.faq-q i {
  color: var(--g400);
  transition: transform .3s;
}

.faq-item.active .faq-q i {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--g600);
  transition: max-height .3s ease, padding .3s ease;
  line-height: 1.7;
}

.faq-item.active .faq-a {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: #0f172a;
  color: #CBD5E1;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.fgrid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: .65rem;
}

.footer a {
  color: #A3AED0;
  text-decoration: none;
  transition: color .3s;
}

.footer a:hover {
  color: var(--white);
}

.copy {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #94A3B8;
  font-size: .9rem;
}

/* ==============================
   WHATSAPP FLOAT - Already Defined Above
   ============================== */

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .ref-row {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .fgrid {
    grid-template-columns: 1fr;
  }
  
  /* Tablet'te de kategori sayfaları tek sütun olsun */
  .section .container > div[style*="grid-template-columns: 2fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  /* Kategori sayfası sidebar responsive - GÜÇLÜ OVERRIDE */
  /* Sadece ilk section'daki (kategori detay) grid'i yakala, .soft olanları değil */
  .category-content-grid,
  .section:not(.soft) .container > div[style*="display: grid"],
  .section:not(.soft) .container > div[style*="grid-template-columns"],
  .section:not(.cta) .container > div[style*="align-items: start"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }
  
  /* Sidebar'ı içeriğin altına al - İçerikteki tüm child div'ler */
  .category-content-grid > div:last-child,
  .section:not(.soft) .container > div[style*="grid-template-columns"] > div:last-child,
  .section:not(.soft) .container > div[style*="display: grid"] > div:last-child {
    order: 2 !important;
    width: 100% !important;
  }
  
  .category-content-grid > div:first-child,
  .section:not(.soft) .container > div[style*="grid-template-columns"] > div:first-child,
  .section:not(.soft) .container > div[style*="display: grid"] > div:first-child {
    order: 1 !important;
    width: 100% !important;
  }
  
  /* Mobilde sticky sidebar'ı kapat - Daha spesifik selector */
  .category-content-grid > div[style*="position: sticky"],
  .category-content-grid > div > div[style*="position: sticky"],
  div[style*="position: sticky"][style*="top: 100px"],
  .section div[style*="position: sticky"] {
    position: static !important;
    top: auto !important;
    margin-bottom: 2rem;
    width: 100% !important;
  }
  
  /* Sidebar içindeki fiyat kutusu tam genişlik */
  .section div[style*="position: sticky"] > div {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  /* Kategori detay sayfalarındaki feature grid'leri mobilde tek sütun */
  .category-content-grid div[style*="display: grid"][style*="repeat(2"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Pakete dahil olanlar grid'i - 3 sütundan 2'ye */
  div[style*="display: grid"][style*="repeat(3"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ref-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 1rem 0;
    z-index: 1000;
  }
  
  .nav.active {
    display: block;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 0 1rem;
  }
  
  .nav-list li {
    border-bottom: 1px solid var(--g100);
  }
  
  .nav-list li:last-child {
    border-bottom: none;
  }
  
  .nav-list a {
    display: block;
    padding: 1rem;
    border-radius: 0;
  }
  
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 0.5rem; /* sağa sabitle */
    top: 50%;
    transform: translateY(-50%);
    padding: 0.25rem 0.5rem;
    line-height: 1;
  }
  
  .header-actions .btn {
    display: none;
  }
  
  .whatsapp-float {
    right: 0; /* Mobilde de her zaman görünür */
    padding: 12px 16px 12px 14px;
  }
  
  .whatsapp-float:hover {
    transform: translateY(-50%) translateX(-5px); /* Mobilde daha az hareket */
  }
  
  .whatsapp-float i {
    font-size: 1.5rem;
  }
  
  .whatsapp-float span {
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .feature-grid,
  .ref-row {
    grid-template-columns: 1fr;
  }
  
  /* Pakete dahil olanlar grid'i - mobilde tek sütun */
  div[style*="display: grid"][style*="repeat(3"],
  div[style*="display: grid"][style*="repeat(2"] {
    grid-template-columns: 1fr !important;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 4rem 0 3rem;
  }
  
  .cta-box {
    padding: 3rem 1.5rem;
  }
  
  .cta-box h2 {
    font-size: 1.75rem;
  }
}

/* ==============================
   COOKIE BANNER - Sol Alt Köşe Soft Tasarım
   ============================== */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: -400px;
  max-width: 380px;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 1000;
  transition: left 0.4s ease;
  padding: 1.5rem;
  border: 1px solid var(--g200);
}

.cookie-banner.show {
  left: 2rem;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-icon {
  font-size: 2.5rem;
  text-align: center;
}

.cookie-text {
  flex: 1;
}

.cookie-text strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--g900);
  font-weight: 600;
}

.cookie-text p {
  margin: 0;
  color: var(--g600);
  font-size: 0.875rem;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.cookie-text a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-btn {
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.875rem;
  flex: 1;
  min-width: 80px;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.cookie-reject {
  background: var(--g100);
  color: var(--g700);
}

.cookie-reject:hover {
  background: var(--g200);
}

.cookie-settings {
  background: white;
  color: var(--primary);
  border: 1px solid var(--g300);
}

.cookie-settings:hover {
  background: var(--g50);
  border-color: var(--primary);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  padding: 1rem;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: white;
  border-radius: 1rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0,0,0,0.3);
}

.cookie-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--g200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--g900);
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--g500);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.cookie-modal-close:hover {
  background: var(--g100);
  color: var(--g900);
}

.cookie-modal-body {
  padding: 1.5rem;
}

.cookie-modal-body > p {
  margin-bottom: 1.5rem;
  color: var(--g600);
  line-height: 1.6;
}

.cookie-option {
  padding: 1rem;
  border: 1px solid var(--g200);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.cookie-option:hover {
  border-color: var(--primary);
  background: var(--g50);
}

.cookie-option-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.cookie-option-header strong {
  color: var(--g900);
  font-size: 1.05rem;
}

.cookie-option p {
  margin: 0;
  color: var(--g600);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--g300);
  transition: 0.4s;
  border-radius: 26px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: var(--primary);
}

input:checked + .cookie-slider:before {
  transform: translateX(24px);
}

input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--g200);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .cookie-banner {
    left: -100%;
    right: 1rem;
    max-width: calc(100% - 2rem);
    bottom: 1rem;
  }
  
  .cookie-banner.show {
    left: 1rem;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 70px;
  }
  
  .cookie-modal-footer {
    flex-direction: column;
  }
  
  .cookie-modal-footer .cookie-btn {
    width: 100%;
  }
}
