﻿/* ===== VARIABLES & RESET ===== */
:root {
  --yellow: #F6C90E;
  --yellow-hover: #d4a900;
  --dark: #0D1117;
  --dark2: #161B22;
  --dark3: #1C2333;
  --gray-dark: #2D3748;
  --gray: #718096;
  --gray-light: #A0AEC0;
  --light: #F7F8FA;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --text: #2D3748;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --transition: all 0.3s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Segoe UI', sans-serif; font-size: 16px; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.bg-light { background: var(--light); }
.text-center { text-align: center; }
.text-yellow { color: var(--yellow); }
.mt-48 { margin-top: 48px; }
.w-full { width: 100%; justify-content: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 15px; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }
.btn-primary:hover { background: var(--yellow-hover); border-color: var(--yellow-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(246,201,14,0.35); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--border); }
.btn-outline:hover { border-color: var(--yellow); color: #b8960a; }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-outline-white:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-outline-white-dark { background: transparent; color: rgba(255,255,255,0.8); border: 2px solid rgba(255,255,255,0.2); padding: 13px 28px; border-radius: var(--radius); font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); }
.btn-outline-white-dark:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* Hero buttons */
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--yellow); color: var(--dark);
  padding: 16px 32px; border-radius: var(--radius);
  font-weight: 700; font-size: 15px; transition: var(--transition);
  border: 2px solid var(--yellow);
}
.btn-hero-primary:hover { background: var(--yellow-hover); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(246,201,14,0.4); }
.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,0.85);
  padding: 16px 32px; border-radius: var(--radius);
  font-weight: 600; font-size: 15px; transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.2);
}
.btn-hero-ghost:hover { border-color: var(--yellow); color: var(--yellow); }

/* ===== SECTION HEADER ===== */
.section-head { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; background: rgba(246,201,14,0.12);
  color: #b8960a; padding: 5px 14px; border-radius: 50px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 14px;
}
.section-tag-light {
  background: rgba(246,201,14,0.15);
  color: var(--yellow);
}
.section-head h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; color: var(--dark); margin-bottom: 14px; }
.section-head p { color: var(--gray); font-size: 17px; max-width: 560px; margin: 0 auto; }

/* ===== TOPBAR ===== */
.topbar { background: var(--dark2); padding: 9px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 24px; }
.topbar-left a, .topbar-left span { color: rgba(255,255,255,0.6); font-size: 13px; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.topbar-left a:hover { color: var(--yellow); }
.topbar-addr { color: rgba(255,255,255,0.35) !important; }
.topbar-right { display: flex; align-items: center; gap: 6px; }
.lang-btn { color: rgba(255,255,255,0.5); font-size: 12px; font-weight: 700; padding: 3px 8px; border-radius: 4px; transition: var(--transition); }
.lang-btn.active, .lang-btn:hover { color: var(--yellow); background: rgba(246,201,14,0.1); }
.lang-sep { color: rgba(255,255,255,0.2); font-size: 12px; }

/* ===== HEADER ===== */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); box-shadow: 0 1px 0 var(--border); }
.header-main { padding: 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 16px; }
.logo img { height: 64px; width: auto; }

/* NAV */
.nav-list { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: 6px;
  font-size: 12px; font-weight: 600; color: var(--gray-dark);
  transition: var(--transition); white-space: nowrap;
  text-transform: uppercase; letter-spacing: 0.8px;
}
.nav-link:hover, .nav-link.active { color: var(--dark); background: var(--light); }
.nav-link.active { color: #b8960a; }
.nav-arrow { font-size: 9px; transition: var(--transition); }
.nav-item.has-mega:hover .nav-arrow { transform: rotate(180deg); }

/* MEGA DROPDOWN */
.mega-drop {
  position: fixed; left: 0; right: 0;
  top: var(--header-h, 90px);
  background: var(--white);
  border-top: 3px solid var(--yellow);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 999;
}
.nav-item.has-mega:hover .mega-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-inner {
  max-width: 1200px; margin: 0 auto; padding: 36px 24px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
}
.mega-heading { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.mega-heading i { color: var(--yellow); font-size: 18px; }
.mega-desc { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.mega-all-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: #b8960a; transition: var(--transition); }
.mega-all-link:hover { gap: 12px; }
.mega-label { display: block; font-size: 10px; font-weight: 800; color: var(--gray-light); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.mega-links { display: flex; flex-direction: column; gap: 2px; }
.mega-links li a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 7px; font-size: 13.5px; font-weight: 500; color: var(--gray-dark); transition: var(--transition); }
.mega-links li a:hover { background: var(--light); color: #b8960a; padding-left: 16px; }
.mega-links li a i { font-size: 7px; color: var(--yellow); flex-shrink: 0; }
.mega-links li a .fa-file-pdf { font-size: 13px; color: #ef4444; }

/* NAV LINK NON-CLICKABLE */
.nav-link-noclick { cursor: default; user-select: none; }

/* SIMPLE SUB DROPDOWN */
.nav-item.has-drop { position: relative; }
.sub-drop {
  position: absolute; top: 100%; left: 0;
  background: var(--white);
  border-top: 3px solid var(--yellow);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 220px;
  border-radius: 0 0 10px 10px;
  padding: 8px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: var(--transition);
  z-index: 999;
  list-style: none;
}
.nav-item.has-drop:hover .sub-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-item.has-drop:hover .nav-arrow { transform: rotate(180deg); }
.sub-drop li a {
  display: block; padding: 10px 20px;
  font-size: 14px; font-weight: 500; color: var(--gray-dark);
  transition: var(--transition);
}
.sub-drop li a:hover, .sub-drop li a.active { background: var(--light); color: #b8960a; padding-left: 26px; }

/* MEGA PRODUCTS DROPDOWN */
.mega-drop-products .mega-inner-products {
  display: grid;
  grid-template-columns: 200px repeat(3, 1fr);
  gap: 0;
  max-width: 1200px; margin: 0 auto; padding: 28px 24px;
}
.mega-drop-products .mega-col-intro { padding-right: 24px; border-right: 1px solid var(--border); }
.mega-drop-products .mega-col:not(.mega-col-intro) { padding-left: 24px; }
.mega-drop-products .mega-links { max-height: 320px; overflow-y: auto; }
.mega-drop-products .mega-links li a small { margin-top: 1px; }

/* E-CATALOG BTN */
.btn-ecatalog { display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px; border-radius: 7px; font-size: 13px; font-weight: 600; color: var(--gray-dark); border: 1px solid var(--border); transition: var(--transition); white-space: nowrap; }
.btn-ecatalog:hover { border-color: var(--yellow); color: #b8960a; background: rgba(246,201,14,0.05); }
.btn-ecatalog i { color: #ef4444; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 9998; pointer-events: none; }
.nav-overlay.show { display: block; pointer-events: auto; }
/* Drawer açıkken sayfa içeriğini kilitle */
body.drawer-open { overflow: hidden; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0D1117 0%, #0f1923 40%, #0a1628 100%);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 80px;
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(246,201,14,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246,201,14,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-bg-glow {
  position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none;
}
.hero-bg-glow.g1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(246,201,14,0.08) 0%, transparent 70%);
  top: -200px; right: -150px;
  animation: glowPulse 8s ease-in-out infinite;
}
.hero-bg-glow.g2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: glowPulse 12s ease-in-out infinite reverse;
}
@keyframes glowPulse { 0%,100%{opacity:0.6;transform:scale(1)} 50%{opacity:1;transform:scale(1.1)} }

.hero-wrap {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  padding: 60px 0 40px;
}

/* Hero Sol */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(246,201,14,0.08);
  border: 1px solid rgba(246,201,14,0.2);
  color: var(--yellow); padding: 8px 18px; border-radius: 50px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 8px var(--yellow);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-content h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900; color: var(--white);
  line-height: 1.05; letter-spacing: -2.5px;
  margin-bottom: 24px;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--yellow);
  position: relative;
}
.hero-content h1 em::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  border-radius: 2px;
}
.hero-content p {
  font-size: 17px; color: rgba(255,255,255,0.55);
  line-height: 1.8; margin-bottom: 40px; max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-compat { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.compat-label { font-size: 12px; color: rgba(255,255,255,0.35); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.compat-tag {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 12px; border-radius: 50px; letter-spacing: 0.5px;
  transition: var(--transition);
}
.compat-tag:hover { border-color: rgba(246,201,14,0.4); color: var(--yellow); }

/* Hero Sağ - Kartlar */
.hero-cards {
  position: relative; height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.hc-card {
  position: absolute;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
  transition: var(--transition); z-index: 10;
}
.hc-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); border-color: rgba(246,201,14,0.3); }
.hc-tl { top: 20px; left: 0; }
.hc-tr { top: 20px; right: 0; }
.hc-bl { bottom: 40px; left: 0; }
.hc-br { bottom: 40px; right: 0; }
.hc-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(246,201,14,0.12); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--yellow);
}
.hc-body strong { display: block; font-size: 22px; font-weight: 900; color: var(--white); line-height: 1; }
.hc-body span { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; }

/* Merkez animasyon */
.hc-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); z-index: 5;
}
.hcb-ring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%; border: 1px solid rgba(246,201,14,0.12);
  transform: translate(-50%, -50%);
}
.hcb-ring.r1 { width: 160px; height: 160px; animation: spinRing 20s linear infinite; border-color: rgba(246,201,14,0.18); }
.hcb-ring.r2 { width: 240px; height: 240px; animation: spinRing 30s linear infinite reverse; }
@keyframes spinRing { from{transform:translate(-50%,-50%) rotate(0deg)} to{transform:translate(-50%,-50%) rotate(360deg)} }
.hcb-core {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--yellow) 0%, #d4a900 100%);
  border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 0 50px rgba(246,201,14,0.35), 0 0 100px rgba(246,201,14,0.15);
  position: relative;
}
.hcb-core i { font-size: 26px; color: var(--dark); }
.hcb-core span { font-size: 9px; font-weight: 900; color: var(--dark); letter-spacing: 2px; margin-top: 2px; }

/* Hero Stats Strip */
.hero-stats-strip {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
}
.hss-inner {
  display: flex; align-items: center; justify-content: center;
  padding: 28px 0;
}
.hss-item { text-align: center; padding: 0 40px; }
.hss-item strong { font-size: 34px; font-weight: 900; color: var(--yellow); line-height: 1; display: block; }
.hss-item span { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 6px; text-transform: uppercase; letter-spacing: 1.5px; display: block; }
.hss-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

/* ===== BRANDS TICKER ===== */
.brands-ticker {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0; overflow: hidden;
}
.brands-track {
  display: flex; gap: 0; animation: ticker 25s linear infinite; width: max-content;
}
.brand-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 40px;
  font-size: 11px; font-weight: 800; color: var(--gray-light);
  letter-spacing: 2.5px; white-space: nowrap;
}
.brand-item i { font-size: 5px; color: var(--yellow); }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== HİZMETLER ===== */
.services-section { background: var(--white); }
.srv-layout {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 80px; align-items: center;
}
.srv-intro .section-tag { margin-bottom: 16px; }
.srv-intro h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900; color: var(--dark);
  line-height: 1.15; letter-spacing: -1px;
  margin-bottom: 20px;
}
.srv-intro p { color: var(--gray); font-size: 16px; line-height: 1.8; margin-bottom: 32px; max-width: 400px; }
.srv-cert { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.cert-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-dark); font-weight: 500; }
.cert-item i { color: #22c55e; font-size: 15px; }

.srv-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.srv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.srv-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: transparent; transition: var(--transition);
}
.srv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.srv-card:hover::after { background: var(--yellow); }
.srv-card-accent { background: var(--dark); border-color: var(--dark); }
.srv-card-accent h4 { color: var(--white) !important; }
.srv-card-accent p { color: rgba(255,255,255,0.5) !important; }
.srv-card-accent .srv-icon { background: rgba(246,201,14,0.15); }
.srv-card-accent .srv-link { color: var(--yellow) !important; }
.srv-card-accent .srv-card-num { color: rgba(255,255,255,0.08) !important; }
.srv-card-num { display: none; }
.srv-icon {
  width: 52px; height: 52px;
  background: rgba(246,201,14,0.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #b8960a; margin-bottom: 16px;
}
.srv-card h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.srv-card p { font-size: 13.5px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.srv-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: #b8960a;
  transition: var(--transition);
}
.srv-link:hover { gap: 10px; }
.srv-card-num {
  position: absolute; top: 12px; right: 14px;
  font-size: 36px; font-weight: 900; color: rgba(0,0,0,0.04);
  line-height: 1; font-family: 'Inter', sans-serif;
}
.srv-card-accent .srv-card-num { color: rgba(255,255,255,0.06) !important; }

/* ===== NEDEN BİZ ===== */
.why-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 96px 0;
}
.why-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.why-left h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900; color: var(--white);
  line-height: 1.15; letter-spacing: -1px;
  margin-bottom: 20px;
}
.why-left > p { color: rgba(255,255,255,0.5); font-size: 16px; line-height: 1.8; margin-bottom: 40px; }
.why-features { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.wf-item { display: flex; gap: 16px; align-items: flex-start; }
.wf-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(246,201,14,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--yellow);
}
.wf-item h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.wf-item p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* Why Right */
.why-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 16px;
}
.ws-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 28px 20px;
  text-align: center; transition: var(--transition);
}
.ws-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-3px); }
.ws-card.ws-accent { background: rgba(246,201,14,0.07); border-color: rgba(246,201,14,0.2); }
.ws-card i { font-size: 22px; color: var(--yellow); margin-bottom: 12px; display: block; }
.ws-card strong { display: block; font-size: 26px; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 6px; }
.ws-card span { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }
.why-brands-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg); padding: 20px 24px;
}
.wbb-label { font-size: 10px; font-weight: 800; color: rgba(255,255,255,0.25); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.wbb-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.wbb-tags span {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55); font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 6px; letter-spacing: 1px;
  transition: var(--transition);
}
.wbb-tags span:hover { border-color: rgba(246,201,14,0.4); color: var(--yellow); }

/* ===== ÜRÜNLER ===== */
.products-section { background: var(--light); }
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.products-grid.products-grid-center { display: flex; justify-content: center; gap: 20px; margin-top: 20px; }
.products-grid.products-grid-center .product-card { width: calc(33.333% - 14px); }
.products-grid .product-card:nth-child(4) { grid-column: 1; }
.products-grid .product-card:nth-child(5) { grid-column: 2; }
.product-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(246,201,14,0.3); }
.pc-top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px;
  background: var(--dark); 
}
.pc-brand { font-size: 10px; font-weight: 800; color: var(--yellow); letter-spacing: 2px; text-transform: uppercase; }
.pc-type { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }
.pc-img {
  height: 180px; display: flex; align-items: center; justify-content: center;
  padding: 20px; background: #f5f5f5; overflow: hidden;
}
.pc-img img { max-height: 150px; width: 100%; object-fit: contain; mix-blend-mode: multiply; }
.pc-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1A1A2E, #16213E);
}
.pc-placeholder i { font-size: 48px; color: rgba(246,201,14,0.25); }
.pc-body { padding: 20px; background: #fff; display: flex; flex-direction: column; min-height: 160px; }
.pc-body .pc-btn { margin-top: auto; }
.pc-body h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.pc-cat { font-size: 12px; color: var(--gray); display: block; margin-bottom: 8px; }
.pc-desc {
  font-size: 12.5px; color: var(--gray); line-height: 1.65;
  margin: 0 0 14px; white-space: pre-line;
}
.pc-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: #b8960a;
  transition: var(--transition);
}
.pc-btn:hover { gap: 10px; }

/* ===== FOTO BÖLÜMÜ ===== */
.foto-section { background: var(--white); }
.foto-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start;
}
.foto-item img {
  width: 100%; border-radius: var(--radius-lg);
  object-fit: cover; display: block;
  margin-bottom: 20px;
}
.foto-item p {
  font-size: 15px; color: var(--gray);
  line-height: 1.8; text-align: center;
}

.foto-card img { width: 100%; aspect-ratio: 4/3; object-fit: contain; object-position: center; display: block; background: #f0f0f0; }
.foto-card .pc-body { background: #f5f5f5; }
.foto-card .pc-desc { font-size: 13.5px; color: var(--gray); line-height: 1.7; margin: 0 0 14px; }
.products-grid.products-grid-center .foto-card { width: calc(33.333% - 14px); }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, #0f1923 0%, #0a1628 100%);
  border-top: 1px solid rgba(246,201,14,0.15);
  padding: 72px 0;
}
.cta-band-inner {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.cta-band-icon {
  width: 72px; height: 72px; flex-shrink: 0;
  background: rgba(246,201,14,0.1); border: 1px solid rgba(246,201,14,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--yellow);
}
.cta-band-text { flex: 1; min-width: 200px; }
.cta-band-text h2 { font-size: clamp(20px, 2.5vw, 30px); font-weight: 800; color: var(--white); margin-bottom: 8px; }
.cta-band-text p { color: rgba(255,255,255,0.5); font-size: 16px; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg, var(--dark2), var(--dark)); padding: 56px 0 48px; }
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb i { font-size: 10px; }
.breadcrumb span { color: var(--yellow); }

.page-hero-img {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 80px 0 64px;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,15,25,0.82) 0%, rgba(10,15,25,0.65) 100%);
}

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg); }
.about-content h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--dark); margin-bottom: 20px; }
.about-content p { color: var(--gray); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.about-stats { display: flex; gap: 32px; margin: 32px 0; padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.astat strong { font-size: 36px; font-weight: 900; color: var(--dark); display: inline; }
.astat sup { font-size: 18px; font-weight: 900; color: var(--yellow); vertical-align: super; }
.astat span { display: block; font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; transition: var(--transition); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card i { font-size: 36px; color: var(--yellow); margin-bottom: 16px; }
.value-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--gray); }

/* ===== SERVICES DETAIL ===== */
.services-detail-grid { display: flex; flex-direction: column; gap: 32px; }
.service-detail-card { display: grid; grid-template-columns: 80px 1fr; gap: 32px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; transition: var(--transition); }
.service-detail-card:hover { box-shadow: var(--shadow); border-color: rgba(246,201,14,0.3); }
.sdc-icon { width: 80px; height: 80px; background: rgba(246,201,14,0.1); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 32px; color: #b8960a; flex-shrink: 0; }
.sdc-content h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.sdc-content p { color: var(--gray); font-size: 15px; line-height: 1.75; margin-bottom: 20px; }
.sdc-content ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sdc-content ul li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray-dark); }
.sdc-content ul li i { color: var(--yellow); font-size: 12px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.contact-info h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.contact-info > p { color: var(--gray); margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { width: 44px; height: 44px; background: rgba(246,201,14,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: #b8960a; flex-shrink: 0; }
.contact-item h4 { font-size: 13px; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-item a, .contact-item span { display: block; font-size: 14px; color: var(--gray); transition: var(--transition); }
.contact-item a:hover { color: #b8960a; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); }
.form-group input, .form-group textarea { padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; font-family: inherit; color: var(--text); outline: none; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(246,201,14,0.1); }
.form-group textarea { resize: vertical; }
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: rgba(72,187,120,0.1); color: #276749; border: 1px solid rgba(72,187,120,0.3); }
.alert-error { background: rgba(245,101,101,0.1); color: #9b2c2c; border: 1px solid rgba(245,101,101,0.3); }

/* ===== PRODUCT DETAIL ===== */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.product-detail-img { background: var(--light); border-radius: var(--radius-lg); padding: 40px; text-align: center; }
.product-detail-img img { max-height: 400px; object-fit: contain; margin: 0 auto; }
.product-detail-info h1 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--dark); margin: 12px 0 16px; }
.product-desc { color: var(--gray); font-size: 15px; line-height: 1.8; margin-bottom: 24px; }
.product-specs { margin-bottom: 32px; }
.product-specs h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.product-specs table { width: 100%; border-collapse: collapse; }
.product-specs td { padding: 10px 14px; font-size: 14px; border-bottom: 1px solid var(--border); }
.product-specs td:first-child { font-weight: 600; color: var(--dark); width: 40%; }
.product-specs td:last-child { color: var(--gray); }
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== PRODUCTS TOOLBAR ===== */
.products-toolbar { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.search-form { display: flex; max-width: 400px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.search-form input { flex: 1; padding: 11px 16px; border: none; outline: none; font-size: 14px; font-family: inherit; }
.search-form button { padding: 11px 18px; background: var(--yellow); border: none; cursor: pointer; color: var(--dark); font-size: 15px; transition: var(--transition); }
.search-form button:hover { background: var(--yellow-hover); }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn { padding: 7px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; border: 1px solid var(--border); color: var(--gray); transition: var(--transition); cursor: pointer; }
.filter-btn:hover, .filter-btn.active { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }

/* PAGINATION */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.page-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; border: 1px solid var(--border); font-size: 14px; font-weight: 600; color: var(--gray-dark); transition: var(--transition); }
.page-btn:hover, .page-btn.active { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }

/* MEGA LABEL LINK */
.mega-label-link { display: flex; align-items: center; gap: 6px; cursor: pointer; transition: var(--transition); text-decoration: none; }
.mega-label-link:hover { color: #b8960a; }

/* ===== SHOWCASE GRID (epiroc sayfası) ===== */

/* ===== ÜRÜN DETAY (epiroc-detay) ===== */
.det-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.det-img-wrap { background: #f7f7f7; border-radius: 16px; border: 1px solid var(--border); padding: 40px; display: flex; align-items: center; justify-content: center; min-height: 380px; }
.det-img-wrap img { max-width: 100%; max-height: 340px; object-fit: contain; }
.det-noimg { font-size: 80px; color: #ddd; }
.det-brand { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); display: block; margin-bottom: 10px; }
.det-info h2 { font-size: 32px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.det-code { font-size: 13px; color: var(--gray); font-family: monospace; display: flex; align-items: center; gap: 6px; margin-bottom: 20px; }
.det-code i { color: var(--yellow); }
.det-desc { font-size: 15px; color: var(--gray-dark); line-height: 1.8; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.det-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.det-feat { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-dark); }
.det-feat i { color: var(--yellow); font-size: 16px; flex-shrink: 0; }
.det-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.det-back { font-size: 13px; color: var(--gray); display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.det-back:hover { color: #b8960a; }
.pcard-img-link { display: block; }

@media (max-width: 768px) {
  .det-grid { grid-template-columns: 1fr; gap: 32px; }
  .det-features { grid-template-columns: 1fr; }
}

/* ===== CATALOG LAYOUT (sidebar + grid) ===== */
.catalog-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start; margin-top: 40px; }
.catalog-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 16px; }
.csb-box { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.csb-title { padding: 14px 18px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.csb-title i { color: var(--yellow); }
.csb-list { list-style: none; padding: 8px 0; }
.csb-item a, .csb-item span { display: flex; align-items: center; gap: 8px; padding: 10px 18px; font-size: 13px; font-weight: 500; color: var(--gray-dark); transition: var(--transition); cursor: pointer; }
.csb-item a i, .csb-item span i { font-size: 7px; color: var(--yellow); }
.csb-item a:hover { background: var(--light); color: #b8960a; }
.csb-item.active a { background: rgba(246,201,14,0.1); color: #b8960a; font-weight: 700; }
.csb-item.csb-soon span { opacity: .5; cursor: default; }
.csb-count { margin-left: auto; background: var(--yellow); color: var(--dark); font-size: 10px; font-weight: 800; padding: 2px 7px; border-radius: 20px; }
.csb-badge { margin-left: auto; background: var(--light); color: var(--gray); font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 20px; border: 1px solid var(--border); }
.csb-contact { padding: 20px 18px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.csb-contact-icon { font-size: 28px; color: var(--yellow); }
.csb-contact p { font-size: 13px; color: var(--gray); margin: 0; }

/* ── Sidebar Arama Kutusu ─────────────────────────────── */
.csb-search-wrap { padding: 0; }
.csb-search-box {
  padding: 20px 18px 16px;
}
.csb-search-box-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--gray);
  margin-bottom: 12px; display: flex; align-items: center; gap: 7px;
}
.csb-search-box-label::before {
  content: ''; display: block; width: 3px; height: 14px;
  background: var(--yellow); border-radius: 2px; flex-shrink: 0;
}
.csb-search-field {
  position: relative;
}
.csb-search-field i.fa-search {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  color: var(--gray-light); font-size: 13px; pointer-events: none;
  transition: color .2s;
}
.csb-search-field:focus-within i.fa-search { color: #b8960a; }
.csb-search-field input {
  width: 100%; padding: 11px 38px 11px 36px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 13.5px; color: var(--dark); background: var(--light);
  outline: none; transition: border-color .2s, box-shadow .2s, background .2s;
  font-family: inherit;
}
.csb-search-field input:focus {
  border-color: var(--yellow);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(246,201,14,.15);
}
.csb-search-field input::placeholder { color: #b0b8c4; }
.csb-search-field .csb-search-clear {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: var(--border); border: none; border-radius: 50%;
  width: 20px; height: 20px; display: none; align-items: center;
  justify-content: center; cursor: pointer; color: var(--gray);
  font-size: 9px; transition: background .2s, color .2s; padding: 0;
}
.csb-search-field .csb-search-clear:hover { background: var(--yellow); color: var(--dark); }
.csb-search-field .csb-search-clear.visible { display: flex; }
.csb-search-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 10px;
}
.csb-search-meta-count {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--gray);
}
.csb-search-meta-count .pill {
  background: var(--yellow); color: var(--dark);
  font-size: 11px; font-weight: 800;
  padding: 1px 8px; border-radius: 20px; line-height: 1.6;
  min-width: 24px; text-align: center;
  transition: transform .15s;
}
.csb-search-meta-count .pill.bump { transform: scale(1.25); }

/* Arama sonucu: tam eşleşme öne, diğerleri soluk */
.pcard.search-dim, .ypcard.search-dim {
  opacity: .35; transform: scale(.97);
  transition: opacity .2s, transform .2s;
}
.pcard.search-match, .ypcard.search-match {
  opacity: 1; transform: scale(1);
  box-shadow: 0 0 0 2px var(--yellow), 0 8px 24px rgba(246,201,14,.18) !important;
  transition: opacity .2s, transform .2s, box-shadow .2s;
}
.pcard-grid .pcard.hidden, .ypcard-grid .ypcard.hidden { display: none; }
.catalog-noresult {
  display: none; text-align: center; padding: 56px 0; color: var(--gray);
}
.catalog-noresult i { display: block; font-size: 36px; margin-bottom: 12px; opacity: .2; }
.catalog-noresult p { font-size: 14px; margin-bottom: 4px; }
.catalog-noresult span { font-size: 12px; color: var(--gray-light); }

.catalog-topbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.catalog-count { font-size: 13px; color: var(--gray); white-space: nowrap; }
.catalog-count strong { color: var(--dark); }

/* ===== PAGINATION ===== */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 36px; flex-wrap: wrap; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 8px; font-size: 14px; font-weight: 600;
  border: 1px solid var(--border); color: var(--dark); transition: var(--transition);
  text-decoration: none;
}
.pagination a:hover { background: var(--yellow); border-color: var(--yellow); color: #000; }
.pagination span.current { background: var(--yellow); border-color: var(--yellow); color: #000; }
.pagination span.dots { border: none; color: var(--gray); width: auto; }
.pagination-inline { margin-top: 0; margin-left: auto; }

/* ===== PCARD — 3x3 ürün kartı ===== */
/* ===== PCARD — atcovi stili kare kart ===== */
.pcard-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.pcard { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; }
.pcard:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.09); }
.pcard-img { aspect-ratio: 1/1; background: #f9f9f9; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--border); padding: 20px; }
.pcard-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.3s; }
.pcard:hover .pcard-img img { transform: scale(1.05); }
.pcard-noimg { font-size: 40px; color: #ddd; }
.pcard-body { padding: 14px 16px; }
.pcard-brand { font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--yellow); display: block; margin-bottom: 5px; }
.pcard-body h4 { font-size: 13px; font-weight: 700; color: var(--dark); margin: 0 0 3px; line-height: 1.4; }
.pcard-code { font-size: 11px; color: var(--gray); font-family: monospace; display: block; margin-bottom: 10px; }
.pcard-btn { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: #b8960a; transition: gap 0.2s; }
.pcard-btn:hover { gap: 9px; }
.pcard-btn i { font-size: 10px; }

@media (max-width: 960px) { .catalog-layout { grid-template-columns: 1fr; } .catalog-sidebar { position: static; } .pcard-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 600px) { .pcard-grid { grid-template-columns: repeat(2,1fr); } }

/* ===== MCARD — kompakt 4'lü grid ===== */
.mcard-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 40px; }
.mcard { background: var(--white); border-radius: 12px; border: 1px solid var(--border); overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; }
.mcard:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.mcard-img { height: 160px; background: #f7f7f7; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--border); }
.mcard-img img { max-height: 130px; max-width: 85%; object-fit: contain; transition: transform 0.3s; }
.mcard:hover .mcard-img img { transform: scale(1.06); }
.mcard-noimg { font-size: 36px; color: #ccc; }
.mcard-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.mcard-body h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin: 0; }
.mcard-code { font-size: 11px; color: var(--gray); font-family: monospace; }
.mcard-btn { display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; font-size: 12px; font-weight: 700; color: #b8960a; transition: gap 0.2s; }
.mcard-btn:hover { gap: 10px; }
.mcard-btn i { font-size: 10px; }

@media (max-width: 900px) { .mcard-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .mcard-grid { grid-template-columns: 1fr; } }

/* ===== ICARD — endüstriyel 3'lü grid ===== */
.icard-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.icard { border-radius: 14px; overflow: hidden; background: var(--white); border: 1px solid var(--border); display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s; }
.icard:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.icard-img-wrap { position: relative; background: #f5f5f5; height: 220px; display: flex; align-items: center; justify-content: center; }
.icard-img-wrap img { max-height: 180px; max-width: 90%; object-fit: contain; transition: transform 0.4s ease; }
.icard:hover .icard-img-wrap img { transform: scale(1.05); }
.icard-noimg { font-size: 48px; color: #ccc; }
.icard-badge { position: absolute; top: 12px; left: 12px; background: var(--dark); color: var(--yellow); font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; }
.icard-foot { background: var(--dark); flex: 1; display: flex; flex-direction: column; }
.icard-foot-top { padding: 20px 20px 14px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.icard-brand { font-size: 9px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); display: block; margin-bottom: 6px; }
.icard-foot-top h3 { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.icard-code { font-size: 11px; color: rgba(255,255,255,0.45); font-family: monospace; }
.icard-foot-bot { padding: 14px 20px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.icard-specs { display: flex; flex-direction: column; gap: 5px; }
.icard-specs span { font-size: 11px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 6px; }
.icard-specs span i { color: var(--yellow); font-size: 10px; }
.icard-btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px; background: var(--yellow); color: var(--dark); font-size: 13px; font-weight: 700; border-radius: 8px; white-space: nowrap; transition: background 0.2s; }
.icard-btn:hover { background: var(--yellow-hover); }
.icard-btn i { font-size: 11px; }

@media (max-width: 900px) { .icard-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .icard-grid { grid-template-columns: 1fr; } }

/* ===== YPCARD — yedek parça 4'lü grid ===== */
.ypcard-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.ypcard { border-radius: 10px; overflow: hidden; background: var(--white); border: 1px solid var(--border); display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s; }
.ypcard:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,0.12); border-color: var(--yellow); }
.ypcard-img-wrap { background: #f5f5f5; height: 160px; display: flex; align-items: center; justify-content: center; padding: 18px; border-bottom: 1px solid var(--border); overflow: hidden; }
.ypcard-img-wrap img { max-height: 130px; max-width: 90%; object-fit: contain; mix-blend-mode: multiply; transition: transform 0.3s; }
.ypcard:hover .ypcard-img-wrap img { transform: scale(1.07); }
.ypcard-noimg { font-size: 36px; color: #ccc; }
.ypcard-foot { flex: 1; display: flex; flex-direction: column; padding: 14px; gap: 8px; }
.ypcard-brand { font-size: 8px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--yellow); display: block; }
.ypcard-foot h4 { font-size: 13px; font-weight: 700; color: var(--dark); margin: 0; line-height: 1.35; flex: 1; }
.ypcard-code { font-size: 10px; color: var(--gray); font-family: monospace; }
.ypcard-btn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; background: var(--dark); color: var(--yellow); font-size: 11px; font-weight: 700; border-radius: 6px; transition: background 0.2s, color 0.2s; align-self: flex-start; margin-top: auto; }
.ypcard-btn:hover { background: var(--yellow); color: var(--dark); }
.ypcard-btn i { font-size: 9px; }
@media (max-width: 960px) { .ypcard-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 600px) { .ypcard-grid { grid-template-columns: repeat(2,1fr); } }
.ypcard-grid-6 { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; }
@media (max-width: 1100px) { .ypcard-grid-6 { grid-template-columns: repeat(4,1fr); } }
@media (max-width: 700px) { .ypcard-grid-6 { grid-template-columns: repeat(3,1fr); } }

/* ===== HORIZONTAL CARD (hcard) ===== */

/* ===== HİZMETLER SAYFASI ===== */
.hiz-stats-band { background: var(--dark); padding: 32px 0; }
.hiz-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.hiz-stat { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,0.08); }
.hiz-stat:last-child { border-right: none; }
.hiz-stat-num { display: block; font-size: 36px; font-weight: 800; color: var(--yellow); line-height: 1; margin-bottom: 6px; }
.hiz-stat-label { font-size: 13px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; }

.hiz-row { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: center; margin-bottom: 80px; }
.hiz-row:last-child { margin-bottom: 0; }
.hiz-row-reverse { direction: rtl; }
.hiz-row-reverse > * { direction: ltr; }
.hiz-row-img-inner { background: var(--dark); border-radius: 16px; aspect-ratio: 1/1; max-width: 340px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.hiz-row-img-inner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(246,201,14,0.12), transparent 60%); }
.hiz-row-icon-bg { font-size: 96px; color: var(--yellow); opacity: 0.9; position: relative; z-index: 1; }
.hiz-num { font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--yellow); display: block; margin-bottom: 12px; }
.hiz-row-content h3 { font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 14px; line-height: 1.2; }
.hiz-row-content p { color: var(--gray); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.hiz-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.hiz-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.hiz-list li i { color: var(--yellow); font-size: 14px; flex-shrink: 0; }

.hiz-why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }
.hiz-why-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.hiz-why-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,0.1); border-color: var(--yellow); }
.hiz-why-icon { width: 52px; height: 52px; background: var(--dark); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.hiz-why-icon i { font-size: 22px; color: var(--yellow); }
.hiz-why-card h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.hiz-why-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }
/* ===== HİZMETLER — intro, kart, badge ===== */
.hiz-intro { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.hiz-intro-text h2 { font-size: 32px; font-weight: 800; color: var(--dark); margin: 12px 0 16px; }
.hiz-intro-text p { font-size: 15px; color: var(--gray); line-height: 1.75; }
.hiz-intro-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hiz-badge { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; font-size: 13px; font-weight: 600; color: var(--dark); }
.hiz-badge i { color: var(--yellow); font-size: 15px; flex-shrink: 0; }

.hiz-cards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }
.hiz-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 28px 24px; display: flex; flex-direction: column; gap: 14px; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.hiz-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); border-color: var(--yellow); }
.hiz-card-top { display: flex; align-items: center; justify-content: space-between; }
.hiz-card-icon { width: 52px; height: 52px; background: var(--dark); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.hiz-card-icon i { font-size: 22px; color: var(--yellow); }
.hiz-card-num { font-size: 28px; font-weight: 900; color: var(--border); }
.hiz-card h3 { font-size: 17px; font-weight: 800; color: var(--dark); margin: 0; }
.hiz-card p { font-size: 13px; color: var(--gray); line-height: 1.7; flex: 1; }
.hiz-list { display: flex; flex-direction: column; gap: 8px; }
.hiz-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text); }
.hiz-list li i { color: var(--yellow); font-size: 12px; flex-shrink: 0; }
.hiz-card-btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px; background: var(--dark); color: var(--yellow); font-size: 12px; font-weight: 700; border-radius: 8px; transition: background 0.2s, color 0.2s; align-self: flex-start; margin-top: auto; }
.hiz-card-btn:hover { background: var(--yellow); color: var(--dark); }
.hiz-card-btn i { font-size: 10px; }

.hiz-process { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 56px; position: relative; }
.hiz-process-item { text-align: center; padding: 0 20px; position: relative; }
.hiz-process-num { width: 56px; height: 56px; background: var(--dark); color: var(--yellow); font-size: 20px; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; position: relative; z-index: 2; border: 3px solid var(--yellow); }
.hiz-process-line { position: absolute; top: 28px; left: 50%; width: 100%; height: 2px; background: linear-gradient(90deg, var(--yellow), rgba(246,201,14,0.2)); z-index: 1; }
.hiz-process-line-last { display: none; }
.hiz-process-item h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.hiz-process-item p { font-size: 13px; color: var(--gray); line-height: 1.6; }

@media (max-width: 960px) {
  .hiz-stats-grid { grid-template-columns: repeat(2,1fr); }
  .hiz-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hiz-intro { grid-template-columns: 1fr; gap: 32px; }
  .hiz-cards-grid { grid-template-columns: repeat(2,1fr); }
  .hiz-row { grid-template-columns: 1fr; gap: 32px; }
  .hiz-row-reverse { direction: ltr; }
  .hiz-row-img-inner { max-width: 100%; aspect-ratio: 16/7; }
  .hiz-why-grid { grid-template-columns: repeat(2,1fr); }
  .hiz-process { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .hiz-process-line { display: none; }
}
@media (max-width: 600px) {
  .hiz-stats-grid { grid-template-columns: repeat(2,1fr); }
  .hiz-intro-badges { grid-template-columns: 1fr; }
  .hiz-cards-grid { grid-template-columns: 1fr; }
  .hiz-why-grid { grid-template-columns: 1fr; }
  .hiz-process { grid-template-columns: 1fr; }
}

/* ===== PRODUCT CARD (liste sayfaları) ===== */
.product-brand-tag { background: var(--dark); color: var(--yellow); font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; }
.product-img { height: 180px; display: flex; align-items: center; justify-content: center; padding: 20px; background: var(--light); }
.product-img img { max-height: 140px; object-fit: contain; }
.product-img-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: linear-gradient(135deg, #1A1A2E, #16213E); }
.product-img-placeholder i { font-size: 40px; color: rgba(246,201,14,0.4); }
.product-img-placeholder span { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 1.5px; }
.product-info { padding: 20px; }
.product-info h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.product-cat { font-size: 12px; color: var(--gray); display: block; margin-bottom: 12px; }
.product-code { font-size: 12px; color: var(--gray); font-family: monospace; display: block; margin-bottom: 12px; }
.product-meta { font-size: 13px; color: var(--gray); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 80px 20px; color: var(--gray); }
.empty-state i { font-size: 56px; margin-bottom: 16px; opacity: 0.3; }
.empty-state p { font-size: 16px; }

/* ===== FOOTER MAP ===== */
.footer-map {
  position: relative; line-height: 0;
  border-top: 1px solid rgba(246,201,14,0.15);
}
.footer-map iframe { display: block; width: 100%; height: 420px; filter: grayscale(15%); }
.footer-map-overlay {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 10; width: 100%; max-width: 860px; padding: 0 24px;
}
.fmo-card {
  background: var(--dark);
  border: 1px solid rgba(246,201,14,0.2);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  display: flex; align-items: center; gap: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.fmo-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; padding-right: 24px; border-right: 1px solid rgba(255,255,255,0.1); }
.fmo-brand i { font-size: 20px; color: var(--yellow); }
.fmo-brand strong { font-size: 15px; font-weight: 800; color: var(--white); white-space: nowrap; }
.fmo-right { display: flex; align-items: center; gap: 16px; flex: 1; }
.fmo-right span { font-size: 13px; color: rgba(255,255,255,0.5); flex: 1; }
.fmo-card strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.fmo-card span { display: block; font-size: 13px; color: rgba(255,255,255,0.5); }
.fmo-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--dark);
  padding: 11px 20px; border-radius: var(--radius);
  font-weight: 700; font-size: 13px; white-space: nowrap;
  transition: var(--transition); flex-shrink: 0;
}
.fmo-btn:hover { background: var(--yellow-hover); transform: translateY(-2px); }

@media (max-width: 768px) {
  .footer-map iframe { height: 320px; }
  .fmo-card { flex-direction: column; text-align: center; }
}

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); }
.footer-top { padding: 72px 0 56px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-logo { height: 52px; width: auto; margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 38px; height: 38px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); font-size: 15px; transition: var(--transition); }
.social-links a:hover { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }
.footer-col h4 { font-size: 11px; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.45); font-size: 14px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--yellow); padding-left: 4px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-list li i { color: var(--yellow); margin-top: 2px; flex-shrink: 0; font-size: 14px; }
.footer-contact-list li div { display: flex; flex-direction: column; gap: 2px; }
.footer-contact-list li a, .footer-contact-list li span { color: rgba(255,255,255,0.45); font-size: 13px; transition: var(--transition); }
.footer-contact-list li a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 0; }
.footer-disclaimer {
  padding: 10px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  overflow: hidden;
}
.footer-disclaimer p { font-size: 11px; color: rgba(255,255,255,0.2); margin: 0; word-wrap: break-word; overflow-wrap: break-word; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding: 18px 0; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.disclaimer { max-width: 480px; text-align: right; font-size: 11px !important; }
.footer-credit { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ===== ROCK DRILL DETAY ===== */
.rd-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.rd-detail-img {
  background: var(--light); border-radius: var(--radius-lg);
  padding: 40px; text-align: center;
  border: 1px solid var(--border);
}
.rd-detail-img img { max-height: 380px; object-fit: contain; margin: 0 auto; }
.rd-img-placeholder {
  height: 300px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1A1A2E, #16213E); border-radius: var(--radius);
}
.rd-img-placeholder i { font-size: 64px; color: rgba(246,201,14,0.3); }
.rd-detail-info h2 { font-size: clamp(24px,3vw,36px); font-weight: 900; color: var(--dark); margin: 12px 0 16px; }
.rd-code { font-size: 13px; color: var(--gray); font-family: monospace; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.rd-code i { color: var(--yellow); }
.rd-desc { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 24px; }
.rd-specs { margin-bottom: 32px; }
.rd-specs h4 { font-size: 14px; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.rd-specs table { width: 100%; border-collapse: collapse; }
.rd-specs td { padding: 10px 14px; font-size: 14px; border-bottom: 1px solid var(--border); }
.rd-specs td:first-child { font-weight: 600; color: var(--dark); width: 45%; }
.rd-specs td:last-child { color: var(--gray); }
.rd-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .rd-detail-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== HAKKIMIZDA - MİSYON VİZYON ===== */
.mv-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.mv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
}
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mv-card-dark {
  background: var(--dark3);
  border-color: rgba(246,201,14,0.25);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.mv-card-dark h3 { color: var(--white); }
.mv-card-dark p { color: rgba(255,255,255,0.65); }
.mv-card-dark .mv-list li { color: rgba(255,255,255,0.65); }
.mv-card-dark .mv-list li i { color: var(--yellow); }
.mv-icon {
  width: 56px; height: 56px;
  background: rgba(246,201,14,0.1); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #b8960a; margin-bottom: 20px;
}
.mv-card-accent {
  background: var(--white);
  border-color: rgba(246,201,14,0.4);
  border-width: 2px;
}
.mv-card-accent .mv-icon { background: rgba(246,201,14,0.12); color: #b8960a; }
.mv-card-accent h3 { color: var(--dark); }
.mv-card-accent p { color: var(--gray); }
.mv-card-accent .mv-list li { color: var(--gray-dark); }
.mv-card-accent .mv-list li i { color: #b8960a; }
.mv-card h3 { font-size: 22px; font-weight: 800; color: #b8960a; margin-bottom: 14px; }
.mv-card p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 20px; }
.mv-list { display: flex; flex-direction: column; gap: 10px; }
.mv-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-dark); }
.mv-list li i { color: #22c55e; font-size: 13px; flex-shrink: 0; }

@media (max-width: 768px) {
  .mv-grid { grid-template-columns: 1fr; }
}

/* ===== AOS ===== */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos][data-aos-delay="80"] { transition-delay: 0.08s; }
[data-aos][data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-aos-delay="150"] { transition-delay: 0.15s; }
[data-aos][data-aos-delay="160"] { transition-delay: 0.16s; }
[data-aos][data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-aos-delay="240"] { transition-delay: 0.24s; }
[data-aos][data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(24px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-cards { display: none; }
  .hss-inner { flex-wrap: wrap; justify-content: center; }
  .hss-item { padding: 12px 24px; }
  .srv-layout { grid-template-columns: 1fr; gap: 48px; }
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid, .contact-grid, .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: auto; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .topbar-left span { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hss-sep { display: none; }
  .hss-item { padding: 10px 16px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .disclaimer { text-align: center; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .service-detail-card { grid-template-columns: 1fr; }
  .sdc-content ul { grid-template-columns: 1fr; }
  .topbar-left { gap: 12px; }
  .topbar-addr { display: none; }
  .why-stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-band-actions { flex-direction: column; width: 100%; }
  .cta-band-actions .btn { justify-content: center; }
  .srv-cards { grid-template-columns: 1fr; }
}

/* ===== HERO BG IMAGE ===== */
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=1600&q=80&fit=crop');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(10,15,25,0.92) 0%,
    rgba(10,15,25,0.80) 50%,
    rgba(10,20,40,0.75) 100%);
  z-index: 1;
}
.hero-bg-glow { z-index: 2; }
.hero-wrap { z-index: 3; }
.hero-stats-strip { z-index: 3; }

/* ===== ABOUT PREVIEW ===== */
.about-preview-section { background: var(--white); }
.about-preview-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.ap-img-wrap {
  position: relative;
}
.ap-img {
  width: 100%; height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: 20% center;
  border-radius: var(--radius-lg);
  display: block;
}
.ap-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 12px 40px rgba(246,201,14,0.35);
}
.ap-img-badge i { font-size: 28px; color: var(--dark); }
.ap-img-badge strong { display: block; font-size: 28px; font-weight: 900; color: var(--dark); line-height: 1; }
.ap-img-badge span { font-size: 12px; font-weight: 600; color: rgba(0,0,0,0.6); text-transform: uppercase; letter-spacing: 1px; }
.ap-content h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900; color: var(--dark);
  line-height: 1.2; letter-spacing: -1px;
  margin-bottom: 20px;
}
.ap-content p { color: var(--gray); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.ap-stats {
  display: flex; gap: 32px;
  padding: 24px 0; margin: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ap-stat strong { font-size: 32px; font-weight: 900; color: var(--dark); display: inline; }
.ap-stat sup { font-size: 16px; font-weight: 900; color: var(--yellow); vertical-align: super; }
.ap-stat span { display: block; font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ===== CTA BAND BG ===== */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--dark);
  padding: 80px 0;
}
.cta-band-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1400&q=60&fit=crop');
  background-size: cover; background-position: center;
  opacity: 0.08;
}
.cta-band-inner { position: relative; z-index: 2; }

/* ===== RESPONSIVE EKLER ===== */
@media (max-width: 1024px) {
  .foto-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-preview-grid { grid-template-columns: 1fr; gap: 48px; }
  .ap-img { height: 360px; }
  .ap-img-badge { right: 0; }
}
@media (max-width: 768px) {
  .ap-img { height: 280px; }
  .ap-stats { gap: 20px; }
}

/* ===== İLETİŞİM SAYFASI ===== */
.ct-quick-band { background: #2d3748; padding: 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ct-quick-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.ct-quick-item { display: flex; align-items: center; gap: 14px; padding: 22px 28px; border-right: 1px solid rgba(255,255,255,0.06); text-decoration: none; transition: background 0.2s; }
.ct-quick-item:last-child { border-right: none; }
.ct-quick-item:hover { background: rgba(255,255,255,0.04); }
.ct-quick-icon { width: 40px; height: 40px; background: rgba(246,201,14,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ct-quick-icon i { font-size: 16px; color: var(--yellow); }
.ct-quick-icon-green { background: rgba(37,211,102,0.12); }
.ct-quick-icon-green i { color: #25D366; }
.ct-quick-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 2px; }
.ct-quick-val { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); }

.ct-main-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start; }

.ct-info-panel { position: sticky; top: 100px; }
.ct-info-inner { background: #2d3748; border-radius: 16px; padding: 40px 36px; }
.ct-info-inner h2 { font-size: 30px; font-weight: 800; color: #fff; margin-bottom: 14px; line-height: 1.2; }
.ct-info-inner > p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 32px; }

.ct-info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.ct-info-item { display: flex; align-items: flex-start; gap: 14px; }
.ct-info-icon { width: 40px; height: 40px; background: rgba(246,201,14,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.ct-info-icon i { font-size: 15px; color: var(--yellow); }
.ct-info-icon-green { background: rgba(37,211,102,0.1); }
.ct-info-icon-green i { color: #25D366; }
.ct-info-content { display: flex; flex-direction: column; gap: 2px; }
.ct-info-label { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.ct-info-content a, .ct-info-content span { font-size: 14px; color: rgba(255,255,255,0.8); transition: color 0.2s; }
.ct-info-content a:hover { color: var(--yellow); }

.ct-info-hours { display: flex; align-items: center; gap: 10px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 13px; color: rgba(255,255,255,0.45); }
.ct-info-hours i { color: var(--yellow); }

.ct-form-panel { background: var(--white); border-radius: 16px; padding: 40px 36px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.ct-form-head { margin-bottom: 28px; }
.ct-form-head h3 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.ct-form-head p { font-size: 14px; color: var(--gray); }

.ct-form { display: flex; flex-direction: column; gap: 18px; }
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ct-form-group { display: flex; flex-direction: column; gap: 6px; }
.ct-form-group label { font-size: 13px; font-weight: 600; color: var(--dark); }
.ct-form-group label span { color: var(--yellow); }
.ct-form-group input, .ct-form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 14px; color: var(--text); background: var(--light);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none; font-family: inherit;
}
.ct-form-group input:focus, .ct-form-group textarea:focus {
  border-color: var(--yellow); background: #fff;
  box-shadow: 0 0 0 3px rgba(246,201,14,0.12);
}
.ct-form-group textarea { resize: vertical; }

.ct-success { text-align: center; padding: 60px 20px; }
.ct-success-icon { font-size: 56px; color: #22c55e; margin-bottom: 16px; }
.ct-success h3 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.ct-success p { font-size: 15px; color: var(--gray); }

.ct-map-wrap { height: 380px; overflow: hidden; }
.ct-map-wrap iframe { display: block; }

.alert { padding: 14px 18px; border-radius: 8px; font-size: 14px; display: flex; align-items: flex-start; gap: 10px; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

@media (max-width: 960px) {
  .ct-quick-grid { grid-template-columns: repeat(2,1fr); }
  .ct-quick-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .ct-main-grid { grid-template-columns: 1fr; }
  .ct-info-panel { position: static; }
}
@media (max-width: 600px) {
  .ct-quick-grid { grid-template-columns: 1fr; }
  .ct-form-row { grid-template-columns: 1fr; }
  .ct-info-inner, .ct-form-panel { padding: 28px 20px; }
}


/* ===== KATALOG SAYFASI ===== */
.katalog-hero {
  position: relative;
  background: var(--dark);
  padding: 100px 0 80px;
  overflow: hidden;
  min-height: auto;
}
.katalog-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(246,201,14,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(246,201,14,0.05) 0%, transparent 50%);
}
.katalog-hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}
.katalog-hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.katalog-hero-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.katalog-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Katalog kitap önizleme */
.katalog-hero-preview {
  display: flex;
  justify-content: center;
  align-items: center;
}
.katalog-book {
  position: relative;
  display: flex;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}
.katalog-book-cover {
  width: 240px;
  height: 320px;
  background: linear-gradient(145deg, #1a2035 0%, #0d1117 100%);
  border: 1px solid rgba(246,201,14,0.2);
  border-radius: 4px 12px 12px 4px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.katalog-book-cover::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
}
.katalog-book-cover::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(246,201,14,0.06), transparent);
}
.katalog-book-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.katalog-book-title span {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1.1;
}
.katalog-book-title .katalog-book-year {
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 4px;
  margin-top: 8px;
}
.katalog-book-stripe {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, var(--yellow), #b8960a);
  border-radius: 0 12px 12px 0;
}
.katalog-book-pages {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  position: relative;
  z-index: 1;
}
.katalog-book-pages i { color: var(--yellow); }
.katalog-book-spine {
  width: 20px;
  height: 320px;
  background: linear-gradient(to right, #0a0e17, #161b22);
  border-radius: 4px 0 0 4px;
  order: -1;
  border-right: 1px solid rgba(246,201,14,0.1);
}

/* Stats band */
.katalog-stats-band {
  background: var(--dark2);
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.katalog-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.katalog-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.katalog-stat:last-child { border-right: none; }
.katalog-stat > i {
  font-size: 28px;
  color: var(--yellow);
  flex-shrink: 0;
}
.katalog-stat strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.katalog-stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* Content cards */
.katalog-content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.katalog-content-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.katalog-content-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.katalog-content-icon {
  width: 56px; height: 56px;
  background: rgba(246,201,14,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.katalog-content-icon i { font-size: 22px; color: var(--yellow); }
.katalog-content-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.katalog-content-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 20px;
}
.katalog-content-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.katalog-content-link:hover { gap: 10px; }

/* CTA section */
.katalog-cta-section {
  background: var(--dark);
  padding: 80px 0;
}
.katalog-cta-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, rgba(246,201,14,0.08) 0%, transparent 60%);
  border: 1px solid rgba(246,201,14,0.15);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
}
.katalog-cta-icon {
  width: 80px; height: 80px;
  background: rgba(246,201,14,0.12);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.katalog-cta-icon i { font-size: 36px; color: var(--yellow); }
.katalog-cta-text { flex: 1; }
.katalog-cta-text h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.katalog-cta-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.katalog-cta-btns { display: flex; gap: 16px; flex-shrink: 0; }

/* PDF Viewer */
.katalog-viewer-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.katalog-viewer-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--dark2);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  gap: 16px;
}
.katalog-viewer-toolbar i { color: var(--yellow); margin-right: 8px; }
/* Flipbook / Slider */
.fb-wrap {
  background: #111;
  padding: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}
.fb-viewer {
  position: relative;
  display: flex;
  align-items: center;
  background: #0a0a0a;
  user-select: none;
}
.fb-stage {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}
.fb-slide {
  display: none;
  width: 100%;
}
.fb-slide.active {
  display: block;
}
.fb-slide img {
  width: 100%;
  height: auto;
  display: block;
}
/* Slide animasyonları */
@keyframes slideInRight  { from { transform: translateX(100%); opacity:0; } to { transform: translateX(0); opacity:1; } }
@keyframes slideInLeft   { from { transform: translateX(-100%); opacity:0; } to { transform: translateX(0); opacity:1; } }
@keyframes slideOutLeft  { from { transform: translateX(0); opacity:1; } to { transform: translateX(-100%); opacity:0; } }
@keyframes slideOutRight { from { transform: translateX(0); opacity:1; } to { transform: translateX(100%); opacity:0; } }
.slide-in-right  { animation: slideInRight  0.4s ease forwards; }
.slide-in-left   { animation: slideInLeft   0.4s ease forwards; }
.slide-out-left  { animation: slideOutLeft  0.4s ease forwards; position:absolute; top:0; left:0; width:100%; }
.slide-out-right { animation: slideOutRight 0.4s ease forwards; position:absolute; top:0; left:0; width:100%; }

/* Ok butonları */
.fb-arrow {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.07);
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  z-index: 2;
  align-self: stretch;
}
.fb-arrow:hover:not(:disabled) { background: var(--yellow); color: var(--dark); }
.fb-arrow:disabled { opacity: 0.2; cursor: default; }

/* Thumbnail şeridi */
.fb-thumbs-bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: #1a1a1a;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.fb-thumbs-bar::-webkit-scrollbar { height: 3px; }
.fb-thumbs-bar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }
.fb-thumb {
  flex-shrink: 0;
  background: none;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  opacity: 0.45;
  transition: var(--transition);
  position: relative;
  width: 72px;
}
.fb-thumb img { width: 100%; height: 46px; object-fit: cover; display: block; }
.fb-thumb span {
  display: block;
  text-align: center;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  padding: 2px 0;
  background: #111;
}
.fb-thumb:hover { opacity: 0.75; }
.fb-thumb.active { border-color: var(--yellow); opacity: 1; }

/* Mobil */
@media (max-width: 640px) {
  .fb-arrow { width: 38px; font-size: 14px; }
  .fb-thumb { width: 52px; }
  .fb-thumb img { height: 34px; }
}
.katalog-iframe {
  width: 100%;
  height: 780px;
  border: none;
  display: block;
  background: #f5f5f5;
}
.katalog-no-pdf {
  text-align: center;
  padding: 80px 40px;
  background: var(--light);
}
.katalog-no-pdf-icon {
  width: 96px; height: 96px;
  background: rgba(246,201,14,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.katalog-no-pdf-icon i { font-size: 40px; color: var(--yellow); }
.katalog-no-pdf h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.katalog-no-pdf p { font-size: 15px; color: var(--gray); line-height: 1.7; }

/* Responsive */
@media (max-width: 1024px) {
  .katalog-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .katalog-hero-preview { display: none; }
  .katalog-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .katalog-stat:nth-child(2) { border-right: none; }
  .katalog-content-grid { grid-template-columns: repeat(2, 1fr); }
  .katalog-cta-inner { flex-direction: column; text-align: center; padding: 40px 32px; }
  .katalog-cta-btns { justify-content: center; }
  .katalog-iframe { height: 500px; }
}
@media (max-width: 640px) {
  .katalog-stats-grid { grid-template-columns: 1fr; }
  .katalog-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .katalog-stat:last-child { border-bottom: none; }
  .katalog-content-grid { grid-template-columns: 1fr; }
  .katalog-hero-btns { flex-direction: column; }
  .katalog-cta-btns { flex-direction: column; width: 100%; }
  .katalog-iframe { height: 380px; }
}

/* ===== DİL SEÇİCİ ===== */
.lang-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 4px 12px 4px 8px;
  cursor: pointer;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  transition: background .2s;
}
.lang-trigger:hover { background: rgba(255,255,255,.22); }
.lang-trigger .lang-flag { font-size: 15px; }
.lang-trigger .fa-globe { font-size: 11px; opacity: .7; }

/* Overlay */
.lang-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  z-index: 9998;
}
.lang-modal-overlay.open { display: block; }

/* Modal pencere */
.lang-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(.95);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,.25);
  z-index: 9999;
  width: 480px;
  max-width: calc(100vw - 32px);
  overflow: hidden;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), opacity .18s ease;
  opacity: 0;
}
.lang-modal.open {
  display: block;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* Modal başlık */
.lang-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.lang-modal-head i { margin-right: 8px; color: var(--yellow-hover); }
.lang-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  font-size: 16px;
  padding: 4px 6px;
  border-radius: 6px;
  transition: background .15s;
}
.lang-modal-close:hover { background: var(--light); color: var(--text); }

/* Kart grid */
.lang-modal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 18px 22px 22px;
}
.lang-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 14px 8px 12px;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: var(--light);
  cursor: pointer;
  transition: all .18s ease;
  font-family: inherit;
}
.lang-card:hover {
  border-color: var(--yellow);
  background: #fef9e7;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(246,201,14,.2);
}
.lang-card.active {
  border-color: var(--yellow);
  background: #fef9e7;
  box-shadow: 0 4px 14px rgba(246,201,14,.25);
}
.lc-flag { font-size: 26px; line-height: 1; }
.lc-name { font-size: 11px; font-weight: 600; color: var(--text); text-align: center; }
.lc-code { font-size: 10px; color: var(--gray); font-weight: 700; letter-spacing: .5px; }
.lang-card.active .lc-name,
.lang-card.active .lc-code { color: var(--yellow-hover); }

@media (max-width: 520px) {
  .lang-modal-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 380px) {
  .lang-modal-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== MOBİL & TABLET — DRAWER MENÜ ===== */

/* Hamburger her zaman gizli, tablet/mobilde göster */
.hamburger { display: none; }

@media (max-width: 1024px) {
  /* Hamburger */
  .hamburger {
    display: flex;
    z-index: 9999;
    position: relative;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    background: rgba(0,0,0,.06);
    border-radius: 8px;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0;
  }
  .hamburger span {
    display: block; width: 20px; height: 2px;
    background: var(--dark); border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
  }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Overlay */
  .nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 9998;
    cursor: pointer;
    pointer-events: none;
  }
  .nav-overlay.show { display: block; pointer-events: auto; }

  /* Drawer */
  .main-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    left: auto;
    width: 300px;
    max-width: 85vw;
    background: #ffffff;
    z-index: 9999;
    display: flex !important;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,.18);
    pointer-events: auto;
  }
  .main-nav.open {
    transform: translateX(0);
  }

  /* Drawer üst şerit */
  .main-nav::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), #b8960a);
    flex-shrink: 0;
  }

  /* Nav list */
  .nav-list {
    display: flex !important;
    flex-direction: column;
    padding: 16px 0 32px;
    gap: 0;
    flex: 1;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-link, .nav-link-noclick {
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 14px 20px !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    color: var(--gray-dark) !important;
    width: 100%;
    justify-content: space-between;
    border-radius: 0 !important;
    background: transparent !important;
    transition: background .15s, color .15s !important;
  }
  .nav-link:hover, .nav-link-noclick:hover,
  .nav-link.active { 
    background: rgba(246,201,14,.1) !important;
    color: #b8960a !important;
  }
  .nav-arrow { color: var(--gray-light); font-size: 10px; transition: transform .25s; }
  .nav-item.has-drop.mob-open .nav-arrow { transform: rotate(180deg); color: #b8960a; }

  /* Sub dropdown drawer içinde */
  .sub-drop {
    position: static !important;
    opacity: 1 !important;
    visibility: hidden;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    max-height: 0;
    overflow: hidden;
    background: var(--light) !important;
    transition: max-height .3s ease;
  }
  .nav-item.has-drop.mob-open .sub-drop {
    visibility: visible;
    max-height: 400px;
  }
  .sub-drop li { border-bottom: 1px solid var(--border); }
  .sub-drop li:last-child { border-bottom: none; }
  .sub-drop li a {
    padding: 11px 20px 11px 36px !important;
    font-size: 13px !important;
    color: var(--gray) !important;
    display: flex; align-items: center; gap: 8px;
  }
  .sub-drop li a::before {
    content: '';
    width: 4px; height: 4px;
    background: var(--yellow);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .sub-drop li a:hover {
    background: rgba(246,201,14,.08) !important;
    color: #b8960a !important;
    padding-left: 36px !important;
  }

  /* Drawer alt çizgi */
  .main-nav::after {
    content: '';
    display: block;
    height: 1px;
    background: var(--border);
    margin: 0 20px;
  }

  /* Mega drop gizle */
  .mega-drop { display: none !important; }
  .btn-ecatalog { display: none; }
}

/* ── Topbar tablet ── */
@media (max-width: 1024px) {
  .topbar-left a:last-child { display: none; }
}

/* ── Ürünler 4. ve 5. kart düzeltme ── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .products-grid.products-grid-center {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    justify-items: stretch;
  }
  .products-grid.products-grid-center .product-card,
  .products-grid.products-grid-center .foto-card {
    width: 100% !important;
  }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr !important; }
  .products-grid.products-grid-center {
    grid-template-columns: 1fr !important;
  }
  .products-grid.products-grid-center .product-card,
  .products-grid.products-grid-center .foto-card {
    width: 100% !important;
  }
}

/* ── About preview tablet ── */
@media (max-width: 1024px) {
  .about-preview-grid { grid-template-columns: 1fr; gap: 56px; }
  .ap-img-badge { right: 16px; bottom: -16px; }
}

/* ── Why section tablet ── */
@media (max-width: 1024px) {
  .why-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Services tablet ── */
@media (max-width: 1024px) {
  .srv-layout { grid-template-columns: 1fr; gap: 40px; }
  .srv-cards { grid-template-columns: repeat(2, 1fr); }
}



/* ── Footer grid mobil ── */

/* ── CTA band mobil ── */
@media (max-width: 768px) {
  .cta-band-inner { flex-direction: column; text-align: center; gap: 24px; }
  .cta-band-icon { margin: 0 auto; }
  .cta-band-actions { flex-direction: column; width: 100%; }
  .cta-band-actions .btn { justify-content: center; }
}

/* ── Dil modal mobil ── */
@media (max-width: 520px) {
  .lang-modal-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 14px 16px 18px; }
  .lc-flag { font-size: 22px; }
  .lc-name { font-size: 10px; }
}

/* ── Genel mobil ince ayar ── */
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .page-hero { padding: 40px 0 32px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .ap-stats { flex-wrap: wrap; gap: 16px; }
  .srv-cards { grid-template-columns: 1fr; }
}

/* ── Drawer başlık ── */
.drawer-head {
  display: none;
}
@media (max-width: 1024px) {
  .drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 14px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
  }
  .drawer-logo-text {
    font-size: 14px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -0.5px;
    line-height: 1;
  }
  .drawer-logo-text span {
    color: var(--yellow);
  }
  .drawer-close {
    width: 34px; height: 34px;
    background: var(--light);
    border: 1px solid var(--border); border-radius: 8px;
    color: var(--gray);
    font-size: 15px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s, color .15s;
  }
  .drawer-close:hover {
    background: rgba(246,201,14,.12);
    color: #b8960a;
    border-color: rgba(246,201,14,.3);
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBİL DRAWER — tamamen bağımsız, body seviyesinde
   ═══════════════════════════════════════════════════════════ */

/* Overlay */
.mob-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 99998;
}
.mob-overlay.open { display: block; }

/* Drawer panel */
.mob-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 290px; max-width: 88vw;
  background: #fff;
  z-index: 99999;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  box-shadow: -6px 0 32px rgba(0,0,0,.15);
  overflow-y: auto;
}
.mob-drawer.open { transform: translateX(0); }

/* Üst şerit */
.mob-drawer::before {
  content: '';
  display: block; height: 4px; flex-shrink: 0;
  background: linear-gradient(90deg, var(--yellow), #b8960a);
}

/* Başlık */
.mob-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px 14px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mob-drawer-logo {
  font-size: 15px; font-weight: 900;
  color: var(--dark); letter-spacing: -.3px;
}
.mob-drawer-logo em { font-style: normal; color: var(--yellow); }  /* NOVA — sarı */
.mob-drawer-head button {
  width: 32px; height: 32px;
  background: var(--light); border: 1px solid var(--border);
  border-radius: 7px; color: var(--gray);
  font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: .15s;
}
.mob-drawer-head button:hover { background: rgba(246,201,14,.12); color: #b8960a; border-color: rgba(246,201,14,.3); }

/* Nav listesi */
.mob-nav-list { list-style: none; padding: 8px 0 24px; margin: 0; flex: 1; }
.mob-nav-list > li { border-bottom: 1px solid var(--border); }
.mob-nav-list > li:last-child { border-bottom: none; }

/* Normal linkler */
.mob-nav-list > li > a {
  display: block;
  padding: 13px 18px;
  font-size: 14px; font-weight: 600;
  color: var(--gray-dark);
  text-decoration: none;
  transition: background .12s, color .12s;
}
.mob-nav-list > li > a:hover,
.mob-nav-list > li > a.active {
  background: rgba(246,201,14,.08);
  color: #b8960a;
}

/* Dropdown toggle butonu */
.mob-drop-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 13px 18px;
  font-size: 14px; font-weight: 600; color: var(--gray-dark);
  background: none; border: none; cursor: pointer; text-align: left;
  transition: background .12s, color .12s;
}
.mob-drop-toggle:hover { background: rgba(246,201,14,.08); color: #b8960a; }
.mob-drop-toggle i { font-size: 10px; transition: transform .25s; color: var(--gray-light); }
.mob-has-drop.open .mob-drop-toggle i { transform: rotate(180deg); color: #b8960a; }

/* Alt menü */
.mob-sub {
  list-style: none; padding: 0; margin: 0;
  max-height: 0; overflow: hidden;
  background: var(--light);
  transition: max-height .3s ease;
}
.mob-has-drop.open .mob-sub { max-height: 400px; }
.mob-sub li { border-top: 1px solid var(--border); }
.mob-sub li a {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 18px 11px 32px;
  font-size: 13px; font-weight: 500; color: var(--gray);
  text-decoration: none; transition: .12s;
}
.mob-sub li a::before {
  content: ''; width: 4px; height: 4px;
  background: var(--yellow); border-radius: 50%; flex-shrink: 0;
}
.mob-sub li a:hover { background: rgba(246,201,14,.08); color: #b8960a; }

/* Hamburger — sadece tablet/mobilde göster */
@media (min-width: 1025px) {
  .hamburger { display: none !important; }
  .mob-drawer, .mob-overlay { display: none !important; }
}

/* ══════════════════════════════════════════════════════════
   CHAT WIDGET — Sol Orta, Modern Glow Tasarım
   ══════════════════════════════════════════════════════════ */

/* Tab — sol kenarda dikey */
.cw-tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Parlayan ana tab butonu */
.cw-tab-btn {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  background: linear-gradient(180deg, #F6C90E 0%, #e0a800 100%);
  color: #111;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 20px 10px;
  border: none;
  cursor: pointer;
  border-radius: 0 10px 10px 0;
  box-shadow: 4px 0 24px rgba(246,201,14,.55), 2px 0 8px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: padding .3s ease, box-shadow .3s ease;
  animation: cw-glow 2.8s ease-in-out infinite;
  white-space: nowrap;
  user-select: none;
}
.cw-tab-btn i {
  font-size: 16px;
  transform: rotate(180deg);
  flex-shrink: 0;
}
@keyframes cw-glow {
  0%,100% { box-shadow: 4px 0 24px rgba(246,201,14,.55), 2px 0 8px rgba(0,0,0,.25); }
  50%      { box-shadow: 4px 0 40px rgba(246,201,14,.9),  2px 0 12px rgba(0,0,0,.3), 0 0 60px rgba(246,201,14,.25); }
}
.cw-tab-btn:hover {
  padding: 20px 14px;
  box-shadow: 6px 0 48px rgba(246,201,14,.95), 2px 0 12px rgba(0,0,0,.3);
  animation: none;
}

/* Panel — soldan kayarak açılır */
.cw-panel {
  position: fixed;
  left: -340px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  z-index: 99998;
  background: #0D1117;
  border-radius: 0 18px 18px 0;
  box-shadow: 8px 0 60px rgba(0,0,0,.6), 0 0 0 1px rgba(246,201,14,.12);
  overflow: hidden;
  transition: left .4s cubic-bezier(.4,0,.2,1);
}
.cw-panel.open {
  left: 0;
}

/* Panel üst başlık */
.cw-panel-head {
  background: linear-gradient(135deg, #F6C90E 0%, #c8960a 100%);
  padding: 20px 20px 16px;
  position: relative;
  overflow: hidden;
}
.cw-panel-head::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
}
.cw-panel-head::after {
  content: '';
  position: absolute;
  bottom: -20px; left: 20px;
  width: 60px; height: 60px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}
.cw-head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  position: relative; z-index: 1;
}
.cw-head-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cw-head-avatar {
  width: 40px; height: 40px;
  background: rgba(0,0,0,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #111;
  border: 2px solid rgba(255,255,255,.3);
}
.cw-head-name { font-size: 14px; font-weight: 800; color: #111; line-height: 1.2; }
.cw-head-status {
  font-size: 11px; color: rgba(0,0,0,.6); font-weight: 500;
  display: flex; align-items: center; gap: 4px;
}
.cw-head-status::before {
  content: '';
  width: 7px; height: 7px;
  background: #1a7a1a;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px #1a7a1a;
  animation: cw-blink 1.5s ease-in-out infinite;
}
@keyframes cw-blink {
  0%,100% { opacity: 1; } 50% { opacity: .4; }
}
.cw-close-btn {
  background: rgba(0,0,0,.15);
  border: none; cursor: pointer;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #111; font-size: 13px;
  transition: background .2s;
}
.cw-close-btn:hover { background: rgba(0,0,0,.3); }
.cw-head-msg {
  font-size: 13px; color: rgba(0,0,0,.7); font-weight: 500;
  position: relative; z-index: 1;
}

/* Öneri baloncukları */
.cw-suggestions {
  padding: 16px 16px 8px;
}
.cw-sug-label {
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,.3);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 10px;
}
.cw-sug-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cw-sug {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(246,201,14,.15);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13px; color: rgba(255,255,255,.85);
  cursor: pointer;
  display: flex; align-items: center; gap: 10px;
  transition: background .2s, border-color .2s, transform .15s;
  text-decoration: none;
}
.cw-sug:hover {
  background: rgba(246,201,14,.1);
  border-color: rgba(246,201,14,.4);
  color: #F6C90E;
  transform: translateX(4px);
}
.cw-sug i { font-size: 14px; color: #F6C90E; flex-shrink: 0; width: 18px; text-align: center; }

/* İletişim butonları */
.cw-contacts {
  padding: 8px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cw-contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 13px; font-weight: 600;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.cw-contact-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.06);
  opacity: 0;
  transition: opacity .2s;
}
.cw-contact-btn:hover::before { opacity: 1; }
.cw-contact-btn:hover { transform: translateY(-2px); }
.cw-contact-btn i { font-size: 18px; flex-shrink: 0; }
.cw-contact-btn .cw-cb-text { display: flex; flex-direction: column; }
.cw-contact-btn .cw-cb-label { font-size: 10px; opacity: .65; font-weight: 500; }
.cw-contact-btn .cw-cb-val { font-size: 13px; font-weight: 700; }

.cw-btn-wa  { background: linear-gradient(135deg, #1db954 0%, #128c3e 100%); color: #fff; box-shadow: 0 4px 20px rgba(29,185,84,.35); }
.cw-btn-wa:hover  { box-shadow: 0 6px 28px rgba(29,185,84,.55); color: #fff; }
.cw-btn-tel { background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%); color: #fff; box-shadow: 0 4px 20px rgba(0,120,212,.35); }
.cw-btn-tel:hover { box-shadow: 0 6px 28px rgba(0,120,212,.55); color: #fff; }
.cw-btn-mail{ background: linear-gradient(135deg, #ea4335 0%, #b31412 100%); color: #fff; box-shadow: 0 4px 20px rgba(234,67,53,.35); }
.cw-btn-mail:hover{ box-shadow: 0 6px 28px rgba(234,67,53,.55); color: #fff; }

/* Divider */
.cw-divider {
  height: 1px;
  background: rgba(255,255,255,.06);
  margin: 0 16px;
}

/* Mobil: tab biraz küçülsün */
@media (max-width: 768px) {
  .cw-tab-btn { font-size: 10px; padding: 16px 8px; letter-spacing: 1px; }
  .cw-panel { width: 290px; left: -300px; }
  .cw-panel.open { left: 0; }
}

/* ═══════════════════════════════════════════════════════════
   MOBİL KAPSAMLI DÜZELTMELER
   ═══════════════════════════════════════════════════════════ */

/* Genel taşma önleme */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
* { box-sizing: border-box; }

/* ── Hakkımızda & About Preview ── */
@media (max-width: 768px) {
  .about-preview-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .ap-img-wrap { overflow: visible; }
  .ap-img { height: 240px !important; aspect-ratio: unset !important; }
  .ap-img-badge {
    right: 12px !important;
    bottom: -14px !important;
    padding: 10px 14px !important;
  }
  .ap-img-badge strong { font-size: 22px !important; }
  .ap-img-badge i { font-size: 20px !important; }
  .ap-content h2 { font-size: clamp(22px, 6vw, 30px) !important; }
  .ap-stats { flex-wrap: wrap; gap: 16px !important; }
  .ap-stat strong { font-size: 28px !important; }
}

/* ── Misyon & Vizyon ── */
@media (max-width: 768px) {
  .mv-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .mv-card { padding: 24px 20px !important; }
}

/* ── Değerlerimiz ── */
@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr !important; }
  .value-card { padding: 24px 18px !important; }
}

/* ── Neden Biz ── */
@media (max-width: 768px) {
  .why-layout { grid-template-columns: 1fr !important; gap: 32px !important; }
  .why-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .why-left h2 { font-size: clamp(22px, 6vw, 32px) !important; }
  .wbb-tags { flex-wrap: wrap; }
}

/* ── Hizmetler ── */
@media (max-width: 768px) {
  .srv-layout { grid-template-columns: 1fr !important; gap: 32px !important; }
  .srv-cards { grid-template-columns: 1fr !important; }
  .srv-intro h2 { font-size: clamp(22px, 6vw, 32px) !important; }
}

/* ── Hero ── */
@media (max-width: 768px) {
  .hero-wrap { grid-template-columns: 1fr !important; gap: 32px !important; padding: 40px 0 24px !important; }
  .hero-cards { display: none !important; }
  .hero-content h1 { font-size: clamp(28px, 8vw, 44px) !important; letter-spacing: -1px !important; }
  .hero-content p { font-size: 15px !important; }
  .hss-inner { flex-wrap: wrap; gap: 0; padding: 20px 0 !important; }
  .hss-item { padding: 12px 20px !important; }
  .hss-sep { display: none; }
}

/* ── Page Hero ── */
@media (max-width: 768px) {
  .page-hero-img { padding: 56px 0 44px !important; }
  .page-hero h1 { font-size: clamp(22px, 7vw, 34px) !important; }
}

/* ── Ürün kartları ── */
@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr !important; }
  .products-grid.products-grid-center {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  .products-grid.products-grid-center .product-card,
  .products-grid.products-grid-center .foto-card { width: 100% !important; }
}

/* ── İletişim sayfası ── */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .ct-main-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .ct-quick-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 480px) {
  .ct-quick-grid { grid-template-columns: 1fr !important; }
}

/* ── Katalog / Yedek Parça sidebar ── */
@media (max-width: 900px) {
  .catalog-layout { grid-template-columns: 1fr !important; }
  .catalog-sidebar { position: static !important; }
  .pcard-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .pcard-grid { grid-template-columns: 1fr !important; }
}

/* ── Ürün detay ── */
@media (max-width: 768px) {
  .product-detail-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .det-info h2 { font-size: clamp(20px, 6vw, 28px) !important; }
}

/* ── CTA Band ── */
@media (max-width: 768px) {
  .cta-band { padding: 48px 0 !important; }
  .cta-band-inner { flex-direction: column !important; text-align: center !important; gap: 20px !important; }
  .cta-band-icon { margin: 0 auto !important; }
  .cta-band-actions { flex-direction: column !important; width: 100% !important; }
  .cta-band-actions .btn { justify-content: center !important; width: 100% !important; }
}

/* ── Footer ── */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 24px !important; }
  .footer-brand { grid-column: 1 / -1 !important; }
  .footer-col:nth-child(4) { grid-column: 1 / -1 !important; }
  .footer-map iframe { height: 260px !important; }
  .footer-map-overlay { bottom: 12px !important; padding: 0 12px !important; }
  .fmo-card { flex-direction: column !important; text-align: center !important; gap: 12px !important; padding: 14px 16px !important; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 16px !important; }
  .footer-brand { grid-column: 1 / -1 !important; }
  .footer-col:nth-child(4) { grid-column: 1 / -1!important; }
  .footer-col h4 { font-size: 10px !important; margin-bottom: 12px !important; }
  .footer-col ul li a { font-size: 13px !important; }
  .footer-contact-list li { margin-bottom: 12px !important; }
  .footer-bottom-inner { flex-direction: column !important; text-align: center !important; gap: 6px !important; }
}

/* ── Topbar mobil ── */
@media (max-width: 768px) {
  .topbar { display: none; }
}

/* ── Section padding mobil ── */
@media (max-width: 768px) {
  .section { padding: 64px 0 !important; }
  .container { padding: 0 16px !important; }
  .why-section { padding: 64px 0 !important; }
}

/* ── Butonlar mobil ── */
@media (max-width: 480px) {
  .btn-lg { padding: 13px 22px !important; font-size: 14px !important; }
  .hero-actions { flex-direction: column !important; align-items: stretch !important; }
  .hero-actions .btn { justify-content: center !important; }
}

/* ── Chat widget mobil ── */
@media (max-width: 480px) {
  .cw-tab-btn { font-size: 9px !important; padding: 14px 7px !important; letter-spacing: .5px !important; }
  .cw-panel { width: calc(100vw - 40px) !important; left: calc(-100vw + 30px) !important; }
  .cw-panel.open { left: 0 !important; }
}

/* ===== BLOG ===== */
.blog-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card-featured {
  grid-column: span 2;
}
.blog-card-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(246,201,14,0.3);
}
.blog-card-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--dark2);
}
.blog-card-featured .blog-card-thumb { aspect-ratio: 21/9; }
.blog-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card-thumb:hover img { transform: scale(1.04); }
.blog-card-no-img {
  width: 100%; height: 100%; min-height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: rgba(246,201,14,0.2);
}
.blog-card-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--yellow); color: var(--dark);
  font-size: 11px; font-weight: 800;
  padding: 4px 12px; border-radius: 50px;
  letter-spacing: 0.5px;
}
.blog-card-body {
  padding: 24px;
  display: flex; flex-direction: column; flex: 1;
}
.blog-card-meta {
  display: flex; gap: 16px;
  font-size: 12px; color: var(--gray);
  margin-bottom: 12px;
}
.blog-card-meta span { display: flex; align-items: center; gap: 5px; }
.blog-card-title {
  font-size: 18px; font-weight: 800;
  color: var(--dark); margin-bottom: 10px; line-height: 1.4;
}
.blog-card-featured .blog-card-title { font-size: 22px; }
.blog-card-title a { color: inherit; transition: var(--transition); }
.blog-card-title a:hover { color: #b8960a; }
.blog-card-summary {
  font-size: 14px; color: var(--gray);
  line-height: 1.7; margin-bottom: 16px; flex: 1;
}
.blog-card-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px;
}
.blog-card-tags span {
  font-size: 11px; color: var(--gray);
  background: var(--light); padding: 3px 10px;
  border-radius: 50px; border: 1px solid var(--border);
}
.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: #b8960a;
  transition: var(--transition); margin-top: auto;
}
.blog-read-more:hover { gap: 10px; }

/* Blog Detay */
.blog-detay-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.blog-detay-h1 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900; color: var(--dark);
  line-height: 1.25; margin-bottom: 16px;
}
.blog-detay-meta {
  display: flex; flex-wrap: wrap; gap: 20px;
  font-size: 13px; color: var(--gray);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.blog-detay-meta span { display: flex; align-items: center; gap: 6px; }
.blog-detay-cover {
  border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 32px;
}
.blog-detay-cover img {
  width: 100%; max-height: 460px; object-fit: cover;
}
.blog-detay-content {
  font-size: 16px; color: var(--text); line-height: 1.9;
}
.blog-detay-content h2 {
  font-size: 22px; font-weight: 800; color: var(--dark);
  margin: 36px 0 14px;
}
.blog-detay-content h3 {
  font-size: 18px; font-weight: 700; color: var(--dark);
  margin: 28px 0 10px;
}
.blog-detay-content p { margin-bottom: 18px; }
.blog-detay-content ul,
.blog-detay-content ol { padding-left: 24px; margin-bottom: 18px; }
.blog-detay-content li { margin-bottom: 8px; }
.blog-detay-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--border);
}
.blog-detay-tags span {
  font-size: 12px; color: var(--gray);
  background: var(--light); padding: 4px 12px;
  border-radius: 50px; border: 1px solid var(--border);
}

/* Blog Sidebar */
.blog-sidebar-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.blog-sidebar-title {
  font-size: 14px; font-weight: 800; color: var(--dark);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.blog-sidebar-title i { color: var(--yellow); }
.blog-sidebar-post {
  display: flex; gap: 12px; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.blog-sidebar-post:last-child { border-bottom: none; }
.blog-sidebar-post:hover { opacity: 0.75; }
.blog-sidebar-post-img {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 8px; overflow: hidden;
  background: var(--dark2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(246,201,14,0.3); font-size: 18px;
}
.blog-sidebar-post-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-sidebar-post-title {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--dark); line-height: 1.4; margin-bottom: 3px;
}
.blog-sidebar-post-date { font-size: 11px; color: var(--gray); }
.blog-sidebar-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--dark2), var(--dark));
  border-color: rgba(255,255,255,0.08);
}
.blog-sidebar-cta i {
  font-size: 32px; color: var(--yellow);
  margin-bottom: 12px; display: block;
}
.blog-sidebar-cta h4 {
  font-size: 16px; font-weight: 800;
  color: var(--white); margin-bottom: 8px;
}
.blog-sidebar-cta p {
  font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 16px;
}

/* Blog Responsive */
@media (max-width: 1024px) {
  .blog-grid-layout { grid-template-columns: repeat(2, 1fr); }
  .blog-card-featured { grid-column: span 2; }
  .blog-detay-wrap { grid-template-columns: 1fr; }
  .blog-detay-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 640px) {
  .blog-grid-layout { grid-template-columns: 1fr; }
  .blog-card-featured { grid-column: span 1; }
  .blog-detay-sidebar { grid-template-columns: 1fr; }
}

/* ===== BLOG CARDS (yeni) ===== */
.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card-new {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card-new:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(246,201,14,0.3);
}
.blog-card-new-img {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--dark2);
}
.blog-card-new-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card-new:hover .blog-card-new-img img { transform: scale(1.05); }
.blog-card-new-noimg {
  width: 100%; height: 100%; min-height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: rgba(246,201,14,0.2);
}
.blog-card-new-cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--yellow); color: var(--dark);
  font-size: 10px; font-weight: 800;
  padding: 3px 10px; border-radius: 50px;
  letter-spacing: 0.5px;
}
.blog-card-new-body {
  padding: 20px;
  display: flex; flex-direction: column; flex: 1;
  gap: 8px;
}
.blog-card-new-meta {
  display: flex; gap: 12px;
  font-size: 11px; color: var(--gray);
}
.blog-card-new-meta span { display: flex; align-items: center; gap: 4px; }
.blog-card-new-title {
  font-size: 15px; font-weight: 700;
  color: var(--dark); line-height: 1.4;
  margin: 0;
}
.blog-card-new-title a { color: inherit; transition: var(--transition); }
.blog-card-new-title a:hover { color: #b8960a; }
.blog-card-new-summary {
  font-size: 13px; color: var(--gray);
  line-height: 1.65; flex: 1;
}
.blog-card-new-tags {
  display: flex; flex-wrap: wrap; gap: 5px;
}
.blog-card-new-tags span {
  font-size: 10px; color: var(--gray);
  background: var(--light); padding: 2px 8px;
  border-radius: 50px; border: 1px solid var(--border);
}

/* Blog Sidebar Recent */
.blog-sidebar-recent {
  display: flex; gap: 10px; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.blog-sidebar-recent:last-child { border-bottom: none; }
.blog-sidebar-recent:hover { opacity: 0.75; }
.blog-sidebar-recent-img {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 8px; overflow: hidden;
  background: var(--dark2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(246,201,14,0.3); font-size: 16px;
}
.blog-sidebar-recent-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-sidebar-recent-title {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--dark); line-height: 1.4; margin-bottom: 3px;
}
.blog-sidebar-recent-date {
  font-size: 11px; color: var(--gray);
  display: flex; align-items: center; gap: 4px;
}

@media (max-width: 900px) {
  .blog-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .blog-cards-grid { grid-template-columns: 1fr; }
}

/* ===== CSB KATEGORİ BUTONLARI ===== */
.csb-cat-btn {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px; font-size: 13px; font-weight: 500;
  color: var(--text); border-bottom: 1px solid var(--border);
  transition: var(--transition); cursor: pointer;
}
.csb-cat-btn:last-child { border-bottom: none; }
.csb-cat-btn:hover { background: var(--light); color: #b8960a; }
.csb-cat-btn.csb-cat-on { background: rgba(246,201,14,0.08); color: #b8960a; font-weight: 700; }
.csb-cat-btn.csb-cat-on .csb-cat-count { background: var(--yellow); color: var(--dark); }
.csb-cat-count {
  background: var(--light); color: var(--gray);
  font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
}


/* ===== FOOTER LEGAL NOTICE MOBIL ===== */
@media (max-width: 768px) {
  .footer-disclaimer {
    padding: 16px 16px !important;
  }
  .footer-disclaimer p {
    font-size: 12px !important;
    line-height: 1.6 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 8px 0 !important;
  }
  .footer-disclaimer p strong {
    display: block;
    margin-bottom: 6px;
  }
}

@media (max-width: 480px) {
  .footer-disclaimer {
    padding: 12px 12px !important;
  }
  .footer-disclaimer p {
    font-size: 11px !important;
    line-height: 1.5 !important;
    margin: 6px 0 !important;
  }
  .footer-bottom-inner {
    flex-direction: column !important;
    gap: 8px !important;
  }
  .footer-bottom-inner p {
    font-size: 11px !important;
    text-align: center !important;
  }
}
