/* --------------------
   RESET & GENEL AYARLAR
--------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  color: #1e293b;
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: #0ea5e9;
}

ul {
  list-style: none;
  padding-left: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/* Hero Section Genel */
.fx-hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.4), rgba(30, 41, 59, 0.6)),
              url('../img/hero-fixy-bg.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  color: #f1f5f9;
  padding: 100px 0;
  overflow: hidden;
}

.fx-hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
  z-index: 1;
}

.fx-hero-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  animation: fadeInUp 1s ease-in-out;
}

/* Başlık */
.fx-hero-title {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(90deg, #3b82f6, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .fx-hero-title {
    font-size: 3.5rem;
  }
}

/* Alt Başlık */
.fx-hero-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 30px;
}

/* Liste */
.fx-hero-list li {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Buton */
.fx-btn-primary {
  background-color: #2563eb;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
  transition: all 0.3s ease;
}

.fx-btn-primary:hover {
  background-color: #1d4ed8;
  box-shadow: 0 6px 24px rgba(29, 78, 216, 0.5);
  transform: translateY(-2px);
}

/* Fade in animasyonu */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .fx-hero-section {
    padding: 120px 0;
  }

  .fx-hero-title {
    font-size: 2.25rem;
  }

  .fx-hero-subtitle {
    font-size: 1rem;
  }
}


/* --------------------
   BUTONLAR
--------------------- */
.fx-btn-primary {
  background-color: #0ea5e9;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.fx-btn-primary:hover {
  background-color: #0284c7;
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

/* ===== Hizmetler Bölümü (Koyu Tema) ===== */
.fx-section {
  background-color: #0f172a;
  padding: 100px 0;
}

.fx-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.fx-section p {
  color: #cbd5e1;
  font-size: 1rem;
}

/* Hizmet Kartı */
.fx-service-box {
  background: radial-gradient(circle at top left, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  height: 100%;
}

.fx-service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(59, 130, 246, 0.3);
}

/* Hover Parlaması */
.fx-service-box::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(59,130,246,0.3), rgba(14,165,233,0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.fx-service-box:hover::after {
  opacity: 1;
}

/* İkonlar */
.fx-service-box i {
  font-size: 2.6rem;
  color: #3b82f6;
  margin-bottom: 20px;
}

/* Başlık */
.fx-service-box h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

/* Açıklama */
.fx-service-box p {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
}


/* ===== İş Ortaklığı Bölümü ===== */
.fx-partner-section {
  padding: 80px 0;
  background-color: #1e293b;
  color: #f1f5f9;
  text-align: center;
}

.fx-partner-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.fx-partner-section p {
  color: #cbd5e1;
  font-size: 1rem;
  max-width: 720px;
  margin: 0 auto 40px auto;
  padding: 0 15px;
}

.fx-partner-logo img {
  max-width: 320px;
  height: auto;
  margin-bottom: 40px;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.1));
  transition: transform 0.3s ease;
}
.fx-partner-logo img:hover {
  transform: scale(1.05);
}

.fx-partner-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}

.fx-partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(59,130,246,0.2);
}

.fx-partner-card img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 12px;
}

.fx-partner-card p {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  padding: 0 5px;
}

.fx-partner-card strong {
  color: #3b82f6;
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

/* Mobil cihazlara özel ayarlar */
@media (max-width: 768px) {
  .fx-partner-section h2 {
    font-size: 1.5rem;
  }
  .fx-partner-card {
    padding: 20px 15px;
  }
  .fx-partner-card img {
    border-radius: 10px;
  }
  .fx-partner-section p {
    font-size: 0.95rem;
  }
}

/* ===== İletişim Bölümü ===== */
.fx-contact-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #0f172a, #1e293b);
  color: #f1f5f9;
}

.fx-contact-section .fx-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.fx-contact-section p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
  color: #cbd5e1;
}

.fx-contact-box {
  background-color: #0f172a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px 30px;
  margin-top: 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  text-align: left;
  color: #f8fafc;
}

.fx-contact-box h4 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.fx-contact-box p {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #e2e8f0;
}

.fx-contact-box a {
  text-decoration: none;
  color: #3b82f6;
  transition: color 0.3s ease;
}

.fx-contact-box a:hover {
  color: #60a5fa;
}

.fx-contact-box i {
  margin-right: 10px;
  color: #3b82f6;
}

.fx-contact-section .btn.fx-btn-primary {
  margin-top: 40px;
  background-color: #3b82f6;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.fx-contact-section .btn.fx-btn-primary:hover {
  background-color: #2563eb;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .fx-contact-section .fx-section-title {
    font-size: 1.6rem;
  }

  .fx-contact-box {
    padding: 30px 20px;
  }

  .fx-contact-box h4 {
    font-size: 1.2rem;
  }

  .fx-contact-box p {
    font-size: 0.95rem;
  }
}


/* --------------------
   RESPONSIVE
--------------------- */
@media (max-width: 768px) {
  .fx-hero-title {
    font-size: 2.2rem;
  }

  .fx-hero-subtitle {
    font-size: 1rem;
  }

  .fx-btn-primary {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

  .fx-service-box, .fx-contact-box {
    padding: 1.5rem;
  }

  .fx-section {
    padding: 60px 0;
  }
}

/* ===== Şaşalı Modern Koyu Tema Navbar ===== */

.fx-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  padding: 14px 0;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.75);
  border-bottom: 1px solid rgba(66, 82, 110, 0.4);
  z-index: 1050;
  transition: background-color 0.35s ease;
  font-family: 'Poppins', sans-serif;
}

/* Logo ve Hover Efekti */
.fx-navbar .navbar-brand img {
  height: 55px;
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: none;
}
.fx-navbar .navbar-brand:hover img {
  transform: scale(1.1) rotate(-3deg);
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.9));
}

/* Navbar Liste */
.fx-navbar .navbar-nav {
  gap: 1rem;
  align-items: center;
}

/* Menü Linkleri */
.fx-nav-link {
  font-weight: 600;
  font-size: 1.05rem;
  color: #cbd5e1;
  padding: 12px 20px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  cursor: pointer;
}

/* Hover Alt Çizgi Animasyonu */
.fx-nav-link::before {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: #3b82f6;
  border-radius: 10px;
  transition: width 0.3s ease, left 0.3s ease;
  transform: translateX(-50%);
}
.fx-nav-link:hover::before,
.fx-nav-link.active::before {
  width: 70%;
  left: 50%;
}

/* Hover Renk */
.fx-nav-link:hover,
.fx-nav-link:focus,
.fx-nav-link.active {
  color: #3b82f6 !important;
  background-color: rgba(59, 130, 246, 0.15);
  text-decoration: none;
  outline: none;
}

/* Dropdown Menu */
.fx-navbar .dropdown-menu {
  background: #1e293b;
  border: none;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.85);
  min-width: 240px;
  padding: 0.5rem 0;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  position: absolute;
  z-index: 1100;
}

/* Dropdown aktifken */
.fx-navbar .dropdown.show > .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  display: block;
}

/* Dropdown item */
.fx-navbar .dropdown-item {
  color: #cbd5e1;
  padding: 10px 24px;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border-radius: 12px;
  margin: 0 10px;
  white-space: nowrap;
}

.fx-navbar .dropdown-item:hover,
.fx-navbar .dropdown-item:focus {
  background-color: #3b82f6;
  color: #fff;
  outline: none;
}

/* Dropdown ok işaretini kaldır */
.fx-navbar .dropdown-toggle::after {
  display: none;
}

/* Hamburger (toggle) button stil */
.fx-navbar .navbar-toggler {
  border: none;
  padding: 0.35rem 0.75rem;
  transition: filter 0.3s ease;
  filter: drop-shadow(0 0 3px rgba(59, 130, 246, 0.6));
}

.fx-navbar .navbar-toggler:hover {
  filter: drop-shadow(0 0 6px rgba(59, 130, 246, 1));
}

.fx-navbar .navbar-toggler-icon {
  width: 28px;
  height: 20px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 28 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23cbd5e1' stroke-width='3' stroke-linecap='round' d='M0 2h28M0 10h28M0 18h28'/%3E%3C/svg%3E");
}

/* Hamburger focus */
.fx-navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 8px 2px rgba(59, 130, 246, 0.7);
}

/* Responsive: Menu dikey ve full genişlikte */
@media (max-width: 991.98px) {
  .fx-navbar {
    padding: 8px 0;
  }
  .fx-navbar .navbar-collapse {
    background: #1e293b;
    border-radius: 0 0 16px 16px;
    margin-top: 10px;
    padding: 1rem 1.5rem;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.85);
  }
  .fx-navbar .navbar-nav {
    flex-direction: column;
    gap: 1rem;
  }
  .fx-navbar .dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    box-shadow: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    margin-top: 0.5rem;
  }
  .fx-navbar .dropdown-item {
    background: rgba(255, 255, 255, 0.1) !important;
    margin: 0;
    border-radius: 10px;
  }
  .fx-navbar .dropdown-item:hover,
  .fx-navbar .dropdown-item:focus {
    background-color: #3b82f6 !important;
    color: white !important;
  }
}


/* ===== Fixy Footer ===== */
.footer {
  background-color: #0f172a;
  padding: 60px 0 30px;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.footer .container {
  max-width: 1200px;
}

.footer-brand-block img {
  height: 55px;
}

.footer-brand-block p {
  font-size: 0.9rem;
  margin-top: 10px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Bağlantılar Sütunu */
.footer h6 {
  font-size: 0.95rem;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.footer-link {
  color: #cbd5e1;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #60a5fa;
  text-decoration: underline;
}

/* İletişim Butonları */
.footer-contact-buttons a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.footer-contact-buttons a:hover {
  color: #60a5fa;
}

/* Sosyal Medya */
.footer-social-link {
  color: #cbd5e1;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social-link:hover {
  color: #f472b6;
  text-decoration: underline;
}

.footer-social-link i {
  color: #f472b6;
}

.footer-social-link span {
  margin-left: 8px;
}

/* Alt Telif Bilgisi */
.footer hr {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  margin-bottom: 20px;
}

.footer p.text-center {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 0;
}

/* === BÖLÜM === */
.section-referanslar {
  padding: 160px 20px 120px;
  background: linear-gradient(to bottom, #1e293b, #0f172a);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.referanslar-container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* === BAŞLIK === */
.referanslar-baslik {
  text-align: center;
  margin-bottom: 70px;
}

.referanslar-baslik .baslik {
  font-size: 2.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.referanslar-baslik .aciklama {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === GRID === */
.referanslar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

/* === KART === */
.referans-kart {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border-radius: 22px;
  padding: 38px 26px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.referans-kart::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent);
  z-index: 0;
  transition: all 0.4s ease;
}

.referans-kart:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
  border-color: rgba(255, 255, 255, 0.12);
}

/* === LOGO === */
.referans-logo {
  max-width: 360px;
  height: 160px;
  object-fit: contain;
  margin: 0 auto 20px;
  z-index: 1;
  position: relative;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.05));

    /* Yeni eklenen arka plan zemin kutusu */
  background-color: #ffffff;
  padding: 2px;
  border-radius: 16px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.03);
}

/* === METİNLER === */
.firma-adi {
  font-size: 1.35rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  z-index: 1;
  position: relative;
}

.referans-hizmet {
  font-size: 0.95rem;
  color: #94a3b8;
  margin: 2px 0;
  z-index: 1;
  position: relative;
}

.referans-lokasyon {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-top: 8px;
  z-index: 1;
  position: relative;
}

/* === BUTON === */
.referans-btn {
  margin-top: 20px;
  padding: 10px 26px;
  background: linear-gradient(135deg, #3b82f6, #0ea5e9);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.2);
}

.referans-btn:hover {
  background: linear-gradient(135deg, #2563eb, #0284c7);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.35);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .referanslar-baslik .baslik {
    font-size: 2.2rem;
  }

  .referans-kart {
    padding: 30px 20px;
  }

  .referans-logo {
    max-width: 360px;
    height: 160px;
  }
}

/* === HERO HEADER GELİŞTİRİLMİŞ === */
.hero-header {
  background: radial-gradient(circle at top left, #1e293b 30%, #0f172a 100%);
  color: #f1f5f9;
  padding: 180px 20px 120px; /* navbar'dan uzaklaştırıldı */
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-header::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59,130,246,0.05), transparent 70%);
  z-index: 0;
}

.hero-header .container {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

/* Başlık */
.hero-header h1 {
  font-size: 3.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.3;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Alt başlık */
.hero-header p {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Buton */
.hero-header .btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #3b82f6);
  border: none;
  font-weight: 600;
  padding: 14px 34px;
  font-size: 1rem;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
  transition: all 0.3s ease;
}

.hero-header .btn-primary:hover {
  background: linear-gradient(135deg, #0284c7, #2563eb);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.4);
}

/* === ÖZELLİKLER BÖLÜMÜ (KOYU TEMA UYUMLU, DÜZENLENMİŞ) === */
#ozellikler {
  padding: 120px 0;
  background: radial-gradient(circle at top, #1e293b 0%, #0f172a 100%);
}

/* Başlık */
#ozellikler h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

#ozellikler p.lead {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Kart Yapısı */
.feature-item {
  background: #0f172a;
  border-radius: 20px;
  padding: 42px 30px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transition: all 0.35s ease;
  height: 100%;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.08), transparent);
  z-index: -1;
  border-radius: 32px;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 48px rgba(14, 165, 233, 0.2);
}

.feature-item:hover::before {
  opacity: 1;
}

/* İkonlar */
.feature-item i {
  font-size: 3.5rem;
  color: #3b82f6;
  margin-bottom: 22px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.feature-item:hover i {
  transform: scale(1.1);
  color: #60a5fa;
}

/* Başlık (DÜZELTİLDİ: kontrast rengi açıldı) */
.feature-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b; /* Eskiden: #1e293b idi, kutu ile çakışıyordu */
  margin-bottom: 12px;
}

/* Açıklama */
.feature-item p {
  font-size: 0.95rem;
  color: #3f454e;
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 768px) {
  #ozellikler h2 {
    font-size: 2.1rem;
  }

  .feature-item {
    padding: 32px 22px;
  }

  .feature-item i {
    font-size: 2.6rem;
  }
}



/* === NEDEN FIXY (KOYU TEMA UYUMLU) === */
#neden-fixy {
  padding: 120px 0;
  background: linear-gradient(to bottom, #1e293b, #0f172a);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Başlıklar */
#neden-fixy h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#neden-fixy > div > p {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 780px;
  margin: 0 auto 40px auto;
}

/* Liste Öğeleri */
#neden-fixy .list-group-item {
  background: #0f172a;
  color: #cbd5e1;
  font-size: 1rem;
  border: none;
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

#neden-fixy .list-group-item::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: radial-gradient(circle at top left, rgba(16, 185, 129, 0.08), transparent);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

#neden-fixy .list-group-item:hover {
  background-color: #1e293b;
  transform: translateX(6px);
}

#neden-fixy .list-group-item:hover::before {
  opacity: 1;
}

/* Icon */
#neden-fixy .list-group-item i {
  font-size: 1.2rem;
  color: #10b981;
  min-width: 24px;
}

/* Görsel Kısmı */
#neden-fixy img {
  max-width: 100%;
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

#neden-fixy img:hover {
  transform: scale(1.02);
}

/* Alt Açıklama */
#neden-fixy .text-muted {
  color: #94a3b8 !important;
  font-size: 0.96rem;
  margin-top: 12px;
  text-align: center;
}


/* === ENTEGRE ÇÖZÜMLER - ANA SAYFA STİLİ === */
#entegre-cozumler {
  padding: 120px 0;
  background: linear-gradient(to bottom, #1e293b, #334155);
}

/* Başlık */
#entegre-cozumler h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#entegre-cozumler > div > p {
  color: #cbd5e1;
  font-size: 1.1rem;
  max-width: 860px;
  margin: 0 auto 40px auto;
}

/* Kartlar */
#entegre-cozumler .feature-item {
  background-color: #1e293b;
  padding: 36px 26px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.35s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#entegre-cozumler .feature-item::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(14,165,233,0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

#entegre-cozumler .feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(14, 165, 233, 0.15);
}

#entegre-cozumler .feature-item:hover::before {
  opacity: 1;
}

/* İkonlar */
#entegre-cozumler i {
  font-size: 3rem;
  margin-bottom: 22px;
  color: #38bdf8;
  transition: transform 0.3s ease;
}

#entegre-cozumler .feature-item:hover i {
  transform: scale(1.08);
}

/* Kart Başlık */
#entegre-cozumler h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

/* Açıklama */
#entegre-cozumler .feature-item p {
  color: #3f454e;
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Badge */
.feature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(to right, #0ea5e9, #38bdf8);
  color: #ffffff;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

/* CTA Alt Bölüm */
#entegre-cozumler h3 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

#entegre-cozumler p.lead {
  color: #94a3b8;
  max-width: 720px;
  margin: 0 auto 24px auto;
}

#entegre-cozumler .btn-primary {
  padding: 14px 36px;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  background-color: #0ea5e9;
  box-shadow: 0 6px 24px rgba(14, 165, 233, 0.25);
  color: #ffffff;
  border: none;
}

#entegre-cozumler .btn-primary:hover {
  background-color: #0284c7;
  box-shadow: 0 10px 32px rgba(14, 165, 233, 0.35);
  transform: translateY(-2px);
}

.ozellikler-con {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.neden-fixy-con {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.entegre-cozumler-con {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

#cta-dijital-devrim {
  background-color: #111827; /* Koyu ve nötr bir arka plan */
  padding: 80px 20px;
  margin-top: 0;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

#cta-dijital-devrim .container {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#cta-dijital-devrim h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #e0e7ff; /* Açık ama parlak olmayan ton */
  margin-bottom: 1rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

#cta-dijital-devrim p.lead {
  font-size: 1.1rem;
  color: #9ca3af;
  margin-bottom: 2rem;
  line-height: 1.5;
}

#cta-dijital-devrim .btn-primary {
  background-color: #2563eb; /* Daha mat bir mavi */
  color: #f9fafb;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  border: none;
  box-shadow: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

#cta-dijital-devrim .btn-primary:hover,
#cta-dijital-devrim .btn-primary:focus {
  background-color: #1e40af;
  outline: none;
}

/* Responsive */
@media (max-width: 768px) {
  #cta-dijital-devrim h3 {
    font-size: 1.8rem;
  }

  #cta-dijital-devrim p.lead {
    font-size: 1rem;
  }

  #cta-dijital-devrim .btn-primary {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

/* 404 Sayfası Stilleri */
.fx-404-container {
  min-height: calc(100vh - 140px); /* header+footer yüksekliğine göre ayarla */
  padding: 0 20px;
  background: #0f172a; /* koyu tema */
  color: #f1f5f9; /* açık yazı */
  font-family: 'Poppins', sans-serif;
}

.fx-404-title {
  font-size: 12rem;
  font-weight: 900;
  color: #3b82f6; /* canlı mavi vurgu */
  user-select: none;
  margin-bottom: 0;
}

.fx-404-message {
  font-size: 1.5rem;
  margin: 20px 0 40px 0;
  line-height: 1.4;
  max-width: 480px;
  color: #cbd5e1;
}

.fx-404-btn {
  padding: 14px 36px;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 9999px;
  background-color: #3b82f6;
  color: white;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(59, 130, 246, 0.5);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.fx-404-btn:hover,
.fx-404-btn:focus {
  background-color: #2563eb;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.7);
  outline: none;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 576px) {
  .fx-404-title {
    font-size: 8rem;
  }
  .fx-404-message {
    font-size: 1.2rem;
  }
  .fx-404-btn {
    padding: 12px 28px;
    font-size: 1rem;
  }
}

.privacy-main {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 150px 0;
    background: #171922;
    width: 100vw;
    margin: 0;
}

.privacy-container {
    background: #23243a;
    max-width: 1320px;
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(14,18,31,0.18);
    padding: 48px 36px 36px 36px;
    margin: 0 auto;
}

.privacy-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #B2D7FF;
    letter-spacing: 0.5px;
}

.privacy-container .update-date {
    color: #d6d9e6;
    font-size: 0.97rem;
    margin-bottom: 22px;
}

.privacy-container h2 {
    margin-top: 38px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #89A8C9;
    letter-spacing: 0.2px;
    border-left: 4px solid #61dafb;
    padding-left: 10px;
}

.privacy-container p, 
.privacy-container ul, 
.privacy-container li {
    font-size: 1.06rem;
    color: #ececf3;
    line-height: 1.7;
}

.privacy-container ul {
    margin: 16px 0 16px 25px;
    padding: 0;
}

.privacy-container li {
    margin-bottom: 7px;
    list-style: disc;
}

.privacy-container a {
    color: #61dafb;
    text-decoration: underline dotted;
    transition: color 0.2s;
}
.privacy-container a:hover {
    color: #B2D7FF;
    text-decoration: underline solid;
}

@media (max-width: 700px) {
    .privacy-main {
        margin-top: 90px;
    }
    .privacy-container {
        padding: 28px 12px 24px 12px;
    }
    .privacy-main {
        padding: 14px 0;
    }
    .privacy-container h1 {
        font-size: 2rem;
    }
    .privacy-container h2 {
        font-size: 1.1rem;
    }
}

/* === FX SERVICE EXTRAS: KOYU, MODERN VE TAMAMEN MAVİ PALET === */
.fx-service-extras-section {
    background: radial-gradient(circle at 40% 0%, #1e293b 0%, #111827 100%);
    padding: 100px 0 70px 0;
}

.fx-service-extras-section h3 {
    font-size: 2.25rem;
    color: #38bdf8;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 38px;
    text-shadow: 0 4px 18px #0ea5e930;
}

.fx-service-detail {
    background: linear-gradient(135deg, #171b29 80%, #223157 100%);
    border-radius: 2.2rem;
    box-shadow: 0 12px 36px rgba(14, 165, 233, 0.10);
    min-height: 630px;
    display: flex;
    flex-direction: column;
    border: 1.5px solid #223157;
    transition: box-shadow .18s, transform .18s, border .18s;
    position: relative;
    overflow: hidden;
}
.fx-service-detail:hover {
    box-shadow: 0 16px 48px rgba(14,165,233,0.21), 0 8px 24px rgba(39, 122, 255, 0.14);
    border-color: #38bdf8;
    transform: translateY(-6px) scale(1.025);
}

.fx-service-detail i.fa-3x {
    color: #38bdf8 !important;
    text-shadow: 0 2px 12px #38bdf88a;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 14px #0ea5e955);
    transition: color .2s;
}
.fx-service-detail:hover i.fa-3x {
    color: #7dd3fc !important;
    filter: drop-shadow(0 0px 16px #7dd3fc55);
}

.fx-service-detail img {
    margin-bottom: 7px;
    max-width: 90px;
    filter: drop-shadow(0 2px 16px #38bdf85a);
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    transition: opacity .18s;
    opacity: 0.93;
}
.fx-service-detail img:hover {
    opacity: 1;
}

.fx-service-detail h5 {
    color: #e0e7ff;
    font-size: 1.29rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    text-align: center;
    letter-spacing: 0.04em;
    border-bottom: 1.5px solid #222b41;
    padding-bottom: 9px;
    background: linear-gradient(90deg, #38bdf8 10%, #a5f3fc 80%, #38bdf800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fx-service-detail p {
    color: #cbd5e1;
    margin-bottom: 11px;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.7;
}

.fx-service-detail ul {
    color: #93c5fd;
    font-size: 1.06rem;
    padding-left: 18px;
    margin-bottom: 10px;
    margin-top: 3px;
}
.fx-service-detail ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    list-style: none;
}
.fx-service-detail ul li:before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #38bdf8 60%, #7dd3fc 100%);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
    box-shadow: 0 1px 5px #0ea5e977;
}

.fx-service-detail em {
    color: #7dd3fc;
    font-size: 0.97rem;
    display: block;
    margin-top: 10px;
    margin-bottom: 2px;
    font-style: italic;
}

.fx-service-detail .accordion {
    margin-top: auto;
}

.fx-service-detail .accordion-button {
    background: #181c24;
    color: #38bdf8;
    font-weight: 600;
    border-radius: 8px !important;
    border: none;
    font-size: 1.06rem;
    margin-bottom: 6px;
    transition: background 0.14s, color 0.14s;
    box-shadow: none;
}
.fx-service-detail .accordion-button.collapsed {
    background: #21283b;
    color: #00008B;
}
.fx-service-detail .accordion-button:not(.collapsed) {
    background: #1e40af;
    color: #1616FF;
}
.fx-service-detail .accordion-button:focus {
    box-shadow: 0 0 0 2px #38bdf857;
    outline: none;
}

.fx-service-detail .accordion-body {
    background: #181c24;
    color: #e0e7ef;
    border-radius: 0 0 10px 10px;
    font-size: 1.01rem;
    padding: 14px 21px 14px 18px;
    margin-top: 0;
    border-top: 1px solid #222b41;
}

.fx-service-extras-section .lead {
    color: #a5f3fc;
    margin-top: 44px;
    font-size: 1.14rem;
    font-weight: 600;
    text-shadow: 0 1px 7px #2563eb25;
}

@media (max-width: 991px) {
    .fx-service-detail {
        min-height: 520px;
        padding: 28px 12px 16px 12px;
    }
    .fx-service-extras-section {
        padding: 48px 0 20px 0;
    }
}
@media (max-width: 700px) {
    .fx-service-detail {
        min-height: 0;
        padding: 19px 6px 8px 6px;
        margin-bottom: 16px;
    }
    .fx-service-extras-section h3 {
        font-size: 1.35rem;
    }
}

/* Lead alt paragraf */
.fx-service-extras-section .lead {
    color: #e0e7ff;
    font-weight: 700;
    font-size: 1.13rem;
    margin-top: 40px;
    letter-spacing: 0.03em;
}
