/* ═══════════════════════════════════════════════════
   BMS BULUT MAKİNA — SHARED STYLESHEET 2025
   6-Language Multi-Site
═══════════════════════════════════════════════════ */
:root {
  --red: #D42B2B;
  --blue: #1B77C8;
  --navy: #0D1F3C;
  --navy2: #162847;
  --white: #FFFFFF;
  --light: #F4F6FA;
  --mid: #E8ECF2;
  --text: #1a2535;
  --muted: #6b7a90;
  --border: #D5DCE8;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* ── RTL support ── */
[dir="rtl"] { text-align: right; }
[dir="rtl"] .hero-inner { direction: rtl; }

/* ── Utilities ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(28px,4vw,46px); font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: 1px; }
.section-sub { font-size: 16px; color: var(--muted); margin-top: 8px; }
.eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--red); margin-bottom: 12px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 6px; font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer; border: none; transition: all .2s; text-decoration: none; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: #b82222; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(212,43,43,.4); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0fdf4 !important;
  color: #166534 !important;
  border: 1px solid #bbf7d0 !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}
.tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-green 2s infinite;
}
.tag.red {
  background: #fef2f2 !important;
  color: #991b1b !important;
  border-color: #fecaca !important;
}
.tag.red::before {
  background-color: #ef4444;
  animation: pulse-red 2s infinite;
}
@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@keyframes pulse-red {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 4px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* ── HEADER ── */
#header { position:fixed; top:0; left:0; right:0; z-index:1000; background:rgba(13,31,60,.97); backdrop-filter:blur(12px); border-bottom:1px solid rgba(255,255,255,.08); transition:all .3s; }
#header .container { max-width: 1600px; padding: 0 40px; margin: 0 auto; }
#header.scrolled { box-shadow:0 4px 24px rgba(0,0,0,.3); }
.header-inner { display:flex; align-items:center; justify-content:space-between; height:68px; }
.logo-wrap { display:flex; align-items:center; margin-right:16px; text-decoration:none; }
.logo-wrap img { height:44px; object-fit:contain; }
.site-logo { height:44px; width:auto; display:block; }
.footer-logo { height:52px; width:auto; display:block; margin-bottom:12px; }
.main-nav { display:flex; align-items:center; gap:4px; }
.nav-item { position:relative; }
.nav-link { display:flex; align-items:center; gap:4px; color:rgba(255,255,255,.85); font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.8px; padding:6px 10px; border-radius:4px; cursor:pointer; transition:all .2s; white-space:nowrap; text-decoration:none; }
.nav-link:hover, .nav-link.active { color:#fff; background:rgba(255,255,255,.1); }
.nav-link svg { width:12px; height:12px; transition:transform .2s; }
.nav-item:hover .nav-link svg { transform:rotate(180deg); }
.dropdown { position:absolute; top:calc(100% + 4px); left:0; background:#fff; border:1px solid var(--border); border-radius:8px; box-shadow:0 16px 48px rgba(0,0,0,.18); min-width:240px; opacity:0; pointer-events:none; transform:translateY(-8px); transition:all .2s; overflow:hidden; }
.nav-item:hover > .dropdown { opacity:1; pointer-events:all; transform:translateY(0); }
.dropdown-label { padding:6px 16px 4px; font-size:10px; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:1px; }
.dropdown a { display:block; padding:8px 16px; color:var(--text); font-size:13px; font-weight:500; text-decoration:none; transition:all .15s; border-left:2px solid transparent; }
.dropdown a:hover { background:var(--light); border-left-color:var(--blue); color:var(--blue); padding-left:20px; }
.dropdown-divider { height:1px; background:var(--border); margin:4px 0; }
.dd-nested { position:relative; }
.header-right { display:flex; align-items:center; gap:10px; }
 
/* Lang switcher */
.lang-switcher { display:flex; gap:2px; align-items:center; }
.lang-btn { padding:3px 6px; border:none; background:transparent; color:rgba(255,255,255,.5); font-size:10.5px; font-weight:700; cursor:pointer; text-transform:uppercase; transition:all .2s; text-decoration:none; border-radius:4px; }
.lang-btn:hover { color:#fff; background:rgba(255,255,255,.08); }
.lang-btn.active { background:var(--blue); color:#fff; }
.header-quote { background:var(--red); color:#fff; padding:7px 16px; border-radius:4px; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.5px; cursor:pointer; border:none; transition:all .2s; }
.header-quote:hover { background:#b82222; }

/* ── HERO ── */
#hero { height:100vh; min-height:640px; position:relative; overflow:hidden; background:var(--navy); }
.hero-bg { position:absolute; inset:0; background:linear-gradient(135deg,#081628 0%,#0D1F3C 40%,#162847 70%,#1B3A5C 100%); }
.hero-bg::before { content:''; position:absolute; inset:0; background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); }
.hero-slider { position:absolute; inset:0; }
.hero-slide { position:absolute; inset:0; opacity:0; transition:opacity .8s ease; display:flex; align-items:center; }
.hero-slide.active { opacity:1; }
.hero-content { position:relative; z-index:2; padding-top:68px; width:100%; }
.hero-inner { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; height:calc(100vh - 68px); min-height:580px; }
.hero-text { padding:40px 0; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:linear-gradient(90deg,rgba(212,43,43,.15),rgba(27,119,200,.15)); border:1px solid rgba(212,43,43,.4); padding:6px 16px; border-radius:20px; margin-bottom:20px; }
.hero-badge span { color:rgba(255,255,255,.9); font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:1px; }
.hero-badge .dot { width:6px; height:6px; border-radius:50%; background:var(--red); animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);}50%{opacity:.5;transform:scale(1.4);} }
.hero-model { font-family:'Barlow Condensed',sans-serif; font-size:13px; font-weight:700; color:var(--blue); text-transform:uppercase; letter-spacing:3px; margin-bottom:12px; }
.hero-title { font-family:'Barlow Condensed',sans-serif; font-size:clamp(36px,5vw,62px); font-weight:900; color:#fff; line-height:1.05; text-transform:uppercase; margin-bottom:20px; }
.hero-title em { color:var(--red); font-style:normal; }
.hero-desc { color:rgba(255,255,255,.72); font-size:16px; line-height:1.7; margin-bottom:32px; max-width:520px; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; }
.hero-image { display:flex; align-items:center; justify-content:center; }
.hero-image img {
  max-height: 440px;
  max-width: 100%;
  object-fit: contain;
  background: #ffffff;
  padding: 24px;
  border-radius: 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.55), 
    0 0 40px rgba(27, 119, 200, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  animation: floatImg 6s ease-in-out infinite;
}
.hero-image img:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.65), 
    0 0 60px rgba(27, 119, 200, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
@keyframes floatImg { 0%,100%{transform:translateY(0);}50%{transform:translateY(-12px);} }
.hero-controls { position:absolute; bottom:32px; left:50%; transform:translateX(-50%); display:flex; align-items:center; gap:20px; z-index:10; }
.hero-prev,.hero-next { width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); color:#fff; cursor:pointer; display:flex; align-items:center; justify-content:center; font-size:18px; transition:all .2s; }
.hero-prev:hover,.hero-next:hover { background:var(--red); border-color:var(--red); }
.hero-dots { display:flex; gap:8px; }
.hero-dot { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.3); cursor:pointer; transition:all .3s; border:none; }
.hero-dot.active { background:var(--red); transform:scale(1.3); }

/* ── STATS BAR ── */
.stats-bar { background:var(--red); padding:16px 0; }
.stats-inner { display:flex; justify-content:space-around; flex-wrap:wrap; gap:16px; }
.stat-item { display:flex; align-items:center; gap:10px; color:#fff; }
.stat-num { font-family:'Barlow Condensed',sans-serif; font-size:28px; font-weight:900; }
.stat-lbl { font-size:12px; font-weight:600; text-transform:uppercase; letter-spacing:.5px; opacity:.9; }
.stat-div { width:1px; height:36px; background:rgba(255,255,255,.3); }

/* ── DOMESTIC HIGHLIGHT ── */
.domestic-section {
  background: radial-gradient(circle at 80% 50%, #1c3d64 0%, #0d1f3c 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.domestic-section::after {
  content: '🇹🇷';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 280px;
  opacity: .05;
  line-height: 1;
  pointer-events: none;
}
.domestic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.domestic-left .eyebrow {
  background: linear-gradient(90deg, #ff4141 0%, #ff8989 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 3px;
}
.domestic-left h2 { font-family:'Barlow Condensed',sans-serif; font-size:clamp(26px,3.5vw,42px); font-weight:800; color:#fff; line-height:1.15; margin-bottom:20px; }
.domestic-left p { color:rgba(255,255,255,.78); font-size:16px; line-height:1.75; margin-bottom:24px; }
.domestic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.domestic-tags span {
  background: rgba(255, 255, 255, 0.04) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 8px 18px !important;
  border-radius: 30px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.domestic-tags span:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.domestic-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.d-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.d-stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.25), 
    0 0 30px rgba(27, 119, 200, 0.15);
}
.d-stat-card .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.d-stat-card .lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 8px;
}
.d-stat-card.highlight {
  background: linear-gradient(135deg, var(--red) 0%, #b82222 100%) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 15px 35px rgba(212, 43, 43, 0.35) !important;
}
.d-stat-card.highlight:hover {
  box-shadow: 
    0 25px 45px rgba(212, 43, 43, 0.5), 
    0 0 30px rgba(212, 43, 43, 0.2) !important;
}

.domestic-strip {
  background: linear-gradient(to right, #f8fafc, #f1f5f9, #f8fafc);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 24px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.5;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.01);
}
.domestic-strip em {
  font-style: normal;
  color: var(--red);
  font-weight: 800;
}

/* ── PRODUCTS SECTION ── */
.products-section { padding:80px 0; }
.products-section.bg-light { background:var(--light); }
.section-header { text-align:center; margin-bottom:48px; }
.products-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(290px,1fr)); gap:24px; }
.cat-title { font-family:'Barlow Condensed',sans-serif; font-size:22px; font-weight:800; color:var(--navy); text-transform:uppercase; letter-spacing:1px; margin-bottom:24px; padding-bottom:12px; border-bottom:2px solid var(--border); margin-top:48px; }
.cat-title:first-child { margin-top:0; }

/* Product cards */
.product-card {
  border: 1px solid rgba(13, 31, 60, 0.05);
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 30px -15px rgba(13, 31, 60, 0.05), 0 1px 3px rgba(13, 31, 60, 0.01);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(13, 31, 60, 0.08), 0 0 30px rgba(27, 119, 200, 0.04);
  border-color: rgba(27, 119, 200, 0.25);
}
.product-card-img {
  background: radial-gradient(circle at center, #ffffff 0%, #f8fafc 100%);
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.product-card-img img {
  max-height: 160px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-card-img img {
  transform: scale(1.06) translateY(-4px);
}
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.25);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-badge.blue {
  background: linear-gradient(135deg, var(--blue) 0%, #1565c0 100%);
  box-shadow: 0 4px 12px rgba(27, 119, 200, 0.25);
}
.card-placeholder {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  height: 152px !important;
  width: 100% !important;
  background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%) !important;
  color: #94a3b8 !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  border-radius: 12px !important;
  border: 1px dashed rgba(13, 31, 60, 0.12) !important;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.02) !important;
  text-align: center !important;
}
.card-placeholder::before {
  content: "⚙️" !important;
  font-size: 24px !important;
  margin-bottom: 8px !important;
  opacity: 0.65 !important;
  display: block !important;
}
.product-card-body { padding: 24px 22px; }
.product-card-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  transition: color 0.25s;
}
.product-card:hover .product-card-body h3 {
  color: var(--blue);
}
.product-card-body .subtitle {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 14px;
}
.spec-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.spec-chip {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.2s ease;
}
.product-card:hover .spec-chip {
  background: rgba(27, 119, 200, 0.06);
  color: var(--blue);
  border-color: rgba(27, 119, 200, 0.15);
}
.product-card-footer {
  padding: 16px 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
}
.detail-link {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .detail-link {
  color: var(--red);
  letter-spacing: 0.3px;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 15, 30, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: #ffffff;
  border-radius: 24px;
  max-width: 920px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 90px rgba(6, 15, 30, 0.3);
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10;
}
.modal-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
}
.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--muted);
  transition: all 0.25s;
}
.modal-close:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: rotate(90deg);
}
.modal-body { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 36px; padding: 30px; }
.modal-img {
  background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  min-height: 380px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.01);
  overflow: hidden;
  align-self: start;
  position: sticky;
  top: 100px;
}
.modal-img img {
  max-height: 480px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-img:hover img {
  transform: scale(1.05);
}
.modal-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 12px;
  margin-top: 24px;
  border-left: 2px solid var(--red);
  padding-left: 8px;
}
.modal-info h3:first-child { margin-top: 0; }
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 8px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.spec-table tr {
  transition: background 0.15s ease;
}
.spec-table tr:nth-child(even) { background: #fafbfc; }
.spec-table tr:hover { background: rgba(27, 119, 200, 0.03); }
.spec-table td { padding: 10px 14px; font-size: 13.5px; border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table td:first-child { font-weight: 600; color: var(--navy); width: 50%; }
.accessories-list { list-style: none; }
.accessories-list li {
  padding: 6px 0;
  font-size: 13.5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}
.accessories-list li:last-child { border-bottom: none; }
.accessories-list li::before {
  content: '✓';
  color: #fff;
  background: var(--blue);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(27, 119, 200, 0.2);
}

/* ── REFERENCES ── */
.references-section { padding:72px 0; background:#fff; overflow:hidden; }
.logo-marquee-wrap { overflow:hidden; position:relative; }
.logo-marquee-wrap::before,.logo-marquee-wrap::after { content:''; position:absolute; top:0; bottom:0; width:120px; z-index:2; }
.logo-marquee-wrap::before { left:0; background:linear-gradient(to right,#fff,transparent); }
.logo-marquee-wrap::after { right:0; background:linear-gradient(to left,#fff,transparent); }
.logo-marquee { display:flex; gap:32px; animation:marquee 30s linear infinite; width:max-content; }
@keyframes marquee { from{transform:translateX(0);}to{transform:translateX(-50%);} }
.country-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:10px; margin-top:32px; }
.country-tag { background:var(--light); border:1px solid var(--border); padding:8px 14px; border-radius:6px; font-size:13px; font-weight:600; color:var(--text); text-align:center; }

/* ── ABOUT ── */
.about-section {
  padding: 100px 0;
  background: radial-gradient(circle at 10% 20%, #0d1f3c 0%, #060f1e 90%);
}
.about-grid { display:grid; grid-template-columns:1.15fr 0.85fr; gap:72px; align-items:center; }
.about-img-wrap {
  position: relative;
  border-radius: 24px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 
    0 30px 65px rgba(0, 0, 0, 0.45), 
    0 0 50px rgba(27, 119, 200, 0.15);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-img-wrap:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 45px 85px rgba(0, 0, 0, 0.55), 
    0 0 65px rgba(27, 119, 200, 0.25);
}
.about-img-wrap img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: linear-gradient(135deg, var(--red) 0%, #b82222 100%);
  color: #fff;
  padding: 20px 28px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 
    0 15px 35px rgba(212, 43, 43, 0.4), 
    0 0 20px rgba(212, 43, 43, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.about-img-wrap:hover .about-badge {
  transform: scale(1.05) translate(5px, 5px);
  box-shadow: 
    0 20px 45px rgba(212, 43, 43, 0.55), 
    0 0 25px rgba(212, 43, 43, 0.25);
}
.about-badge .year { font-family:'Barlow Condensed',sans-serif; font-size:48px; font-weight:900; line-height:1; }
.about-badge .label { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1px; opacity:.9; }
.about-text .eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: inline-block;
  background: linear-gradient(90deg, var(--blue) 0%, #00d2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-text h2 { font-family:'Barlow Condensed',sans-serif; font-size:clamp(26px,3.5vw,40px); font-weight:800; color:#fff; line-height:1.15; margin-bottom:20px; }
.about-text p { color:rgba(255,255,255,.75); font-size:15px; line-height:1.8; margin-bottom:16px; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-feat:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.about-feat .icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(27, 119, 200, 0.15) 0%, rgba(212, 43, 43, 0.05) 100%);
  border: 1.5px solid rgba(27, 119, 200, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(27, 119, 200, 0.1);
}
.about-feat h4 { color:#fff; font-size:14px; font-weight:700; margin-bottom:4px; }
.about-feat p { color:rgba(255,255,255,.65); font-size:12.5px; line-height:1.5; margin:0; }

/* ── CONTACT ── */
.contact-section {
  padding: 80px 0;
  background: var(--light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}
.contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(27, 119, 200, 0.25);
  box-shadow: 0 10px 20px rgba(13, 31, 60, 0.05);
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(27, 119, 200, 0.08);
  border: 1px solid rgba(27, 119, 200, 0.15);
  color: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.contact-item:hover .contact-icon {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.contact-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-item p {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.6;
  font-weight: 500;
}
.contact-item a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.contact-item a:hover {
  color: var(--red);
}
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(13, 31, 60, 0.06);
}
.contact-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--light);
  transition: all 0.2s ease;
}
.form-group input:hover, .form-group textarea:hover, .form-group select:hover {
  border-color: rgba(27, 119, 200, 0.3);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(27, 119, 200, 0.12);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7a90' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 40px;
}
.contact-form button.btn-primary {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(212, 43, 43, 0.2);
}
.contact-form button.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 43, 43, 0.35);
}


/* ── FOOTER ── */
footer { background:#060f1e; color:rgba(255,255,255,.6); padding:60px 0 24px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; margin-bottom:48px; }
.footer-brand img { height:40px; margin-bottom:16px; filter:brightness(10); }
.footer-brand p { font-size:13px; line-height:1.7; max-width:280px; }
.footer-col h4 { color:#fff; font-family:'Barlow Condensed',sans-serif; font-size:14px; font-weight:700; text-transform:uppercase; letter-spacing:1px; margin-bottom:16px; }
.footer-col a { display:block; color:rgba(255,255,255,.55); font-size:13px; text-decoration:none; padding:4px 0; transition:color .2s; }
.footer-col a:hover { color:var(--blue); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding-top:24px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-bottom p { font-size:12px; }
.cert-badges { display:flex; gap:8px; flex-wrap:wrap; margin-top:12px; }
.cert-badge { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15); color:rgba(255,255,255,.7); font-size:11px; font-weight:700; padding:4px 10px; border-radius:4px; }

/* scroll animation removed */

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .hero-inner { grid-template-columns:1fr; height:auto; padding:40px 0 90px; gap:24px; }
  .hero-image img {
    max-height: 240px;
    padding: 16px;
    border-radius: 18px;
  }
  .hero-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }
  .hero-prev, .hero-next {
    display: none !important;
  }
  .domestic-grid,.about-grid,.contact-grid { grid-template-columns:1fr; gap:40px; }
  .modal-body { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1010;
}
.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media(max-width:768px){
  .mobile-menu-toggle {
    display: flex;
  }
  .header-right {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(13, 31, 60, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 90px 24px 30px 24px;
    gap: 16px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1005;
  }
  .main-nav.active {
    transform: translateX(0);
  }
  .nav-link {
    font-size: 15px;
    font-weight: 600;
    padding: 8px 12px;
    width: 100%;
    color: rgba(255, 255, 255, 0.9) !important;
  }
  .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
  }
  body.menu-open {
    overflow: hidden;
  }
  .stat-div { display:none; }
  .domestic-right { grid-template-columns:1fr 1fr; }
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
  }
  .footer-brand {
    grid-column: span 2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
    margin-bottom: 8px;
  }
  .footer-col h4 {
    border-left: 2.5px solid var(--red);
    padding-left: 10px;
    margin-bottom: 14px;
    font-size: 13.5px !important;
  }
  .footer-col a {
    padding: 8px 0 !important;
    font-size: 14px !important;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
  }
  .about-features {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .about-badge {
    position: static !important;
    margin: 20px auto 0 auto !important;
    display: inline-block !important;
    width: auto !important;
  }
  .about-img-wrap {
    text-align: center !important;
  }
  .form-row { grid-template-columns:1fr; }
}


/* ===== REFERANS BÖLÜMÜ v2 ===== */
.ref-stat {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.ref-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: all 0.3s ease;
}
.ref-stat:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 20px 40px rgba(13, 31, 60, 0.06), 
    0 0 25px rgba(27, 119, 200, 0.04);
  border-color: rgba(27, 119, 200, 0.2);
}
.ref-stat:hover::before {
  background: linear-gradient(90deg, var(--blue) 0%, #00d2ff 100%);
}
.ref-stat-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1.1;
}
.ref-stat-l {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
#reftabs-en, #reftabs-tr, #reftabs-de, #reftabs-ru, #reftabs-fr, #reftabs-it, #reftabs-es, #reftabs-zh, #reftabs-pt, #reftabs-ja {
  display: inline-flex !important;
  background: #edf2f7;
  padding: 5px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  margin-bottom: 24px;
  gap: 4px;
}
.ref-tab {
  padding: 8px 24px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0 !important;
}
.ref-tab:hover:not(.ref-tab-on) {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.5);
}
.ref-tab-on {
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--blue) 0%, #1565c0 100%) !important;
  box-shadow: 0 4px 12px rgba(27, 119, 200, 0.3);
  border: none !important;
}
#ref-search-en, #ref-search-tr, #ref-search-de, #ref-search-ru, #ref-search-fr, #ref-search-it, #ref-search-es, #ref-search-zh, #ref-search-pt, #ref-search-ja {
  border: 1.5px solid rgba(0, 0, 0, 0.06) !important;
  border-radius: 12px !important;
  padding: 14px 16px 14px 44px !important;
  background: var(--white) !important;
  font-family: 'Barlow', sans-serif !important;
  transition: all 0.25s ease !important;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.01);
}
#ref-search-en:focus, #ref-search-tr:focus, #ref-search-de:focus, #ref-search-ru:focus, #ref-search-fr:focus, #ref-search-it:focus, #ref-search-es:focus, #ref-search-zh:focus, #ref-search-pt:focus, #ref-search-ja:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 4px rgba(27, 119, 200, 0.10) !important;
}
.ref-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  min-height: 480px;
}
@media(max-width:768px) {
  .ref-layout {
    grid-template-columns: 1fr;
  }
}
.ref-left, .ref-right {
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(13, 31, 60, 0.02);
  overflow-y: auto;
  max-height: 520px;
}
/* Premium Scrollbar */
.ref-left::-webkit-scrollbar, .ref-right::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.ref-left::-webkit-scrollbar-track, .ref-right::-webkit-scrollbar-track {
  background: transparent;
}
.ref-left::-webkit-scrollbar-thumb, .ref-right::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}
.ref-left::-webkit-scrollbar-thumb:hover, .ref-right::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
.loc-btn-grid {
  padding: 8px;
}
.loc-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 4px;
  border: none;
  border-left: 3px solid transparent;
  border-radius: 6px;
  background: none;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}
.loc-btn:hover {
  background: var(--light);
  border-left-color: rgba(27, 119, 200, 0.3);
  color: var(--navy);
}
.loc-btn-on {
  background: #EFF6FF !important;
  color: var(--blue) !important;
  font-weight: 700 !important;
  border-left-color: var(--blue) !important;
}
.loc-count {
  font-size: 11px;
  background: #E2E8F0;
  color: #64748B;
  padding: 2px 8px;
  border-radius: 20px;
  min-width: 22px;
  text-align: center;
  flex-shrink: 0;
  font-weight: 600;
  transition: all 0.2s ease;
}
.loc-btn-on .loc-count {
  background: var(--blue);
  color: var(--white);
}
.ref-empty-state {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  padding: 60px 20px;
  text-align: center;
  gap: 8px;
}
.ref-panel-inner {
  padding: 0;
}
.ref-panel-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--light);
  border-bottom: 1.5px solid var(--border);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: sticky;
  top: 0;
  z-index: 5;
}
.ref-panel-hdr span:first-child {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ref-panel-hdr span:last-child {
  font-size: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 20px;
  color: var(--blue);
  font-weight: 700;
}
.ref-firm-row {
  padding: 20px;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
}
.ref-firm-row:hover {
  background: rgba(27, 119, 200, 0.01) !important;
}
.ref-firm-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.ref-firm-name {
  font-family: 'Barlow', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
}
.ref-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  padding: 2px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}
.ref-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ref-cihaz-tag {
  font-size: 11px;
  color: #475569;
  background: var(--light);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.ref-cihaz-tag:hover {
  background: var(--white);
  border-color: var(--blue);
  color: var(--blue);
}
.rlg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
}
.rli {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.01);
  transition: all 0.2s ease;
}
.rli:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  box-shadow: 0 6px 12px rgba(13,31,60,0.05);
}
.rli img {
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.2s ease;
}
.rli:hover img {
  filter: none;
  opacity: 1;
}

/* Header search */
#hdr-search-en::placeholder, #hdr-search-tr::placeholder,
#hdr-search-de::placeholder, #hdr-search-ru::placeholder,
#hdr-search-fr::placeholder, #hdr-search-it::placeholder {
  color: rgba(255,255,255,0.55);
}
.header-search-wrap { margin-left: 8px; }
@media (max-width: 900px) { .header-search-wrap { display: none; } }

/* ===== HOME PAGES POLISH ===== */
.home-about-section { padding: 80px 0; background: var(--white); }
.home-about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.home-about-left .section-title { margin-bottom: 20px; }
.home-about-left .section-desc { font-size: 16px; line-height: 1.75; color: var(--muted); margin-bottom: 32px; }
.home-about-stats { display: flex; gap: 32px; margin-bottom: 40px; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
.home-stat-item { display: flex; flex-direction: column; }
.home-stat-item .num { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 900; color: var(--blue); line-height: 1.1; }
.home-stat-item .lbl { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); margin-top: 4px; }

.home-about-right { display: flex; justify-content: center; }
.home-img-card { width: 100%; max-width: 360px; height: 380px; background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); border-radius: 16px; position: relative; box-shadow: 0 20px 48px rgba(13,31,60,0.15); overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.home-img-card::before { content: '🔬'; font-size: 120px; position: absolute; top: 10px; right: -20px; opacity: 0.15; }
.badge-overlay { display: inline-block; background: var(--red); color: #fff; padding: 6px 12px; border-radius: 6px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 1px; width: fit-content; margin-top: 8px; box-shadow: 0 4px 12px rgba(212,43,43,0.3); }
.badge-overlay.ce { background: var(--white); color: var(--navy); }

.home-products-section { padding: 80px 0; background: var(--light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.home-products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.home-prod-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 32px 24px; text-decoration: none; color: var(--text); transition: all 0.3s; display: flex; flex-direction: column; }
.home-prod-card:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: 0 16px 48px rgba(13,31,60,0.08); }
.home-prod-card .icon { font-size: 32px; margin-bottom: 20px; }
.home-prod-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.home-prod-card p { font-size: 14px; line-height: 1.6; color: var(--muted); margin-bottom: 20px; flex-grow: 1; }
.home-prod-card .explore-link { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 4px; transition: color 0.2s; }
.home-prod-card:hover .explore-link { color: var(--red); }

.home-references-section { padding: 80px 0; background: var(--white); }
.ref-badge-item { display: inline-block; background: var(--light); color: var(--navy); border: 1px solid var(--border); padding: 10px 20px; border-radius: 30px; font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 0.5px; white-space: nowrap; box-shadow: 0 2px 6px rgba(0,0,0,0.02); }

@media(max-width:992px) {
  .home-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .home-products-grid { grid-template-columns: 1fr; }
}

/* Header Search Overrides */
.header-search-wrap input {
  width: 170px !important;
  padding: 6px 30px 6px 12px !important;
  font-size: 11.5px !important;
  border-color: rgba(255,255,255,0.2) !important;
  background: rgba(255,255,255,0.08) !important;
  border-radius: 20px !important;
  transition: all .2s !important;
}
.header-search-wrap input:focus {
  width: 210px !important;
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.5) !important;
}


.home-img-card.has-bg::before { display: none; }

/* ── FAIRS & EXHIBITIONS NEWS ── */
.fairs-section {
  padding: 80px 0;
  background: var(--light);
}
.fairs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .fairs-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.fairs-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.fair-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
}
.fair-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}
.fair-card.upcoming {
  border-color: rgba(27,119,200,0.25);
  box-shadow: 0 10px 25px -5px rgba(27,119,200,0.08), 0 8px 10px -6px rgba(27,119,200,0.08);
}
.fair-card.upcoming::before {
  background: var(--blue);
}
.fair-card.past {
  opacity: 0.92;
}
.fair-card.past::before {
  background: var(--muted);
}
.fair-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(13,31,60,0.1), 0 10px 10px -5px rgba(13,31,60,0.04);
}
.fair-card.upcoming:hover {
  border-color: var(--blue);
}
.fair-card.past:hover {
  border-color: var(--navy);
  opacity: 1;
}
.fair-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}
.fair-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.fair-badge-upcoming, .fair-badge-past {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.fair-badge-upcoming {
  background: #EBF5FF;
  color: var(--blue);
  border: 1px solid #BFDBFE;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.fair-badge-past {
  background: var(--light);
  color: var(--muted);
  border: 1px solid var(--border);
}
.fair-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
}
.fair-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.fair-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text);
}

/* ==========================================================================
   PREMIUM LANGUAGE DROPDOWN SWITCHER
   ========================================================================== */
.lang-switcher {
  position: relative;
  display: inline-block;
  width: 74px;
  height: 30px;
  vertical-align: middle;
  z-index: 1000;
}

.lang-switcher > .lang-btn.active {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff !important;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.lang-switcher > .lang-btn.active::after {
  content: '▾';
  font-size: 8px;
  margin-left: 5px;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease;
}

.lang-switcher:hover > .lang-btn.active {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.45);
}

.lang-switcher:hover > .lang-btn.active::after,
.lang-switcher.open > .lang-btn.active::after {
  transform: rotate(180deg);
}

/* Dropdown list */
.lang-dropdown-list {
  position: absolute;
  top: 100%;
  right: 0;
  width: 90px;
  background: #0d1f3c;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 4px 0;
  max-height: 250px;
  overflow-y: auto;
}

.lang-switcher:hover .lang-dropdown-list,
.lang-switcher.open .lang-dropdown-list {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* Custom scrollbar for language dropdown list */
.lang-dropdown-list::-webkit-scrollbar {
  width: 4px;
}
.lang-dropdown-list::-webkit-scrollbar-track {
  background: transparent;
}
.lang-dropdown-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.lang-dropdown-list .lang-btn {
  display: flex !important;
  width: 100%;
  height: 30px;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10px;
  gap: 6px;
  color: rgba(255, 255, 255, 0.65) !important;
  background: transparent !important;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.15s ease;
  border-radius: 0 !important;
}

.lang-dropdown-list .lang-btn:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
}

/* Hide mobile language switcher clone on desktop viewports */
@media (min-width: 769px) {
  .mobile-lang-switcher {
    display: none !important;
  }
  .main-nav .header-search-wrap {
    display: none !important;
  }
}

/* Flat side-by-side language selector buttons for mobile drawer viewports only */
@media (max-width: 768px) {
  .mobile-lang-switcher.lang-switcher {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    width: 100% !important;
    height: auto !important;
    background: transparent !important;
    border: none !important;
  }

  .mobile-lang-switcher .lang-dropdown-list {
    display: contents !important;
  }

  .mobile-lang-switcher .lang-btn {
    display: inline-flex !important;
    width: auto !important;
    height: auto !important;
    padding: 6px 10px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 4px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
  }

  .mobile-lang-switcher .lang-btn:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
  }

  .mobile-lang-switcher .lang-btn.active {
    background: var(--blue) !important;
    border-color: var(--blue) !important;
    color: #fff !important;
    font-weight: 700 !important;
  }

  .mobile-lang-switcher .lang-btn.active::after {
    display: none !important;
  }
}

/* ===== SECTOR REF DETAILS OVERRIDES ===== */
.sect-tab-btn {
  padding: 8px 20px !important;
  background: #edf2f7 !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  border-radius: 30px !important;
  cursor: pointer !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #475569 !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  margin-right: 6px !important;
  margin-bottom: 8px !important;
}

.sect-tab-btn.active {
  background: linear-gradient(135deg, var(--blue) 0%, #1565c0 100%) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 12px rgba(27, 119, 200, 0.25) !important;
}

.sect-tab-btn:hover:not(.active) {
  background: #e2e8f0 !important;
  color: var(--navy) !important;
}

.sect-sector-block {
  margin-bottom: 20px !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  overflow: hidden !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.sect-sector-block:hover {
  box-shadow: 0 10px 25px rgba(13, 31, 60, 0.04) !important;
  border-color: rgba(27, 119, 200, 0.15) !important;
}

.sect-sector-head {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 12px 18px !important;
  background: linear-gradient(to right, #f8fafc, #ffffff) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.sect-sector-head strong {
  font-size: 14px !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
}

.sect-count {
  font-size: 11.5px !important;
  background: rgba(0, 0, 0, 0.04) !important;
  color: var(--muted) !important;
  padding: 2px 8px !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  margin-left: auto !important;
}

.sect-firms {
  padding: 14px 18px !important;
  line-height: 2 !important;
}

.sect-firm {
  font-size: 12px !important;
  color: #475569 !important;
  background: rgba(0, 0, 0, 0.02) !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  border-radius: 6px !important;
  padding: 4px 10px !important;
  margin: 3px !important;
  display: inline-block !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
}

.sect-firm:hover {
  background: rgba(27, 119, 200, 0.06) !important;
  border-color: rgba(27, 119, 200, 0.15) !important;
  color: var(--blue) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 2px 5px rgba(27, 119, 200, 0.08) !important;
}

/* ===== PRODUCT DETAILS MODAL PREMIUM STYLING OVERRIDES ===== */
.manual-pdf-btn {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: rgba(27, 119, 200, 0.05) !important;
  border: 1.2px dashed rgba(27, 119, 200, 0.3) !important;
  color: var(--blue) !important;
  padding: 12px 18px !important;
  border-radius: 10px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  margin: 16px 0 !important;
  width: fit-content !important;
}

.manual-pdf-btn svg {
  color: var(--blue) !important;
  transition: transform 0.25s ease !important;
}

.manual-pdf-btn:hover {
  background: rgba(27, 119, 200, 0.09) !important;
  border-color: var(--blue) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(27, 119, 200, 0.08) !important;
}

.manual-pdf-btn:hover svg {
  transform: translateY(1px) !important;
}

.manual-pdf-na {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: rgba(0, 0, 0, 0.02) !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  color: var(--muted) !important;
  padding: 12px 18px !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  margin: 16px 0 !important;
  width: fit-content !important;
}

.manual-pdf-na svg {
  color: var(--muted) !important;
  opacity: 0.6 !important;
}

/* Modal Conversion Table Overrides */
.modal-info iframe {
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s ease !important;
}

.modal-info iframe:hover {
  border-color: rgba(27, 119, 200, 0.2) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05) !important;
}

.modal-info a[href*="conversion_table"] {
  display: block !important;
  padding: 10px 18px !important;
  border-radius: 8px !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  text-align: center !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-sizing: border-box !important;
  margin-bottom: 8px !important;
}

.modal-info a[href*="conversion_table"]:last-child {
  margin-bottom: 0 !important;
}

.modal-info a[href*="conversion_table"][download] {
  background: var(--navy) !important;
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(13, 31, 60, 0.15) !important;
}

.modal-info a[href*="conversion_table"][download]:hover {
  background: #11294e !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(13, 31, 60, 0.25) !important;
}

.modal-info a[href*="conversion_table"]:not([download]) {
  background: linear-gradient(135deg, var(--blue) 0%, #1565c0 100%) !important;
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(27, 119, 200, 0.2) !important;
}

.modal-info a[href*="conversion_table"]:not([download]):hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(27, 119, 200, 0.3) !important;
}

