/* ===== SERVICES PAGE - COMPLETE ===== */

.service-item {
  animation: fadeInUp 0.6s ease backwards;
}

.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 {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-content {
  background: #fafafa;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 100px;
}

.service-item {
  cursor: pointer;
}

.service-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.service-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
  opacity: 0;
  transform: scale(0.98);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.service-img:hover .service-hover {
  opacity: 1;
  transform: scale(1);
}

.service-img:hover img {
  transform: scale(1.05);
}

.service-hover h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 15px;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.05s;
}

.service-hover p {
  color: #e0e0e0;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
  max-width: 90%;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.service-img:hover .service-hover h3,
.service-img:hover .service-hover p {
  transform: translateY(0);
}

.services-provided {
  max-width: 1000px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.section-title-small {
  text-align: center;
  margin-bottom: 48px;
}

.section-title-small h3 {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.divider-small {
  width: 40px;
  height: 1px;
  background: #c6a43b;
  margin: 12px auto 0;
}

.services-provided {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 48px 70px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

.process-list {
  display: flex;
  flex-direction: column;
}

.process-row {
  display: flex;
  gap: 28px;
  padding-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

.process-row:nth-child(2) { animation-delay: 0.15s; }
.process-row:nth-child(3) { animation-delay: 0.3s; }
.process-row:nth-child(4) { animation-delay: 0.45s; }
.process-row:nth-child(5) { animation-delay: 0.6s; }

.process-row-last {
  padding-bottom: 0;
}

.process-row-left {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #c6a43b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #c6a43b;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), background 0.4s ease, box-shadow 0.4s ease;
  animation: pulseIn 0.6s ease backwards;
}

.process-row:nth-child(2) .process-icon { animation-delay: 0.25s; }
.process-row:nth-child(3) .process-icon { animation-delay: 0.4s; }
.process-row:nth-child(4) .process-icon { animation-delay: 0.55s; }
.process-row:nth-child(5) .process-icon { animation-delay: 0.7s; }

@keyframes pulseIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.process-row:hover .process-icon {
  background: #c6a43b;
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 10px 24px rgba(198, 164, 59, 0.35);
}

.process-connector {
  width: 2px;
  flex: 1;
  min-height: 40px;
  margin-top: 10px;
  background: #e0e0e0;
  transform: scaleY(0);
  transform-origin: top;
  animation: growLine 0.6s ease forwards;
}

.process-row:nth-child(2) .process-connector { animation-delay: 0.4s; }
.process-row:nth-child(3) .process-connector { animation-delay: 0.55s; }
.process-row:nth-child(4) .process-connector { animation-delay: 0.7s; }
.process-row:nth-child(5) .process-connector { animation-delay: 0.85s; }

@keyframes growLine {
  to { transform: scaleY(1); }
}

.process-row-right {
  flex: 1;
  padding-top: 6px;
}

.process-number {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 6px;
}

.process-row-right h4 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1a1a1a;
  margin: 0 0 12px;
}

.process-row-right p {
  color: #444;
  line-height: 1.85;
  font-size: 1.08rem;
  font-weight: 400;
  margin: 0;
  max-width: 60ch;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .services-grid {
    gap: 20px;
  }
  
  .service-hover h3 {
    font-size: 1rem;
  }
  
  .service-hover p {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 100%;
    padding: 0 16px;
    margin: 0 auto 60px;
  }
  
  .service-img {
    aspect-ratio: 4/3;
    max-width: 100%;
    border-radius: 12px;
  }
  
  .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .service-hover {
    padding: 20px;
    border-radius: 12px;
  }
  
  .service-hover h3 {
    font-size: 1.1rem;
  }
  
  .service-hover p {
    font-size: 0.85rem;
    max-width: 100%;
  }
  
  .services-provided {
    max-width: 100%;
    margin: 30px auto 0;
    padding: 30px 20px;
    border-radius: 16px;
  }
  
  .section-title-small h3 {
    font-size: 1.3rem;
    letter-spacing: 2px;
  }

  .process-row {
    gap: 18px;
    padding-bottom: 32px;
  }

  .process-icon {
    width: 48px;
    height: 48px;
    font-size: 1rem;
    animation: none;
  }

  .process-connector {
    animation: none;
    transform: scaleY(1);
  }

  .process-row-right h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .process-row-right p {
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .services-grid {
    gap: 16px;
    padding: 0 12px;
  }
  
  .service-img {
    aspect-ratio: 3/2;
    border-radius: 10px;
  }
  
  .service-hover {
    padding: 16px;
  }
  
  .service-hover h3 {
    font-size: 0.95rem;
    letter-spacing: 2px;
  }
  
  .service-hover p {
    font-size: 0.75rem;
  }

  .process-row {
    gap: 14px;
    padding-bottom: 26px;
  }

  .process-icon {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }

  .process-row-right h4 {
    font-size: 1rem;
  }

  .process-row-right p {
    font-size: 0.9rem;
  }
  
  .section-title-small h3 {
    font-size: 1.1rem;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
  }
}