/* ===== TOKENS ===== */
:root {
  --bg:        #0b0d12;
  --bg2:       #111418;
  --bg3:       #181c22;
  --border:    #252a33;
  --olive:     #4e5e2a;
  --olive2:    #6a7c38;
  --steel:     #2c3444;
  --accent:    #6ab04c;
  --accent2:   #39d353;
  --cyan:      #00c8ff;
  --text:      #dde1e8;
  --muted:     #7a8499;
  --white:     #f0f2f5;
  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius:    4px;
  --trans:     0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--olive); border-radius: 3px; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.section-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 640px;
  margin-top: 14px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: linear-gradient(135deg, var(--olive), var(--olive2));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.07);
  opacity: 0;
  transition: var(--trans);
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,94,42,0.5); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--trans);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ===== PAGE HEADER (iç sayfalar) ===== */
.page-header {
  padding: 100px 0 72px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,94,42,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,94,42,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--olive), var(--accent), transparent);
}
.page-header-content { position: relative; z-index: 1; }
.page-header-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.page-header-breadcrumb a { transition: var(--trans); }
.page-header-breadcrumb a:hover { color: var(--accent); }
.page-header-breadcrumb span { color: var(--border); }
.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
}
.page-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.8;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 12px;
  color: var(--muted);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 24px; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar a:hover { color: var(--accent); transition: var(--trans); }
.topbar-icon { display: flex; align-items: center; gap: 6px; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11,13,18,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans);
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.6); }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(106,176,76,0.3));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 16px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: var(--radius);
  transition: var(--trans);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--trans);
  border-radius: 1px;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  color: var(--muted);
  transition: var(--trans);
}
.nav-lang:hover { border-color: var(--accent); color: var(--accent); }
.lang-btn {
  cursor: pointer;
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: var(--trans);
}
.lang-btn:hover { color: var(--white); }
.lang-btn.lang-active { color: var(--accent); }
.mobile-lang {
  display: flex;
  gap: 16px;
  padding: 16px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.mobile-lang .lang-btn { font-size: 16px; letter-spacing: 2px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: var(--trans);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,13,18,0.88) 0%, rgba(11,13,18,0.65) 50%, rgba(11,13,18,0.4) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,94,42,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,94,42,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(74,94,42,0.2);
  border: 1px solid rgba(106,176,76,0.3);
  border-radius: 2px;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--accent2);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 8px;
}
.hero-title span { color: var(--accent); }
.hero-subtitle {
  font-family: var(--font-head);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-indicators {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.hero-dot {
  width: 32px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--trans);
}
.hero-dot.active { background: var(--accent); width: 48px; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(var(--accent), transparent);
  animation: scroll-line 2s ease infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 0 32px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-head);
}

/* ===== KURUMSAL ===== */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.mvv-card {
  background: var(--bg2);
  padding: 48px 40px;
  position: relative;
  transition: var(--trans);
}
.mvv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--olive), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--trans);
}
.mvv-card:hover::before { transform: scaleX(1); }
.mvv-card:hover { background: var(--bg3); }
.mvv-icon {
  width: 52px;
  height: 52px;
  background: rgba(74,94,42,0.15);
  border: 1px solid rgba(106,176,76,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.mvv-icon svg { width: 24px; height: 24px; color: var(--accent); }
.mvv-label {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.mvv-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.mvv-text { font-size: 14px; color: var(--muted); line-height: 1.8; }
.mvv-quote { font-size: 15px; color: var(--text); font-style: italic; line-height: 1.7; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-content .section-title { margin-bottom: 24px; }
.about-content p { color: var(--muted); font-size: 15px; line-height: 1.9; margin-bottom: 16px; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--trans);
}
.about-feature:hover { border-color: rgba(106,176,76,0.3); }
.about-feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(74,94,42,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-feature-icon svg { width: 18px; height: 18px; color: var(--accent); }
.about-feature h4 { font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--white); }
.about-feature p { font-size: 13px; color: var(--muted); margin: 0; }
.about-img-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.about-img-frame img { width: 100%; height: 420px; object-fit: cover; }
.about-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(11,13,18,0.7));
}
.about-img-overlay {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  z-index: 1;
}
.about-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(11,13,18,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.about-badge span {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}
.corner-tl, .corner-br { position: absolute; width: 24px; height: 24px; z-index: 2; }
.corner-tl { top: -1px; left: -1px; border-top: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.corner-br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--accent); border-right: 2px solid var(--accent); }

/* Message Band */
.message-band {
  background: linear-gradient(135deg, var(--bg2) 0%, #0f1318 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.message-band::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(74,94,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.message-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}
.message-label-block h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.message-text {
  padding-left: 28px;
  border-left: 3px solid var(--accent);
}
.message-text p { font-size: 16px; line-height: 1.9; color: var(--muted); margin-bottom: 16px; }
.message-text p:last-child { margin-bottom: 0; }

/* ===== ÜRÜNLER ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.product-card {
  background: var(--bg2);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--trans);
}
.product-card:hover { background: var(--bg3); }
.product-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img { transform: scale(1.04); }
.product-img-wrap { overflow: hidden; position: relative; }
.product-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(11,13,18,0.85));
}
.product-body { padding: 32px; }
.product-number {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--olive2);
  margin-bottom: 10px;
}
.product-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.product-desc { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  transition: var(--trans);
}
.product-link svg { width: 16px; height: 16px; transition: transform var(--trans); }
.product-card:hover .product-link svg { transform: translateX(4px); }
.product-badge {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 1;
  padding: 4px 10px;
  background: rgba(11,13,18,0.85);
  border: 1px solid rgba(106,176,76,0.4);
  border-radius: 2px;
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

/* ===== HİZMETLER ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--olive), var(--accent));
}
.service-card:hover { border-color: rgba(106,176,76,0.2); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.service-icon {
  width: 64px; height: 64px;
  background: rgba(74,94,42,0.12);
  border: 1px solid rgba(106,176,76,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.service-icon svg { width: 28px; height: 28px; color: var(--accent); }
.service-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.service-desc { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 32px; }
.service-list { display: flex; flex-direction: column; gap: 10px; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}
.service-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ===== İLETİŞİM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 24px; }
.contact-info p { color: var(--muted); font-size: 15px; line-height: 1.9; margin-bottom: 40px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--trans);
}
.contact-item:hover { border-color: rgba(106,176,76,0.3); }
.contact-item-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(74,94,42,0.15);
  border: 1px solid rgba(106,176,76,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item-icon svg { width: 20px; height: 20px; color: var(--accent); }
.contact-item-label {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-item-value { font-size: 15px; font-weight: 500; color: var(--white); }
.contact-form {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 48px;
}
.form-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--trans);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--olive2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 44px; width: auto; margin-bottom: 20px; filter: brightness(0.9); }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.8; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--muted); transition: var(--trans); }
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: var(--muted); transition: var(--trans); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: rgba(11,13,18,0.97);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  cursor: pointer;
  padding: 8px;
  color: var(--muted);
  transition: var(--trans);
}
.mobile-menu-close:hover { color: var(--white); }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  transition: var(--trans);
}
.mobile-menu a:hover { color: var(--accent); }

/* ===== FADE-UP ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); padding-top: 24px; margin-top: 24px; }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); padding-top: 24px; margin-top: 24px; }
  .mvv-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .message-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-links, .nav-lang { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── RTL (Arabic) ── */
[dir="rtl"] .topbar-left { flex-direction: row-reverse; }
[dir="rtl"] .topbar-right { flex-direction: row-reverse; }
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero-actions { flex-direction: row-reverse; }
[dir="rtl"] .section-label { text-align: right; }
[dir="rtl"] .section-title { text-align: right; }
[dir="rtl"] .btn-primary { flex-direction: row-reverse; }
[dir="rtl"] .service-list li { padding-left: 0; padding-right: 20px; }
[dir="rtl"] .service-list li::before { left: auto; right: 0; }
[dir="rtl"] .contact-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .page-header-breadcrumb { flex-direction: row-reverse; }
[dir="rtl"] .about-features { direction: rtl; }
[dir="rtl"] .about-feature { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .mvv-card { text-align: right; }
