/* ===== Hero Section ===== */

.hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-text {
  flex: 1 1 560px;
}

.hero-label {
  display: block;
  margin: 0 auto 1rem auto;
  padding: 0.45rem 0.9rem;
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary);
  font-weight: 700;
  border-radius: 999px;
  font-size: 0.95rem;
}

.hero-service {
    color: var(--accent);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 1.25rem;
  max-width: 14ch;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--secondary);
  max-width: 60ch;
  margin-bottom: 1.75rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  border: 2px solid var(--primary);
  color: var(--primary);
  transition: var(--transition);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--primary);
  color: var(--white);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  padding: 0;
}

.hero-features li {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-weight: 600;
  color: var(--secondary);
}

.hero-media {
  flex: 1 1 480px;
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

/* ===== Responsive ===== */

@media (max-width: 992px) {
  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    max-width: 100%;
  }
#hero-title {text-align: center;}


  .hero-media {
    width: 100%;
  }
.hero-label {
  display: block;
  width: fit-content;
  margin: 0 auto 1rem auto;
  padding: 0.45rem 0.9rem;
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary);
  font-weight: 700;
  border-radius: 999px;
  font-size: 0.95rem;
}

}



@media (max-width: 600px) {
  .hero {
    padding: 3rem 0 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-features {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-features li {
    width: 100%;
    border-radius: 12px;
  }
}

@media (max-width: 600px) {
.hero-label {
  font-size: 0.75rem;
}
}