/* ═══════════════════════════════════════════════
   Emiroğlu Makina Theme — main.css
   ═══════════════════════════════════════════════ */

/* ─── Variables ─────────────────────────────── */
:root {
  --navy:          #0B1D35;
  --navy-mid:      #122848;
  --navy-light:    #1A3560;
  --gold:          #B8922A;
  --gold-light:    #D4AE55;
  --gold-pale:     #F0DFA8;
  --bg:            #FFFFFF;
  --bg-alt:        #F4F5F7;
  --bg-alt2:       #EAECF0;
  --text:          #111827;
  --text-mid:      #374151;
  --text-light:    #6B7280;
  --border:        #DDE1E8;
  --border-strong: #C4C9D4;
}

/* ─── Reset & Base ──────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Titillium Web', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ─── Typography ────────────────────────────── */
h1, h2, h3 { line-height: 1.15; }

/* ─── Shared Section Elements ───────────────── */
.section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.36em; color: var(--gold);
  text-transform: uppercase; display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.section-label::before { content: ''; width: 28px; height: 2px; background: var(--gold); flex-shrink: 0; }
.section-title {
  font-family: 'Titillium Web', sans-serif; font-size: clamp(30px, 3vw, 50px);
  font-weight: 300; line-height: 1.18; color: var(--text);
}
.section-title em { font-style: normal; font-weight: 600; color: var(--gold); }
.section-link {
  display: inline-flex; align-items: center; gap: 9px; color: var(--gold);
  text-decoration: none; font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-bottom: 1px solid rgba(184,146,42,0.3); padding-bottom: 3px;
  transition: all 0.2s; white-space: nowrap;
}
.section-link:hover { color: var(--navy); border-bottom-color: var(--navy); }
.section-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 56px;
}

/* ─── NAVBAR ────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  /* Needed for absolute-positioned lang-btn on mobile */
  transition: all 0.35s ease;
}
nav.scrolled {
  background: #fff;
  box-shadow: 0 2px 24px rgba(0,0,0,0.09);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px; height: 80px;
  position: relative;
}

/* Logo */
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-placeholder svg .logo-name-text { transition: fill 0.3s; }
.logo-placeholder svg .logo-tag-text  { transition: fill 0.3s; }
nav.scrolled .logo-placeholder svg .logo-name-text { fill: var(--navy); }
/* custom-logo image */
.custom-logo { height: 48px; width: auto; display: block; }

/* Nav links */
.nav-links { display: flex; align-items: center; height: 100%; gap: 0; }
.nav-links > li { position: relative; height: 80px; display: flex; align-items: center; }
.nav-links > li > a {
  padding: 0 16px; color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.2s; height: 100%; display: flex; align-items: center;
  white-space: nowrap; position: relative;
}
nav.scrolled .nav-links > li > a { color: var(--text-mid); }
.nav-links > li > a::after {
  content: ''; position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s ease;
}
.nav-links > li:hover > a { color: var(--gold-light); }
nav.scrolled .nav-links > li:hover > a { color: var(--gold); }
.nav-links > li:hover > a::after { transform: scaleX(1); }
.chevron { font-size: 10px; margin-left: 3px; opacity: 0.6; }

/* Dropdown */
.dropdown {
  position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid var(--border); border-top: 2px solid var(--gold);
  min-width: 210px; padding: 8px 0; opacity: 0; pointer-events: none;
  transform: translateY(-8px); transition: all 0.25s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1); z-index: 100;
}
.has-dropdown:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown a {
  display: block; padding: 11px 20px; color: var(--text-mid);
  font-size: 13px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  border-left: 2px solid transparent; transition: all 0.2s;
}
.dropdown a:hover { color: var(--gold); border-left-color: var(--gold); padding-left: 26px; background: #f9fafb; }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 4px; }
.nav-social {
  display: flex; align-items: center; gap: 2px; margin-right: 8px;
  border-right: 1px solid rgba(255,255,255,0.18); padding-right: 12px;
}
nav.scrolled .nav-social { border-right-color: var(--border); }
.nav-social a {
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); transition: color 0.2s;
}
nav.scrolled .nav-social a { color: var(--text-light); }
.nav-social a:hover { color: var(--gold-light); }
nav.scrolled .nav-social a:hover { color: var(--gold); }
.nav-social svg { width: 15px; height: 15px; }

/* Search */
.nav-search { position: relative; display: flex; align-items: center; }
.search-input {
  width: 0; opacity: 0; pointer-events: none; border: none;
  border-bottom: 1px solid var(--gold); background: transparent;
  color: #fff; font-family: 'Titillium Web', sans-serif;
  font-size: 12px; font-weight: 400; letter-spacing: 0.05em;
  padding: 4px 8px 4px 0; outline: none;
  transition: width 0.35s ease, opacity 0.3s ease;
}
nav.scrolled .search-input { color: var(--text); }
.search-input::placeholder { color: rgba(255,255,255,0.35); font-size: 11px; }
nav.scrolled .search-input::placeholder { color: var(--text-light); }
.search-input.open { width: 150px; opacity: 1; pointer-events: all; }
.search-btn {
  width: 32px; height: 32px; background: none; border: none;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); transition: color 0.2s;
}
nav.scrolled .search-btn { color: var(--text-light); }
.search-btn:hover, nav.scrolled .search-btn:hover { color: var(--gold); }
.search-btn svg { width: 16px; height: 16px; }

/* Language switcher */
.lang-btn {
  display: flex; align-items: center; margin-left: 6px;
  border: 1px solid rgba(255,255,255,0.22); overflow: hidden; transition: border-color 0.3s;
}
nav.scrolled .lang-btn { border-color: var(--border); }
.lang-opt {
  padding: 5px 11px; display: block; text-decoration: none;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); transition: all 0.2s;
}
nav.scrolled .lang-opt { color: var(--text-light); }
.lang-opt.active { background: var(--gold); color: #fff; }
.lang-opt:not(.active):hover { color: #fff; background: rgba(255,255,255,0.08); }
nav.scrolled .lang-opt:not(.active):hover { color: var(--navy); background: var(--bg-alt); }

/* Mobile menu btn */
.menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; margin-left: 4px;
}

.menu-btn span { width: 24px; height: 1.5px; background: #fff; display: block; transition: all 0.3s; }
nav.scrolled .menu-btn span { background: var(--text); }

/* ─── HERO ──────────────────────────────────── */
.hero { position: relative; width: 100vw; height: 100vh; min-height: 680px; overflow: hidden; }
.hero-video-col { position: absolute; inset: 0; z-index: 0; }
.hero-video-col video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-video-col::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(11,29,53,0.55) 0%, rgba(11,29,53,0.2) 50%, rgba(11,29,53,0.65) 100%);
  pointer-events: none;
}
.hero-video-col::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; z-index: 2;
  background: linear-gradient(to right, transparent 5%, var(--gold) 40%, var(--gold-light) 60%, transparent 95%);
}
.video-ctrl {
  position: absolute; bottom: 28px; left: 36px; z-index: 4;
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.3); backdrop-filter: blur(8px);
  color: #fff; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s; font-size: 13px; border-radius: 0;
}
.video-ctrl:hover { border-color: var(--gold); color: var(--gold); }
.hero-slogan {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
  background: radial-gradient(ellipse at center, rgba(11,29,53,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.hero-slogan-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 0.38em;
  color: var(--gold-light); text-transform: uppercase;
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
  opacity: 0; animation: fadeUp 0.9s 0.3s ease forwards;
}
.hero-slogan-eyebrow::before, .hero-slogan-eyebrow::after {
  content: ''; width: 40px; height: 1px; background: var(--gold-light);
}
.hero-slogan-text {
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(22px, 3.2vw, 48px); font-weight: 200; color: #fff;
  line-height: 1.22; letter-spacing: 0.01em; max-width: 860px;
  opacity: 1; /* no fadeUp — chars animate individually */
  text-shadow: 0 2px 48px rgba(0,0,0,0.5);
  word-break: keep-all;
}
.hero-slogan-text em { font-style: normal; font-weight: 600; color: var(--gold-pale); }

/* ── Typewriter character animation ── */
@keyframes twChar {
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.tw-char {
  display: inline-block;
  opacity: 0;
  animation: twChar 0.18s ease forwards;
}
.tw-space { display: inline; }
.tw-char.tw-em { color: var(--gold-pale); font-weight: 600; }
.hero-slogan-line {
  width: 56px; height: 1px; background: var(--gold);
  margin: 24px auto 0; opacity: 0; animation: fadeIn 1s 1.2s ease forwards;
}
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 1s 1.6s ease forwards;
}
.hero-scroll span {
  font-size: 9px; font-weight: 600; letter-spacing: 0.32em;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease infinite;
}

/* ─── SECTORS ───────────────────────────────── */
.sectors-section { padding: 100px 64px; background: var(--bg); }
.sectors-strip { display: flex; height: 500px; overflow: hidden; border: 1px solid var(--border); }
.sector-panel {
  position: relative; flex: 1; overflow: hidden; cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.4,0,0.2,1);
  border-right: 1px solid rgba(255,255,255,0.07);
}
.sector-panel:last-child { border-right: none; }
.sectors-strip:hover .sector-panel { flex: 0.55; }
.sectors-strip .sector-panel:hover { flex: 3.2; }
.sector-panel-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.7s ease; filter: brightness(0.38) saturate(0.65);
}
.sector-panel:hover .sector-panel-bg { transform: scale(1.04); filter: brightness(0.5) saturate(0.8); }
.sector-panel::before {
  content: ''; position: absolute; top: 15%; left: 0; bottom: 15%;
  width: 2px; z-index: 2;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.sector-panel:hover::before { opacity: 1; }
.sector-panel::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 65%;
  background: linear-gradient(to top, rgba(11,29,53,0.92) 0%, transparent 100%); z-index: 2;
}
.sector-collapsed-label {
  position: absolute; bottom: 36px; left: 0; right: 0;
  display: flex; justify-content: center; align-items: center; z-index: 3;
  transition: opacity 0.3s;
}
.sector-collapsed-label span {
  font-size: 13px; font-weight: 700; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.5); text-transform: uppercase;
  writing-mode: vertical-rl; transform: rotate(180deg); white-space: nowrap;
}
.sector-panel:hover .sector-collapsed-label { opacity: 0; pointer-events: none; }
.sector-panel-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 0 38px 42px;
  z-index: 3; opacity: 0; transform: translateY(14px);
  transition: opacity 0.4s 0.12s, transform 0.4s 0.12s;
}
.sector-panel:hover .sector-panel-content { opacity: 1; transform: translateY(0); }
.sector-panel-icon {
  width: 46px; height: 46px; border: 1.5px solid rgba(184,146,42,0.5);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  background: rgba(0,0,0,0.25);
}
.sector-panel-icon svg { width: 19px; height: 19px; color: var(--gold-light); }
.sector-panel-num { font-size: 12px; font-weight: 700; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; margin-bottom: 6px; }
.sector-panel-title { font-family: 'Titillium Web', sans-serif; font-size: 32px; font-weight: 400; color: #fff; line-height: 1.15; margin-bottom: 10px; }
.sector-panel-desc { font-size: 16px; color: rgba(255,255,255,0.58); line-height: 1.7; font-weight: 300; max-width: 260px; }
.sector-panel-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  color: var(--gold-light); font-size: 13px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none;
  border-bottom: 1px solid rgba(212,174,85,0.3); padding-bottom: 2px; transition: all 0.2s;
}
.sector-panel-link:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.4); }

/* ─── VISION & MISSION ──────────────────────── */
.vm-section {
  padding: 110px 64px; background: var(--navy); position: relative; overflow: hidden;
}
.vm-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, transparent, var(--gold) 40%, var(--gold-light) 60%, transparent);
}
.vm-section::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(184,146,42,0.04) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(184,146,42,0.04) 1px,transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.vm-grid {
  display: grid; grid-template-columns: 1fr 1px 1fr;
  gap: 0 64px; align-items: start; position: relative; z-index: 1;
}
.vm-divider { background: rgba(255,255,255,0.08); align-self: stretch; }
.vm-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.38em; color: var(--gold);
  text-transform: uppercase; display: flex; align-items: center; gap: 12px; margin-bottom: 22px;
}
.vm-label::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
.vm-title {
  font-family: 'Titillium Web', sans-serif; font-size: clamp(28px, 3vw, 46px);
  font-weight: 300; color: #fff; line-height: 1.15; margin-bottom: 24px;
}
.vm-title em { font-style: normal; font-weight: 600; color: var(--gold-pale); }
.vm-text { font-size: 14.5px; font-weight: 300; color: rgba(255,255,255,0.62); line-height: 1.85; }
.vm-text strong { color: rgba(255,255,255,0.88); font-weight: 600; }

/* ─── STATS ─────────────────────────────────── */
.stats-section { background: var(--navy); position: relative; }
.stats-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, transparent, var(--gold) 40%, var(--gold-light) 60%, transparent);
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-card {
  padding: 64px 48px; position: relative; overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.07); transition: background 0.3s;
}
.stat-card:last-child { border-right: none; }
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.45s ease;
}
.stat-card:hover { background: rgba(255,255,255,0.04); }
.stat-card:hover::before { transform: scaleX(1); }
.stat-number {
  font-family: 'Titillium Web', sans-serif; font-size: 72px; font-weight: 700; color: #fff;
  line-height: 1; display: flex; align-items: baseline; gap: 4px;
}
.stat-unit { font-size: 36px; font-weight: 300; color: var(--gold-light); }
.stat-label {
  margin-top: 16px; font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); line-height: 1.5;
}

/* ─── CORE VALUES ───────────────────────────── */
.values-section { padding: 100px 64px; background: var(--bg); }
.values-header { text-align: center; margin-bottom: 64px; }
.values-header .section-label { justify-content: center; }
.values-header .section-title { font-size: clamp(28px, 3vw, 46px); }
.values-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; }
.value-card {
  background: var(--bg-alt); padding: 42px 28px 38px;
  position: relative; overflow: hidden; transition: background 0.3s, transform 0.3s;
}
.value-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.35s ease;
}
.value-card:hover { background: var(--bg-alt2); transform: translateY(-5px); }
.value-card:hover::before { transform: scaleX(1); }
.value-icon {
  width: 54px; height: 54px; border: 1.5px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 26px; transition: all 0.3s; background: var(--bg);
}
.value-card:hover .value-icon { border-color: var(--gold); background: rgba(184,146,42,0.06); }
.value-icon svg { width: 21px; height: 21px; color: var(--gold); transition: color 0.3s; }
.value-num { font-size: 11px; font-weight: 700; letter-spacing: 0.28em; color: var(--gold); opacity: 0.5; margin-bottom: 10px; }
.value-title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 12px; line-height: 1.3; }
.value-text { font-size: 14px; color: var(--text-light); line-height: 1.75; font-weight: 300; }

/* ─── NEWS ──────────────────────────────────── */
.news-section { padding: 100px 64px; background: var(--bg-alt); }
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.news-card { background: var(--bg); overflow: hidden; border: 1px solid var(--border); transition: box-shadow 0.3s, transform 0.3s; }
.news-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.09); transform: translateY(-4px); }
.news-img { height: 210px; position: relative; overflow: hidden; background: var(--bg-alt2); }
.news-img-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.news-card:hover .news-img-bg { transform: scale(1.08); }
.news-cat { position: absolute; top: 14px; left: 14px; padding: 4px 11px; background: var(--navy); color: #fff; font-size: 9.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.news-body { padding: 26px; }
.news-date { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; color: var(--text-light); text-transform: uppercase; margin-bottom: 9px; }
.news-title { font-size: 17px; font-weight: 700; color: var(--text); line-height: 1.35; margin-bottom: 10px; }
.news-title a { color: inherit; }
.news-title a:hover { color: var(--gold); }
.news-excerpt { font-size: 13px; color: var(--text-light); line-height: 1.7; font-weight: 300; }
.news-more { display: flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.news-more::after { content: '→'; font-size: 13px; }
.news-more:hover { color: var(--navy); }

/* ─── FOOTER ────────────────────────────────── */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 80px 64px 36px; }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(4,1fr); gap: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--border); }
.footer-logo-name { font-size: 21px; font-weight: 700; letter-spacing: 0.06em; color: var(--navy); text-transform: uppercase; }
.footer-desc { font-size: 15px; font-weight: 300; color: var(--text-light); line-height: 1.8; margin-top: 14px; margin-bottom: 26px; }
.footer-social { display: flex; gap: 8px; }
.social-btn { width: 34px; height: 34px; border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; color: var(--text-light); transition: all 0.3s; }
.social-btn svg { width: 15px; height: 15px; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 0.28em; color: var(--navy); text-transform: uppercase; margin-bottom: 20px; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: var(--text-light); font-size: 15px; font-weight: 300; transition: all 0.2s; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-bottom { padding-top: 26px; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 14px; font-weight: 300; color: var(--text-light); }
.footer-copy span { color: var(--navy); font-weight: 700; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 13px; font-weight: 300; color: var(--text-light); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ─── SECTOR INNER PAGE ─────────────────────── */
.sector-hero {
  min-height: 520px; position: relative; display: flex; align-items: flex-end;
  background-size: cover; background-position: center; padding-top: 80px;
}
.sector-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,29,53,0.88) 0%, rgba(11,29,53,0.3) 60%, rgba(11,29,53,0.45) 100%);
}
.sector-hero-content { position: relative; z-index: 2; padding: 0 64px 64px; }
.sector-hero-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.36em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 16px;
}
.sector-hero-label svg { width: 18px; height: 18px; }
.sector-hero-title {
  font-family: 'Titillium Web', sans-serif; font-size: clamp(36px, 5vw, 72px);
  font-weight: 400; color: #fff; line-height: 1.1; max-width: 700px;
}
.sector-hero-subtitle {
  font-size: 18px; font-weight: 300; color: var(--gold-light);
  margin-top: 12px; letter-spacing: 0.05em;
}
.sector-hero-bottom-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px; z-index: 3;
  background: linear-gradient(to right, transparent, var(--gold) 40%, var(--gold-light) 60%, transparent);
}

.sector-back-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.sector-back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); transition: all 0.2s;
}
.sector-back-link:hover { color: var(--navy); gap: 12px; }
.sector-content-blocks { display: flex; flex-direction: column; gap: 22px; margin-bottom: 48px; }
.sector-body-text {
  font-size: 17px; font-weight: 300; color: var(--text-mid);
  line-height: 1.9;
}
.sector-body-text strong { color: var(--navy); font-weight: 700; }
.sector-areas { margin-bottom: 48px; }
.sector-areas-title {
  font-family: 'Titillium Web', sans-serif; font-size: 22px; font-weight: 400;
  color: var(--navy); margin-bottom: 20px;
}
.sector-areas-list { display: flex; flex-direction: column; gap: 10px; }
.sector-areas-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; font-weight: 400; color: var(--text-mid); line-height: 1.5;
}
.sector-areas-list li::before {
  content: ''; width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; flex-shrink: 0; margin-top: 6px;
}
.sector-ext-link-wrap { margin-bottom: 48px; }
.sector-ext-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px; background: var(--navy); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  transition: background 0.3s;
}
.sector-ext-btn:hover { background: var(--gold); }
.sector-secondary-img { margin-top: 56px; }
.sector-secondary-img img { width: 100%; height: 480px; object-fit: cover; }

/* ─── Generic Page ──────────────────────────── */
.page-main { padding: 140px 64px 100px; min-height: 60vh; }
.page-inner { max-width: 900px; margin: 0 auto; }
.page-title { font-family: 'Titillium Web', sans-serif; font-size: 48px; font-weight: 400; color: var(--navy); margin-bottom: 32px; }
.page-content { font-size: 15px; line-height: 1.85; color: var(--text-mid); }

/* ─── Animations ─────────────────────────────── */
@keyframes fadeUp { from{opacity:0;transform:translateY(26px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn  { from{opacity:0} to{opacity:1} }
@keyframes scrollPulse {
  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}
}

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 1280px) {
  .nav-inner, .sectors-section, .vm-section, .values-section, .news-section, footer { padding-left: 40px; padding-right: 40px; }
  .values-grid { grid-template-columns: repeat(3,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 36px; }
}
@media (max-width: 1024px) {
  /* ── MOBILE HEADER: logo left + burger right ── */
  nav { }  /* keep transparent/scrolled as-is */

  .nav-inner {
    display: flex;
    align-items: center;
    height: 68px;
    padding: 0;
    position: relative;
  }

  /* Logo: left with padding */
  .logo {
    flex-shrink: 0;
    padding-left: 20px;
  }

  /* Hide desktop-only items */
  .nav-social { display: none !important; }
  .nav-search { display: none !important; }

  /* Nav-right: pushed to far right */
  .nav-right {
    display: flex !important;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    padding-right: 16px;
  }

  /* Lang btn always visible */
  .lang-btn {
    display: flex !important;
    position: static;
    transform: none;
    margin: 0;
    border: 1px solid rgba(255,255,255,0.65);
  }
  .lang-opt { color: rgba(255,255,255,0.95); }
  .lang-opt.active { background: var(--gold); color: #fff; }

  /* Burger always visible */
  .menu-btn {
    display: flex !important;
  }
  .menu-btn span { background: #fff; }

  /* Scrolled state */
  nav.scrolled .lang-btn { border-color: var(--border); }
  nav.scrolled .lang-opt { color: var(--text-light); }
  nav.scrolled .menu-btn span { background: var(--navy); }

  /* Logos */
  .site-logo--default  { display: block !important; opacity: 1; }
  .site-logo--scrolled { display: none  !important; }
  nav.scrolled .site-logo--default  { display: none  !important; }
  nav.scrolled .site-logo--scrolled { display: block !important; opacity: 1; }

  /* Drawer links white */
  .nav-links > li > a,
  nav.scrolled .nav-links > li > a { color: #fff !important; }

  /* Section padding */
  .sectors-section, .vm-section, .values-section, .news-section, .stats-section, footer { padding-left: 24px; padding-right: 24px; }
  .stat-card { padding: 40px 28px; }
  .stat-number { font-size: 52px; }
  .stat-unit { font-size: 26px; }
}
@media (max-width: 768px) {
  .hero-slogan-text { font-size: clamp(18px, 5.5vw, 32px); max-width: 92vw; }
  /* French text is longer — reduce further on mobile */
  html[lang="fr"] .hero-slogan-text { font-size: clamp(15px, 4.5vw, 27px); }
  .sectors-strip { flex-direction: column; height: auto; }
  .sector-panel { flex: none !important; height: 220px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .sector-collapsed-label { display: none; }
  .sector-panel-content { opacity: 1; transform: none; padding: 0 22px 26px; }
  .sector-panel-title { font-size: 20px; }
  .sector-panel-desc { display: none; }
  .vm-grid { grid-template-columns: 1fr; gap: 48px 0; }
  .vm-divider { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .section-header { flex-direction: column; gap: 14px; }
  .sector-hero-content { padding: 0 24px 48px; }
  
  .page-main { padding: 100px 24px 60px; }
}

/* ─── Mobile Side Drawer ─────────────────────── */
/* These elements only exist inside the mobile drawer — hide on desktop */
.nav-drawer-header { display: none; }
.nav-close-btn     { display: none; }

/* Overlay behind drawer */
.nav-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
  opacity: 0; transition: opacity 0.35s ease;
}
.nav-overlay.open { display: block; opacity: 1; }

/* Side drawer */
.nav-links {
  /* desktop styles preserved */
}
@media (max-width: 1024px) {
  .nav-links {
    display: flex;
    position: fixed;
    top: 0; right: -320px; bottom: 0;
    width: 300px;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 40px;
    z-index: 999;
    overflow-y: auto;
    gap: 0;
    transition: right 0.38s cubic-bezier(0.4,0,0.2,1);
    border-left: 3px solid var(--gold);
    box-shadow: -8px 0 40px rgba(0,0,0,0.35);
  }
  .nav-links.mobile-open {
    right: 0;
  }
  .nav-links > li {
    height: auto; width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-direction: column; align-items: stretch;
  }
  .nav-links > li > a {
    padding: 15px 28px; color: #fff;
    font-size: 14px; font-weight: 700; height: auto; display: flex;
    justify-content: space-between; align-items: center;
    letter-spacing: 0.04em;
  }
  .nav-links > li > a:hover { color: var(--gold-light); background: rgba(255,255,255,0.04); }
  .nav-links > li > a::after { display: none; }
  .nav-links .has-dropdown.open > a { color: var(--gold); }
  .nav-links .dropdown {
    position: static; opacity: 1; pointer-events: all;
    transform: none; box-shadow: none; border: none;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.03);
    padding: 4px 0 10px; display: none;
  }
  .nav-links .has-dropdown.open .dropdown { display: block; }
  .nav-links .dropdown a {
    color: rgba(255,255,255,0.6); font-size: 12px;
    padding: 10px 40px; border-left: none;
  }
  .nav-links .dropdown a:hover { color: var(--gold-light); background: rgba(255,255,255,0.04); padding-left: 48px; }
  /* Mobile drawer header — logo + close btn */
  .nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 8px;
    width: 100%;
    box-sizing: border-box;
  }
  .nav-drawer-logo { display: flex; align-items: center; }
  .nav-close-btn {
    display: flex;
    width: 36px; height: 36px; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    cursor: pointer; color: rgba(255,255,255,0.7); font-size: 18px;
    transition: all 0.2s; flex-shrink: 0;
  }
  .nav-close-btn:hover { color: #fff; background: rgba(255,255,255,0.15); }
}
/* Hamburger — animated to X */
.menu-btn.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════ */
.contact-hero {
  min-height: 320px; background: var(--navy); display: flex; align-items: flex-end;
  padding: 80px 64px 60px; position: relative; overflow: hidden;
}
.contact-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(184,146,42,0.04) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(184,146,42,0.04) 1px,transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.contact-hero-inner { position: relative; z-index: 1; }
.contact-hero-title {
  font-family: 'Titillium Web', sans-serif; font-size: clamp(36px, 5vw, 64px);
  font-weight: 400; color: #fff; line-height: 1.1; margin-bottom: 14px;
}
.contact-hero-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.55); max-width: 560px; }
.contact-hero-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, transparent, var(--gold) 40%, var(--gold-light) 60%, transparent);
}

.contact-section { padding: 80px 64px 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 64px; max-width: 1200px; margin: 0 auto; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 0; }
.cf-row { display: flex; gap: 20px; margin-bottom: 24px; width: 100%; }
.cf-two { }
.cf-two .cf-field { flex: 1; min-width: 0; }
.cf-submit-row { margin-top: 8px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.cf-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mid);
}
.cf-req { color: var(--gold); }
.cf-input {
  padding: 13px 16px; border: 1px solid var(--border);
  background: var(--bg); color: var(--text);
  font-family: 'Titillium Web', sans-serif; font-size: 14px; font-weight: 300;
  outline: none; transition: border-color 0.25s, box-shadow 0.25s;
  border-radius: 0; -webkit-appearance: none; appearance: none;
}
.cf-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,146,42,0.12); }
.cf-invalid { border-color: #dc2626 !important; }
.cf-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.cf-textarea { resize: vertical; min-height: 140px; }
.cf-error { font-size: 11.5px; color: #dc2626; font-weight: 400; display: none; margin-top: 2px; }

.cf-submit {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 36px; background: var(--navy); color: #fff; border: none;
  font-family: 'Titillium Web', sans-serif; font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer;
  transition: background 0.3s;
}
.cf-submit:hover { background: var(--gold); }
.cf-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.cf-status {
  display: flex; align-items: flex-start; gap: 10px; padding: 14px 18px;
  font-size: 14px; font-weight: 400; margin-top: 16px;
}
.cf-status[hidden] { display: none; }
.cf-success { background: rgba(21,128,61,0.08); border: 1px solid rgba(21,128,61,0.25); color: #15803d; }
.cf-error-msg { background: rgba(220,38,38,0.06); border: 1px solid rgba(220,38,38,0.2); color: #dc2626; }

/* Info panel */
.contact-info-card { background: var(--bg-alt); padding: 40px 36px; border-top: 3px solid var(--gold); }
.contact-info-title { font-family: 'Titillium Web', sans-serif; font-size: 22px; font-weight: 400; color: var(--navy); margin-bottom: 32px; }
.contact-info-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-icon { width: 38px; height: 38px; border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 16px; height: 16px; color: var(--gold); }
.contact-info-label { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.contact-info-value { font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.5; display: block; }
a.contact-info-value:hover { color: var(--gold); }
.contact-social-icons { display: flex; gap: 8px; margin-top: 10px; }
.contact-social-icons a { width: 36px; height: 36px; border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; color: var(--text-light); transition: all 0.25s; }
.contact-social-icons a svg { width: 15px; height: 15px; }
.contact-social-icons a:hover { border-color: var(--gold); color: var(--gold); }

/* ═══════════════════════════════════════════════
   NEWS ARCHIVE
   ═══════════════════════════════════════════════ */
.archive-hero {
  min-height: 280px; background: var(--navy); display: flex; align-items: flex-end;
  padding: 80px 64px 56px; position: relative; overflow: hidden;
}
.archive-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(184,146,42,0.04) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(184,146,42,0.04) 1px,transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.archive-hero-inner { position: relative; z-index: 1; }
.archive-hero-title { font-family: 'Titillium Web', sans-serif; font-size: clamp(32px, 4vw, 56px); font-weight: 400; color: #fff; line-height: 1.1; margin-bottom: 10px; }
.archive-hero-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.5); }
.archive-hero-line { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, transparent, var(--gold) 40%, var(--gold-light) 60%, transparent); }

.news-archive-section { padding: 80px 64px 100px; }
.news-archive-inner { max-width: 1200px; margin: 0 auto; }
.news-archive-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 56px; }

.news-pagination { display: flex; justify-content: center; gap: 4px; flex-wrap: wrap; }
.news-pagination a, .news-pagination span {
  display: flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 10px;
  font-size: 12px; font-weight: 600; border: 1px solid var(--border);
  color: var(--text-mid); transition: all 0.2s;
}
.news-pagination a:hover { border-color: var(--gold); color: var(--gold); }
.news-pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }
.news-empty { padding: 60px 0; text-align: center; color: var(--text-light); font-size: 15px; }
.news-card-link { display: block; }

/* ═══════════════════════════════════════════════
   SINGLE NEWS ARTICLE
   ═══════════════════════════════════════════════ */
.article-hero {
  min-height: 460px; position: relative; display: flex; align-items: flex-end;
  background-size: cover; background-position: center; padding-top: 80px;
}
.article-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,29,53,0.88) 0%, rgba(11,29,53,0.3) 60%, rgba(11,29,53,0.45) 100%); }
.article-hero-content { position: relative; z-index: 2; padding: 0 64px 60px; max-width: 900px; }
.article-hero-cat {
  display: inline-block; padding: 4px 12px; background: var(--gold); color: #fff;
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 18px;
}
.article-hero-title { font-family: 'Titillium Web', sans-serif; font-size: clamp(28px, 4vw, 56px); font-weight: 400; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.article-hero-meta { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.5); }
.article-meta-sep { margin: 0 8px; }
.article-hero-line { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, transparent, var(--gold) 40%, var(--gold-light) 60%, transparent); }

.article-section { padding: 80px 64px 80px; }
.article-inner { max-width: 780px; margin: 0 auto; }
.article-content { font-size: 16px; line-height: 1.85; color: var(--text-mid); font-weight: 300; margin-bottom: 56px; }
.article-content h2, .article-content h3 { font-family: 'Titillium Web', sans-serif; color: var(--navy); margin: 2em 0 0.75em; font-weight: 400; }
.article-content h2 { font-size: 28px; }
.article-content h3 { font-size: 22px; }
.article-content p { margin-bottom: 1.4em; }
.article-content strong { color: var(--navy); font-weight: 700; }
.article-content a { color: var(--gold); border-bottom: 1px solid rgba(184,146,42,0.3); }
.article-content a:hover { border-bottom-color: var(--gold); }
.article-content img { width: 100%; height: auto; margin: 2em 0; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 1.4em; }
.article-content li { margin-bottom: 0.5em; }
.article-content blockquote { border-left: 3px solid var(--gold); padding: 16px 24px; margin: 2em 0; font-family: 'Titillium Web', sans-serif; font-size: 20px; font-style: italic; color: var(--navy); background: var(--bg-alt); }

.article-share { display: flex; align-items: center; gap: 16px; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.article-share-label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); }
.article-share-links { display: flex; gap: 8px; }
.article-share-links a, .share-copy-btn {
  width: 36px; height: 36px; border: 1px solid var(--border); background: none;
  display: flex; align-items: center; justify-content: center; color: var(--text-light);
  transition: all 0.25s; cursor: pointer;
}
.article-share-links a svg, .share-copy-btn svg { width: 15px; height: 15px; }
.article-share-links a:hover, .share-copy-btn:hover { border-color: var(--gold); color: var(--gold); }

.related-news-section { padding: 60px 64px 80px; background: var(--bg-alt); }
.related-news-inner { max-width: 1200px; margin: 0 auto; }
.related-news-title { font-family: 'Titillium Web', sans-serif; font-size: 28px; font-weight: 400; color: var(--navy); margin-bottom: 36px; }

/* ═══════════════════════════════════════════════
   RESPONSIVE ADDITIONS
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-section, .news-archive-section, .article-section, .related-news-section { padding-left: 40px; padding-right: 40px; }
  .contact-hero, .archive-hero { padding-left: 40px; padding-right: 40px; }
  .article-hero-content { padding-left: 40px; padding-right: 40px; }
  .news-archive-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .contact-section, .news-archive-section, .article-section, .related-news-section { padding: 48px 20px; }
  .contact-hero, .archive-hero { padding: 80px 20px 48px; }
  .article-hero-content { padding: 0 20px 40px; }
  .cf-row.cf-two { flex-direction: column; gap: 0; }
  .news-archive-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════════════ */
.error-404-section {
  min-height: 80vh; display: flex; align-items: center;
  padding: 120px 64px 80px; background: var(--bg);
}
.error-404-inner { max-width: 900px; margin: 0 auto; width: 100%; position: relative; }
.error-404-code {
  font-family: 'Titillium Web', sans-serif; font-size: clamp(120px, 20vw, 220px);
  font-weight: 400; color: var(--bg-alt2); line-height: 1;
  position: absolute; top: -40px; right: 0; z-index: 0;
  user-select: none; letter-spacing: -0.04em;
}
.error-404-content { position: relative; z-index: 1; margin-bottom: 64px; }
.error-404-title {
  font-family: 'Titillium Web', sans-serif; font-size: clamp(32px, 4vw, 56px);
  font-weight: 400; color: var(--navy); line-height: 1.15; margin-bottom: 16px;
}
.error-404-text { font-size: 15px; font-weight: 300; color: var(--text-light); max-width: 480px; line-height: 1.7; margin-bottom: 32px; }
.error-404-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-navy {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px; background: var(--navy); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  transition: background 0.3s; text-decoration: none;
}
.btn-navy:hover { background: var(--gold); color: #fff; }
.btn-outline-navy {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px; border: 1px solid var(--navy); color: var(--navy);
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  transition: all 0.3s; text-decoration: none; background: transparent;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

.error-404-sectors { margin-top: 16px; }
.error-404-sectors-label { font-size: 10px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-light); margin-bottom: 20px; }
.error-404-sectors-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.error-sector-link {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px;
  background: var(--bg-alt); color: var(--text-mid);
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  transition: all 0.25s; text-decoration: none; border-bottom: 2px solid transparent;
}
.error-sector-link:hover { background: var(--navy); color: #fff; border-bottom-color: var(--gold); }
.error-sector-link:hover .error-sector-icon svg { color: var(--gold-light); }
.error-sector-icon { width: 20px; height: 20px; flex-shrink: 0; }
.error-sector-icon svg { width: 16px; height: 16px; color: var(--gold); }

/* ═══════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════ */
.about-hero {
  min-height: 340px; background: var(--navy); display: flex; align-items: flex-end;
  padding: 80px 64px 60px; position: relative; overflow: hidden;
}
.about-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(184,146,42,0.04) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(184,146,42,0.04) 1px,transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.about-hero-inner { position: relative; z-index: 1; }
.about-hero-title {
  font-family: 'Titillium Web', sans-serif; font-size: clamp(36px, 5vw, 68px);
  font-weight: 400; color: #fff; line-height: 1.1;
}
.about-hero-title em { font-style: normal; font-weight: 600; color: var(--gold-pale); }
.about-hero-line { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, transparent, var(--gold) 40%, var(--gold-light) 60%, transparent); }

.about-intro-section { padding: 80px 64px; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 300px; gap: 80px; align-items: start; max-width: 1200px; margin: 0 auto; }
.about-intro-text { font-size: 15px; line-height: 1.85; font-weight: 300; color: var(--text-mid); }
.about-intro-text p { margin-bottom: 1.4em; }
.about-intro-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.about-stat { background: var(--bg-alt); padding: 28px 24px; }
.about-stat-num { font-family: 'Titillium Web', sans-serif; font-size: 42px; font-weight: 400; color: var(--navy); line-height: 1; }
.about-stat-label { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); margin-top: 8px; line-height: 1.4; }

.about-sectors-section { padding: 80px 64px 100px; background: var(--bg-alt); }
.about-sectors-inner { max-width: 1200px; margin: 0 auto; }
.about-sectors-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.about-sector-card {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 16px;
  padding: 22px 24px; background: var(--bg); text-decoration: none;
  color: var(--text-mid); border-bottom: 2px solid transparent;
  transition: all 0.3s;
}
.about-sector-card:hover { background: var(--navy); color: #fff; border-bottom-color: var(--gold); }
.about-sector-num { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--gold); opacity: 0.6; }
.about-sector-icon { width: 36px; height: 36px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.about-sector-card:hover .about-sector-icon { border-color: var(--gold); }
.about-sector-icon svg { width: 16px; height: 16px; color: var(--gold); }
.about-sector-name { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.about-sector-arrow { font-size: 16px; opacity: 0; transition: opacity 0.3s, transform 0.3s; }
.about-sector-card:hover .about-sector-arrow { opacity: 1; transform: translateX(4px); }

/* ═══════════════════════════════════════════════
   SEARCH RESULTS
   ═══════════════════════════════════════════════ */
.search-results-section { padding: 80px 64px 100px; }
.search-results-inner { max-width: 900px; margin: 0 auto; }
.search-results-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 48px; }
.search-result-item {
  display: grid; grid-template-columns: 180px 1fr;
  gap: 0; border-bottom: 1px solid var(--border);
  transition: background 0.25s;
}
.search-result-item:first-child { border-top: 1px solid var(--border); }
.search-result-item:hover { background: var(--bg-alt); }
.search-result-thumb { height: 140px; overflow: hidden; }
.search-result-thumb-bg { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.5s; }
.search-result-item:hover .search-result-thumb-bg { transform: scale(1.05); }
.search-result-body { padding: 24px 28px; display: flex; flex-direction: column; justify-content: center; }
.search-result-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.search-result-type { font-size: 9.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; background: var(--navy); color: #fff; padding: 3px 9px; }
.search-result-date { font-size: 10px; font-weight: 300; color: var(--text-light); }
.search-result-title { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.search-result-title a { color: inherit; }
.search-result-title a:hover { color: var(--gold); }
.search-result-excerpt { font-size: 13px; font-weight: 300; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }
.search-result-link { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.search-result-link:hover { color: var(--navy); }
.search-no-results { padding: 60px 0; color: var(--text-light); font-size: 15px; }

/* ═══════════════════════════════════════════════
   RESPONSIVE ADDITIONS v1.1
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-intro-stats { grid-template-columns: repeat(4,1fr); }
  .about-sectors-grid { grid-template-columns: repeat(2,1fr); }
  .error-404-sectors-grid { grid-template-columns: repeat(2,1fr); }
  .about-intro-section, .about-sectors-section { padding-left: 40px; padding-right: 40px; }
  .about-hero { padding-left: 40px; padding-right: 40px; }
  .error-404-section { padding-left: 40px; padding-right: 40px; }
  .search-results-section { padding-left: 40px; padding-right: 40px; }
}
@media (max-width: 768px) {
  .about-intro-stats { grid-template-columns: repeat(2,1fr); }
  .about-sectors-grid { grid-template-columns: 1fr; }
  .error-404-code { display: none; }
  .error-404-section { padding: 80px 20px 60px; }
  .error-404-sectors-grid { grid-template-columns: 1fr 1fr; }
  .about-intro-section, .about-sectors-section { padding: 60px 20px; }
  .about-hero { padding: 80px 20px 48px; }
  .search-results-section { padding: 60px 20px; }
  .search-result-item { grid-template-columns: 1fr; }
  .search-result-thumb { height: 180px; }
}

/* ═══════════════════════════════════════════════
   INNER HERO (shared: about, partners, etc.)
   ═══════════════════════════════════════════════ */
.inner-hero {
  min-height: 320px; background: var(--navy);
  display: flex; align-items: flex-end;
  padding: 80px 64px 60px; position: relative; overflow: hidden;
}
.inner-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(184,146,42,0.04) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(184,146,42,0.04) 1px,transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.inner-hero-content { position: relative; z-index: 1; }
.inner-hero-title {
  font-family: 'Titillium Web', sans-serif; font-size: clamp(36px, 5vw, 64px);
  font-weight: 400; color: #fff; line-height: 1.1; margin-bottom: 14px;
}
.inner-hero-title em { font-style: normal; font-weight: 600; color: var(--gold-pale); }
.inner-hero-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.55); max-width: 600px; line-height: 1.7; }
.inner-hero-line { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, transparent, var(--gold) 40%, var(--gold-light) 60%, transparent); }

/* ═══════════════════════════════════════════════
   PARTNERS PAGE
   ═══════════════════════════════════════════════ */
.partners-section { padding: 80px 64px 100px; background: var(--bg); }
.partners-inner { max-width: 1200px; margin: 0 auto; }
.group-companies-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-bottom: 60px; }
.group-company-card {
  background: var(--bg-alt); padding: 40px 36px;
  border-top: 3px solid transparent; transition: border-color 0.3s, background 0.3s;
}
.group-company-card:hover { border-top-color: var(--gold); background: var(--bg-alt2); }
.gc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.gc-sector-tag {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--navy); color: #fff; padding: 4px 10px;
}
.gc-icon { width: 36px; height: 36px; border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; }
.gc-icon svg { width: 16px; height: 16px; color: var(--gold); }
.gc-name { font-family: 'Titillium Web', sans-serif; font-size: 24px; font-weight: 400; color: var(--navy); margin-bottom: 14px; }
.gc-desc { font-size: 13.5px; font-weight: 300; color: var(--text-light); line-height: 1.75; margin-bottom: 22px; }
.gc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid rgba(184,146,42,0.3); padding-bottom: 2px;
  transition: all 0.2s;
}
.gc-link:hover { color: var(--navy); border-bottom-color: var(--navy); }
.partners-page-content { margin-top: 48px; font-size: 15px; font-weight: 300; color: var(--text-mid); line-height: 1.85; }
.partners-page-content p { margin-bottom: 1.4em; }

/* ═══════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════ */
.cta-banner {
  background: var(--navy); padding: 80px 64px; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, transparent, var(--gold) 40%, var(--gold-light) 60%, transparent);
}
.cta-banner::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(184,146,42,0.04) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(184,146,42,0.04) 1px,transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.cta-banner-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; position: relative; z-index: 1; max-width: 1200px; margin: 0 auto;
}
.cta-banner-title {
  font-family: 'Titillium Web', sans-serif; font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400; color: #fff; line-height: 1.15; margin-bottom: 12px;
}
.cta-banner-title em { font-style: normal; font-weight: 600; color: var(--gold-pale); }
.cta-banner-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.55); max-width: 480px; line-height: 1.7; }
.cta-banner-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.cta-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; background: var(--gold); color: #fff; text-decoration: none;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  transition: background 0.3s;
}
.cta-btn-primary:hover { background: var(--gold-light); color: #fff; }
.cta-btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.75);
  text-decoration: none; font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; transition: all 0.3s;
}
.cta-btn-outline:hover { border-color: #fff; color: #fff; }

/* ═══════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ═══════════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--navy); border-top: 2px solid var(--gold);
  padding: 18px 64px;
  transform: translateY(0); opacity: 1;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-banner--hide { transform: translateY(100%); opacity: 0; }
.cookie-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; max-width: 1200px; margin: 0 auto; }
.cookie-banner-text p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.5; }
.cookie-banner-text a { color: var(--gold-light); border-bottom: 1px solid rgba(212,174,85,0.3); }
.cookie-banner-text a:hover { color: #fff; }
.cookie-banner-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn-accept {
  padding: 9px 22px; background: var(--gold); color: #fff; border: none; cursor: pointer;
  font-family: 'Titillium Web', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; transition: background 0.2s;
}
.cookie-btn-accept:hover { background: var(--gold-light); }
.cookie-btn-decline {
  padding: 9px 18px; background: none; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer; font-family: 'Titillium Web', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; transition: all 0.2s;
}
.cookie-btn-decline:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

/* ═══════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════ */
@media print {
  nav, footer, .cookie-banner, .cta-banner, .video-ctrl,
  .hero-scroll, .article-share, .related-news-section { display: none !important; }
  .hero, .sector-hero, .article-hero { min-height: auto !important; }
  .hero-video-col { display: none; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
  .article-content { font-size: 12pt; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE ADDITIONS v1.2
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .inner-hero, .partners-section, .cta-banner { padding-left: 40px; padding-right: 40px; }
  .group-companies-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
}
@media (max-width: 768px) {
  .inner-hero, .partners-section, .cta-banner { padding: 60px 20px; }
  .group-companies-grid { grid-template-columns: 1fr; }
  .cookie-banner { padding: 16px 20px; }
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-banner-actions { width: 100%; }
  .cta-btn-primary, .cta-btn-outline { flex: 1; justify-content: center; }
}

/* ═══════════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════════ */
.legal-section { padding: 80px 64px 100px; }
.legal-inner { max-width: 820px; margin: 0 auto; }
.legal-content { font-size: 15px; line-height: 1.85; color: var(--text-mid); font-weight: 300; margin-bottom: 48px; }
.legal-content h2 { font-family: 'Titillium Web', sans-serif; font-size: 32px; font-weight: 400; color: var(--navy); margin: 0 0 24px; }
.legal-content h3 { font-family: 'Titillium Web', sans-serif; font-size: 22px; font-weight: 400; color: var(--navy); margin: 36px 0 12px; }
.legal-content p { margin-bottom: 1.4em; }
.legal-content ul, .legal-content ol { padding-left: 24px; margin-bottom: 1.4em; }
.legal-content li { margin-bottom: 0.5em; }
.legal-content strong { color: var(--navy); font-weight: 700; }
.legal-content a { color: var(--gold); border-bottom: 1px solid rgba(184,146,42,0.3); }
.legal-content a:hover { color: var(--navy); }
.legal-back { padding-top: 32px; border-top: 1px solid var(--border); }
@media (max-width: 768px) {
  .legal-section { padding: 48px 20px 60px; }
}

/* ─── Site Logo (language-specific PNG) ─────────── */
.site-logo {
  height: 51px;
  width: auto;
  max-width: 320px;
  display: block;
  object-fit: contain;
}
/* Scrolled: keep same size, background handles contrast */
nav.scrolled .site-logo { }


/* ─── Logo scroll swap ───────────────────────────────────
   logoen.png / logofr.png    = transparent/white version (shown on hero)
   logoen2.png / logofr2.png  = colored version (shown when scrolled)
   ─────────────────────────────────────────────────────── */

/* Default state (transparent nav over hero) */
.site-logo--default  {
  display: block; opacity: 1; transition: opacity 0.3s;
  height: 51px; width: auto; max-width: 205px; object-fit: contain;
}
.site-logo--scrolled {
  display: none; opacity: 0;
  height: 51px; width: auto; max-width: 205px; object-fit: contain;
}

/* Scrolled state (white nav background) */
nav.scrolled .site-logo--default  { display: none;  opacity: 0; }
nav.scrolled .site-logo--scrolled { display: block; opacity: 1; }

/* Mobile: BOTH logo versions identical size — same as logo2 on scrolled state */
@media (max-width: 1024px) {
  .site-logo--default,
  .site-logo--scrolled,
  .site-logo {
    height: 53px !important;
    width: auto !important;
    max-width: 200px !important;
    margin: 0 !important;
    display: block;
    object-fit: contain;
  }
  .logo {
    display: flex;
    align-items: center;
  }
}



/* Single-logo fallback */
.site-logo {
  height: 51px;
  width: auto;
  max-width: 320px;
  display: block;
  object-fit: contain;
}

/* Footer logo */
.footer-logo-link { display: inline-block; margin-bottom: 16px; }
.footer-logo-img  {
  height: 51px;
  width: auto;
  max-width: 260px;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {

  .footer-logo-img { height: 48px; }
}

/* ─── Mobile Header: Logo + Lang + Hamburger only ─── */
@media (max-width: 1024px) {
  .nav-social   { display: none !important; }
  .nav-search   { display: none !important; }
  /* Keep lang-btn and menu-btn visible */
  .nav-right    { gap: 8px; }
  .lang-btn     { margin-left: 0; }
}

/* ─── Footer credit (Netobil) ─── */
.footer-credit { display: flex; align-items: center; }
.footer-credit a { display: flex; align-items: center; opacity: 0.55; transition: opacity 0.2s; }
.footer-credit a:hover { opacity: 1; }
.footer-credit img { display: block; }
@media (max-width: 768px) {
  .footer-bottom { flex-wrap: wrap; gap: 12px; }
  .footer-credit { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════
   SECTOR PAGE — TWO COLUMN LAYOUT
   ═══════════════════════════════════════════ */

/* Outer wrapper — 2 columns: main + sidebar */


/* ═══════════════════════════════════════════════
   CORE VALUES PAGES
   ═══════════════════════════════════════════════ */

/* ── Value cards — clickable (homepage + overview) ── */
.value-card--link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.value-card--link:hover { border-top-color: var(--gold); }
.value-card--link:hover .value-title { color: var(--gold); }
.value-more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 16px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); opacity: 0;
  transition: opacity 0.25s;
}
.value-card--link:hover .value-more { opacity: 1; }

/* ── Core Values Overview Page ── */
.cv-overview-section { padding: 80px 64px 100px; }
.cv-overview-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 1200px;
  margin: 0 auto;
}
.cv-card {
  display: flex; flex-direction: column;
  padding: 40px 32px; background: var(--bg-alt);
  text-decoration: none; border-top: 3px solid transparent;
  transition: all 0.3s;
}
.cv-card:hover { border-top-color: var(--gold); background: var(--bg-alt2); }
.cv-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.cv-card-num { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--gold); opacity: 0.55; }
.cv-card-icon { width: 40px; height: 40px; border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; }
.cv-card-icon svg { width: 18px; height: 18px; color: var(--gold); }
.cv-card-title { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.25; transition: color 0.25s; }
.cv-card:hover .cv-card-title { color: var(--gold); }
.cv-card-text { font-size: 13.5px; font-weight: 300; color: var(--text-light); line-height: 1.75; margin-bottom: 24px; flex: 1; }
.cv-card-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-top: auto;
}

/* ── Core Value Hero ── */
.cv-hero {
  background: var(--navy);
  padding: 80px 64px 64px;
  position: relative; overflow: hidden;
}
.cv-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(184,146,42,0.04) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(184,146,42,0.04) 1px,transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.cv-hero-inner { position: relative; z-index: 1; max-width: 800px; }
.cv-hero-icon {
  width: 64px; height: 64px; border: 1px solid rgba(184,146,42,0.4);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.cv-hero-icon svg { width: 30px; height: 30px; color: var(--gold); }
.cv-hero-title {
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(32px, 4vw, 58px); font-weight: 300; color: #fff;
  line-height: 1.1; margin-bottom: 16px;
}
.cv-hero-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 580px; }

/* ── Core Value Detail — two column ── */
.cv-page-wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 64px 80px;
}
.cv-main {
  flex: 1 1 0;
  min-width: 0;
  padding-right: 56px;
}
.cv-sidebar {
  flex: 0 0 240px;
  width: 240px;
  position: sticky;
  top: 96px;
  align-self: flex-start;
}
.cv-long-text { margin-top: 32px; }
.cv-long-text p {
  font-size: 15px; font-weight: 300; color: var(--text-mid);
  line-height: 1.9; margin-bottom: 1.5em;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cv-overview-inner { grid-template-columns: repeat(2, 1fr); }
  .cv-overview-section, .cv-hero, .cv-page-wrap { padding-left: 40px; padding-right: 40px; }
}
@media (max-width: 768px) {
  .cv-overview-inner { grid-template-columns: 1fr; }
  .cv-overview-section, .cv-hero, .cv-page-wrap { padding: 48px 20px 60px; }
  .cv-page-wrap { flex-direction: column; gap: 40px; }
  .cv-main { padding-right: 0; width: 100%; }
  .cv-sidebar {
    flex: none;
    width: 100%;
    position: static;
    top: auto;
    max-height: none;
    overflow: visible;
  }
}

/* Non-clickable nav label */
.nav-nolink {
  display: block; padding: 11px 20px;
  color: var(--text-light); font-size: 13px; font-weight: 300;
  cursor: default; user-select: none;
}

.sector-body-section {
  padding: 72px 64px 80px;
}
/* Two-column: content + sector nav */
.sector-body-content {
  max-width: 860px;
  margin: 0 auto;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
  .sector-body-section { padding: 60px 40px 80px; }
}
@media (max-width: 900px) {
  .sector-body-wrap { flex-direction: column; gap: 40px; }
  .sector-body-content { width: 100%; }
}
@media (max-width: 768px) {
  .sector-body-section { padding: 48px 20px 60px; }
}

/* ═══════════════════════════════════════════════
   VISION & MISSION PAGE
   ═══════════════════════════════════════════════ */
.vm-page-section {
  position: relative;
  padding: 100px 64px;
  overflow: hidden;
}
.vm-page-vision  { background: var(--bg); }
.vm-page-mission { background: var(--bg-alt); }

.vm-page-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.vm-page-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.vm-page-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.vm-page-title {
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 40px;
}
.vm-page-title em {
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
}

.vm-page-body p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.5em;
  max-width: 720px;
}
.vm-page-body strong {
  color: var(--navy);
  font-weight: 700;
}

/* Decorative gold accent line */
.vm-page-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold-light) 70%, transparent);
}
.vm-page-accent--right {
  left: auto;
  right: 0;
}

.vm-page-divider {
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold) 40%, var(--gold-light) 60%, transparent);
  margin: 0;
}

@media (max-width: 1024px) {
  .vm-page-section { padding: 80px 40px; }
}
@media (max-width: 768px) {
  .vm-page-section { padding: 60px 20px; }
  .vm-page-accent, .vm-page-accent--right { display: none; }
}

/* ═══════════════════════════════════════════════
   SECTORS OVERVIEW PAGE
   ═══════════════════════════════════════════════ */
.sov-section { padding: 80px 64px 100px; }
.sov-inner   { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }

/* ── Each sector row ── */
.sov-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border-bottom: 1px solid var(--border);
}
.sov-row:first-child { border-top: 1px solid var(--border); }

/* Reverse layout for even rows */
.sov-row--reverse .sov-img-col   { order: 2; }
.sov-row--reverse .sov-content-col { order: 1; }

/* Image column */
.sov-img-col { position: relative; overflow: hidden; }
.sov-img-link { display: block; height: 100%; }
.sov-img {
  height: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  position: relative;
}
.sov-row:hover .sov-img { transform: scale(1.03); }
.sov-img-num {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-size: 72px;
  font-weight: 700;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

/* Content column */
.sov-content-col {
  padding: 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}
.sov-row--reverse .sov-content-col { background: var(--bg-alt); }

.sov-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.sov-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.sov-title {
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.2;
}
.sov-title a {
  color: inherit;
  transition: color 0.25s;
}
.sov-title a:hover { color: var(--gold); }

.sov-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 460px;
}

.sov-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sov-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}
.sov-btn-primary:hover { background: var(--gold); color: #fff; }

.sov-btn-ext {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(184,146,42,0.3);
  padding-bottom: 2px;
  text-decoration: none;
  transition: all 0.2s;
}
.sov-btn-ext:hover { color: var(--navy); border-bottom-color: var(--navy); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .sov-section { padding: 60px 40px 80px; }
  .sov-content-col { padding: 40px 40px; }
}
@media (max-width: 768px) {
  .sov-section { padding: 48px 20px 60px; }
  .sov-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .sov-row--reverse .sov-img-col,
  .sov-row--reverse .sov-content-col { order: unset; }
  .sov-img { min-height: 260px; }
  .sov-img-num { font-size: 48px; }
  .sov-content-col { padding: 32px 24px; }
  .sov-row--reverse .sov-content-col { background: var(--bg); }
}

/* ─── Sector Hero: image link + partner logo ── */
.sector-hero-img-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}
/* overlay and content need to be above the link */
.sector-hero-overlay { z-index: 2; }
.sector-hero-content { z-index: 3; }
.sector-hero-bottom-line { z-index: 3; }

.sector-hero-partner {
  margin-top: 28px;
}
.sector-partner-logo {
  height: 44px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
  /* White on hero (dark bg) */
  filter: brightness(0) invert(1);
  opacity: 0.88;
  transition: opacity 0.2s;
}
.sector-partner-logo:hover { opacity: 1; }

/* Partner logo in content area (natural colors) */
.sector-ext-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.sector-ext-partnerlogo {
  display: flex;
  align-items: center;
}
.sector-ext-partnerlogo img {
  height: 52px;
  width: auto;
  max-width: 240px;
  display: block;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.sector-ext-partnerlogo img:hover { opacity: 1; }

/* ═══════════════════════════════════════════════
   CAREER PAGE
   ═══════════════════════════════════════════════ */
.career-intro-section  { padding: 80px 64px; background: var(--bg); }
.career-values-section { padding: 80px 64px; background: var(--bg-alt); }
.career-areas-section  { padding: 72px 64px; background: var(--bg); }
.career-cta-section    { padding: 80px 64px; background: var(--navy); position: relative; overflow: hidden; }
.career-cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(184,146,42,0.04) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(184,146,42,0.04) 1px,transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.career-cta-section::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, transparent, var(--gold) 40%, var(--gold-light) 60%, transparent);
}

.career-intro-inner,
.career-values-inner,
.career-areas-inner,
.career-cta-inner { max-width: 900px; margin: 0 auto; }

.career-section-title {
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(24px, 3vw, 36px); font-weight: 300;
  color: var(--navy); margin-bottom: 36px; line-height: 1.2;
}
.career-intro-text p {
  font-size: 16px; font-weight: 300; color: var(--text-mid);
  line-height: 1.9; margin-bottom: 1.4em;
}

/* Values grid */
.career-values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px;
}
.career-value-card {
  background: var(--bg); padding: 36px 32px;
  border-top: 3px solid transparent; transition: border-color 0.25s;
}
.career-value-card:hover { border-top-color: var(--gold); }
.cv-emoji { font-size: 28px; margin-bottom: 16px; }
.career-value-title {
  font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px;
}
.career-value-text {
  font-size: 14px; font-weight: 300; color: var(--text-light); line-height: 1.75;
}

/* Areas list */
.career-areas-list {
  display: flex; flex-direction: column; gap: 0;
  list-style: none; padding: 0; margin: 0;
}
.career-areas-list li {
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  font-size: 15px; font-weight: 400; color: var(--text-mid);
  display: flex; align-items: center; gap: 14px; transition: background 0.2s;
}
.career-areas-list li:first-child { border-top: 1px solid var(--border); }
.career-areas-list li:hover { background: var(--bg-alt); color: var(--navy); }
.career-areas-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* CTA block */
.career-cta-inner { text-align: center; position: relative; z-index: 1; }
.career-cta-icon {
  width: 64px; height: 64px; margin: 0 auto 28px;
  border: 1px solid rgba(184,146,42,0.4);
  display: flex; align-items: center; justify-content: center;
}
.career-cta-icon svg { width: 28px; height: 28px; color: var(--gold); }
.career-cta-title {
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(24px, 3vw, 40px); font-weight: 300; color: #fff;
  margin-bottom: 20px;
}
.career-cta-text {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.6);
  line-height: 1.8; max-width: 600px; margin: 0 auto 36px;
}
.career-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 40px; background: var(--gold); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.3s; margin-bottom: 20px;
}
.career-cta-btn:hover { background: var(--gold-light); color: #fff; }
.career-cta-email {
  margin-top: 12px; font-size: 13px;
}
.career-cta-email a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.career-cta-email a:hover { color: var(--gold-light); }

/* Responsive */
@media (max-width: 1024px) {
  .career-intro-section, .career-values-section,
  .career-areas-section, .career-cta-section { padding: 60px 40px; }
}
@media (max-width: 768px) {
  .career-intro-section, .career-values-section,
  .career-areas-section, .career-cta-section { padding: 48px 20px; }
  .career-values-grid { grid-template-columns: 1fr; }
}

/* Header home ikonu hizalama */
.nav-home-link{display:inline-flex;align-items:center;}
.nav-home-link svg{display:block;}

/* ─── Galeri / Vitrin sayfası (Makina Parkuru, Projeler) ─── */
.showcase-section { padding: 80px 0 100px; background: #fff; }
.showcase-inner { max-width: 1200px; margin: 0 auto; padding: 0 6vw; }
.showcase-content { font-family: "Titillium Web", sans-serif; color: #1A2A3A; line-height: 1.75; }
.showcase-content p { margin: 0 0 18px; }
.showcase-content h2, .showcase-content h3 {
  font-family: "Titillium Web", sans-serif; font-weight: 600;
  letter-spacing: -0.015em; color: var(--navy); margin: 40px 0 16px;
}
/* WP galeri/görsel ızgarası — kart görünümü */
.showcase-content .wp-block-gallery,
.showcase-content .blocks-gallery-grid { gap: 18px !important; }
.showcase-content figure img,
.showcase-content .wp-block-image img,
.showcase-content .wp-block-gallery img {
  border-radius: 6px; box-shadow: 0 6px 22px rgba(11,29,53,0.10);
  width: 100%; height: 100%; object-fit: cover;
}
.showcase-content .wp-block-image { margin-bottom: 18px; }
.showcase-empty {
  text-align: center; max-width: 560px; margin: 40px auto;
  padding: 60px 30px; border: 1px dashed rgba(11,29,53,0.18); border-radius: 8px;
  background: var(--bg-alt); color: #5A6B7B;
  font-family: "Titillium Web", sans-serif; line-height: 1.7;
}
.showcase-empty-icon { color: var(--gold); margin-bottom: 18px; }
.showcase-empty strong { color: var(--navy); }

/* ─── Düz / normal sayfalar (page.php) ─── */
.page-section { padding: 72px 0 96px; background: #fff; }
.page-content-inner {
  max-width: 860px; margin: 0 auto; padding: 0 6vw;
  font-family: "Titillium Web", sans-serif;
  font-size: 16px; font-weight: 300; color: var(--text-mid, #3A4A5A);
  line-height: 1.85;
}
.page-content-inner h2, .page-content-inner h3,
.page-content-inner h4, .page-content-inner h5 {
  font-family: "Titillium Web", sans-serif; font-weight: 600;
  color: var(--navy, #0B1D35); letter-spacing: -0.015em;
  line-height: 1.3; margin: 38px 0 14px;
}
.page-content-inner h2 { font-size: 28px; }
.page-content-inner h3 { font-size: 22px; }
.page-content-inner h4 { font-size: 18px; }
.page-content-inner p { margin: 0 0 1.3em; }
.page-content-inner a {
  color: var(--gold, #B8922A); border-bottom: 1px solid rgba(184,146,42,0.3);
  transition: color .2s, border-color .2s;
}
.page-content-inner a:hover { color: var(--navy, #0B1D35); border-color: var(--navy, #0B1D35); }
.page-content-inner ul, .page-content-inner ol { margin: 0 0 1.3em 1.2em; }
.page-content-inner li { margin-bottom: .5em; }
.page-content-inner img,
.page-content-inner .wp-block-image img {
  max-width: 100%; height: auto; border-radius: 6px; margin: 1em 0;
  box-shadow: 0 6px 22px rgba(11,29,53,0.10);
}
.page-content-inner blockquote {
  border-left: 3px solid var(--gold, #B8922A); padding: 6px 0 6px 22px;
  margin: 1.5em 0; color: var(--navy, #0B1D35); font-style: normal;
}
.page-content-inner table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }
.page-content-inner th, .page-content-inner td {
  border: 1px solid rgba(11,29,53,0.12); padding: 10px 14px; text-align: left;
}
.page-content-inner th { background: var(--bg-alt, #F4F5F7); font-weight: 600; color: var(--navy, #0B1D35); }
.page-links { margin-top: 24px; font-weight: 600; }
.page-links a { margin: 0 4px; }
@media (max-width: 768px) {
  .page-section { padding: 48px 0 64px; }
  .inner-hero { padding: 70px 24px 48px; }
}

/* ─── Makina Parkuru galeri ızgarası ─── */
.machine-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 1100px; margin: 0 auto;
}
.machine-card {
  display: block; overflow: hidden; border-radius: 8px;
  box-shadow: 0 6px 22px rgba(11,29,53,0.10);
  aspect-ratio: 4 / 3; background: var(--bg-alt, #F4F5F7);
}
.machine-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.45s ease;
}
.machine-card:hover img { transform: scale(1.05); }
@media (max-width: 900px) { .machine-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 560px) { .machine-grid { grid-template-columns: 1fr; } }

/* ─── Sertifikalar sayfası ─── */
.certificates-section { padding: 72px 0 96px; background: #fff; }
.certificates-inner { max-width: 1100px; margin: 0 auto; padding: 0 6vw; }
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cert-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid rgba(11,29,53,0.10); border-radius: 8px; overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(11,29,53,0.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(11,29,53,0.12);
  border-color: var(--gold, #B8922A);
}
.cert-thumb {
  display: block; background: var(--bg-alt, #F4F5F7);
  aspect-ratio: 1 / 1.414; overflow: hidden;
}
.cert-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.cert-title {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 16px 18px; font-family: "Titillium Web", sans-serif;
  font-weight: 600; font-size: 14px; color: var(--navy, #0B1D35); line-height: 1.35;
}
.cert-title svg { color: var(--gold, #B8922A); flex-shrink: 0; }
.cert-content {
  font-family: "Titillium Web", sans-serif; color: var(--text-mid, #3A4A5A); line-height: 1.8;
}
@media (max-width: 900px) { .cert-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 560px) { .cert-grid { grid-template-columns: 1fr; } }

/* ─── İmalatlar sayfası ─── */
.imalat-section { padding: 72px 0 96px; background: #fff; }
.imalat-inner { max-width: 1140px; margin: 0 auto; padding: 0 6vw; }
.imalat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.imalat-card {
  scroll-margin-top: 100px;
  background: var(--bg-alt, #F4F5F7);
  border: 1px solid rgba(11,29,53,0.08);
  border-top: 3px solid var(--gold, #B8922A);
  border-radius: 6px; padding: 30px 30px 32px;
  transition: box-shadow .25s ease, transform .25s ease;
}
.imalat-card:hover { box-shadow: 0 14px 32px rgba(11,29,53,0.10); transform: translateY(-3px); }
.imalat-card-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 18px; }
.imalat-num {
  font-family: "Titillium Web", sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.1em; color: var(--gold, #B8922A); flex-shrink: 0;
}
.imalat-card-title {
  font-family: "Titillium Web", sans-serif; font-size: 21px; font-weight: 600;
  color: var(--navy, #0B1D35); line-height: 1.25; letter-spacing: -0.01em; margin: 0;
}
.imalat-list { list-style: none; margin: 0; padding: 0; }
.imalat-list > li {
  position: relative; padding: 7px 0 7px 20px;
  font-family: "Titillium Web", sans-serif; font-size: 15px; font-weight: 300;
  color: var(--text-mid, #3A4A5A); line-height: 1.5;
  border-bottom: 1px solid rgba(11,29,53,0.06);
}
.imalat-list > li:last-child { border-bottom: none; }
.imalat-list > li::before {
  content: ''; position: absolute; left: 0; top: 15px;
  width: 6px; height: 6px; background: var(--gold, #B8922A); border-radius: 1px;
}
.imalat-sublist { list-style: none; margin: 8px 0 2px; padding: 0; }
.imalat-sublist li {
  position: relative; padding: 4px 0 4px 18px;
  font-size: 14px; font-weight: 300; color: var(--text-light, #6A7B8B);
}
.imalat-sublist li::before {
  content: ''; position: absolute; left: 2px; top: 12px;
  width: 8px; height: 1px; background: var(--gold, #B8922A);
}
.imalat-soon { font-family: "Titillium Web", sans-serif; font-size: 14px; font-style: normal; color: var(--text-light, #6A7B8B); margin: 0; }
.imalat-content { font-family: "Titillium Web", sans-serif; color: var(--text-mid, #3A4A5A); line-height: 1.8; }
@media (max-width: 768px) { .imalat-grid { grid-template-columns: 1fr; gap: 18px; } }

/* ─── İmalatlar: hover'da açılan detaylar ─── */
.imalat-grid { align-items: start; }            /* kardeş kartlar esnemesin */
.imalat-card { cursor: default; }
.imalat-card-head { margin-bottom: 0; align-items: center; }
.imalat-chevron {
  margin-left: auto; flex-shrink: 0; display: inline-flex;
  color: var(--gold, #B8922A); transition: transform .3s ease;
}
.imalat-card:hover .imalat-chevron,
.imalat-card:focus-within .imalat-chevron { transform: rotate(180deg); }

/* Detaylar — varsayılan kapalı, hover/odak'ta açılır (yumuşak yükseklik animasyonu) */
.imalat-body {
  display: grid; grid-template-rows: 0fr; opacity: 0;
  transition: grid-template-rows .4s ease, opacity .3s ease;
}
.imalat-body > * { overflow: hidden; min-height: 0; }
.imalat-list, .imalat-soon { padding-top: 16px; }
.imalat-card:hover .imalat-body,
.imalat-card:focus-within .imalat-body { grid-template-rows: 1fr; opacity: 1; }

/* Dokunmatik/mobil: hover yok — her zaman açık göster */
@media (max-width: 768px) {
  .imalat-body { grid-template-rows: 1fr !important; opacity: 1 !important; }
  .imalat-chevron { display: none; }
}

/* ─── İmalatlar: tek sütun akordeon (detay başlığın altında, hepsi birden açık değil) ─── */
.imalat-grid { grid-template-columns: 1fr; gap: 14px; align-items: start; }
.imalat-card { padding: 0; overflow: hidden; }
.imalat-card:hover { transform: none; box-shadow: 0 8px 24px rgba(11,29,53,0.08); }

.imalat-card-head {
  display: flex; align-items: center; gap: 14px;
  margin: 0; padding: 22px 30px; cursor: pointer;
  text-decoration: none; color: inherit;
  transition: background .25s ease;
}
.imalat-card:hover .imalat-card-head,
.imalat-card:focus-within .imalat-card-head,
.imalat-card:target .imalat-card-head { background: rgba(184,146,42,0.06); }
.imalat-card:target { border-color: var(--gold, #B8922A); }

.imalat-body { padding: 0 30px; }
.imalat-list, .imalat-soon { padding-top: 0; padding-bottom: 24px; }

/* Aç: hover, klavye odağı veya tıklama/menü ile hedefleme */
.imalat-card:hover .imalat-body,
.imalat-card:focus-within .imalat-body,
.imalat-card:target .imalat-body { grid-template-rows: 1fr; opacity: 1; }
.imalat-card:hover .imalat-chevron,
.imalat-card:focus-within .imalat-chevron,
.imalat-card:target .imalat-chevron { transform: rotate(180deg); }

/* Mobil/dokunmatik: hover yok — başlığa dokununca açılır (yine hepsi birden değil) */
@media (max-width: 768px) {
  .imalat-body { grid-template-rows: 0fr !important; opacity: 0 !important; padding: 0 20px; }
  .imalat-card:target .imalat-body { grid-template-rows: 1fr !important; opacity: 1 !important; }
  .imalat-chevron { display: inline-flex !important; }
  .imalat-card-head { padding: 18px 20px; }
  .imalat-list, .imalat-soon { padding-bottom: 18px; }
}

/* ─── İmalatlar landing: kategori dizini kartları ─── */
.imalat-index-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.imalat-index-card {
  display: flex; align-items: center; gap: 16px;
  padding: 26px 30px; background: var(--bg-alt, #F4F5F7);
  border: 1px solid rgba(11,29,53,0.08); border-left: 3px solid var(--gold, #B8922A);
  border-radius: 6px; text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.imalat-index-card:hover {
  transform: translateY(-3px); box-shadow: 0 14px 32px rgba(11,29,53,0.10); background: #fff;
}
.imalat-index-card .imalat-num { font-size: 14px; font-weight: 700; color: var(--gold, #B8922A); flex-shrink: 0; }
.imalat-index-title {
  flex: 1; font-family: "Titillium Web", sans-serif; font-size: 19px; font-weight: 600;
  color: var(--navy, #0B1D35); line-height: 1.25; letter-spacing: -0.01em;
}
.imalat-index-arrow { color: var(--gold, #B8922A); display: inline-flex; flex-shrink: 0; transition: transform .25s ease; }
.imalat-index-card:hover .imalat-index-arrow { transform: translateX(4px); }
@media (max-width: 768px) { .imalat-index-grid { grid-template-columns: 1fr; } }

/* ─── İmalat detay sayfası ─── */
.imalat-detay-section { padding: 56px 0 90px; background: #fff; }
.imalat-detay-inner { max-width: 820px; margin: 0 auto; padding: 0 6vw; }
.imalat-detay-list { margin-top: 6px; }
.imalat-back-wrap { margin-top: 44px; }
.imalat-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Titillium Web", sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold, #B8922A);
  text-decoration: none; transition: color .2s ease;
}
.imalat-back:hover { color: var(--navy, #0B1D35); }
.imalat-back svg { transition: transform .2s ease; }
.imalat-back:hover svg { transform: translateX(-3px); }

/* ─── İmalatlar dropdown: sağda açılan alt menü (flyout) ─── */
.dropdown--imalat { min-width: 256px; }
.dropdown-sub { position: relative; }
.dropdown--imalat .dropdown-sub-link {
  display: flex !important; align-items: center; justify-content: space-between; gap: 10px;
}
.dropdown-sub-arrow { color: var(--gold); font-size: 17px; line-height: 1; flex-shrink: 0; }
.dropdown-sub.has-flyout:hover > .dropdown-sub-link {
  color: var(--gold); border-left-color: var(--gold); background: #f9fafb; padding-left: 26px;
}

.dropdown-flyout {
  position: absolute; top: -10px; left: 100%;
  min-width: 260px; background: #fff;
  border: 1px solid var(--border); border-top: 2px solid var(--gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 16px 0; opacity: 0; pointer-events: none; transform: translateX(-6px);
  transition: opacity .2s ease, transform .2s ease; z-index: 101;
}
.dropdown-sub:hover > .dropdown-flyout { opacity: 1; pointer-events: all; transform: translateX(0); }
.dropdown-flyout-title {
  padding: 0 22px 11px; margin-bottom: 8px;
  font-family: "Titillium Web", sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid var(--border);
}
.dropdown-flyout-list { list-style: none; margin: 0; padding: 0; }
.dropdown-flyout-list > li {
  padding: 6px 24px; font-family: "Titillium Web", sans-serif;
  font-size: 13px; font-weight: 400; color: var(--text-mid);
  line-height: 1.4; text-transform: none; letter-spacing: 0;
}
.dropdown-flyout-list > li.has-sub { font-weight: 600; color: var(--navy); padding-bottom: 2px; }
.dropdown-flyout-list ul { list-style: none; margin: 4px 0 6px; padding: 0; }
.dropdown-flyout-list ul li {
  position: relative; padding: 3px 0 3px 16px;
  font-size: 12.5px; font-weight: 300; color: var(--text-light);
}
.dropdown-flyout-list ul li::before {
  content: ''; position: absolute; left: 0; top: 11px; width: 8px; height: 1px; background: var(--gold);
}

/* Mobil: flyout kapalı — kategoriler düz link olarak kalsın */
@media (max-width: 1024px) {
  .dropdown-flyout { display: none !important; }
  .dropdown-sub-arrow { display: none; }
}

/* ─── Makina Parkuru: zoom rozeti + lightbox (popup) ─── */
.machine-card { position: relative; cursor: pointer; }
.machine-card-zoom {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(11,29,53,0.30); opacity: 0; transition: opacity .25s ease; pointer-events: none;
}
.machine-card-zoom svg {
  width: 46px; height: 46px; padding: 12px; box-sizing: border-box;
  background: var(--gold, #d4af54); color: #0b1d35; border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.machine-card:hover .machine-card-zoom { opacity: 1; }

.mp-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: none; align-items: center; justify-content: center;
  background: rgba(8,16,28,0.93); padding: 30px;
}
.mp-lightbox.is-open { display: flex; }
.machine-item { margin: 0; }
.machine-name {
  margin-top: 11px; text-align: center;
  font-family: "Titillium Web", sans-serif; font-size: 13.5px; font-weight: 600;
  color: var(--navy, #0b1d35); line-height: 1.35;
}

/* Lightbox iki kolon: sol resim, sağ bilgi */
.mp-lb-panel {
  display: flex; width: min(1080px, 94vw); max-height: 88vh;
  background: #fff; border-radius: 10px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.mp-lb-media {
  flex: 1 1 58%; min-width: 0; background: #0b1d35;
  display: flex; align-items: center; justify-content: center;
}
.mp-lb-img { width: 100%; height: 100%; max-height: 88vh; object-fit: contain; display: block; }
.mp-lb-info { flex: 1 1 42%; padding: 34px 32px; overflow-y: auto; display: flex; flex-direction: column; }
.mp-lb-eyebrow {
  font-family: "Titillium Web", sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold, #d4af54); margin-bottom: 8px;
}
.mp-lb-title {
  font-family: "Titillium Web", sans-serif; font-size: 21px; font-weight: 700; line-height: 1.25;
  color: var(--navy, #0b1d35); margin: 0 0 14px;
}
.mp-lb-note {
  margin: 0 0 14px; padding: 9px 13px; border-radius: 6px;
  background: rgba(212,175,84,0.12); color: #8a6d1f;
  font-family: "Titillium Web", sans-serif; font-size: 12.5px; font-weight: 600;
}
.mp-lb-specs { list-style: none; margin: 0; padding: 0; }
.mp-lb-specs li {
  position: relative; padding: 7px 0 7px 18px; border-bottom: 1px solid var(--border, #e8eaed);
  font-family: "Titillium Web", sans-serif; font-size: 13.5px; color: var(--text-mid, #44505f); line-height: 1.4;
}
.mp-lb-specs li:last-child { border-bottom: none; }
.mp-lb-specs li::before {
  content: ''; position: absolute; left: 0; top: 14px; width: 8px; height: 1px; background: var(--gold, #d4af54);
}
.mp-lb-counter {
  margin-top: auto; padding-top: 16px;
  font-family: "Titillium Web", sans-serif; font-size: 12px; letter-spacing: 0.1em; color: var(--text-light, #8a93a0);
}
.mp-lb-btn {
  position: absolute; background: rgba(255,255,255,0.12); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
  transition: background .2s ease, color .2s ease; line-height: 1; padding: 0; z-index: 2;
}
.mp-lb-btn:hover { background: var(--gold, #d4af54); color: #0b1d35; }
.mp-lb-close { top: 18px; right: 20px; width: 44px; height: 44px; font-size: 28px; }
.mp-lb-prev, .mp-lb-next { top: 50%; transform: translateY(-50%); width: 50px; height: 50px; font-size: 32px; }
.mp-lb-prev { left: 18px; }
.mp-lb-next { right: 18px; }

@media (max-width: 820px) {
  .mp-lb-panel { flex-direction: column; width: 94vw; max-height: 90vh; }
  .mp-lb-media { flex: none; max-height: 44vh; }
  .mp-lb-img { max-height: 44vh; }
  .mp-lb-info { flex: none; padding: 22px 20px; }
}
@media (max-width: 640px) {
  .mp-lightbox { padding: 12px; }
  .mp-lb-close { top: 10px; right: 12px; width: 40px; height: 40px; font-size: 24px; }
  .mp-lb-prev { left: 6px; } .mp-lb-next { right: 6px; }
  .mp-lb-prev, .mp-lb-next { width: 42px; height: 42px; font-size: 26px; }
  .mp-lb-title { font-size: 18px; }
}
