/* ===============================
   HERO VIDEO
================================ */
.hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Background Video */
.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Overlay for Readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(15, 23, 42, 0.85),
    rgba(0, 0, 0, 0.65)
  );
  z-index:1;
}

/* ===============================
   HERO CONTENT
================================ */
.hero-wrapper {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 900px;
  color: #ffffff;
  margin-top: 60px !important;
}

/* Badge */
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  color: #f5d76e;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  backdrop-filter: blur(6px);
}

/* Title */
.hero-title {
  font-size: clamp(34px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.hero-title span {
  color: #d4af37;
}

/* Subtitle */
.hero-subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.7;
  color: #e5e7eb;
  max-width: 760px;
  margin: 0 auto 40px;
}

/* ===============================
   BUTTONS
================================ */
.hero-buttons.center {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.btn {
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, #f5d76e, #d4af37);
  color: #0f172a;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.45);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 45px rgba(212, 175, 55, 0.7);
}

/* ===============================
   TAGS / SERVICES
================================ */
.hero-tags {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-tags a{
    text-decoration: none;
}

.hero-tags span {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 30px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.hero-tags span:hover {
  background: #d4af37;
  color: #0f172a;
  transform: translateY(-2px);
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 768px) {
  .hero-video {
    height: 90vh;
  }


  
}

@media (max-width: 576px) {
  .hero-subtitle {
    margin-bottom: 32px;
  }

  
 

  .hero-tags span {
    font-size: 13px;
    padding: 8px 14px;
  }
}
