/* Bloodlink Section Styles for Homepage */

/* Hero Section */
.bloodlink-hero {
  position: relative;
  padding: 180px 0 120px;
  background: radial-gradient(circle at top right, rgba(215, 35, 35, 0.04) 0%, transparent 45%),
    radial-gradient(circle at bottom left, rgba(215, 35, 35, 0.04) 0%, transparent 45%),
    linear-gradient(to bottom, #ffffff, #fafafa);
  overflow: hidden;
}

.bloodlink-hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('../images/banner/banner-three-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

.bloodlink-content {
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #D72323;
  background: rgba(215, 35, 35, 0.1);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 25px;
  font-family: 'Outfit', sans-serif;
}

.hero-subtitle i {
  font-size: 1.1rem;
}

.bloodlink-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #1a1a1a;
  letter-spacing: -1px;
}

.text-highlight {
  color: #D72323;
  position: relative;
  display: inline-block;
}

.text-highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(215, 35, 35, 0.15);
  z-index: -1;
  transform: skewX(-15deg);
}

.hero-desc {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 90%;
  line-height: 1.6;
}

/* Floating Animation for App Mockup */
.floating-animate {
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-25px);
  }

  100% {
    transform: translateY(0px);
  }
}

.app-mockup-shadow {
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
}

/* Premium Buttons */
.download-btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-premium {
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.btn-premium i {
  font-size: 1.4rem;
}

.btn-android {
  background: #D72323;
  color: #fff;
  box-shadow: 0 10px 25px rgba(215, 35, 35, 0.3);
}

.btn-android:hover {
  background: #b51b1b;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(215, 35, 35, 0.4);
  color: #fff;
}

.btn-google {
  background: #1a1a1a;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-google:hover {
  background: #000;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .bloodlink-hero {
    padding-top: 140px;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 40px;
  }

  .banner-three__thumb {
    margin-top: 60px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .download-btn-group {
    justify-content: center;
  }

  .bloodlink-title {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .bloodlink-title {
    font-size: 2.5rem;
  }

  .btn-premium {
    width: 100%;
    justify-content: center;
  }
}
