/* ══════════════════════════════════════════════
   LGTS INTERNATIONAL — MAIN STYLESHEET
   Culori: #F5C300 (galben), #1C1C1C (negru), #fff
══════════════════════════════════════════════ */

:root {
  --yellow: #F5C300;
  --yellow-dark: #D4A900;
  --yellow-light: #FFF3B0;
  --black: #1C1C1C;
  --dark: #2D2D2D;
  --gray-dark: #444;
  --gray: #777;
  --gray-light: #F0F0F0;
  --white: #FFFFFF;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1200px) {
  .container,
  .nav-container {
    max-width: 100%;
    padding: 0 2rem;
  }
}

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,195,0,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}
.btn-full { width: 100%; text-align: center; }

/* ── SECTION COMMON ──────────────────────── */
section { padding: 6rem 0; }
section:nth-child(even) { background: var(--gray-light); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-label {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-lead {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  padding: 1.25rem 0;
}
#navbar.scrolled {
  background: var(--black);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: 0.75rem 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
.logo-lgts {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.05em;
  line-height: 1;
}
.logo-intl {
  font-family: var(--font-head);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.logo-img-wrap {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 10px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--yellow); }
.nav-cta {
  background: var(--yellow);
  color: var(--black) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--yellow-dark); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ── LANGUAGE SWITCHER ────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(245,195,0,0.4);
  border-radius: 20px;
  padding: 0.35rem 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.lang-switcher:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
.lang-flag { font-size: 1rem; line-height: 1; }
.lang-label { font-size: 0.75rem; }

/* active nav link highlight */
.nav-links a.active-nav { color: var(--yellow); }

/* ── HONEYPOT — invisible to humans ──────── */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tab-size: 0;
}

/* ══════════════════════════════════════════════
   COOKIE CONSENT BANNER
══════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--black);
  border-top: 3px solid var(--yellow);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 200px; }
.cookie-title {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--yellow);
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.cookie-text p:last-child {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}
.cookie-text a { color: var(--yellow); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn-outline {
  border-color: rgba(255,255,255,0.3) !important;
  color: rgba(255,255,255,0.8) !important;
  padding: 0.6rem 1.25rem !important;
  font-size: 0.85rem !important;
}
.cookie-btn-outline:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: var(--white) !important;
  color: var(--white) !important;
  transform: none !important;
  box-shadow: none !important;
}
.cookie-actions .btn-primary {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; gap: 1rem; }
  .cookie-actions { width: 100%; justify-content: stretch; }
  .cookie-actions .btn { flex: 1; text-align: center; }
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 5%;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.30) 40%,
    rgba(0,0,0,0.55) 100%
  );
}

/* ── HERO SLIDESHOW ──────────────────────────── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  transform: scale(1.04);
  animation: heroZoom 8s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }

@keyframes heroZoom {
  from { transform: scale(1.00); }
  to   { transform: scale(1.06); }
}
.hero-overlay { display: none; }
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 0;
  max-width: 960px;
  width: 100%;
  margin-top: 8rem;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.3rem;
  white-space: nowrap;
}
.hero-sub {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--yellow);
  margin: 0 0 1.5rem;
  line-height: 1.2;
}
.hero-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.hero-actions {
  position: absolute;
  bottom: 7rem;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 1rem;
}
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(245,195,0,0.2);
  width: 100%;
  margin-top: auto;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(245,195,0,0.15);
}
.stat:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--yellow);
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}
.scroll-down {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity:1; }
  50% { transform: rotate(45deg) translateY(6px); opacity:0.5; }
}

/* ══════════════════════════════════════════════
   DESPRE NOI
══════════════════════════════════════════════ */
#despre-noi { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-text p {
  margin-bottom: 1.2rem;
  color: var(--gray-dark);
  line-height: 1.8;
}
.about-text strong { color: var(--black); }
.about-legal {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--gray-light);
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.legal-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.legal-item:last-child { margin-bottom: 0; }
.legal-icon { font-size: 1.2rem; flex-shrink: 0; }
.legal-item strong { display: block; font-size: 0.85rem; color: var(--black); }
.legal-item span { font-size: 0.85rem; color: var(--gray); }

/* ── Our Story ── */
.story-block { margin-top: 4rem; }
.story-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 3rem;
  align-items: start;
  background: var(--gray-light);
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 2.5rem;
}
.story-emblem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.story-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-icon-wrap svg { width: 36px; height: 36px; stroke: var(--black); }
.story-tag {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}
.story-text p {
  margin-bottom: 1.2rem;
  color: var(--gray-dark);
  line-height: 1.8;
}
.story-text p:last-child { margin-bottom: 0; }
.story-text strong { color: var(--black); }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.value-card {
  background: linear-gradient(150deg, #222 0%, var(--black) 100%);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid rgba(245,195,0,0.1);
  position: relative;
  overflow: hidden;
}
.value-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,195,0,0.35);
  box-shadow: 0 16px 40px rgba(245,195,0,0.12);
}
.value-card:hover::after { opacity: 1; }
.value-icon {
  width: 50px;
  height: 50px;
  background: rgba(245,195,0,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}
.value-card:hover .value-icon { background: rgba(245,195,0,0.2); }
.value-icon svg { width: 24px; height: 24px; stroke: var(--yellow); }
.value-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.value-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* Achievements */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.achievement-card {
  text-align: center;
  padding: 2.25rem 1.25rem 2rem;
  background: linear-gradient(160deg, #222 0%, var(--black) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245,195,0,0.12);
  border-top: 3px solid rgba(245,195,0,0.25);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.achievement-card:hover {
  border-color: var(--yellow);
  border-top-color: var(--yellow);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(245,195,0,0.12);
}
.ach-icon {
  width: 52px;
  height: 52px;
  background: rgba(245,195,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  transition: background 0.3s;
}
.achievement-card:hover .ach-icon { background: rgba(245,195,0,0.2); }
.ach-icon svg { width: 24px; height: 24px; stroke: var(--yellow); }
.ach-num {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.ach-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.5; padding: 0 0.5rem; }

/* ══════════════════════════════════════════════
   SERVICII
══════════════════════════════════════════════ */
#servicii { background: var(--gray-light); }

.service-tabs {
  display: flex;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: var(--shadow);
}
.tab-btn {
  flex: 1;
  padding: 1rem 1.5rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-bottom: 3px solid transparent;
}
.tab-btn:hover { color: var(--black); background: var(--yellow-light); }
.tab-btn.active {
  background: var(--black);
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}
.tab-icon { font-size: 1.2rem; }

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.service-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.service-info h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--black);
}
.service-info p {
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.service-list {
  margin-bottom: 2rem;
}
.service-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray-dark);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 0.8rem;
  top: 0.6rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.placeholder-img {
  background: linear-gradient(135deg, var(--black) 0%, #2a2a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245,195,0,0.2);
  transition: var(--transition);
}
.placeholder-img:hover {
  border-color: var(--yellow);
  transform: scale(1.02);
}
.ph-content {
  text-align: center;
  padding: 1rem;
}
.ph-content span { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.ph-content p { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

/* ── SVG Pictograms — sizing ── */
.legal-icon svg, .value-icon svg, .ach-icon svg,
.tab-icon svg, .contact-icon svg, .nelu-avatar svg,
.success-icon svg { width: 1em; height: 1em; display: inline-block; vertical-align: middle; }
.ph-content span svg { width: 1em; height: 1em; display: block; margin: 0 auto; }
.gallery-overlay span svg { width: 1em; height: 1em; display: inline-block; vertical-align: middle; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(245,195,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--gray);
  text-align: center;
  font-style: italic;
}

/* ══════════════════════════════════════════════
   BLOG
══════════════════════════════════════════════ */
#blog { background: var(--white); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.13);
  border-color: var(--yellow);
}
.blog-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.blog-img {
  position: relative;
  overflow: hidden;
}
.blog-card:not(.featured) .blog-img {
  aspect-ratio: 16/9;
}
.blog-card.featured .blog-img {
  min-height: 220px;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.05); }
.placeholder-blog {
  background: linear-gradient(135deg, var(--black) 0%, #1a1a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.blog-tag {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  background: var(--yellow);
  color: var(--black);
}
.blog-tag.service { background: #e8f0fe; color: #1a73e8; }
.blog-tag.vopsitorie { background: #fce8e6; color: #d93025; }
.blog-date { font-size: 0.8rem; color: var(--gray); }
.blog-body h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}
.blog-card.featured .blog-body h3 { font-size: 1.6rem; }
.blog-body p { font-size: 0.9rem; color: var(--gray); line-height: 1.75; margin-bottom: 1rem; flex: 1; }
.blog-author {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--yellow-dark);
  margin-bottom: 1rem;
  font-family: var(--font-head);
}
.nelu-intro {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--black);
  border-left: 4px solid var(--yellow);
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.75rem;
  margin-bottom: 3rem;
  max-width: 700px;
}
.nelu-avatar {
  font-size: 2.8rem;
  flex-shrink: 0;
  line-height: 1;
}
.nelu-bio {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nelu-bio strong {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--yellow);
  letter-spacing: 0.05em;
}
.nelu-bio span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-head);
}
.nelu-bio p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0.4rem 0 0;
  font-style: italic;
}
.blog-link {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--yellow-dark);
  letter-spacing: 0.05em;
  transition: color 0.2s;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.blog-link:hover { color: var(--black); }
.blog-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
}
.blog-cta p { font-size: 1.1rem; color: var(--gray-dark); margin-bottom: 1.25rem; }

/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
#faq { background: var(--gray-light); }

.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--yellow); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  transition: background 0.2s;
}
.faq-question:hover { background: var(--gray-light); }
.faq-item.open .faq-question { background: var(--black); color: var(--yellow); }
.faq-chevron {
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--yellow);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 1.5rem;
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.8;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}
.faq-answer strong { color: var(--black); }

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
#contact { background: var(--black); }
#contact .section-header h2 { color: var(--white); }
#contact .section-lead { color: rgba(255,255,255,0.6); }
#contact .section-label { background: var(--yellow); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,195,0,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: left;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-card:hover {
  background: rgba(245,195,0,0.07);
  border-color: rgba(245,195,0,0.5);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(245,195,0,0.1);
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,195,0,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}
.contact-card:hover .contact-icon { background: rgba(245,195,0,0.22); }
.contact-icon svg { width: 22px; height: 22px; stroke: var(--yellow); }
.contact-card h4 {
  font-family: var(--font-head);
  color: var(--yellow);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  font-weight: 700;
}
.contact-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.8; }
.contact-card a { color: rgba(255,255,255,0.85); transition: color 0.2s; font-weight: 500; }
.contact-card a:hover { color: var(--yellow); }
.contact-card small { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
#footer {
  background: #111;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(245,195,0,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer-legal span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  font-family: monospace;
}
.footer-links h5 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════════════
   MODAL
══════════════════════════════════════════════ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal.open {
  opacity: 1;
  pointer-events: all;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
}
.modal-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal.open .modal-box { transform: translateY(0); }
.modal-blog { max-width: 720px; padding: 0; }
.blog-modal-content {
  padding: 3rem 2.5rem 2.5rem;
}
.blog-modal-content .blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.blog-modal-img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: block;
}
.blog-modal-content .blog-ph {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.blog-modal-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 3px solid var(--yellow);
}
.blog-modal-content p {
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.blog-modal-content strong { color: var(--black); }
.blog-modal-content em { color: var(--gray); }
.blog-modal-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-light);
}
.blog-modal-author span:first-child { font-size: 2rem; }
.blog-modal-author div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.blog-modal-author strong {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--black);
}
.blog-modal-author div span {
  font-size: 0.8rem;
  color: var(--gray);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gray-light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}
.modal-close:hover { background: var(--yellow); }
.modal-header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--gray-light);
}
.modal-header h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
}
.modal-subtitle {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* ── FORM ─────────────────────────────────── */
.offer-form { padding: 1.5rem 2rem 2rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.form-group:last-child { margin-bottom: 0; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
}
.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--yellow); }
.form-group textarea { resize: vertical; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--gray-dark);
}
.form-check input { margin-top: 3px; flex-shrink: 0; accent-color: var(--yellow); }
.form-check a { color: var(--yellow-dark); text-decoration: underline; }

.offer-success {
  padding: 3rem 2rem;
  text-align: center;
}
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.offer-success h4 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.offer-success p { color: var(--gray); margin-bottom: 1.5rem; }

/* ── BLOG MODAL ───────────────────────────── */
.blog-modal-content { padding: 2.5rem 2rem; }
.blog-modal-content h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.blog-modal-content .blog-meta { margin-bottom: 1.5rem; }
.blog-modal-content .blog-ph {
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, var(--black), #2a2a1a);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin-bottom: 1.5rem;
}
.blog-modal-content p {
  color: var(--gray-dark);
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* ══════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-inner {
  max-width: 800px;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-ph {
  text-align: center;
  padding: 3rem;
}
#lightbox-icon { font-size: 6rem; display: block; margin-bottom: 1rem; }
#lightbox-caption { color: rgba(255,255,255,0.7); font-size: 1.1rem; }
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--yellow); color: var(--black); }
.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 80px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-prev { left: 1rem; border-radius: 0 4px 4px 0; }
.lightbox-next { right: 1rem; border-radius: 4px 0 0 4px; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .story-emblem { flex-direction: row; justify-content: flex-start; }
  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .achievements-grid { grid-template-columns: repeat(3, 1fr); }
  .service-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-card.featured { grid-column: auto; display: block; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }

  /* ── Hero imagini — dezactivare zoom, afișare mai mult din imagine ── */
  #hero { min-height: 80vh; }
  .hero-slide {
    background-position: center top;
    background-size: cover;
    animation: none;
    transform: scale(1);
  }

  /* ── Nav ── */
  .burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 75%;
    max-width: 300px;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }

  /* ── Hero — fix suprapunere butoane/statistici ── */
  #hero {
    justify-content: flex-start;
    padding-top: 5rem;
  }
  .hero-content {
    margin-top: 1.5rem;
    padding: 1rem 0;
  }
  .hero-content h1 {
    white-space: normal;
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }
  .hero-sub { font-size: clamp(1rem, 4vw, 1.5rem); margin-bottom: 1rem; }
  .hero-content p { font-size: 0.88rem; margin-bottom: 1.5rem; }
  .hero-actions {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 0 0 1rem;
    padding: 0 1rem;
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .btn { width: 100%; max-width: 280px; text-align: center; }
  .hero-stats {
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .stat {
    flex: 1;
    padding: 1rem 0.5rem;
    border-right: 1px solid rgba(245,195,0,0.15);
    border-bottom: none;
  }
  .stat:last-child { border-right: none; }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: 0.68rem; }
  .scroll-down { display: none; }

  /* ── Valori & Realizări ── */
  .values-grid { grid-template-columns: 1fr 1fr; }
  .achievements-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Servicii ── */
  .service-tabs { flex-direction: column; }
  .tab-btn { justify-content: flex-start; padding: 0.85rem 1.25rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Nelu intro ── */
  .nelu-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
  }

  /* ── Blog ── */
  .blog-grid { grid-template-columns: 1fr; }

  /* ── Contact ── */
  .contact-grid { grid-template-columns: 1fr; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* ── Modal / Form ── */
  .form-row { grid-template-columns: 1fr; }
  .modal-box { max-height: 95vh; }
  .offer-form { padding: 1rem 1.25rem 1.5rem; }
  .modal-header { padding: 1.5rem 1.25rem 1rem; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .achievements-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-direction: column; }
  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(245,195,0,0.15);
    padding: 0.75rem 1rem;
  }
  .stat:last-child { border-bottom: none; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.75rem; }
}

