
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  background: linear-gradient(135deg, #ffffff 0%, color-mix(in srgb, var(--bs-primary), transparent 90%) 100%);
  position: relative;
  overflow: hidden;
}

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

.hero .hero-content .content {
  padding: 80px 0;
}

.hero .hero-content .content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .hero .hero-content .content h1 {
    font-size: 2.5rem;
  }
}

.hero .hero-content .content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, #444444, transparent 20%);
  margin-bottom: 3rem;
  max-width: 90%;
}

.hero .hero-content .content .cta-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero .hero-content .content .cta-group .btn-primary {
  background: var(--bs-primary);
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
}

.hero .hero-content .content .cta-group .btn-primary:hover {
  background: color-mix(in srgb, var(--bs-primary), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--bs-primary), transparent 70%);
}

.hero .hero-content .content .cta-group .btn-secondary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #172624;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .hero-content .content .cta-group .btn-secondary i {
  font-size: 1.5rem;
  color: var(--bs-primary);
  transition: all 0.3s ease;
}

.hero .hero-content .content .cta-group .btn-secondary:hover {
  color: var(--bs-primary);
}

.hero .hero-content .content .cta-group .btn-secondary:hover i {
  transform: scale(1.1);
}

.hero .hero-content .hero-image {
  position: relative;
  padding: 80px 0;
}

.hero .hero-content .hero-image img {
  border-radius: 12px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
  width: 100%;
  height: auto;
}

.hero .hero-content .hero-image .floating-card {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .hero .hero-content .hero-image .floating-card {
    left: 20px;
    bottom: 20px;
    padding: 1.5rem;
  }
}

.hero .hero-content .hero-image .floating-card .card-content {
  display: flex;
  gap: 2rem;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-image .floating-card .card-content {
    flex-direction: column;
    gap: 1rem;
  }
}

.hero .hero-content .hero-image .floating-card .metric {
  text-align: center;
}

.hero .hero-content .hero-image .floating-card .metric .number {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: var(--bs-primary);
  line-height: 1;
}

.hero .hero-content .hero-image .floating-card .metric .label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 0.25rem;
}

.hero .hero-features {
  background: #f9f9f9;
  padding: 4rem 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .hero-features .feature-item {
  text-align: center;
  padding: 2rem 1rem;
  transition: all 0.3s ease;
}

.hero .hero-features .feature-item:hover {
  transform: translateY(-5px);
}

.hero .hero-features .feature-item .icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--bs-primary), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.hero .hero-features .feature-item .icon i {
  font-size: 2rem;
  color: var(--bs-primary);
}

.hero .hero-features .feature-item h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #172624;
}

.hero .hero-features .feature-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.hero .hero-features .feature-item:hover .icon {
  background: var(--bs-primary);
  transform: scale(1.1);
}

.hero .hero-features .feature-item:hover .icon i {
  color: #ffffff;
}

@media (max-width: 992px) {
  .hero .hero-content .content {
    text-align: center;
    padding: 60px 0 40px;
  }

  .hero .hero-content .content p {
    max-width: 100%;
  }

  .hero .hero-content .hero-image {
    padding: 40px 0 60px;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("../img/bg/abstract-bg-1.webp") center/cover no-repeat;
  opacity: 0.03;
  z-index: 1;
}
