/* ================================================================
   ASETA ECOSOL — Main CSS
   Design: Clean modern (Dekoro-inspired) — alb + albastru + portocaliu
   Font: Inter (body) + Poppins (headings bold)
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #0072B8;
  --primary-dark:  #005a94;
  --primary-light: #e8f4fc;
  --accent:        #F5911E;
  --accent-dark:   #d97c10;
  --white:         #FFFFFF;
  --bg:            #F7F9FC;
  --bg-2:          #EEF3F8;
  --dark:          #1A2332;
  --dark-2:        #2D3A4A;
  --text:          #3D4A5C;
  --text-muted:    #6B7A8D;
  --border:        #DDE4ED;
  --nav-h:         80px;
  --topbar-h:      40px;
  --radius:        6px;
  --radius-lg:     14px;
  --shadow:        0 4px 20px rgba(0,114,184,0.10);
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.07);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: 'Poppins', 'Inter', sans-serif; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }
section { padding: 5rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Inter', sans-serif; font-size: .9rem;
  font-weight: 600; letter-spacing: .03em;
  padding: .85rem 2rem; border-radius: var(--radius);
  cursor: pointer; border: 2px solid transparent;
  transition: all .25s;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); }
.btn-accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ── Section Labels ── */
.section-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  /* text-transform: uppercase; */ color: var(--accent);
  margin-bottom: .75rem;
}
.section-tag::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--accent); border-radius: 2px;
}

/* ── TOP BAR ── */
#topbar {
  background: var(--dark);
  height: var(--topbar-h);
  display: flex; align-items: center;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem;
  width: 100%;
  max-width: 100%;
  padding: 0 24px;
}
.topbar-left { display: flex; gap: 1.5rem; }
.topbar-left a, .topbar-right {
  color: rgba(255,255,255,.7); display: flex; align-items: center; gap: .4rem;
  transition: color .2s;
}
.topbar-right {
}
.topbar-left a:hover { color: var(--accent); }
.topbar-since {
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: flex; align-items: center;
  white-space: nowrap;
}

/* ── NAVBAR ── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  height: var(--nav-h);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}
.nav-logo img { height: 52px; width: auto; }
.nav-links {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.8rem;
  margin-right: 1.5rem;
}
.nav-links a {
  font-size: .88rem; font-weight: 600; color: var(--text);
  position: relative; padding-bottom: 3px;
  letter-spacing: .02em;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: width .3s; border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.btn-nav {
  background: var(--accent); color: var(--white) !important;
  padding: .6rem 1.4rem; border-radius: var(--radius);
  font-size: .85rem; font-weight: 700; letter-spacing: .02em;
  transition: background .2s !important;
  flex-shrink: 0;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--accent-dark) !important; }
.btn-nav::after { display: none !important; }
/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: .3rem; }
.dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); min-width: 220px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 200; overflow: hidden; padding: .5rem 0;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block; padding: .65rem 1.25rem;
  font-size: .88rem; font-weight: 500; color: var(--text);
  transition: background .15s, color .15s; white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--primary-light); color: var(--primary); }
.dropdown-menu a::after { display: none; }


.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1600; position: relative; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }
.hamburger.open span { background: #fff; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100vh;
  background: var(--dark); justify-content: center;
  align-items: center; gap: 2rem; z-index: 1500;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.4rem; font-weight: 700; color: var(--white); letter-spacing: .02em; transition: color .2s; }
.mobile-menu a:hover { color: var(--accent); }
.btn-nav-mobile {
  background: var(--accent) !important; color: var(--white) !important;
  padding: .8rem 2rem !important; border-radius: var(--radius) !important;
  font-size: 1rem !important; margin-top: 1rem;
}

/* ── HERO SLIDER ── */
#hero {
  position: relative;
  height: calc(100vh - var(--nav-h) - var(--topbar-h));
  min-height: 460px;
  max-height: 720px;
  overflow: hidden;
  background: var(--dark);
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .8s ease;
  display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.55);
}
.hero-content {
  position: relative; z-index: 3;
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; flex-direction: column; align-items: flex-start;
}


@media (max-height: 720px) {
  .hero-content { align-items: flex-start; padding-top: 3rem; }
}
.hero-content .section-tag { color: var(--accent); }
.hero-content .section-tag::before { background: var(--accent); }
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800; color: var(--white);
  margin: .5rem 0 1.5rem;
  max-width: 700px; line-height: 1.15;
}
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.85); max-width: 520px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; gap: .6rem;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.4); cursor: pointer; transition: background .3s;
  border: none;
}
.hero-dot.active { background: var(--accent); }

/* ── STATS STRIP ── */
#stats-strip {
  background: var(--primary);
  padding: 2.5rem 0;
}
.stats-inner {
  display: flex; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  padding: 1rem 3rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Poppins', sans-serif; font-size: 2.4rem;
  font-weight: 800; color: var(--white); line-height: 1;
}
.stat-label { font-size: .8rem; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .1em; margin-top: .3rem; }

/* ── SERVICES PREVIEW (homepage) ── */
#servicii-home {
  background: var(--white);
}
.servicii-home-header { text-align: center; margin-bottom: 3.5rem; }
.servicii-home-header h2 { margin-top: .5rem; }
.servicii-home-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.svc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-card-img { aspect-ratio: 4/3; overflow: hidden; }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.svc-card:hover .svc-card-img img { transform: scale(1.06); }
.svc-card-body { padding: 1.5rem; }
.svc-card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.svc-card-body h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.svc-card-body p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }
.svc-card-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .85rem; font-weight: 600; color: var(--primary);
  margin-top: 1rem;
}
.svc-card-link:hover { color: var(--primary-dark); }

/* ── WHY US ── */
#de-ce-noi {
  background: var(--bg);
}
.de-ce-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.de-ce-img { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.de-ce-img img { width: 100%; height: 100%; object-fit: cover; max-height: 500px; }
.de-ce-img-badge {
  position: absolute; bottom: 2rem; left: -2rem;
  background: var(--accent); color: var(--white);
  padding: 1.2rem 1.6rem; border-radius: var(--radius-lg);
  text-align: center; box-shadow: 0 8px 24px rgba(245,145,30,.3);
}
.de-ce-img-badge strong { display: block; font-size: 2.2rem; font-weight: 800; line-height: 1; }
.de-ce-img-badge span { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; opacity: .9; }
.de-ce-text h2 { margin-top: .5rem; margin-bottom: 1.5rem; }
.de-ce-list { display: flex; flex-direction: column; gap: 1.25rem; margin: 1.5rem 0 2rem; }
.de-ce-item { display: flex; align-items: flex-start; gap: 1rem; }
.de-ce-check {
  flex-shrink: 0; width: 24px; height: 24px;
  background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.de-ce-check svg { color: var(--white); }
.de-ce-item strong { display: block; color: var(--dark); margin-bottom: .15rem; }
.de-ce-item p { font-size: .9rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* ── LUCRARI PREVIEW (homepage) ── */
#lucrari-preview { background: var(--white); }
.lucrari-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.lucrare-card {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; aspect-ratio: 4/3; cursor: pointer;
}
.lucrare-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.lucrare-card:hover img { transform: scale(1.08); }
.lucrare-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,35,50,.85) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 1.25rem;
}
.lucrare-card:hover .lucrare-overlay { opacity: 1; }
.lucrare-loc {
  color: var(--white); font-size: .82rem; font-weight: 600;
  display: flex; align-items: center; gap: .4rem;
}

/* ── CTA BANNER ── */
.cta-banner { background: var(--primary); padding: 5rem 0; }
.cta-banner-inner { max-width: 680px; margin: 0 auto; text-align: center; padding: 0 2rem; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 2.5rem; font-size: 1rem; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 5rem 0 4rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: var(--primary); opacity: .08;
}
.page-hero .section-tag { color: var(--accent); }
.page-hero .section-tag::before { background: var(--accent); }
.page-hero h1 { color: var(--white); margin-top: .5rem; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 560px; margin-top: 1rem; font-size: 1.05rem; }
.page-hero-simple { background: var(--bg); padding: 3rem 0; }
.page-hero-simple h1 { color: var(--dark); }

/* ── SERVICII PAGE ── */
.servicii-list { display: flex; flex-direction: column; gap: 0; }
.svc-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.svc-section:last-child { border-bottom: none; }
.svc-section:nth-child(even) { background: var(--bg); }
.svc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.svc-layout-reverse { direction: rtl; }
.svc-layout-reverse > * { direction: ltr; }
.svc-image { border-radius: var(--radius-lg); overflow: hidden; }
.svc-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.svc-body h2 { margin-top: .5rem; margin-bottom: 1.25rem; }
.svc-body p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.75; }
.svc-features { display: flex; flex-direction: column; gap: .6rem; margin: 1.5rem 0 2rem; }
.svc-features li {
  display: flex; align-items: center; gap: .75rem;
  font-size: .95rem; color: var(--text);
}
.svc-features li::before {
  content: ''; flex-shrink: 0; width: 8px; height: 8px;
  background: var(--primary); border-radius: 50%;
}

/* ── LUCRARI PAGE ── */
.lucrari-page-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem;
}
.lucrare-page-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); transition: box-shadow .3s, transform .3s;
}
.lucrare-page-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.lucrare-page-img { aspect-ratio: 4/3; overflow: hidden; }
.lucrare-page-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.lucrare-page-card:hover .lucrare-page-img img { transform: scale(1.05); }
.lucrare-page-body { padding: 1.25rem 1.5rem; }
.lucrare-page-body p { font-size: .88rem; color: var(--text-muted); line-height: 1.55; }
.lucrare-loc-tag {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; font-weight: 600; color: var(--primary);
  background: var(--primary-light); padding: .25rem .75rem;
  border-radius: 20px; margin-bottom: .75rem;
}

/* ── CONTACT PAGE ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; padding: 5rem 0; }
.contact-info-col h3 { margin-bottom: 1.5rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.ci-item { display: flex; align-items: flex-start; gap: 1rem; }
.ci-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  border-radius: 10px; background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.ci-text span { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }
.ci-text strong, .ci-text a { display: block; font-weight: 600; color: var(--dark); font-size: .95rem; }
.ci-text a:hover { color: var(--primary); }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; margin-top: 2rem; }
.contact-map iframe { width: 100%; height: 300px; display: block; border: none; }

/* Contact form */
.contact-form-col h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--dark); margin-bottom: .4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .8rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-size: .95rem; color: var(--text);
  background: var(--white); outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success { display: none; background: #e6f4ea; color: #256029; padding: 1rem 1.5rem; border-radius: var(--radius); margin-top: 1rem; }

/* ── FOOTER ── */
#footer { background: var(--dark); color: rgba(255,255,255,.75); }
.footer-top { padding: 4rem 0 3rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.4fr; gap: 3rem;
}
.footer-brand p { font-size: .9rem; margin-top: .5rem; line-height: 1.7; color: rgba(255,255,255,.6); }
.footer-social { display: flex; gap: .75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.65);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--accent); color: var(--white); }
.footer-col h4 {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--white); margin-bottom: 1.25rem; font-weight: 700;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-list li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: .7rem;
}
.footer-contact-list li svg { flex-shrink: 0; color: var(--accent); }
.footer-contact-list a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-contact-list a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0; font-size: .82rem; color: rgba(255,255,255,.4);
}
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom a { color: var(--accent); transition: color .2s; }
.footer-bottom a:hover { color: var(--white); }

/* ── SCROLL TOP ── */
#scroll-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--primary); color: var(--white);
  border-radius: var(--radius); display: flex;
  align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; visibility: hidden;
  transition: all .3s; z-index: 500; border: none;
}
#scroll-top.visible { opacity: 1; visibility: visible; }
#scroll-top:hover { background: var(--primary-dark); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .servicii-home-grid { grid-template-columns: repeat(2, 1fr); }
  .de-ce-grid { grid-template-columns: 1fr; gap: 3rem; }
  .de-ce-img-badge { left: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .servicii-home-grid { grid-template-columns: 1fr; }
  .svc-layout, .svc-layout-reverse { grid-template-columns: 1fr; direction: ltr; gap: 2rem; }
  .lucrari-grid, .lucrari-page-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .footer-bottom-inner { flex-direction: column; gap: .5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .stats-inner { gap: 0; }
  .stat-item { padding: 1rem 1.5rem; }
  #topbar { display: none; }
  

  #hero { height: calc(100vh - var(--nav-h)); }
}

@media (max-width: 480px) {
  .lucrari-grid, .lucrari-page-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .stat-num { font-size: 1.8rem; }
}

/* ── Mobile close button ── */
.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: .5rem;
  z-index: 9999;
  opacity: .9;
  transition: opacity .2s, transform .2s;
}
.mobile-close:hover { opacity: 1; transform: scale(1.15); }


/* ── ASETA FINAL NAV v5 ── */
.topbar-single { justify-content: center !important; }
.topbar-email {
  color: #ffffff !important;
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 500; transition: color .2s;
}
.topbar-email:hover { color: var(--accent) !important; }
.topbar-email svg { stroke: #ffffff; }

#navbar { height: var(--nav-h); }
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 100%; gap: 0;
}
.nav-logo { flex-shrink: 0; margin-right: 16px; }
.nav-logo img { height: 48px; width: auto; }

.nav-links {
  display: flex; align-items: center;
  gap: 16px; flex-wrap: nowrap; flex: 1; justify-content: flex-end;
}
.nav-links a {
  font-size: 12.5px; font-weight: 600; color: var(--text);
  white-space: nowrap; position: relative; padding-bottom: 3px;
  letter-spacing: .01em;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: width .3s; border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.btn-nav {
  background: var(--accent) !important; color: var(--white) !important;
  padding: 8px 14px !important; border-radius: var(--radius) !important;
  font-size: 12.5px !important; font-weight: 700 !important;
  white-space: nowrap !important; flex-shrink: 0;
  transition: background .2s !important;
}
.btn-nav:hover { background: var(--accent-dark) !important; }
.btn-nav::after { display: none !important; }


/* ── Mobile nav fix (override v5) ── */
@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }
}

/* ── FOOTER SUPORT BUTTON ── */
.suport-wrap { margin-top: 1.2rem; }
.btn-suport {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--accent); color: var(--white);
  padding: .5rem 1.4rem; border-radius: var(--radius);
  font-size: .82rem; font-weight: 700; letter-spacing: .06em;
  border: none; cursor: pointer;
  transition: background .2s;
}
.btn-suport:hover { background: var(--accent-dark); }
.suport-phones {
  display: none; margin-top: .75rem;
  flex-direction: column; gap: .5rem;
}
.suport-phones.open { display: flex; }
.suport-phones a {
  display: flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.85); font-size: .88rem; font-weight: 500;
  transition: color .2s;
}
.suport-phones a:hover { color: var(--accent); }
.suport-phones a span {
  font-size: .78rem; color: rgba(255,255,255,.5); font-weight: 400;
}

/* ── Promo Badge ── */
.promo-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #b71c1c 0%, #d32f2f 100%);
  color: #fff;
  border-radius: 10px;
  padding: 14px 20px;
  margin-top: 18px;
  margin-bottom: 8px;
  box-shadow: 0 4px 16px rgba(183,28,28,.25);
  animation: promoPulse 2.5s ease-in-out infinite;
  max-width: 520px;
}
.promo-badge .promo-stock {
  flex-shrink: 0;
  background: #fff;
  color: #b71c1c;
  font-weight: 800;
  font-size: .82rem;
  padding: 6px 12px;
  border-radius: 6px;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}
.promo-badge .promo-text {
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.35;
}
@keyframes promoPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(183,28,28,.25); }
  50%      { box-shadow: 0 4px 24px rgba(183,28,28,.45); }
}
@media (max-width: 600px) {
  .promo-badge { flex-direction: column; text-align: center; gap: 8px; max-width: 100%; }
  .promo-badge .promo-stock { align-self: center; }
}

/* TOPBAR-MAIL-ALIGN START */
.topbar-right a{display:inline-flex;align-items:center;gap:.45rem;line-height:1;color:rgba(255,255,255,.7);}
.topbar-right a svg{display:block;flex:0 0 auto;}
.topbar-since{text-transform:none !important;}
/* TOPBAR-MAIL-ALIGN END */

/* NAV-CENTER-BUTTONS START */
.nav-links{justify-content:center !important;gap:.6rem !important;margin-right:0 !important;flex:1 1 auto;}
.nav-links a{
  font-size:.95rem !important;font-weight:600;
  padding:.55rem 1rem !important;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#fff;
  color:var(--text) !important;
  transition:background .2s,border-color .2s,color .2s,box-shadow .2s;
  letter-spacing:.01em;
}
.nav-links a::after{display:none !important;}
.nav-links a:hover{background:var(--primary);border-color:var(--primary);color:#fff !important;box-shadow:0 4px 14px rgba(0,0,0,.08);}
.nav-links a.active{background:var(--primary);border-color:var(--primary);color:#fff !important;}
@media(max-width:1100px){.nav-links a{font-size:.85rem !important;padding:.45rem .7rem !important;}}
/* NAV-CENTER-BUTTONS END */

/* ASETA_HERO_BG_IMAGE === */
.page-hero.has-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 7rem 0 6rem;
}
.page-hero.has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,30,55,.78) 0%, rgba(20,40,70,.70) 100%);
  width: auto; height: auto; right: 0; top: 0;
  border-radius: 0;
  opacity: 1;
}
.page-hero.has-bg > * { position: relative; z-index: 1; }
.page-hero.has-bg p { max-width: 720px; }

/* full-width service body (no right-side image) */
.svc-layout-full { display: block; }
.svc-layout-full .svc-body { max-width: 100%; }
.svc-layout-full .svc-features { columns: 2; column-gap: 2.5rem; }
@media(max-width:768px){ .svc-layout-full .svc-features { columns: 1; } }
