/* Stil complet pentru pagina Servicii - Jet Xpert */

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #fdfdfd;
  color: #1a1a1a;
}

.services-header {
  position: relative;
  height: 70vh;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('/images/services-bg.jpg') center/cover no-repeat;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

.services-header .overlay h1 {
  font-size: 2.75rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.75rem;
  animation: fadeInDown 1s ease-out;
}

.services-header .overlay p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.header-highlight {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  background: #facc15;
  color: #1a1a1a;
  font-weight: bold;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.note {
  color: #e2e8f0;
  font-style: italic;
}

.services-list {
  padding: 4rem 1rem;
  background: #fff;
}

.services-list .section-title {
  text-align: center;
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #475569;
  font-size: 1.05rem;curatare-subsoluri-spatii-dificile
}

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

.service-box {
  background: #f1f5f9;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.service-box.in-view {
  opacity: 1;
  transform: translateY(0);
}

.service-box:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.service-box h3 {
  margin-top: 1rem;
  color: #1a1a1a;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.service-box p {
  color: #475569;
  font-size: 0.95rem;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: #2b2b2b;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  transition: background 0.3s;
}

.icon-circle img {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
}

.service-box:hover .icon-circle {
  background: #1a1a1a;
}

.promo-call {
  background: #1a1a1a;
  color: #fff;
  padding: 4rem 1rem;
  text-align: center;
}

.promo-call h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.promo-call p {
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.button.cta {
  background: #facc15;
  color: #1a1a1a;
  padding: 0.8rem 2rem;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.button.cta:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .services-header .overlay h1 {
    font-size: 2rem;
  }
  .grid {
    gap: 1.5rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
}

.services-header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.services-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/images/service-bg.webp') center center / cover no-repeat;
  z-index: 1;
  animation: zoomBg 20s ease-in-out infinite alternate;
  transform: scale(1.1);
}

.services-header .overlay {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
}

.services-header .overlay h1 {
  font-size: 2.8rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease-out;
}

.services-header .overlay p {
  font-size: 1.2rem;
  max-width: 700px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.header-highlight {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 1.1rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.badge {
  background: #facc15;
  color: #1a1a1a;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: bold;
  font-size: 1rem;
}

.note {
  color: #e0e7ff;
}

/* ANIMAȚII */
@keyframes zoomBg {
  0% { transform: scale(1.1); }
  100% { transform: scale(1.2); }
}

.service-box[data-aos] {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.5s ease;
}

.service-box.aos-animate {
  opacity: 1;
  transform: scale(1);
}

