/* ===== SERVICE DETAIL PAGES ===== */

/* Hero Banner */
.service-hero {
  height: 55vh;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  color: #fff;
}

.hero-tag {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c6a43b;
  display: block;
  margin-bottom: 12px;
}

.hero-content h1 {
  font-size: clamp(1.1rem, 3.2vw, 3rem);
  font-weight: 300;
  letter-spacing: clamp(0.5px, 0.25vw, 4px);
  text-transform: uppercase;
  line-height: 1.3;
  white-space: nowrap;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.85;
  letter-spacing: 1px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  color: #999;
  margin-bottom: 60px;
}

.breadcrumb a {
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #1a1a1a;
}

.breadcrumb span:last-child {
  color: #1a1a1a;
}

/* Service Intro */
.service-intro {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.service-intro h2 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.divider-gold {
  width: 50px;
  height: 1px;
  background: #c6a43b;
  margin: 0 auto 28px;
}

/* ===== INTRO DESCRIPTION TO HƠN ===== */
.service-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  font-weight: 400;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== DETAIL LIST - 1 CỘT ===== */
.detail-list {
  max-width: 1000px;
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.detail-block {
  display: flex;
  gap: 30px;
  padding: 40px 0;
  border-bottom: 1px solid #f0f0f0;
  /* BỎ HOVER EFFECT */
}

.detail-block:last-child {
  border-bottom: none;
}

.detail-marker {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: #c6a43b;
  font-weight: 300;
  /* BỎ HOVER TRANSFORM */
}

.detail-content {
  flex: 1;
}

/* Title in đậm, to hơn */
.detail-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  color: #1a1a1a;
  text-transform: uppercase;
}

/* Description to hơn */
.detail-content p {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 400;
}

/* Service Gallery */
.service-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.service-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border-radius: 12px;
}

.service-gallery img:hover {
  transform: scale(1.02);
}

/* CTA Block */
.service-cta {
  text-align: center;
  padding: 80px 0 20px;
  border-top: 1px solid #eee;
}

.service-cta h3 {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.service-cta p {
  font-size: 1rem;
  color: #666;
  font-weight: 300;
  margin-bottom: 32px;
}

.btn-dark {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  padding: 14px 42px;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s ease;
  border-radius: 30px;
}

.btn-dark:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    letter-spacing: 1px;
  }

  .service-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .detail-list {
    padding: 0 20px;
  }

  .detail-block {
    gap: 20px;
    padding: 30px 0;
  }

  .detail-content h4 {
    font-size: 1.1rem;
  }

  .detail-content p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .service-intro p {
    font-size: 1rem;
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    letter-spacing: 0.5px;
  }

  .service-intro h2 {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }

  .service-intro p {
    font-size: 0.95rem;
  }

  .detail-block {
    flex-direction: column;
    gap: 10px;
    padding: 25px 0;
  }

  .detail-marker {
    margin-bottom: 5px;
  }

  .detail-content h4 {
    font-size: 1rem;
  }

  .detail-content p {
    font-size: 0.85rem;
  }

  .service-cta h3 {
    font-size: 1.4rem;
  }
}