/* ==========================================================================
   ÖNAL KOMPRESÖR - DALGAKIRAN TARZI FLYOUT DROPDOWN (PENCERE) & FERAH TASARIM
   ========================================================================== */

:root {
  --primary: #D9232A;           /* Önal Kırmızısı */
  --primary-hover: #B51A20;
  --dark-bg: #07090e;           /* Derin Siyah Zemin */
  --dark-card: #111622;         /* Koyu Kart Zemini */
  --dark-card-border: #1f293d;  /* Kart Çerçeve */
  --dark-heading: #FFFFFF;      /* Beyaz Başlıklar */
  --grey: #94a3b8;              /* Açık Gri Metin */
  --text-grey: #cbd5e1;
  --border-color: rgba(255, 255, 255, 0.08);
  --shadow-glow: 0 10px 30px rgba(217, 35, 42, 0.15);
  --transition: all 0.25s ease-in-out;

  /* Geriye Uyumlu Değişkenler */
  --primary-light: rgba(217, 35, 42, 0.12);
  --dark-light: #1e293b;
  --grey-light: #64748b;
  --bg-main: #07090e;
  --bg-card: #111622;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
}

/* 1. Sayfa Düzeyinde Taşmayı Engelle & Koyu Tema */
html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
    background-color: #07090e !important;
    background: #07090e !important;
    color: #cbd5e1 !important;
}

/* 2. Tüm Elemanların Kutu Modelini Düzenle */
*, *::before, *::after {
    box-sizing: border-box !important;
}

/* 3. Medya Elemanlarının Ekrandan Taşmasını Önle */
img, video, iframe, svg, canvas {
    max-width: 100% !important;
    height: auto !important;
}

/* 4. Varsa Ana Kapsayıcıyı Sınırla */
.wrapper, .container, #app, #root, main {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

body {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #07090e;
  background: #07090e;
  color: #cbd5e1;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

svg {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TOPBAR */
.topbar {
  background-color: #040508;
  color: #94a3b8;
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info, .topbar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-info span {
  font-weight: 500;
}

.contact-info i {
  color: var(--primary);
  margin-right: 6px;
}

.topbar-right, .topbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar-right a {
  color: #CBD5E1;
  transition: var(--transition);
}

.topbar-right a:hover {
  color: var(--primary);
}

/* HEADER & NAVBAR (KOYU GLASSMORFHISM - TAŞMA SERBEST & YÜKSEK Z-INDEX) */
.header, .navbar, .main-header, header {
  background: rgba(10, 13, 20, 0.95) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  position: relative !important;
  z-index: 999999 !important;
  overflow: visible !important;
}

.header-content, .header-container, nav, .nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
  overflow: visible !important;
  position: relative !important;
}

.logo, .brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #000000;
  border: 1px solid rgba(217, 35, 42, 0.5);
  box-shadow: 0 4px 14px rgba(217, 35, 42, 0.2);
}

.brand-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  color: #ffffff;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1;
}

.brand-subtitle {
  color: var(--primary);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

/* KIRMIZI ARKA PLANLI BAŞLIK KUTUSU (TITLE RED BOX) */
.title-red-box {
  background: var(--primary, #D9232A) !important;
  color: #FFFFFF !important;
  padding: 4px 14px;
  border-radius: 6px;
  font-weight: 900;
  display: inline-block;
  margin-right: 6px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(217, 35, 42, 0.4);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 4px;
  overflow: visible !important;
}

.nav-menu a, .nav-link, .nav-link:visited, .nav-link:focus, .nav-link:active {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 28px 16px;
  text-decoration: none !important;
  color: #cbd5e1 !important;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.2s ease;
  outline: none !important;
}

.nav-menu a:hover, .nav-link:hover, .nav-link:focus-visible {
  color: #ffffff !important;
  background-color: rgba(217, 35, 42, 0.15);
}

.nav-link.active, .nav-link.active:visited, .nav-link.active:focus {
  color: #ffffff !important;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  background: var(--primary, #d9232a);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(217, 35, 42, 0.6);
}

.arrow, .caret {
  font-size: 10px;
  color: #64748b;
  transition: transform 0.2s ease;
}

.dropdown-item.is-open > a .arrow,
.dropdown-item:hover > a .arrow,
.dropdown-item.is-open > a .caret,
.dropdown-item:hover > a .caret {
  transform: rotate(180deg);
  color: var(--primary);
}

/* ==========================================
   DALGAKIRAN TARZI PREMİUM FLYOUT MENÜ STİLLERİ (ÖZEL TAŞMA VE Z-INDEX GARANTİSİ)
   ========================================== */
li.dropdown-item, .dropdown-item {
  position: relative !important;
  overflow: visible !important;
}

.flyout-menu, .dropdown-menu {
  position: absolute !important;
  background-color: #111622 !important;
  min-width: 290px !important;
  border-radius: 10px !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95) !important;
  border: 1px solid #1f293d !important;
  list-style: none !important;
  padding: 8px 0 !important;
  
  display: none;
  opacity: 0;
  visibility: hidden;
  z-index: 9999999 !important;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  overflow: visible !important;
}

/* Görünmez Hover Köprüsü (Fare kayarken menünün kapanmasını engeller) */
.flyout-menu::before, .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 14px;
  background: transparent;
}

.level-2::before, .level-3::before {
  top: 0;
  left: -14px;
  width: 14px;
  height: 100%;
}

li.dropdown-item:hover > .flyout-menu,
li.dropdown-item:focus-within > .flyout-menu,
li.dropdown-item.is-open > .flyout-menu,
li.dropdown-item:hover > .dropdown-menu,
li.dropdown-item.is-open > .dropdown-menu,
.dropdown-item:hover > .flyout-menu,
.dropdown-item.is-open > .flyout-menu {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 9999999 !important;
}

.level-1 {
  top: 100% !important;
  left: 0 !important;
  margin-top: 0 !important;
}

.level-2 {
  top: 0 !important;
  left: 100% !important;
  margin-left: 0 !important;
}

/* 3. SEVİYE ALT MENÜ VE YAN OK KESİN ENGELLEMESİ */
.level-3,
.flyout-menu .level-3,
.dropdown-menu .level-3,
ul.level-3 {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.level-2 .sub-arrow,
.level-2 .fa-chevron-right,
.level-2 i.arrow {
  display: none !important;
}

.flyout-menu a, .dropdown-menu a {
  padding: 13px 22px !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #cbd5e1 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  border-left: 3px solid transparent !important;
  transition: all 0.18s ease !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  text-decoration: none !important;
}

.dropdown-item.is-open > a,
.dropdown-item:hover > a,
.flyout-menu a:hover,
.dropdown-menu a:hover {
  background-color: rgba(217, 35, 42, 0.22) !important;
  color: #ffffff !important;
  border-left-color: var(--primary, #d9232a) !important;
  padding-left: 26px !important;
}

.sub-arrow {
  font-size: 12px;
  color: #64748b;
  transition: transform 0.2s ease;
}

.dropdown-item:hover > a .sub-arrow,
.dropdown-item.is-open > a .sub-arrow {
  color: var(--primary, #d9232a);
  transform: translateX(4px);
}

.badge {
  background-color: var(--primary);
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 8px;
}

/* BUTONLAR */
.btn-primary, .header-btn a {
  background-color: var(--primary);
  color: white;
  padding: 12px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  display: inline-block;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-primary:hover, .header-btn a:hover {
  background-color: var(--primary-hover);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 11px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  display: inline-block;
}

/* ==========================================
   SLIDER ZEMİN AYARLARI (%35 CANLI FİLTRE & NET OKUNAN GÖLGELİ YAZILAR)
   ========================================== */
.hero-slider, .hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 120px);
  min-height: 580px;
  overflow: hidden;
  background-color: #0f172a;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover !important;
  background-position: center !important;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* SLIDE ARKA PLANLARI - AYDINLATILMIŞ VE CANLI (%35 KARARTMA) */
.slide-1 {
  background: linear-gradient(rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.35)), 
              url('https://images.pexels.com/photos/257700/pexels-photo-257700.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat !important;
}

.slide-2 {
  background: linear-gradient(rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.35)), 
              url('https://images.pexels.com/photos/3825586/pexels-photo-3825586.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat !important;
}

.slide-3, .slide-servis {
  background: linear-gradient(rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.35)), 
              url('https://images.pexels.com/photos/3862632/pexels-photo-3862632.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat !important;
}

/* KARARTMA PERDESİ (İSTEĞE BAĞLI SIFIRLANMIŞ ŞEFFAF KATMAN) */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}

/* İÇERİK (Z-INDEX 3 İLE EN ÜSTE ÇIKAR) */
.slide-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

/* METİN VE BUTONLAR - YAZILARIN AYDINLIK ZEMİNDE NET OKUNMASI İÇİN YAZI GÖLGESİ */
.slide-tag {
  display: inline-block;
  color: #d9232a;
  background: rgba(217, 35, 42, 0.2);
  border: 1px solid rgba(217, 35, 42, 0.4);
  padding: 5px 16px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.slide-content h1 {
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.25;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.85); /* Derin yazı gölgesi */
}

.slide-content p {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.slide-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* OKLAR VE NOKTALAR EN ÜSTTE KALSIN */
.slider-arrow, .slider-dots {
  z-index: 10;
}

.slider-arrow, .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover, .slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow.prev, .prev-btn { left: 35px; }
.slider-arrow.next, .next-btn { right: 35px; }

.slider-dots, .slider-controls {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary);
  width: 32px;
  border-radius: 10px;
}

/* ==========================================
   HERO DARK BANNER SECTION (MATCHING MOCKUP EXACTLY)
   ========================================== */
.hero-dark-section {
  position: relative;
  background: #05070a url('../images/hero-dark-bg.jpg') center right / cover no-repeat !important;
  padding: 100px 0 110px 0;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #05070a 0%, #05070a 48%, rgba(5, 7, 10, 0.92) 58%, rgba(5, 7, 10, 0) 82%);
  pointer-events: none;
  z-index: 1;
}

.hero-dark-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-dark-tagline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 24px;
}

.hero-dark-tagline .tag-line-divider {
  width: 40px;
  height: 2px;
  background: #d9232a;
  display: inline-block;
}

.hero-dark-title {
  font-size: 3.8rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-dark-title .text-red {
  color: #d9232a;
  display: inline-block;
}

.hero-dark-p {
  font-size: 1.12rem;
  color: #94a3b8;
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 38px;
  font-weight: 500;
}

.text-red-highlight {
  color: #ef4444;
  font-weight: 700;
}

/* DIAGONAL RED ARROW BUTTON (MATCHING MOCKUP) */
.btn-dark-red-cta {
  display: inline-flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(217, 35, 42, 0.5);
  border-radius: 6px;
  padding: 0 0 0 24px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn-dark-red-cta .cta-text {
  color: #ffffff;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-right: 20px;
}

.btn-dark-red-cta .cta-arrow-badge {
  background: linear-gradient(135deg, #d9232a 0%, #b91c1c 100%);
  color: #ffffff;
  padding: 16px 24px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  transition: transform 0.3s ease;
}

.btn-dark-red-cta:hover {
  border-color: #d9232a;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(217, 35, 42, 0.35);
}

.btn-dark-red-cta:hover .cta-arrow-badge {
  transform: translateX(4px);
}

/* USER ORIGINAL 3D ÖK LOGO DISPLAY */
.hero-dark-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 440px;
}

.hero-user-logo-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 420px;
  height: 420px;
}

.hero-logo-red-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(217, 35, 42, 0.45) 0%, rgba(217, 35, 42, 0.12) 50%, rgba(0, 0, 0, 0) 75%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-user-3d-logo {
  position: relative;
  z-index: 2;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  object-fit: cover;
  clip-path: circle(49% at 50% 50%);
  box-shadow: 0 0 45px rgba(217, 35, 42, 0.45), 0 20px 50px rgba(0, 0, 0, 0.9);
  border: 2px solid rgba(217, 35, 42, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.hero-user-logo-container:hover .hero-user-3d-logo {
  transform: scale(1.04);
  box-shadow: 0 0 65px rgba(217, 35, 42, 0.65), 0 25px 60px rgba(0, 0, 0, 0.95);
  border-color: var(--primary, #d9232a);
}

/* ==========================================
   HAKKIMIZDA & SAYAÇLAR SECTION (KOYU TEMA)
   ========================================== */
.about-section {
  padding: 80px 0;
  background: #07090e;
}

.about-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.about-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.22;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.about-desc {
  color: #94a3b8;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 28px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  background: #111622;
  border: 1px solid #1f293d;
  border-radius: 14px;
  padding: 22px 14px;
  text-align: center;
  border-bottom: 3px solid var(--primary);
  box-sizing: border-box;
}

.stat-card.stat-card-dark {
  border-bottom-color: #334155;
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 800;
  color: #0f172a;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-img-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2e8f0;
  height: 460px;
}

/* ==========================================
   TÜRKİYE SANAYİSİNE ÖZEL TEKNOLOJİ VE AVANTAJLARIMIZ (KOYU TEMA)
   ========================================== */
.advantages-section {
  padding: 90px 0;
  background-color: #07090e !important;
  background: #07090e !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-tag {
  color: var(--primary, #d9232a);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.section-title h2 {
  color: var(--primary, #d9232a) !important;
  font-size: 32px;
  font-weight: 900;
}

.section-title p {
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 500;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 45px;
}

.adv-card {
  background: #111622 !important;
  border: 1px solid #1f293d !important;
  border-radius: 14px;
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.adv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(217, 35, 42, 0.2) !important;
  border-color: var(--primary, #d9232a) !important;
}

.adv-card.highlight-card {
  border: 2px solid var(--primary, #d9232a) !important;
  background: #161d2d !important;
}

.adv-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #1e293b !important;
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 4px;
}

.adv-badge.red-badge {
  background: var(--primary, #d9232a) !important;
  color: white !important;
}

.adv-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: rgba(217, 35, 42, 0.15) !important;
  color: var(--primary, #d9232a) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.adv-card.highlight-card .adv-icon {
  background-color: rgba(217, 35, 42, 0.25) !important;
}

.adv-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary, #d9232a) !important;
  margin-bottom: 12px;
}

.adv-card p {
  font-size: 14.5px;
  color: #ffffff !important;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.adv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px dashed #1f293d !important;
  padding-top: 18px;
}

.adv-list li {
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.adv-list li i {
  color: var(--primary, #d9232a) !important;
  font-size: 13px;
}

/* ==========================================
   2. SEKTÖREL ÇÖZÜMLER (KOYU TEMA)
   ========================================== */
.sectors-section {
  padding: 80px 0;
  background-color: #0b0f19 !important;
  background: #0b0f19 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.sector-card {
  background: #111622 !important;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #1f293d !important;
  transition: var(--transition);
}

.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(217, 35, 42, 0.2) !important;
  border-color: var(--primary, #d9232a) !important;
}

.sector-icon {
  font-size: 32px;
  color: var(--primary, #d9232a) !important;
  margin-bottom: 15px;
}

.sector-card h3 {
  font-size: 18px;
  color: var(--primary, #d9232a) !important;
  font-weight: 800;
  margin-bottom: 10px;
}

.sector-card p {
  font-size: 14px;
  color: #ffffff !important;
  line-height: 1.6;
}

/* 3. NASIL ÇALIŞIYORUZ? (KOYU TEMA - 4 ADIMDA HİZMET SÜRECİ) */
.process-section {
  padding: 90px 0;
  background-color: #07090e !important;
  background: #07090e !important;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 45px;
}

.process-step {
  background: #111622 !important;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #1f293d !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Kırmızı Üst Çizgi Vurgusu */
.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary, #d9232a);
  z-index: 5;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(217, 35, 42, 0.2) !important;
  border-color: var(--primary, #d9232a) !important;
}

/* Kart İçerik Gövdesi */
.step-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.step-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: rgba(217, 35, 42, 0.15) !important;
  color: var(--primary, #d9232a) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.process-step:hover .step-icon-box {
  background-color: var(--primary, #d9232a) !important;
  color: #FFFFFF !important;
  transform: translateY(-3px) scale(1.05);
}

.step-content h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary, #d9232a) !important;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 13.5px;
  color: #ffffff !important;
  line-height: 1.5;
  margin: 0;
}

/* 4. CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #111622 0%, #07090e 100%) !important;
  color: #ffffff !important;
  padding: 50px 0;
  border-top: 4px solid var(--primary, #d9232a);
}

.cta-text h2 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--primary, #d9232a) !important;
  font-weight: 900;
}

.cta-text p {
  color: #ffffff !important;
  font-size: 15px;
}

/* ==========================================
   ÖNE ÇIKAN ÜRÜNLERİMİZ BÖLÜMÜ (KOYU TEMA)
   ========================================== */
.products-section {
  padding: 80px 0 60px 0;
  background-color: #07090e !important;
  background: #07090e !important;
}

.product-card {
  background: #111622 !important;
  border: 1px solid #1f293d !important;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(217, 35, 42, 0.25) !important;
  border-color: var(--primary, #d9232a) !important;
}

.product-info h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary, #d9232a) !important;
  margin-bottom: 10px;
}

.product-info p {
  color: #ffffff !important;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.btn-whatsapp-product {
  background-color: #25D366;
  color: white;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-product:hover {
  background-color: #1eb954;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  color: white;
}

.btn-whatsapp-product i {
  font-size: 18px;
}

/* ==========================================
   ULTRA MODERN İLETİŞİM KARTI VE KARANLIK MOD HARİTA
   ========================================== */
.footer-section {
  background-color: #0b1120;
  color: #D1D1D1;
  padding: 80px 0 40px 0;
  border-top: 4px solid var(--primary);
  position: relative;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
  margin-bottom: 50px;
}

/* BUZLU CAM (GLASSMORPHISM) İLETİŞİM KARTI */
.contact-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 40px 35px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  position: relative;
}

.contact-card h2 {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 32px;
  padding-left: 14px;
  border-left: 4px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}

/* YARATICI ŞEFFAF İKONLAR VE SAĞA KAYMA ETKİLEŞİMİ */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 26px;
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: default;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item:hover {
  transform: translateX(8px);
}

.contact-icon {
  font-size: 24px;
  line-height: 1;
  margin-top: 3px;
  flex-shrink: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.contact-icon.red-icon {
  color: #D9232A;
  filter: drop-shadow(0 2px 8px rgba(217, 35, 42, 0.4));
}

.contact-icon.green-icon {
  color: #25D366;
  filter: drop-shadow(0 2px 8px rgba(37, 211, 102, 0.4));
}

.contact-item:hover .contact-icon {
  transform: scale(1.15);
}

.contact-text {
  display: flex;
  flex-direction: column;
}

.contact-text span {
  font-size: 11.5px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
}

.contact-text strong {
  font-size: 15.5px;
  color: #f8fafc;
  margin-top: 4px;
  font-weight: 700;
  line-height: 1.45;
  transition: color 0.3s ease;
}

.contact-item:hover .contact-text strong {
  color: #ffffff;
}

/* KARANLIK MOD (DARK MODE / HIGH-TECH RADAR) HARİTA */
.map-container {
  min-height: 360px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background: #0f172a;
}

.map-container iframe {
  width: 100%;
  width: 100% !important;
  height: 100% !important;
  min-height: 480px !important;
  border: 0 !important;
  border-radius: 20px;
}

/* ==========================================================================
   FOOTER VE HABER BÜLTENİ TASARIMI (KOYU TEMA)
   ========================================================================== */

.site-footer {
  background-color: #04060a;
  padding-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  color: #cbd5e1;
}

.footer-container {
  display: grid;
  grid-template-columns: 3fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-main-title {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 25px;
}

/* SÜTUN DÜZENİ */
.footer-columns {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 25px;
}

/* ÜRÜNLERİMİZ SÜTUNUNUN KENDİNİ BELLİ ETMESİ İÇİN ÖZEL STİL */
.products-highlight-col {
  background: #0f1522;
  padding: 20px 18px;
  border-radius: 10px;
  border: 1px solid #1f293d;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  position: relative;
}

.products-highlight-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  border-radius: 10px 10px 0 0;
}

.col-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.highlight-title {
  color: var(--primary);
  font-weight: 800;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links a.sub-link {
  font-size: 12px;
  color: #94a3b8;
  padding-left: 6px;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.special-link span {
  color: #60a5fa;
  font-weight: 800;
}

.red-link {
  color: var(--primary) !important;
  font-weight: 700 !important;
}

.blog-head-link {
  font-weight: 800;
  color: #ffffff !important;
  margin-top: 10px;
}

/* HABER BÜLTENİ BÖLÜMÜ */
.newsletter-desc {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 20px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  margin-bottom: 25px;
}

.newsletter-form input[type="email"] {
  flex-grow: 1;
  padding: 12px 16px;
  border-radius: 6px 0 0 6px;
  border: 1px solid #1f293d;
  background: #111622;
  color: #ffffff;
  font-size: 13px;
}

.newsletter-form button {
  background: var(--primary);
  color: white;
  padding: 0 20px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s ease;
}

.newsletter-form button:hover {
  background: var(--primary-hover);
}

.newsletter-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #cbd5e1;
}

.contact-line i {
  color: var(--primary);
}

.contact-line a {
  color: #cbd5e1;
  text-decoration: none;
}

.contact-line a:hover {
  color: var(--primary);
}
  margin-bottom: 18px;
}

.newsletter-form {
  display: flex;
  margin-bottom: 30px;
}

.newsletter-form input {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid var(--border-subtle);
  border-right: none;
  border-radius: 6px 0 0 6px;
  font-size: 13px;
  outline: none;
  background: #ffffff;
}

.newsletter-form button {
  background-color: var(--primary);
  color: #ffffff;
  border: none;
  padding: 0 20px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.2s ease;
}

.newsletter-form button:hover {
  background-color: #b81920;
}

/* İLETİŞİM SATIRLARI */
.newsletter-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-heading);
}

.contact-line i {
  font-size: 18px;
  color: var(--dark-heading);
}

.contact-line a {
  text-decoration: none;
  color: var(--dark-heading);
  transition: color 0.2s ease;
}

.contact-line a:hover {
  color: var(--primary);
}

/* DEKORATİF ALT ŞERİT VE LOGO */
.footer-bottom-bar {
  background: var(--dark-heading);
  color: #ffffff;
  padding: 20px 0;
  border-top: 4px solid var(--primary);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand-logo h2 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.footer-brand-logo h2 span {
  color: var(--primary);
}

.footer-bottom-content p {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
}

/* SAĞ ALTTA SABİT YÜZEN BUTONLAR (ARAMA & WHATSAPP) */
.floating-buttons {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.12);
  color: white;
}

.call-btn {
  background-color: #007BFF;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

.whatsapp-btn {
  background-color: #25D366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  animation: pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.mobile-toggle {
  display: none;
  font-size: 24px;
  color: var(--dark);
  cursor: pointer;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background-color: white;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 1.5rem;
}

.mobile-drawer.active { right: 0; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* RESPONSIVE (MOBİL UYUM) */
@media (max-width: 992px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
  .about-grid, .cta-flex, .footer-top-grid, .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-columns, .advantages-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-stats {
    justify-content: center;
  }
  .slide-content h1 { font-size: 32px; }
  .hero-slider, .hero-section { height: 480px; }
  .slide-content { max-width: 90%; }
}

/* MOBİL ÖZEL DÜZENLEMELER (768px VE ALTI) */
@media (max-width: 768px) {
  
  /* 1. MOBİLDE SİYAH ÜST BARI (TOPBAR) KALDIR */
  .topbar {
    display: none !important;
  }

  /* 2. HEADER DÜZENİ (LOGO, TEKLİF AL & MENU) */
  .header-content {
    height: 70px;
    padding: 0 15px;
  }

  .logo a {
    font-size: 18px; /* Mobilde logo boyutunu orantıladık */
  }

  .btn-primary {
    padding: 8px 14px;
    font-size: 12px; /* Teklif al butonu mobil boyut */
  }

  /* 3. SLIDER YÜKSEKLİĞİ VE OKLARI KÜÇÜLTME */
  .hero-slider, .hero-section {
    height: 420px; /* Mobilde görsel alanı çok uzamasın */
  }

  /* Sağa - Sola Kaydırma Oklarını Küçültme ve Kenara Çekme */
  .slider-arrow {
    width: 34px;
    height: 34px;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.4); /* Daha şeffaf arka plan */
    border: none;
  }

  .slider-arrow.prev {
    left: 8px; /* Okları kenarlara sıfırlayıp yazının üstünden çektik */
  }

  .slider-arrow.next {
    right: 8px;
  }

  /* 4. MOBİL SLIDER YAZI BOYUTLARI */
  .slide-content h1 {
    font-size: 22px !important; /* Başlık metnini ekrana sığdırdık */
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .slide-content p {
    font-size: 13px !important;
    line-height: 1.4;
    margin-bottom: 18px;
  }

  .slide-tag {
    font-size: 10px;
    padding: 3px 10px;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .footer-columns, .advantages-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* REFERANSLAR KAYAN ŞERİT (AÇIK TEMA) */
.references-strip {
  background-color: #ffffff;
  padding: 32px 0 28px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  overflow: hidden;
}
.references-heading {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 20px 0;
}
.references-track-wrap {
  overflow: hidden;
  width: 100%;
}
.references-track {
  display: flex;
  width: max-content;
  animation: refScroll 65s linear infinite !important;
  will-change: transform;
}

.partners-slider:hover,
.references-track:hover {
  animation-play-state: running !important;
}

@keyframes refScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* BREADCRUMB BAR BİLEŞENİ (BREADCRUMB COMPONENT) */
.breadcrumb-bar {
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 14px 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #64748b;
  flex-wrap: wrap;
}

.breadcrumb-item a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: var(--primary, #d9232a);
}

.breadcrumb-item.active {
  color: var(--primary, #d9232a);
  font-weight: 700;
}


/* PRODUCT GRID & PRODUCT CARD STYLES */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  text-decoration: none;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #d9232a;
  box-shadow: 0 12px 20px -5px rgba(217, 35, 42, 0.15);
}

/* SITE FOOTER & FULL WIDTH FOOTER BOTTOM BAR */
.site-footer {
  width: 100% !important;
  background-color: #0f172a !important;
  color: #ffffff;
  margin-top: auto;
  position: relative;
  z-index: 10;
  clear: both;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px 20px;
}

.footer-bottom-bar {
  width: 100% !important;
  background-color: #0b0f19 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  margin: 0;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}


.references-track span {
  padding: 0 45px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #94a3b8;
  white-space: nowrap;
}

/* KATEGORİ VE ALT KATEGORİ KART BİLEŞENİ (CATEGORY CARD COMPONENT) */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

.category-card {
  background: #111622 !important;
  border: 1px solid #1f293d !important;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary, #d9232a) !important;
  box-shadow: 0 12px 28px rgba(217, 35, 42, 0.25) !important;
}

.category-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.category-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(217, 35, 42, 0.15) !important;
  color: var(--primary, #d9232a) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  background: var(--primary, #d9232a) !important;
  color: #ffffff !important;
}

.category-title {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff !important;
  margin: 0;
  line-height: 1.3;
}

.category-desc {
  font-size: 14px;
  color: #94a3b8 !important;
  line-height: 1.6;
  margin-bottom: 20px;
  margin-top: 10px;
  flex-grow: 1;
}

.category-link {
  color: var(--primary, #d9232a);
  font-weight: 700;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.category-card:hover .category-link {
  gap: 12px;
}

/* RED CTA BANNER BOX */
.cta-banner-red {
  background: linear-gradient(135deg, #d9232a 0%, #b91c1c 100%);
  border-radius: 20px;
  padding: 40px;
  color: #ffffff;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 50px;
  box-shadow: 0 10px 30px rgba(217, 35, 42, 0.2);
}

.cta-banner-red h2 {
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 12px 0;
  color: #ffffff;
}

.cta-banner-red p {
  font-size: 16px;
  opacity: 0.9;
  max-width: 650px;
  margin: 0 auto 24px auto;
  line-height: 1.6;
  color: #ffffff;
}

.cta-buttons-flex {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-white {
  background: #ffffff;
  color: #d9232a !important;
  border-radius: 8px;
  padding: 14px 28px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.cta-btn-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.cta-btn-whatsapp {
  background: #25D366;
  color: #ffffff !important;
  border-radius: 8px;
  padding: 14px 28px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.cta-btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.cta-btn-navy {
  background: #0f172a;
  color: #ffffff !important;
  border-radius: 8px;
  padding: 14px 28px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.cta-btn-navy:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.3);
}

/* ==========================================
   MOBİL EKRAN UYUMLULUĞU VE METİN DÜZENLEMELERİ (RESPONSIVE)
   ========================================== */
@media (max-width: 991px) {
  .about-container {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  
  .about-img-box {
    height: 300px !important;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  html, body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    width: 100% !important;
  }

  section {
    padding: 36px 0 !important;
  }

  /* Hero Slider Mobil Uyum */
  .hero-slider, .hero-section {
    height: 480px !important;
    min-height: 420px !important;
  }

  .hero-title-main {
    font-size: 1.8rem !important;
    line-height: 1.25 !important;
  }

  .hero-sub-normal {
    font-size: 0.85rem !important;
    letter-spacing: 1px !important;
    margin-bottom: 16px !important;
  }

  .slider-arrow {
    display: none !important;
  }

  .slider-dots {
    bottom: 14px !important;
  }

  /* Başlık ve Metin Ölçeklemeleri */
  .about-title, h2 {
    font-size: 1.65rem !important;
    line-height: 1.28 !important;
    margin-bottom: 14px !important;
  }

  .about-desc, p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  .section-title {
    margin-bottom: 24px !important;
  }

  .section-title h2 {
    font-size: 1.55rem !important;
  }

  /* Sayaç Kartlarının Mobilde Ekrana Tam Sığması */
  .about-stats-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }

  .stat-card {
    padding: 12px 4px !important;
    border-radius: 10px !important;
  }

  .stat-number {
    font-size: 1.5rem !important;
  }

  .stat-label {
    font-size: 9.5px !important;
    letter-spacing: 0 !important;
    margin-top: 4px !important;
    line-height: 1.2 !important;
  }

  /* Kayan Referans Şeridi Mobil Düzenleme */
  .references-strip {
    padding: 18px 0 14px 0 !important;
  }

  .references-heading {
    font-size: 11px !important;
    margin-bottom: 10px !important;
    letter-spacing: 0.05em !important;
  }

  .references-track span {
    padding: 0 16px !important;
    font-size: 13px !important;
  }

  /* Izgaralar (Grid) Tek Sütun / Uyumlu Yapı */
  .advantages-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .adv-card {
    padding: 24px 18px !important;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .sector-card {
    padding: 18px 14px !important;
  }

  .process-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .category-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .footer-top-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }

  /* CTA ve Butonlar */
  .cta-banner-red, .cta-banner {
    padding: 24px 16px !important;
    border-radius: 14px !important;
    text-align: center !important;
  }

  .cta-buttons-flex {
    flex-direction: column !important;
    width: 100% !important;
  }

  .cta-btn-white, .cta-btn-whatsapp, .cta-btn-navy, .btn-cta-whatsapp {
    width: 100% !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  .floating-buttons {
    bottom: 16px !important;
    right: 16px !important;
    gap: 10px !important;
  }

  .float-btn {
    width: 48px !important;
    height: 48px !important;
    font-size: 20px !important;
  }

  /* Inline Grid Kodları İçin Mobil Koruma */
  [style*="grid-template-columns: 1.1fr"],
  [style*="grid-template-columns: 1.15fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: repeat(2"],
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .sectors-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-columns {
    grid-template-columns: 1fr !important;
  }

  .about-img-box {
    height: 220px !important;
  }

  .stat-number {
    font-size: 1.35rem !important;
  }

  .stat-label {
    font-size: 9px !important;
  }
}

/* ==========================================
   OTOMATİK KOYU TEMA YÖNLENDİRMELERİ (SUBPAGE INLINE OVERRIDES)
   ========================================== */
.category-card {
  background: #111622 !important;
  border: 1px solid #1f293d !important;
  color: #cbd5e1 !important;
}

.category-title {
  color: #ffffff !important;
}

.category-desc {
  color: #94a3b8 !important;
}

.category-icon {
  background: rgba(217, 35, 42, 0.15) !important;
  color: var(--primary) !important;
}

.category-card:hover {
  border-color: var(--primary) !important;
  box-shadow: 0 12px 30px rgba(217, 35, 42, 0.25) !important;
}

[style*="background: #ffffff"],
[style*="background:#ffffff"],
[style*="background: #ffffff;"],
[style*="background-color: #ffffff"],
[style*="background-color: white"],
[style*="background: white"],
[style*="background-color: #f8fafc"] {
  background: #07090e !important;
  background-color: #07090e !important;
}

[style*="background: #f8fafc"],
[style*="background: #f1f5f9"] {
  background: #111622 !important;
}

[style*="color: #0f172a"],
[style*="color:#0f172a"],
[style*="color: #1e293b"],
[style*="color:#1e293b"] {
  color: #ffffff !important;
}

[style*="color: #475569"],
[style*="color:#475569"],
[style*="color: #334155"],
[style*="color:#334155"],
[style*="color: #64748b"],
[style*="color:#64748b"] {
  color: #94a3b8 !important;
}

/* ==========================================
   RESPONSIVE HAMBURGER MENU & OFF-CANVAS DRAWER
   ========================================== */
.mobile-toggle-btn {
  display: none;
  font-size: 22px;
  color: #ffffff;
  background: #111622;
  border: 1px solid #1f293d;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.mobile-toggle-btn:hover {
  background: var(--primary, #d9232a);
  color: #ffffff;
  border-color: var(--primary, #d9232a);
}

.header-btn {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* BACKDROP OVERLAY */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 999998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* OFF-CANVAS DRAWER PANEL */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: #0b0f19;
  border-left: 1px solid #1f293d;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.9);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #1f293d;
  background: #111622;
}

.mobile-logo-img {
  width: 40px !important;          /* İdeal genişlik */
  height: 40px !important;         /* İdeal yükseklik */
  object-fit: contain !important;  /* Logonun oranını korur, ezmez */
  border-radius: 0 !important;     /* Kırpmayı kaldırır */
  display: block !important;
}

.mobile-drawer-header .brand-logo-icon,
.mobile-drawer .brand-logo-icon {
  display: none !important;
}

.mobile-close-btn {
  font-size: 22px;
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.mobile-close-btn:hover {
  background: var(--primary, #d9232a);
}

.mobile-drawer-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  color: #cbd5e1;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.mobile-nav-list a:hover {
  background: rgba(217, 35, 42, 0.15);
  color: #ffffff;
}

.mobile-accordion-toggle {
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  color: #ffffff;
  font-size: 12px;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.mobile-accordion-toggle i {
  transition: transform 0.25s ease;
}

.mobile-accordion-toggle i.rotate-180 {
  transform: rotate(180deg);
  color: var(--primary, #d9232a);
}

.mobile-accordion-content {
  display: none;
  padding-left: 12px;
  margin-top: 6px;
  border-left: 2px solid var(--primary, #d9232a);
}

.mobile-accordion-content.active {
  display: block;
}

.mobile-acc-cat {
  margin-bottom: 14px;
}

.mobile-acc-cat strong {
  display: block;
  font-size: 13px;
  color: var(--primary, #d9232a);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-acc-cat ul {
  list-style: none;
  padding-left: 6px;
  margin: 0;
}

.mobile-acc-cat li a {
  font-size: 13px;
  padding: 8px 12px;
  color: #cbd5e1;
  font-weight: 600;
}

.mobile-drawer-cta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #1f293d;
}

@media (max-width: 992px) {
  .navbar {
    display: none !important;
  }
  
  .mobile-toggle-btn {
    display: flex !important;
    width: 38px !important;
    height: 38px !important;
    font-size: 18px !important;
  }

  .header-btn {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .header-btn .btn-primary,
  .header-btn .btn-dark-red-cta,
  .header-btn a.btn-primary {
    font-size: 11.5px !important;
    padding: 6px 12px !important;
    height: 38px !important;
    line-height: 24px !important;
    white-space: nowrap !important;
    border-radius: 6px !important;
  }
}







