/* 
  ZLF Makine - Kurumsal, Şık ve Sade CSS Tasarım Sistemi
  Author: Antigravity
  Style: Clean Light Corporate (Navy, Gray, and Orange Accent)
*/

/* 1. GLOBAL DEĞİŞKENLER VE SIFIRLAMA */
:root {
  /* Renk Paleti */
  --color-primary: #0A1D37;      /* Koyu Kurumsal Lacivert */
  --color-secondary: #2C3E50;    /* Slate Gri */
  --color-accent: #FF6B0B;       /* Endüstriyel Turuncu */
  --color-accent-hover: #E05A00;
  
  --bg-light: #FFFFFF;           /* Saf Beyaz */
  --bg-slate: #F8F9FA;           /* Çok Açık Gri/Mavi */
  --bg-border: #E9ECEF;          /* İnce Sınır Çizgisi */
  
  --text-dark: #212529;          /* Koyu Gövde Metni */
  --text-light: #495057;         /* Orta Gövde Metni */
  --text-muted: #868E96;         /* Pasif Metin */
  
  /* Tipografi */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  
  /* Gölgeler & Efektler */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(10, 29, 55, 0.06);
  --shadow-lg: 0 16px 36px rgba(10, 29, 55, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-slate);
}
::-webkit-scrollbar-thumb {
  background: #CED4DA;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* 2. DÜZEN ELEMANLARI (LAYOUT) */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 90px 0;
}

.section-bg {
  background-color: var(--bg-slate);
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-light);
  font-size: 16px;
  font-weight: 350;
}

/* 3. TOP BAR & NAV BAR (ÜST BÖLÜM) */
.top-bar {
  background-color: var(--color-primary);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-contacts {
  display: flex;
  gap: 24px;
}

.top-contacts a, .top-contacts span {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.top-contacts a:hover {
  color: var(--color-accent);
}

.top-contacts i {
  color: var(--color-accent);
}

.top-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.social-links a:hover {
  color: white;
}

/* Navbar */
.navbar {
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--bg-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  padding: 15px 0;
  transition: var(--transition);
}

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

/* Brand/Logo Layout */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-svg {
  width: 50px;
  height: 50px;
}

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

.brand-name {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
}

.brand-sub {
  color: var(--text-light);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Nav Links */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px; /* Sığması için 32px'den 20px'e düşürüldü */
}

.nav-link {
  color: var(--color-secondary);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px; /* Yazı boyutu hafifçe küçültüldü */
  letter-spacing: 0.3px;
  padding: 8px 0;
  position: relative;
  white-space: nowrap; /* İki satıra kırılmayı önler */
  transition: var(--transition);
}

.nav-link .menu-icon {
  display: none;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Dropdown Menu CSS */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: var(--bg-light);
  border: 1px solid var(--bg-border);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 12px 0;
  min-width: 265px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: var(--color-secondary);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: var(--bg-slate);
  color: var(--color-accent);
  padding-left: 24px;
}

/* Nested Tree Menu styling */
.mobile-menu-header, .mobile-social-section {
  display: none;
}

.tree-branch {
  position: relative;
  width: 100%;
}

.tree-sub-menu {
  display: none;
  list-style: none;
  padding-left: 15px;
  background-color: var(--bg-slate);
  border-left: 2px solid var(--color-accent);
  margin: 5px 0 10px 20px;
  border-radius: var(--radius-sm);
}

@media (min-width: 769px) {
  .tree-sub-menu {
    position: absolute;
    left: 100%;
    top: -12px;
    margin: 0;
    padding: 8px 0;
    min-width: 260px;
    background-color: var(--bg-light);
    border: 1px solid var(--bg-border);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-accent);
    z-index: 1010;
  }
  .tree-sub-item {
    color: var(--color-secondary);
    font-size: 12px;
    padding: 10px 20px;
    text-transform: none;
  }
  .tree-sub-item:hover {
    background-color: var(--bg-slate);
    color: var(--color-accent);
    padding-left: 24px;
  }
  .tree-chevron {
    transform: rotate(-90deg);
  }
  .tree-branch:hover .tree-chevron {
    transform: rotate(-90deg) !important;
  }
}

.tree-branch:hover .tree-sub-menu {
  display: block;
}

.tree-sub-item {
  display: block;
  padding: 8px 15px;
  font-size: 11px;
  font-family: var(--font-sans);
  font-weight: 500;
  text-decoration: none;
  color: var(--text-light);
  transition: var(--transition);
}

.tree-sub-item:hover {
  color: var(--color-accent);
  padding-left: 20px;
}

.tree-chevron {
  font-size: 8px;
  float: right;
  margin-top: 5px;
  transition: transform 0.3s ease;
}

.tree-branch:hover .tree-chevron {
  transform: rotate(180deg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px; /* Sığması için 20px'den 12px'e düşürüldü */
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--bg-border);
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap; /* Kırılmayı önler */
}

.lang-switch button {
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

.lang-switch button.active {
  color: var(--color-accent);
}

.lang-switch button:not(.active) {
  color: var(--text-muted);
}

.lang-switch button:hover {
  color: var(--color-primary);
}

/* 4. BUTTONS & UI ACTIONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap; /* Metnin satır sonuna kırılmasını önler */
  transition: var(--transition);
}

.navbar .btn {
  padding: 8px 18px; /* Navbar butonunu kompakt hale getirmek için daraltıldı */
  font-size: 11px;   /* Navbar butonunun yazı boyutu optimize edildi */
}

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

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  box-shadow: 0 4px 15px rgba(255, 107, 11, 0.2);
}

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

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

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

.btn-white:hover {
  background-color: var(--bg-slate);
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 24px;
  cursor: pointer;
}

/* 5. HERO SLIDER SECTION (GİRİŞ) */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-primary);
}

.hero-slider-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 29, 55, 0.95) 20%, rgba(10, 29, 55, 0.6) 60%, rgba(10, 29, 55, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 650px;
}

.hero-badge {
  background-color: rgba(255, 107, 11, 0.15);
  border: 1px solid rgba(255, 107, 11, 0.4);
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 46px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* 6. STATS CONTAINER (İSTATİSTİKLER) */
.stats-bar {
  background-color: var(--bg-light);
  box-shadow: var(--shadow-md);
  margin-top: -60px;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-border);
  padding: 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  border-right: 1px solid var(--bg-border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 36px;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 7. HAKKIMIZDA & KURUMSAL BÖLÜMÜ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 60px;
  align-items: center;
}

.about-img-wrapper {
  grid-column: span 5;
  position: relative;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--bg-border);
}

.about-content {
  grid-column: span 7;
}

.about-text {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-top: 1px solid var(--bg-border);
  padding-top: 24px;
}

.feat-item {
  display: flex;
  gap: 16px;
}

.feat-icon {
  background-color: rgba(10, 29, 55, 0.05);
  color: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.feat-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.feat-desc {
  font-size: 12px;
  color: var(--text-muted);
}

.about-additional-info {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid var(--bg-border);
}
.about-add-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.about-add-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .about-add-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* 8. SİSTEMLER VE EKİPMANLAR (HİZMET/ÜRÜN GRUBU) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background-color: var(--bg-light);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.card-img-wrapper {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--color-primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
}

.card-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-primary);
}

.card-desc {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
  flex-grow: 1;
}

.card-btn {
  background: none;
  border: 1px solid var(--bg-border);
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-self: flex-start;
  transition: var(--transition);
}

.card:hover .card-btn {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
  color: white;
}

/* Donanım Grid (4 sütun) */
.equip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.equip-card {
  background-color: var(--bg-light);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.equip-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.equip-img-box {
  background-color: var(--bg-slate);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  aspect-ratio: 1/1;
  overflow: hidden;
}

.equip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.equip-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.equip-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-primary);
}

.equip-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}

.equip-btn {
  width: 100%;
  border: 1px solid var(--bg-border);
  background: none;
  padding: 10px 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-secondary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

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

/* 9. PROSES TASARIM SİHİRBAZI */
.wizard-box {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--bg-border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 7fr 5fr;
}

.wizard-left {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--bg-border);
}

.wizard-indicators {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--bg-border);
  padding-bottom: 24px;
  margin-bottom: 30px;
}

.ind-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ind-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-slate);
  border: 1px solid var(--bg-border);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.ind-item.active .ind-circle {
  background-color: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

.ind-text {
  font-size: 9px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.ind-item.active .ind-text {
  color: var(--color-accent);
}

.ind-line {
  height: 1px;
  background-color: var(--bg-border);
  flex-grow: 1;
  margin: 0 15px;
  margin-top: -16px;
}

.wizard-step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wizard-step-title i {
  color: var(--color-accent);
}

/* Step 1: Malzeme Butonları */
.mat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mat-card {
  background-color: var(--bg-light);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.mat-card i {
  font-size: 24px;
  color: var(--text-muted);
  transition: var(--transition);
}

.mat-card-title {
  font-size: 13px;
  font-weight: 700;
}

.mat-card-desc {
  font-size: 10px;
  color: var(--text-muted);
}

.mat-card:hover {
  border-color: var(--color-secondary);
}

.mat-card.active {
  background-color: rgba(255, 107, 11, 0.05);
  border-color: var(--color-accent);
}

.mat-card.active i {
  color: var(--color-accent);
}

/* Step 2: Slider Tasarımı */
.range-group {
  margin-bottom: 24px;
}

.range-label-wrapper {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
}

.range-label {
  font-weight: 600;
  color: var(--text-light);
}

.range-val {
  color: var(--color-accent);
  font-weight: 700;
}

.range-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: var(--bg-slate);
  border: 1px solid var(--bg-border);
  border-radius: 4px;
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent);
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.range-limits {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Step 3: Sistem Seçimleri */
.sys-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sys-card {
  background-color: var(--bg-light);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.sys-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sys-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--bg-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sys-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: transparent;
  transition: var(--transition);
}

.sys-card.active {
  border-color: var(--color-accent);
  background-color: rgba(255, 107, 11, 0.03);
}

.sys-card.active .sys-circle {
  border-color: var(--color-accent);
}

.sys-card.active .sys-dot {
  background-color: var(--color-accent);
}

.sys-name {
  font-size: 13px;
  font-weight: 700;
  display: block;
}

.sys-desc {
  font-size: 10px;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

.sys-icon {
  font-size: 18px;
  color: var(--text-muted);
}

.sys-card.active .sys-icon {
  color: var(--color-accent);
}

/* Wizard Navigation */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--bg-border);
  padding-top: 24px;
  margin-top: 30px;
}

.wizard-nav button {
  min-width: 120px;
}

/* Wizard Right Panel (Canlı Rapor) */
.wizard-right {
  background-color: var(--bg-slate);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.report-header {
  border-b: 1px solid var(--bg-border);
  padding-bottom: 16px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.report-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.report-badge {
  background-color: rgba(10, 29, 55, 0.05);
  color: var(--color-primary);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.report-params {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.param-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  border-bottom: 1px dashed var(--bg-border);
  padding-bottom: 6px;
}

.param-name {
  color: var(--text-muted);
}

.param-val {
  font-weight: 600;
  color: var(--text-dark);
}

.report-power-box {
  background-color: white;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  transition: var(--transition);
}

.power-lbl {
  font-size: 9px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

.power-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 32px;
  color: var(--color-accent);
  display: block;
}

.power-desc {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.rec-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spec-item {
  background-color: white;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spec-lbl {
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.spec-lbl i {
  color: var(--color-accent);
}

.spec-val {
  font-weight: 700;
  color: var(--color-primary);
}

.report-btn {
  width: 100%;
  margin-top: 24px;
}

/* Helper Utilities */
.hidden {
  display: none !important;
}

/* 10. ZAMAN TÜNELİ & KALİTE */
.timeline-box {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 40px;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--bg-border);
  transform: translateX(-50%);
  z-index: 0;
}

.timeline-row {
  display: flex;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.timeline-row:last-child {
  margin-bottom: 0;
}

.timeline-item {
  width: 50%;
  padding: 0 40px;
  position: relative;
}

.timeline-row:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-row:nth-child(even) .timeline-item {
  text-align: right;
}

.timeline-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid var(--bg-border);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 2;
  transition: var(--transition);
}

.timeline-row:hover .timeline-badge {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.timeline-card {
  background-color: var(--bg-light);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.timeline-year {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-accent);
  margin-bottom: 6px;
  display: block;
}

.timeline-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.timeline-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

/* 11. İLETİŞİM VE HARİTA MOCKUP */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 50px;
}

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

.info-item {
  display: flex;
  gap: 20px;
}

.info-icon {
  background-color: var(--bg-slate);
  border: 1px solid var(--bg-border);
  color: var(--color-accent);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-lbl {
  font-size: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  display: block;
}

.info-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  display: block;
}

.info-sub {
  font-size: 12px;
  color: var(--text-light);
  display: block;
  margin-top: 2px;
}

.map-mockup {
  background-color: var(--bg-slate);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.map-mockup-header {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.map-mockup-body {
  height: 140px;
  background-color: white;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 20px;
}

.map-mockup-icon {
  font-size: 24px;
  color: var(--color-accent);
  margin-bottom: 10px;
  animation: bounce 2s infinite;
}

.map-mockup-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
}

.map-mockup-desc {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Form Styling */
.form-box {
  background-color: var(--bg-light);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group-full {
  grid-column: span 2;
}

.form-label {
  font-size: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  background-color: var(--bg-slate);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--color-primary);
  background-color: white;
}

textarea.form-input {
  resize: vertical;
}

.form-quote-block {
  grid-column: span 2;
  background-color: rgba(255, 107, 11, 0.05);
  border: 1px solid rgba(255, 107, 11, 0.2);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-quote-text {
  font-size: 11px;
  color: var(--color-accent);
  font-weight: 700;
}

.form-quote-detach {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
}

.form-quote-detach:hover {
  color: var(--color-accent);
}

.form-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.form-checkbox {
  width: 16px;
  height: 16px;
  accent-color: var(--color-accent);
}

.form-submit-btn {
  width: 100%;
}

.form-alert {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  z-index: 10;
}

.alert-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(40, 167, 69, 0.1);
  color: #28a745;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.alert-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.alert-desc {
  font-size: 13px;
  color: var(--text-light);
  max-width: 320px;
  margin-bottom: 24px;
}

/* 12. FOOTER (ALT BÖLÜM) */
.footer {
  background-color: var(--color-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px 0;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 4fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-logo svg {
  width: 44px;
  height: 44px;
}

.footer-brand-name {
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 1px;
}

.footer-brand-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.6;
  max-width: 380px;
  font-weight: 300;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.footer-socials a:hover {
  background-color: var(--color-accent);
}

.footer-title {
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contacts li {
  display: flex;
  gap: 12px;
  line-height: 1.5;
}

.footer-contacts i {
  color: var(--color-accent);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
}

/* 13. MODERN SYSTEM MODALS */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(10, 29, 55, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: opacity 0.3s ease;
}

.modal-box {
  background-color: white;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  padding: 30px;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.modal-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  border: 1px solid var(--bg-border);
}

.modal-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.modal-list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-list li {
  font-size: 12px;
  color: var(--text-dark);
  display: flex;
  gap: 8px;
}

.modal-list i {
  color: var(--color-accent);
  margin-top: 3px;
}

/* 14. RESPONSIVE DESIGN (MOBİL UYUMLULUK) */
@media (max-width: 1024px) {
  section { padding: 70px 0; }
  .hero { height: 500px; }
  .hero-title { font-size: 38px; }
  
  .about-grid { gap: 40px; }
  .about-img-wrapper { grid-column: span 12 !important; max-width: 400px !important; margin: 0 auto !important; justify-self: center !important; text-align: center !important; }
  .about-img { display: block !important; margin: 0 auto !important; max-width: 100% !important; }
  .about-content { grid-column: span 12; }
  .about-features { grid-template-columns: 1fr !important; gap: 20px !important; }
  
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .equip-grid { grid-template-columns: repeat(3, 1fr); }
  
  .wizard-box { grid-template-columns: 1fr; }
  .wizard-left { border-right: none; border-bottom: 1px solid var(--bg-border); }
  
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .mat-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .navbar { padding: 10px 0; }
  
  .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    padding: 24px 24px 80px 24px;
    gap: 16px;
    z-index: 999;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 4px solid var(--color-accent);
    overflow-y: auto;
  }
  
  .nav-menu.mobile-active {
    transform: translate3d(0, 0, 0);
  }
  
  .nav-menu .nav-link {
    font-size: 16px;
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-slate);
    font-family: var(--font-heading);
    font-weight: 700;
  }

  .nav-menu .nav-link .menu-icon {
    display: inline-block;
    width: 24px;
    margin-right: 8px;
    color: var(--color-accent);
    text-align: center;
  }

  /* Mobile Drawer Close Header row */
  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--bg-border);
    padding-bottom: 15px;
    margin-bottom: 20px;
    width: 100%;
  }

  .mobile-brand-logo {
    display: flex !important;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .mobile-menu-close {
    background: var(--bg-slate);
    border: none;
    color: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
  }

  .mobile-menu-close:hover {
    background: var(--color-accent);
    color: white;
    transform: rotate(90deg);
  }

  /* Mobile Social & Whatsapp Section */
  .mobile-social-section {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--bg-border);
    list-style-type: none;
  }

  .mobile-social-text {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
  }

  .mobile-social-links {
    display: flex;
    gap: 12px;
  }

  .mobile-social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
  }

  .mobile-social-icon.whatsapp {
    background-color: #25D366;
  }
  .mobile-social-icon.linkedin {
    background-color: #0077B5;
  }
  .mobile-social-icon.youtube {
    background-color: #FF0000;
  }
  .mobile-social-icon.instagram {
    background-color: #E1306C;
  }

  .mobile-social-icon:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    filter: brightness(1.1);
  }
  
  .menu-toggle { display: block; }
  .nav-actions { display: none; }
  
  .hero { height: auto; min-height: 480px; padding: 100px 0 60px 0; }
  .hero-title { font-size: 28px; }
  .hero-desc { font-size: 14px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; text-align: center; }
  
  .stats-bar { margin-top: -30px; padding: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--bg-border); padding-bottom: 15px; }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; padding-bottom: 0; }
  
  .card-grid { grid-template-columns: 1fr; }
  .equip-grid { grid-template-columns: repeat(2, 1fr); }
  
  .timeline-line { left: 24px; }
  .timeline-item { width: 100%; padding: 0 0 0 50px; }
  .timeline-row:nth-child(even) { flex-direction: row; }
  .timeline-row:nth-child(even) .timeline-item { text-align: left; }
  .timeline-badge { left: 24px; }
  
  .form-grid { grid-template-columns: 1fr; }
  .form-group-full { grid-column: span 1; }
  
  /* Wizard and Form spacing optimization to prevent mobile overflow */
  .wizard-left, .wizard-right { padding: 24px !important; }
  .form-box { padding: 24px !important; }
  
  .wizard-indicators {
    justify-content: center !important;
    gap: 10px !important;
    padding-bottom: 15px !important;
    margin-bottom: 24px !important;
  }
  .ind-line {
    margin-top: 16px !important;
  }
  
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* Kurumsal Profil Mobile Overrides to prevent overflow */
  .about-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
    width: 100% !important;
  }
  .about-img-wrapper {
    grid-column: span 12 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
  }
  .about-img {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
  }
  .about-content {
    grid-column: span 12 !important;
    width: 100% !important;
  }
  .about-features {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .feat-icon {
    flex-shrink: 0 !important;
  }

  /* Mobile Dropdown styles - Collapsed by default, opens on .mobile-open */
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background-color: transparent !important;
    padding: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    display: none !important;
    min-width: auto !important;
    transition: opacity 0.3s ease;
  }
  
  .dropdown.mobile-open .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    padding: 10px 0 0 20px !important;
  }

  .dropdown-item {
    font-size: 15px;
    padding: 8px 0;
    text-align: left;
  }
  
  /* Mobile tree specific styling overrides - Collapsed by default */
  .tree-sub-menu {
    display: none !important;
    padding-left: 10px;
    margin: 5px 0 10px 10px;
    background-color: transparent !important;
    border-left: 2px solid var(--color-accent) !important;
  }

  .tree-branch .tree-sub-menu {
    display: none !important;
  }

  .tree-branch:hover .tree-sub-menu {
    display: none !important;
  }

  .tree-branch.mobile-open .tree-sub-menu {
    display: block !important;
  }

  .tree-sub-item {
    font-size: 13px;
    padding: 8px 12px;
    color: var(--text-light);
  }
}

@media (max-width: 480px) {
  .brand-name { font-size: 15px !important; }
  .brand-sub { font-size: 8px !important; }
  .logo-svg { width: 38px !important; height: 38px !important; }
  
  .hero-title { font-size: 24px; }
  
  .equip-grid { grid-template-columns: 1fr; }
  .mat-grid { grid-template-columns: 1fr !important; }
  
  .wizard-left, .wizard-right { padding: 16px !important; }
  .form-box { padding: 16px !important; }
  
  /* Stepper header compact styles for small phones to avoid SİSTEM Tİ cutoff */
  .wizard-indicators {
    gap: 5px !important;
  }
  .wizard-indicators .ind-text {
    display: none !important; /* Hide labels so only circles 1, 2, 3 show on small phones */
  }
  .ind-line {
    margin-top: 16px !important;
    min-width: 25px !important;
    margin: 0 5px !important;
  }
}

/* Animations */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* ==========================================
   PREMIUM CMS / YÖNETİM PANELİ STYLES
   ========================================== */
/* Dynamic Floating Admin Button */
.admin-trigger {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  border: 2px solid var(--color-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  z-index: 99999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-trigger:hover {
  transform: scale(1.1) rotate(10deg);
  background: var(--color-accent);
  box-shadow: 0 12px 35px rgba(255, 107, 11, 0.4);
}

/* Glassmorphic Dark Admin Drawer */
.admin-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 440px;
  height: 100%;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(12px);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  transform: translate3d(-100%, 0, 0);
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.4s ease;
  color: #f8fafc;
}

.admin-drawer.open {
  transform: translate3d(0, 0, 0);
  visibility: visible;
}

.admin-drawer.open.collapsed {
  transform: translate3d(-400px, 0, 0);
}

.admin-collapse-btn {
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
  width: 24px;
  height: 50px;
  background: #0f172a;
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  box-shadow: 4px 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.admin-collapse-btn:hover {
  color: white;
  background: var(--color-accent);
}

/* Admin Header & Branding */
.admin-drawer-header {
  padding: 24px;
  background: #020617;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-drawer-header h3 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.admin-drawer-header h3 i {
  color: var(--color-accent);
}

.admin-close-btn {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.admin-close-btn:hover {
  color: #ef4444;
}

/* CMS Sidebar Tabs */
.admin-tabs {
  display: flex;
  background: #090d16;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow-x: auto;
  scrollbar-width: none;
}

.admin-tabs::-webkit-scrollbar {
  display: none;
}

.admin-tab-btn {
  flex: 1;
  min-width: 80px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: #94a3b8;
  padding: 14px 8px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.admin-tab-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.02);
}

.admin-tab-btn.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  background: rgba(255, 107, 11, 0.05);
}

/* Admin Body & Cards */
.admin-drawer-body {
  padding: 20px;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-tab-panel {
  display: none;
  flex-direction: column;
  gap: 16px;
}

.admin-tab-panel.active {
  display: flex;
  animation: adminFadeIn 0.3s ease;
}

@keyframes adminFadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.admin-help-text {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.6;
  background: rgba(30, 41, 59, 0.4);
  padding: 12px 14px;
  border-left: 3px solid var(--color-accent);
  border-radius: 6px;
}

.control-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.control-title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 8px;
}

.control-help {
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.5;
}

/* Switch UI */
.switch-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  color: #f1f5f9;
}

.cms-toggle-checkbox {
  display: none;
}

.custom-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
  background-color: #334155;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.custom-switch::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cms-toggle-checkbox:checked + .custom-switch {
  background-color: #10b981;
}

.cms-toggle-checkbox:checked + .custom-switch::before {
  transform: translateX(22px);
}

/* Fields & Inputs */
.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-group label {
  font-size: 11px;
  font-weight: 700;
  color: #cbd5e1;
}

.cms-field {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #020617;
  padding: 10px 12px;
  font-size: 13px;
  font-family: var(--font-sans);
  color: white;
  border-radius: 6px;
  outline: none;
  transition: all 0.2s ease;
}

.cms-field:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(255, 107, 11, 0.2);
}

/* Page Selector List styling */
.admin-page-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 250px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 8px;
  background: #020617;
}

.admin-page-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  color: #cbd5e1;
  text-decoration: none;
  background: transparent;
  transition: all 0.2s ease;
}

.admin-page-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.admin-page-item.active {
  background: rgba(255, 107, 11, 0.15);
  color: var(--color-accent);
  font-weight: 700;
}

.page-badge {
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 10px;
  text-transform: uppercase;
}

.page-badge.clean {
  background: rgba(148, 163, 184, 0.1);
  color: #94a3b8;
}

.page-badge.edited {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

/* Image Manager list */
.admin-image-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-image-item {
  background: #020617;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 10px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.admin-image-thumb-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  overflow: hidden;
  background: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-image-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-image-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-image-name {
  font-size: 11px;
  font-weight: 700;
  color: white;
}

.admin-image-path {
  font-size: 9px;
  color: #64748b;
  word-break: break-all;
}

.admin-image-upload-btn {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.admin-image-upload-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

/* Exporter Buttons */
.export-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.admin-drawer-footer {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #020617;
  display: flex;
  gap: 12px;
}

.admin-drawer-footer button {
  flex: 1;
}

/* Password Login Modal Overlay */
.admin-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(8px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.admin-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.admin-login-modal {
  width: 380px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.admin-modal-overlay.open .admin-login-modal {
  transform: translateY(0);
}

.admin-login-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 107, 11, 0.1);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 107, 11, 0.2);
}

.admin-login-modal h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: white;
  font-weight: 800;
  margin-bottom: 8px;
}

.admin-login-modal p {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 24px;
}

.admin-login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-login-form input {
  letter-spacing: 4px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

/* Edit Mode styling on elements */
[contenteditable="true"] {
  outline: none;
  position: relative;
  cursor: text;
  transition: all 0.2s ease;
}

[contenteditable="true"]:hover {
  box-shadow: 0 0 0 2px rgba(255, 107, 11, 0.4);
  background-color: rgba(255, 107, 11, 0.05);
}

[contenteditable="true"]:focus {
  box-shadow: 0 0 0 3px var(--color-accent);
  background-color: white;
  color: #0f172a;
}

img.cms-img-editable {
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

img.cms-img-editable:hover {
  filter: brightness(0.6) contrast(1.1) !important;
  outline: 3px dashed var(--color-accent) !important;
  outline-offset: -3px;
}


/* Dynamic Inline WYSIWYG Editable Visual Highlight border */
[contenteditable="true"] {
  outline: none;
  position: relative;
  cursor: text;
  transition: var(--transition);
}

[contenteditable="true"]:hover {
  box-shadow: 0 0 0 2px rgba(255, 107, 11, 0.3);
  background-color: rgba(255, 107, 11, 0.03);
  border-radius: var(--radius-sm);
}

[contenteditable="true"]:focus {
  box-shadow: 0 0 0 3px var(--color-accent);
  background-color: white;
  border-radius: var(--radius-sm);
}

/* CMS Image Inline Edit style */
img.cms-img-editable {
  cursor: pointer !important;
  transition: filter 0.3s ease, outline 0.3s ease !important;
}

img.cms-img-editable:hover {
  filter: brightness(0.7) contrast(1.1) !important;
  outline: 3px dashed var(--color-accent) !important;
  outline-offset: -3px;
}

/* ==========================================
   PNEUMATIC CONVEYING DETAILED ANALYSIS TABS
   ========================================== */
.pneumatic-details-container {
  margin-top: 60px;
  background: white;
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--color-accent);
}

.pneu-panel-title {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: 0.5px;
}

.pneu-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--bg-border);
  padding-bottom: 15px;
  flex-wrap: wrap;
}

.pneu-tab-btn {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 10px 20px;
  transition: var(--transition);
  letter-spacing: 0.5px;
  border-radius: 20px;
}

.pneu-tab-btn.active {
  color: var(--color-accent) !important;
  background: var(--bg-slate) !important;
}

.pneu-tab-btn:hover:not(.active) {
  color: var(--color-primary);
  background: var(--bg-slate);
}

.pneu-tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.pneu-tab-content.active-content {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Tab 1: Types Grid */
.pneu-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.pneu-type-card {
  background: var(--bg-slate);
  padding: 25px;
  border-radius: var(--radius-md);
}

.pneu-type-card.type-pressure {
  border-left: 4px solid var(--color-primary);
}

.pneu-type-card.type-vacuum {
  border-left: 4px solid var(--color-accent);
}

.pneu-type-card h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pneu-type-card h4 i {
  color: var(--color-accent);
}

.pneu-type-card.type-vacuum h4 i {
  color: var(--color-primary);
}

.pneu-type-card p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 15px;
}

.pneu-type-card h5 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  margin: 15px 0 10px 0;
}

.pneu-type-card ul {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.6;
  padding-left: 20px;
  list-style-type: disc;
}

/* Tab 2: Specs & Advantages Grid */
.pneu-specs-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
}

.pneu-specs-table h4, .pneu-advantages-box h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--bg-border);
  padding-bottom: 8px;
}

.pneu-specs-table ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dark);
}

.pneu-specs-table ul li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--bg-border);
  padding-bottom: 6px;
}

.pneu-adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-size: 13px;
  color: var(--text-light);
}

.adv-card {
  background: var(--bg-slate);
  padding: 12px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-accent);
}

/* Tab 3: Materials Grid */
.pneu-materials-title {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-align: center;
}

.pneu-materials-desc {
  font-size: 13.5px;
  color: var(--text-light);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px auto;
}

.pneu-materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mat-group {
  background: var(--bg-slate);
  padding: 18px;
  border-radius: var(--radius-sm);
}

.mat-group.group-1 { border-top: 3px solid var(--color-primary); }
.mat-group.group-2 { border-top: 3px solid var(--color-accent); }
.mat-group.group-3 { border-top: 3px solid #28a745; }
.mat-group.group-4 { border-top: 3px solid #0077b5; }

.mat-group h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.mat-group ul {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.7;
  padding-left: 15px;
  list-style-type: disc;
}

/* Tab 4: Equipment Grid */
.pneu-equip-title {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}

.pneu-equipments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.equip-item-card {
  background: var(--bg-slate);
  padding: 20px;
  border-radius: var(--radius-sm);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.equip-item-card:hover {
  border-bottom-color: var(--color-accent);
  transform: translateY(-2px);
}

.equip-item-card h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.equip-item-card h5 i {
  color: var(--color-accent);
}

.equip-item-card p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Mobile responsive styles for tabs and content */
@media (max-width: 768px) {
  .pneumatic-details-container {
    padding: 20px !important;
    margin-top: 40px !important;
  }
  
  .pneu-panel-title {
    font-size: 18px !important;
  }
  
  .pneu-tabs-nav {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
  }
  
  .pneu-tab-btn {
    width: 100% !important;
    text-align: center !important;
    padding: 12px !important;
  }
  
  .pneu-types-grid, .pneu-specs-grid, .pneu-materials-grid, .pneu-equipments-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  
  .equip-item-card {
    grid-column: span 1 !important;
  }
  
  .pneu-adv-grid {
    grid-template-columns: 1fr !important;
  }
}

/* 6. MEKANIK HELEZON ACKORDIYON TASARIMI */
.mech-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 25px;
}
.mech-accordion details {
  background: #ffffff;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.mech-accordion details[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-accent);
}
.mech-accordion summary {
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: var(--transition);
  outline: none;
}
.mech-accordion summary::-webkit-details-marker {
  display: none;
}
.mech-accordion summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  color: var(--text-muted);
  transition: var(--transition);
}
.mech-accordion details[open] summary::after {
  transform: rotate(180deg);
  color: var(--color-accent);
}
.mech-accordion summary:hover {
  background: var(--bg-slate);
  color: var(--color-accent);
}
.mech-accordion .accordion-body {
  padding: 20px;
  border-top: 1px solid var(--bg-border);
  background: #fafbfc;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-light);
}
.mech-accordion .accordion-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mech-accordion .accordion-body ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.mech-accordion .accordion-body ul li::before {
  content: '•';
  color: var(--color-accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}
.B-grid {
  align-items: stretch !important;
}
.B-img-wrapper {
  height: 100%;
}
.B-img {
  height: 100% !important;
  object-fit: cover !important;
  min-height: 450px;
}
@media (max-width: 768px) {
  .B-grid {
    align-items: stretch !important;
  }
  .B-img-wrapper {
    height: auto;
  }
  .B-img {
    height: 300px !important;
    min-height: auto;
  }
}

/* Language Switcher Styling */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  margin-left: 15px;
  background: rgba(255, 255, 255, 0.08);
  padding: 3px 10px;
  border-radius: 12px;
  vertical-align: middle;
}

.lang-btn {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
}

.lang-btn.active {
  color: var(--color-accent);
}

.lang-btn:hover:not(.active) {
  color: white;
}

.lang-divider {
  color: rgba(255, 255, 255, 0.2);
}

/* Google Translate Stealth Mode Styling */
#google_translate_element {
  display: block !important;
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

.skiptranslate, 
.goog-te-banner-frame, 
.goog-te-banner-frame.skiptranslate,
#goog-gt-tt, 
.goog-te-balloon-frame,
.goog-te-menu-value,
.goog-te-gadget {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
}

body {
  top: 0 !important;
  position: static !important;
}

.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* PDF List Styling */
.pdf-list-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pdf-item {
  background-color: var(--bg-slate);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: var(--transition);
}

.pdf-item:hover {
  border-color: var(--color-accent);
  background-color: white;
  box-shadow: var(--shadow-sm);
}

.pdf-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-dark) !important;
  font-weight: 600;
  font-size: 13.5px;
}

.pdf-link i {
  color: #ef4444; /* PDF red */
  font-size: 20px;
  flex-shrink: 0;
}

.pdf-link span {
  line-height: 1.4;
}
