:root {
  --albastru: #00416a;
  --gri-deschis: #f5f5f5;
  --accent: #007BFF;
  --galben: #FFD700;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: white;
  color: #333;
}

.page-header {
  background: linear-gradient(to right, #f9f9f9, #b8b8b8);
  padding: 4rem 1.5rem;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.header-text {
  color: #333;
}

.header-label {
  display: inline-block;
  background-color: #dbddd8;
  color: #4f6551;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.page-header h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.page-header .highlight {
  position: relative;
  display: inline-block;
  color: #be5915;
}

.page-header .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background-color: #ffd8b3;
  z-index: -1;
}

.header-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.header-buttons {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

.scroll-down-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-text {
  font-size: 1rem;
  color: #6d6357;
  margin-bottom: 0.2rem;
  font-weight: 500;
}

.scroll-down {
  font-size: 2rem;
  color: #be5915;
  animation: bounceDown 2s infinite;
  text-decoration: none;
}

@keyframes bounceDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}


.btn-main {
  background-color: #be5915;
  color: white;
  padding: 0.9rem 1.6rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-main:hover {
  background-color: #d77432;
  transform: translateY(-2px);
}

.btn-secondary {
  border: 2px solid #be5915;
  color: #be5915;
  padding: 0.9rem 1.6rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #f8e6d8;
  transform: translateY(-2px);
}

.header-image-slider {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.751);
  border: 2px solid #f5f5f5;
}

.header-image-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  width: 100%;
  height: 100%;
}

.header-image-slider .slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.header-image-slider .slide.active {
  opacity: 1;
  position: relative;
  z-index: 1;
}


@media screen and (max-width: 992px) {
  .header-image-slider {
    display: none;
  }
  .header-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .header-buttons {
    justify-content: center;
  }

  .header-image {
    order: -1;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}




/* Secțiuni individuale pentru fiecare serviciu */
.service-detail {
  padding: 3rem 1.5rem;
  border-bottom: 1px solid #eee;
  background: linear-gradient(to right, #f9f9f9, #b8b8b8);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.service-detail img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.text-box {
  background-color: #ffffff5a;
  border: 2px solid #e5e5e5;
  border-left: 4px solid #be5915;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.327);
  transition: box-shadow 0.3s ease;
}

.text-box:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.text-box h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #4a3b2c;
}

.text-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.custom-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.custom-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #444;
}

.custom-list li i {
  color: #be5915;
  font-size: 1.2rem;
  min-width: 20px;
}

.btn-contact.secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  background-color: #ffffff9a;
  color: #be5915;
  border: 2px solid #be5915;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-top: 1rem;
}

.btn-contact.secondary:hover {
  background-color: #f8e6d8;
  color: #be5915;
  transform: translateY(-2px);
}



/* Responsive */
@media screen and (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
    text-align: center;
  }
  

  .service-detail img {
    margin-bottom: 1rem;
    order: -1; /* imaginea apare prima pe mobil */
  }
}
