/* HERO */
.hero-slider {
  height: 45vh;
  overflow: hidden;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateX(100%);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  color: #fff;
  padding: 2.5rem 2rem;
  z-index: 2;
}

.hero-content h1 {
  font-family: 'Sintony', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 1.2rem;
  letter-spacing: clamp(0.5px, 0.2vw, 2px);
  text-shadow: 3px 3px 8px rgba(0,0,0,0.8);
  line-height: 1.2;
  overflow: visible;
}

.hero-content p {
  font-family: 'Sintony', sans-serif;
  font-style: italic;
  font-size: clamp(1rem, 3vw + 0.25rem, 2.2rem);
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  line-height: 1.5;
  overflow: visible;
}

/* SERVICES */
.services-section {
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f2f5 100%);
  position: relative;
  height: 100%;
  margin-bottom: 5rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  margin-top: 5rem;
  gap: 8rem;
}
.service-item.reverse { flex-direction: row-reverse; }

.service-item h3 {
  text-align: left;
}
.service-item p {
  text-align: justify;
}

.service-image {
  flex-shrink: 0;
  width: 360px;
  height: 280px;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.service-content h3 {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}
.service-content p {
  font-style: italic !important;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ANIME */
.service-item {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease forwards;
}

.cta-link {
  margin-top: 1.5rem;
  text-align: center;
}

.cta-link .btn-link {
  font-family: 'Sintony', sans-serif;
  font-size: clamp(0.6rem, 2.5vw, 1rem);
  padding: clamp(0.5rem, 3vw, 0.8rem) clamp(2.5rem, 6vw, 4rem);
  background: linear-gradient(135deg, #0e60b3 0%, #052564 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0,123,255,0.3), 0 4px 12px rgba(0,0,0,0.1);
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }

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

.service-image {
  flex: 0 0 43%;
}

.service-content {
  position: relative;
}

.service-content::before {
  content: '';
  position: absolute;
  top: 0; left: -20px;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), #0056b3);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .hero-slider { height: 50vh !important; }
  .services-section { padding: 3.5rem 0 !important; }
}

@media (max-width: 480px) {
  .hero-content { padding: 1.5rem 1rem !important; }
  .hero-content h1 { letter-spacing: 1px !important; }
}
