html, body {
  overflow-x: hidden;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}


/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #121212;
  color: #f0f0f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: #ff6f00;
  color: #fff;
  border-radius: 8px;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #ff8f33;
}

btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border: 2px solid #ff6f00;
  color: #ff6f00;
  border-radius: 8px;
  margin-left: 10px;
}

.btn-secondary:hover {
  background: #ff6f00;
  color: #fff;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-weight: 600;
}
/* HERO cu background premium identic mockup */


/* Text Hero */
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

/* CTA Hero */
.hero .btn-primary {
  font-size: 1.2rem;
  padding: 14px 28px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.hero .btn-primary:hover {
  background: #ff8f33;
  transform: scale(1.05);
}

/* Optional: animație subtilă pentru Hero */


/* =========================
   NAVBAR FINAL FIX
========================= */

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(18,18,18,0.85);
  backdrop-filter: blur(12px);
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

.logo span {
  color: #ff6f00;
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  position: relative;
  font-size: 1rem;
  padding: 5px 0;
  transition: color 0.3s;
}

/* underline animat */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #ff6f00, #ff9f40);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* glow hover */
.nav-link:hover {
  color: #ff9f40;
  text-shadow: 0 0 8px rgba(255,111,0,0.6);
}

/* CONTACT BTN */
.btn-nav {
  padding: 8px 18px;
  border-radius: 8px;
  background: #ff6f00;
  color: #fff;
}

.btn-nav:hover {
  background: #ff8f33;
  box-shadow: 0 0 15px rgba(255,111,0,0.7);
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #121212;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: flex;
  }
}


/* PRODUCTS GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #1e1e1e;
  cursor: pointer;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  display: block;
}

.product-card .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff6f00;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9rem;
}

.product-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.product-card:hover .overlay {
  opacity: 1;
}

.product-card .overlay .icon {
  font-size: 2rem;
  color: #fff;
}

.product-card .product-content {
  padding: 20px;
}

.product-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.product-card p {
  font-size: 1rem;
  color: #ccc;
}

/* PROJECTS GRID */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.projects-grid figure {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.projects-grid img {
  width: 100%;
  display: block;
  transition: transform 0.3s;
}

.projects-grid figure:hover img {
  transform: scale(1.05);
}

.projects-grid figcaption {
  padding: 10px 0;
  text-align: center;
  font-size: 1rem;
}

/* FAQ ITEM – STRUCTURĂ */
.faq-item {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.03)
  );
  border-radius: 18px;
  margin-bottom: 18px;
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

/* ÎNTREBAREA – ZONĂ DISTINCTĂ */
.faq-question {
  width: 100%;
  background: rgba(0,0,0,0.25);
  border: none;
  color: #ffffff;
  padding: 22px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;

  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;

  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* iconul + */
.faq-icon {
  font-size: 1.6rem;
  color: #ff6f00;
  transition: transform 0.5s ease;
}

/* RĂSPUNSUL – ZONĂ SEPARATĂ */
.faq-answer {
  background: rgba(255,255,255,0.03);
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;

  transition:
    max-height 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s ease,
    padding 0.4s ease;
}

.faq-answer p {
  color: #d6d6d6;
  font-size: 0.95rem;
  line-height: 1.75
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-question {
    font-size: 1rem;
    padding: 18px 18px;
  }

  .faq-answer {
    padding: 0 18px;
  }
}
/* STARE ACTIVĂ – DIFERENȚIERE CLARĂ */
.faq-item.active {
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}

/* RĂSPUNS DESCHIS */
.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding-top: 16px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ICON ROTIT */
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ACCENT VIZUAL PE ÎNTREBARE */
.faq-item.active .faq-question {
  background: linear-gradient(
    90deg,
    rgba(255,111,0,0.15),
    rgba(0,0,0,0.25)
  );
}
.faq-item {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.03)
  );
}

/* ÎNTREBARE */
.faq-question {
  width: 100%;
  background: rgba(0,0,0,0.35);
  border: none;
  padding: 22px 24px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ICON */
.faq-icon {
  font-size: 1.6rem;
  color: #ff6f00;
  transition: transform 0.5s ease;
}

/* RĂSPUNS */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  background: rgba(255,255,255,0.03);
  opacity: 0;
  transition: max-height 0.8s ease, opacity 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
  color: #d6d6d6;
  line-height: 1.7;
  padding-bottom: 22px;
}

/* ACTIV */
.faq-item.active .faq-answer {
  max-height: 400px;
  opacity: 1;
  padding-top: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}



/* RESPONSIVE */
@media(max-width:768px){
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
}

/* FOOTER */
.footer {
  background: rgba(18,18,18,0.95);
  margin-top: 60px;
  padding: 50px 20px 20px;
  color: #ccc;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #ff6f00;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 0.9rem;
}


.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 15px;
  font-weight: 600;
}

/* STICKY CTA */
.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

/* COMMON */
.sticky-cta a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* PHONE */
.cta-phone {
  background: linear-gradient(135deg, #ff6f00, #ff8f33);
}

/* WHATSAPP */
.cta-whatsapp {
  background: linear-gradient(135deg, #25d366, #1ebe57);
}

/* HOVER */
.sticky-cta a:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 22px rgba(0,0,0,0.6);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .sticky-cta {
    right: 15px;
    bottom: 15px;
  }

  .sticky-cta a {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

.sticky-cta {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* HERO CTA BUTTONS */
.hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 25px;
}

.btn-hero {
  min-width: 160px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* TELEFON */
.btn-phone {
  background: linear-gradient(135deg, #ff6f00, #ff8f33);
}

/* WHATSAPP – culoare oficială */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #1EBE57);
}

/* VIBER – culoare oficială */
.btn-viber {
  background: linear-gradient(135deg, #7360F2, #8F5DB7);
}

/* HOVER EFECT UNIFORM */
.btn-hero:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.45);
}

/* MOBILE */
@media (max-width: 768px) {
  .btn-hero {
    min-width: 100%;
  }
}

/* HERO MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .hero,
  .hero-service {
    padding: 70px 20px 40px;
    min-height: auto;
  }

  .hero h1,
  .hero-service h1 {
    font-size: 1.9rem;
    line-height: 1.3;
  }

  .hero p,
  .hero-service p {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .hero-actions {
    margin-top: 15px;
  }
}

/* WORKS GRID */
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.work-card {
  background: #1e1e1e;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.work-card:hover {
  transform: translateY(-6px);
}

.work-card img {
  width: 100%;
  display: block;
}

.work-info {
  padding: 15px;
}

.work-info h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.work-info p {
  font-size: 0.95rem;
  color: #bbb;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

.lightbox-controls {
  position: absolute;
  bottom: 40px;
  display: flex;
  gap: 20px;
}

.lightbox-controls button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.lightbox-controls button:hover {
  background: #ff6f00;
}

.lightbox-controls .prev {
  left: 20px;
}

.lightbox-controls .next {
  right: 20px;
}

/* TRUST SECTION */
.trust {
  margin-top: 40px;
  margin-bottom: 20px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #f0f0f0;
}

.trust-list li span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6f00, #ff8f33);
  color: #fff;
  border-radius: 50%;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

/* TRUST PREMIUM */
.trust {
  margin-top: 40px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.trust-item {
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 22px 15px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.trust-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6f00, #ff8f33);
  border-radius: 50%;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.trust-item strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.trust-item p {
  font-size: 0.95rem;
  color: #ccc;
}

/* TRUST PREMIUM */
.trust {
  margin-top: 40px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.trust-item {
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 22px 15px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.trust-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6f00, #ff8f33);
  border-radius: 50%;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.trust-item strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.trust-item p {
  font-size: 0.95rem;
  color: #ccc;
}

/* BADGES */
.trust-badges {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.trust-badges .badge {
  background: rgba(255,255,255,0.08);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* MOBILE ULTRA COMPACT */
@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trust-item {
    padding: 15px 10px;
  }

  .trust-item strong {
    font-size: 1.05rem;
  }

  .trust-item p {
    font-size: 0.85rem;
  }
}

.trust-item strong {
  transition: color 0.3s ease;
}

.trust-item:hover strong {
  color: #ff6f00;
}

/* BADGE ANIMATION */
.trust-badges .badge {
  opacity: 0;
  transform: translateY(15px);
  animation: badgeFade 0.6s ease forwards;
}

.trust-badges .badge:nth-child(1) {
  animation-delay: 0.2s;
}
.trust-badges .badge:nth-child(2) {
  animation-delay: 0.4s;
}

@keyframes badgeFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover subtil */
.trust-badges .badge:hover {
  background: rgba(255,255,255,0.15);
}

/* CTA PULSE */
.pulse {
  animation: pulseCTA 1.5s ease infinite;
}

@keyframes pulseCTA {
  0% {
    box-shadow: 0 0 0 0 rgba(255,111,0,0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255,111,0,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255,111,0,0);
  }
}
/* CTA VISUAL PRIORITY */
.hero-actions {
  position: relative;
}

.hero-actions::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    circle,
    rgba(255,111,0,0.15),
    transparent 70%
  );
  z-index: -1;
}
.hero-actions {
  animation: focusCTA 1.2s ease;
}

@keyframes focusCTA {
  0% { transform: scale(0.97); }
  100% { transform: scale(1); }
}


/* BENEFITS PREMIUM */
.benefits {
  margin-top: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.benefit-item {
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 22px 16px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.benefit-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6f00, #ff8f33);
  border-radius: 50%;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.benefit-item strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.benefit-item p {
  font-size: 0.9rem;
  color: #ccc;
}

/* MOBILE COMPACT */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .benefit-item {
    padding: 16px 12px;
  }

  .benefit-item strong {
    font-size: 0.95rem;
  }

  .benefit-item p {
    font-size: 0.8rem;
  }
}
/* PRODUCT SLIDER */
.product-slider {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.product-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transform: scale(1.05);
  transition:
    opacity 0.6s ease,
    transform 0.8s ease;
}
.product-slider img {
  filter: brightness(0.95) contrast(1.05);
}

.product-slider img.active {
  filter: brightness(1) contrast(1);
}
.product-slider {
  background: #000; /* evită flash alb */
}

/* IMAGINE ACTIVĂ */
.product-slider img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.product-slider img.active {
  opacity: 1;
}

/* BUTOANE */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 3;
}

.slide-btn.prev { left: 10px; }
.slide-btn.next { right: 10px; }

.slide-btn:hover {
  background: rgba(255,111,0,0.9);
}

/* MOBILE */
@media (max-width: 768px) {
  .product-slider {
    height: 200px;
  }
}

.product-slider img {
  transition: opacity 0.5s ease;
}
.contact-box {
  margin-top: 80px;
  padding: 50px 25px;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.03)
  );
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.contact-lead {
  font-size: 1.05rem;
  color: #f0f0f0;
  max-width: 720px;
  margin: 15px auto 8px;
}

.contact-sub {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 30px;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-btn {
  min-width: 180px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* CULORI OFICIALE */
.contact-btn.phone {
  background: linear-gradient(135deg, #ff6f00, #ff8f33);
}

.contact-btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #1EBE57);
}

.contact-btn.viber {
  background: linear-gradient(135deg, #7360F2, #8F5DB7);
}

.contact-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 15px 35px rgba(0,0,0,0.55);
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-btn {
    min-width: 100%;
  }
}
/* FAQ ANSWER – ASCUNS IMPLICIT */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 24px;
  transition:
    max-height 0.8s ease,
    opacity 0.4s ease,
    padding 0.4s ease;
}

/* DOAR CÂND ESTE ACTIV */
.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding-top: 16px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 24px;
  transition: max-height 0.8s ease, opacity 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  opacity: 1;
  padding-top: 16px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 24px;
  transition: max-height 0.8s ease, opacity 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  opacity: 1;
  padding-top: 16px;
}
/* TITLURI SECȚIUNI – PREMIUM */
.section-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

/* LINIE ACCENT SUB TITLU */
.section-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  margin: 18px auto 0;
  background: linear-gradient(
    90deg,
    #ff6f00,
    #ff9a3c
  );
  border-radius: 4px;
}

/* SUBTITLU */
.section-subtitle {
  text-align: center;
  max-width: 620px;
  margin: 22px auto 60px;
  font-size: 1.05rem;
  color: #cfcfcf;
  line-height: 1.7;
}

/* MOBILE */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }
}
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

/* MODELE ACOPERIȘ – IMAGINI UNIFORME */
.model-card img {
  width: 100%;
  height: 450px;          /* 👈 dimensiune controlată */
  object-fit: cover;     /* umple fără deformare */
  display: block;
}

/* CARD */
.model-card {
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  box-shadow: 0 20px 45px rgba(0,0,0,0.45);
  transition: transform .35s ease;
}

/* TITLU MODEL */
.model-card h3 {
  padding: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
}

/* HOVER */
.model-card:hover {
  transform: translateY(-6px);
}

/* MOBILE */
@media (max-width: 768px) {
  .model-card img {
    height: 450px;       /* mai compact pe mobil */
  }
}
.seo-footer-text {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  color: #b5b5b5;
  font-size: 15px;
}

.seo-footer-text strong {
  color: #ffffff;
  font-weight: 600;
}
.seo-highlight {
  margin-top: 60px;
  padding: 40px 30px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.02)
  );
  border-radius: 14px;
}

.seo-highlight h2 {
  margin-bottom: 12px;
  font-size: 22px;
}

.seo-highlight p {
  max-width: 820px;
  color: #cfcfcf;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.blog-card {
  background: #111;
  border-radius: 14px;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card h2 {
  font-size: 18px;
  padding: 16px;
}

.blog-card p {
  padding: 0 16px 20px;
  color: #bbb;
}

.blog-article h1 {
  font-size: 32px;
  margin-bottom: 20px;
}
main {
  padding-top: 90px; /* ajustează dacă navbarul e mai mare */
}
.hero-blog {
  text-align: center;
  padding: 60px 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.blog-card {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-content {
  padding: 20px;
}

.blog-card h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.blog-card p {
  color: #bbb;
  margin-bottom: 14px;
}

.blog-link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.blog-link:hover {
  text-decoration: underline;
}
.blog-hero {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(180deg, #0f0f0f, #111);
}

.blog-hero h1 {
  max-width: 900px;
  margin: 0 auto 16px;
  font-size: 34px;
}

.blog-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #bbb;
  font-size: 17px;
}

.blog-article {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 20px;
}

.blog-article img.article-image {
  width: 100%;
  border-radius: 16px;
  margin: 30px 0;
}

.blog-article h2 {
  margin-top: 40px;
  font-size: 26px;
}

.blog-article p {
  color: #ccc;
  line-height: 1.7;
  margin: 14px 0;
}

.blog-meta {
  font-size: 14px;
  color: #888;
  margin-top: 10px;
}

.blog-cta {
  margin-top: 60px;
  padding: 40px;
  background: #111;
  border-radius: 16px;
  text-align: center;
}

.blog-cta h3 {
  margin-bottom: 12px;
}

.blog-cta a {
  margin-top: 16px;
  display: inline-block;
}

.blog-back {
  display: inline-block;
  margin-bottom: 20px;
  color: #aaa;
  text-decoration: none;
}

.blog-back:hover {
  text-decoration: underline;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info p {
  margin-bottom: 14px;
}

.contact-map iframe {
  border-radius: 16px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 30px;
}

.work-card {
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  box-shadow: 0 20px 45px rgba(0,0,0,0.45);
  transition: transform .4s ease;
}

.work-card:hover {
  transform: translateY(-6px);
}

.work-card img {
  width: 100%;
  display: block;
}

.work-info {
  padding: 16px;
}

.work-info h3 {
  font-size: 1.05rem;
}

.work-info p {
  color: #ccc;
  font-size: .9rem;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
}

.lightbox-controls button {
  font-size: 2rem;
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
  margin: 0 20px;
}
.works-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: all .3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #ff6f00;
  border-color: #ff6f00;
  color: #000;
}


/* VIDEO */

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* TEXT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {

  .hero-content {
    padding: 70px 15px;
  }
}



.hero-content {
  position: relative;
  z-index: 2;

  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* centru vertical */
  align-items: center;       /* centru orizontal */

  text-align: center;
  color: #fff;
  padding: 0 20px;
}

/* Text */
.hero-content h1 {
  max-width: 900px;
  margin-bottom: 20px;
}

.hero-content p {
  max-width: 700px;
  margin-bottom: 30px;
}

/* Butoane */
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


.hero-bg-video.active {
  opacity: 1;
}



/* OVERLAY (întunecare) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}

/* TEXT + BUTOANE */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
/* =========================
   HERO VIDEO FINAL OPTIM
========================= */


/* VIDEO */
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .6s ease-in-out;
  z-index: 1;
}

.hero video.active {
  opacity: 1;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 2.6rem;
  max-width: 900px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 700px;
  margin-bottom: 30px;
}

/* MOBILE – fallback imagine */
@media (max-width: 768px) {
  .hero {
    height: 420px;
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
      ),
      url('../img/hero-bg.webp') center/cover no-repeat;
  }

  .hero video {
    display: none;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
/* ZOOM CINEMATIC */
.hero video.active {
  animation: heroZoom 18s linear forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}
.hero-content h1,
.hero-content p,
.hero-actions {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.hero-content.show h1,
.hero-content.show p,
.hero-content.show .hero-actions {
  opacity: 1;
  transform: translateY(0);
}

/* Delay pe elemente */
.hero-content.show p {
  transition-delay: .15s;
}

.hero-content.show .hero-actions {
  transition-delay: .3s;
}


.hero-content p {
  animation-delay: .15s;
}

.hero-actions {
  animation-delay: .3s;
}

@keyframes heroTextIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================
   HERO VIDEO – MOBILE FIX
========================= */

.hero-video {
  height: 70vh;           /* NU full screen */
  min-height: 420px;
}

.hero-bg-video {
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-video {
    height: 55vh;         /* mai mic pe mobil */
    min-height: 320px;
  }

  .hero-bg-video {
    display: block !important;
  }
}
@media (max-width: 768px) {

  .hero-content {
    padding: 0 14px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .btn-hero {
    min-width: auto;      /* ❗ oprește full width */
    width: 100%;
    max-width: 260px;     /* 👈 limită clară */
    height: 44px;
    font-size: 0.95rem;
    border-radius: 10px;
  }

}
.hero-service {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-service .hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.hero-service h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.hero-service p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-service {
    min-height: auto;
    padding: 80px 20px 40px;
  }

  .hero-service h1 {
    font-size: 2rem;
  }

  .hero-service p {
    font-size: 1rem;
  }
}
/* LIGHTBOX CAPTION */
.lightbox-content {
  text-align: center;
}

.lightbox-caption {
  margin-top: 15px;
  color: #fff;
}

.lightbox-caption h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.lightbox-caption p {
  font-size: 0.95rem;
  color: #ccc;
}

/* SWIPE FEEL */
.lightbox img {
  transition: transform .25s ease, opacity .25s ease;
}


.model-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background-color: #000;
}

@media (max-width: 600px) {
  .model-card img {
    height: auto;
  }
}
/* ===============================
   MODELE – GRID GENERAL
================================ */
.models {
  padding: 80px 0;
}

.section-title {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #b5b5b5;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
  font-size: 1rem;
}

/* ===============================
   GRID MODELE (MARE)
================================ */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

/* ===============================
   CARD MODEL
================================ */
.model-card {
  background: #111;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.model-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* ===============================
   IMAGINI (NU TAIE)
================================ */
.model-card img {
  width: 100%;
  height: 500px;        /* 🔥 mare */
  object-fit: contain; /* 🔑 vezi imaginea complet */
  background-color: #000;
  padding: 14px;
  display: block;
}

/* ===============================
   TITLU MODEL
================================ */
.model-card h3 {
  color: #fff;
  font-size: 1.15rem;
  text-align: center;
  padding: 18px 12px;
  letter-spacing: 0.3px;
}

/* ===============================
   SEO TEXT ACOPERIS
================================ */
.roofing-seo {
  margin-top: 80px;
  color: #ccc;
  max-width: 900px;
}

.roofing-seo h2 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.roofing-seo p {
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ===============================
   RESPONSIVE MOBILE
================================ */
@media (max-width: 768px) {
  .models {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

  .models-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .model-card img {
    height: auto;   /* 🔑 pe mobil */
    padding: 10px;
  }
}
section[id],
h2[id],
h3[id] {
  scroll-margin-top: 120px; /* ajustează după înălțimea meniului */
}

body.menu-open {
  overflow: hidden;
}

.hero-content p {
    font-size: 15px;   /* desktop */
    line-height: 1.5;
    margin: 0px 0 25px;
}

.hero-service {
    display: flex;
    flex-direction: column;   /* pune titlul, textul și butoanele unul sub altul */
    align-items: center;
    text-align: center;
    gap: 20px;
}
.hero-service .hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 768px) {

    .hero-service .hero-actions {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .hero-service .btn-hero {
        width: 90%;
        max-width: 320px;
    }

}
.contact-map {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
}

.contact-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}
.contact-map iframe {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
#lightboxImg {
  transition: opacity 0.3s ease;
}

.lightbox-controls button {
  background: rgba(0,0,0,0.75);
  color: #fff;
  border: none;
  font-size: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-controls button:hover {
  background: #ff3c00;
  transform: scale(1.15);
}

.lightbox-controls {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* permite click pe imagine */
}

.lightbox-controls button {
  pointer-events: auto;
  background: rgba(0,0,0,0.75);
  color: #fff;
  border: none;
  font-size: 32px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

#prevImg {
  margin-left: 30px;
}

#nextImg {
  margin-right: 30px;
}

.lightbox-controls button:hover {
  background: #ff6f00;
  transform: scale(1.15);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}
.lightbox-controls button {
  font-weight: 900;     /* mai gros */
  font-size: 40px;      /* mai mare */
}
.lightbox-controls button {
  display: flex;              /* 🔥 important */
  align-items: center;        /* centru vertical */
  justify-content: center;    /* centru orizontal */

  font-size: 38px;
  font-weight: 900;
  line-height: 1;

  width: 65px;
  height: 65px;
  border-radius: 50%;

  background: rgba(0,0,0,0.75);
  color: #fff;
  border: none;
  cursor: pointer;

  padding: 0;                 /* 🔥 elimină offset */
}

/* =========================
   PRODUCT PREMIUM EFFECT
========================= */

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  transition: transform .4s ease, box-shadow .4s ease;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

/* Glow subtil */
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,111,0,0.25),
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform .8s ease;
}

.product-card:hover::before {
  transform: translateX(100%);
}

.product-slider img {
  transition:
    opacity 0.6s ease,
    transform 1.2s ease;
}

.product-card:hover .product-slider img.active {
  transform: scale(1.08);
}

.product-card .badge {
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0% { box-shadow: 0 0 0 0 rgba(255,111,0,0.5); }
  70% { box-shadow: 0 0 0 12px rgba(255,111,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,111,0,0); }
}

/* =========================
   HERO SERVICE FIX
========================= */

.hero-service {
  position: relative;
  min-height: 60vh;
  height: auto;
  padding: 120px 20px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.55)
    ),
    url('../img/hero-bg.webp') center/cover no-repeat;
}

.hero-service .hero-content {
  height: auto;
  max-width: 900px;
}

@media (max-width: 768px) {
  .hero-service {
    padding: 100px 20px 60px;
  }
}

/* =========================
   HERO SERVICE FINAL FIX
========================= */

.hero.hero-service {
  height: auto !important;
  min-height: 60vh;
  padding: 140px 20px 80px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.65)
    ),
    url('../img/hero-bg.webp') center/cover no-repeat;
}

.hero.hero-service .hero-content {
  height: auto !important;
}
.hero.hero-service .hero-content,
.hero.hero-service h1,
.hero.hero-service p,
.hero.hero-service .hero-actions {
  opacity: 1 !important;
  transform: none !important;
}

/* =========================
   FOOTER SOCIAL PREMIUM
========================= */

.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  transition: transform 0.3s ease;
}

/* Hover general */
.social-icon:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

/* Facebook glow */
.social-icon.facebook:hover {
  background: linear-gradient(135deg, #1877F2, #3b82f6);
  box-shadow: 0 0 20px rgba(24,119,242,0.6);
}

/* Instagram glow */
.social-icon.instagram:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  box-shadow: 0 0 20px rgba(221,42,123,0.6);
}

/* Mic bounce la icon */
.social-icon:hover svg {
  transform: scale(1.2);
}

/* =========================
   NAVBAR SOCIAL PREMIUM
========================= */

.nav-social {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-left: 25px;
}

.nav-social-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}

.nav-social-icon svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  transition: transform 0.3s ease;
}

/* Hover premium */
.nav-social-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

/* Facebook */
.nav-social-icon.facebook:hover {
  background: linear-gradient(135deg, #1877F2, #3b82f6);
  box-shadow: 0 0 18px rgba(24,119,242,0.6);
}

/* Instagram */
.nav-social-icon.instagram:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  box-shadow: 0 0 18px rgba(221,42,123,0.6);
}

.nav-social-icon:hover svg {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .nav-social {
    display: none;
  }
}



/* =========================
   LIGHTBOX ARROWS CENTERED ON IMAGE
========================= */

.lightbox-content {
  position: relative;
  display: inline-block; /* 🔥 important */
}

.lightbox img {
  display: block;
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 16px;
}

/* container săgeți fix peste imagine */
.lightbox-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;                /* 🔥 în loc de width */
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

/* butoane */
.lightbox-controls button {
  pointer-events: auto;

  width: 55px;
  height: 55px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,0.65);
  color: #fff;
  border: none;

  font-size: 34px;
  font-weight: 900;
  line-height: 1;

  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-controls button:hover {
  background: #ff6f00;
  transform: scale(1.12);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

/* MOBILE */
@media (max-width: 768px) {
  .lightbox-controls button {
    width: 46px;
    height: 46px;
    font-size: 26px;
  }
}

.works-section {
  scroll-margin-top: 120px;
}
html {
  scroll-behavior: smooth;
}

.works-section {
  scroll-margin-top: 120px; /* înălțimea navbarului */
}
:root {
  --nav-height: 90px;
}

.works-section {
  scroll-margin-top: var(--nav-height);
}

.hero {
  position: relative;
  width: 100%;
  height: 65vh;
  max-height: 720px;
  overflow: hidden;
  border-radius: 30px;
  margin: 20px 0;
}


.hero {
  margin: 20px 15px;
  width: auto;
}

body {
  overflow-x: clip;
}
.hero-blog {
  position: relative;
  height: 60vh;
  min-height: 420px;

  background: linear-gradient(
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.65)
    ),
    url('/img/hero-bg.webp') center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-blog .hero-content,
.hero-blog h1,
.hero-blog p {
  opacity: 1 !important;
  transform: none !important;
}
