/* Premium Hero Section Styles extracted from index.html master design */

.hero-premium {
  /* background-image is applied inline per page */
  background-size: cover;
  background-position: center center;
  position: relative;
  padding: 200px 0 160px;
  display: flex;
  align-items: center;
  border-bottom: 5px solid #3e969e;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(15, 25, 36, 0.92) 0%,
    rgba(15, 25, 36, 0.5) 100%
  );
  z-index: 1;
}

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

.hero-title {
  color: #ffffff;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
}

.hero-title span {
  color: #3e969e; /* Theme primary color */
}

.hero-description {
  color: #f1f5f9;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 650px;
  margin-bottom: 40px;
  border-left: 4px solid #3e969e;
  padding-left: 20px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
}

.hero-btn {
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.hero-btn-primary {
  background-color: #3e969e;
  color: #fff;
  border: 2px solid #3e969e;
}

.hero-btn-primary:hover,
.hero-btn-primary:focus {
  background-color: #2a6f75;
  border-color: #2a6f75;
  color: #fff;
}

.hero-btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.hero-btn-secondary:hover,
.hero-btn-secondary:focus {
  background-color: #fff;
  color: #1e293b;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.trust-item i {
  color: #3e969e;
  font-size: 18px;
}

@media (max-width: 768px) {
  .hero-premium {
    padding: 140px 0 80px;
    text-align: center;
    border-bottom: 3px solid #3e969e;
  }
  .hero-overlay {
    background: rgba(15, 25, 36, 0.8);
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-description {
    font-size: 18px;
    border-left: none;
    padding-left: 0;
    margin: 0 auto 30px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .hero-trust {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .hero-btn {
    width: 100%;
    text-align: center;
  }
}
