/* Hero Video Section */
.hero {
  position: relative;
  min-height: 742px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: relative;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-content-title h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-content-title h1 span {
  color: #fd5523;
}

.hero-content-body {
  margin-bottom: 2rem;
}

.hero-content-body p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.btn-default {
  display: inline-block;
  padding: 15px 30px;
  background-color: #fd5523;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-default:hover {
  background-color: #e04419;
  color: white;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content-title h1 {
    font-size: 2.5rem;
  }
  
  .hero {
    min-height: 70vh;
  }
}

@media (max-width: 576px) {
  .hero-content-title h1 {
    font-size: 2rem;
  }
}