/* ==========================================================================
   HERO SECTION STYLES — AURALIX MEDIA (CENTERED POWERHOUSE LAYOUT)
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 0 5rem 0;
  background-color: #FAFAFC;
  overflow: hidden;
  text-align: center;
}

/* Very subtle dot pattern background replaced with image */
/* Very subtle dot pattern background replaced with image */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url('https://files.netnoted.com/storage/public/1787836155_6a9036fbbbaa8.png');
  background-size: 75% auto;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.35;
}

/* Fading gradient over pattern to blend edges smoothly into bg color */
.hero-bg-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #FAFAFC 0%, rgba(250, 250, 252, 0.4) 40%, transparent 100%);
}

/* Faint Brand Name Background Text */
.hero-bg-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: clamp(6rem, 20vw, 24rem);
  font-weight: 900;
  color: #111318;
  opacity: 0.025;
  /* Very subtle watermark */
  z-index: 0;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

/* Leaf Decoration on Extreme Left */
.hero-leaf-img {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 250px;
  height: auto;
  z-index: 2;
  pointer-events: none;
  opacity: 0.95;
}

@media (max-width: 1400px) {
  .hero-leaf-img {
    left: -4%;
    width: 200px;
  }
}

@media (max-width: 992px) {
  .hero-leaf-img {
    display: none;
  }
}



.hero-container-centered {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  /* Slightly wider to give headline room */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* =========================================
   FLOATING ELEMENTS (BADGES & ICONS)
   ========================================= */
.hero-float-badge-left {
  position: absolute;
  top: 25%;
  /* Pushed down slightly */
  left: -160px;
  /* Pushed further left */
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px dashed var(--brand-red);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  color: #111318;
  font-size: 0.85rem;
  font-weight: 600;
  transform: rotate(-10deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
}

.hero-float-badge-left i {
  color: var(--brand-red);
}

.hero-float-svg-right {
  position: absolute;
  top: 45%;
  right: -130px;
  /* Pushed further right */
  z-index: 3;
  pointer-events: none;
}

/* Premium Glassmorphic Social Icons */
.hero-social-float {
  position: absolute;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 0 15px rgba(255, 255, 255, 0.4) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 3;
  color: #111318;
}

.social-x {
  top: 15%;
  left: -110px;
  color: #111318;
}

.social-ig {
  top: 40%;
  left: -80px;
  color: #E1306C;
}

.social-fb {
  bottom: 15%;
  left: -120px;
  color: #1877F2;
}

.social-tk {
  top: 20%;
  right: -90px;
}

.social-yt {
  bottom: 15%;
  right: -110px;
  color: #FF0000;
}

/* Floating Animations */
.floating-anim {
  animation: floatAnim 4s ease-in-out infinite;
}

.floating-anim-delay {
  animation: floatAnim 4s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes floatAnim {

  0%,
  100% {
    transform: translateY(0) rotate(-10deg);
  }

  50% {
    transform: translateY(-15px) rotate(-8deg);
  }
}

@keyframes floatAnimArrow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-float-svg-right.floating-anim-delay {
  animation: floatAnimArrow 3s ease-in-out infinite;
}


/* =========================================
   TOP TRUST PILL
   ========================================= */
.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  padding: 0.4rem 1.2rem 0.4rem 0.5rem;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  margin-bottom: 2rem;
}

.hero-trust-pill .avatars {
  display: flex;
  align-items: center;
}

.hero-trust-pill .avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  object-fit: cover;
  margin-left: -10px;
}

.hero-trust-pill .avatars img:first-child {
  margin-left: 0;
}

.hero-trust-pill span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* =========================================
   HEADLINE
   ========================================= */
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  /* Slightly reduced to guarantee single line fit */
  font-weight: 900;
  color: #111318;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.hero-headline .text-red {
  color: var(--brand-red);
  white-space: nowrap;
  /* FORCES INFLUENCER MARKETING ON ONE LINE */
  display: inline-block;
}

.headline-underline {
  margin-top: -15px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}

.headline-underline svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* =========================================
   DESCRIPTION
   ========================================= */
.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.desc-glass {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(5px);
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  display: inline;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.6) inset;
}

/* =========================================
   CTA BUTTONS
   ========================================= */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.btn-outline-red {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 2px solid var(--brand-red);
  color: #111318;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(212, 58, 47, 0.15);
  transition: var(--transition-normal);
  text-decoration: none;
}

.btn-outline-red i {
  font-size: 1.1rem;
  color: #111318;
  transition: var(--transition-normal);
}

.btn-outline-red:hover {
  background: var(--brand-red);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-red:hover i {
  color: #fff;
}

.hero-link-cta {
  font-weight: 600;
  color: #111318;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  font-size: 1.05rem;
  transition: var(--transition-fast);
}

.hero-link-cta:hover {
  color: var(--brand-red);
}

/* =========================================
   TRUSTED BRANDS PILL CONTAINER
   ========================================= */
.hero-brands-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-brands-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-brands-pill {
  width: 95%;
  max-width: 850px;
  background: #FFF0ED;
  padding: 0.5rem 1.5rem;
  border-radius: 16px; /* Sleek rounded rectangular banner */
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(212, 58, 47, 0.05);
}

.hero-pill-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-pill-marquee::before,
.hero-pill-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-pill-marquee::before {
  left: 0;
  background: linear-gradient(to right, #FFF0ED 25%, transparent 100%);
  border-radius: 16px 0 0 16px;
}

.hero-pill-marquee::after {
  right: 0;
  background: linear-gradient(to left, #FFF0ED 25%, transparent 100%);
  border-radius: 0 16px 16px 0;
}

.hero-pill-track {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  animation: heroPillScroll 24s linear infinite;
  width: max-content;
}

.hero-pill-track:hover {
  animation-play-state: paused;
}

.brand-pill-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: 8px; /* Sleek rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  flex-shrink: 0;
  height: 44px; /* Scaled down card height */
  width: auto;
  transition: transform 0.2s ease;
}

.brand-pill-card:hover {
  transform: translateY(-1px);
}

.brand-pill-logo-img {
  max-height: 16px; /* Scaled down logo height */
  max-width: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: transform 0.2s ease;
}

.brand-pill-logo-img.invert-logo {
  filter: brightness(0); /* Clean black filter for light logos */
}

.brand-pill-text-logo {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111318;
  font-family: var(--font-heading);
  opacity: 0.95;
}

@keyframes heroPillScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.brand-logo-txt {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {

  .hero-float-badge-left,
  .hero-float-svg-right,
  .hero-social-float {
    display: none;
    /* Hide floating elements on smaller screens */
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 9.5rem 0 8.5rem 0 !important; /* Increased bottom padding to prevent overlap with bottom absolute icons */
    min-height: auto !important; /* Fits container flow naturally */
  }

  .hero-headline {
    font-size: clamp(1.7rem, 6.8vw, 2.6rem);
    /* Scale down size to fit screens */
    line-height: 1.2;
  }

  .hero-headline .text-red {
    white-space: normal;
    /* Disable nowrap constraint on mobile screens */
    display: inline;
  }

  /* Shift the underline lower so it does not overlap the headline */
  .headline-underline {
    margin-top: -3px !important;
  }

  /* Position right-side leaf decoration organically in bottom-right corner */
  .hero-leaf-img.leaf-left {
    display: none !important;
  }

  .hero-leaf-img.leaf-right {
    display: block !important;
    width: 140px !important;
    right: -10px !important;
    bottom: -15px !important;
    opacity: 0.5 !important;
    z-index: 2 !important;
  }

  /* Position absolute social icons in a horizontal row at the bottom of the hero section */
  .hero-social-float {
    display: flex !important;
    position: absolute !important;
    bottom: -4.5rem !important; /* Offset below container boundary to sit cleanly beneath the buttons */
    top: auto !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    justify-content: center !important;
    align-items: center !important;
    background: #ffffff !important;
    border: 1px solid rgba(17, 19, 24, 0.08) !important;
    color: #111318 !important;
    box-shadow: 0 4px 12px rgba(17, 19, 24, 0.03) !important;
    z-index: 10 !important;
  }

  .social-x { left: 15% !important; transform: translateX(-50%) !important; }
  .social-ig { left: 32% !important; transform: translateX(-50%) !important; }
  .social-fb { left: 50% !important; transform: translateX(-50%) !important; }
  .social-tk { left: 68% !important; transform: translateX(-50%) !important; }
  .social-yt { left: 85% !important; transform: translateX(-50%) !important; }

  .hero-brands-slider-container {
    padding: 1rem 1.5rem;
    border-radius: 50px;
  }

  .brand-slide-set {
    gap: 2.5rem;
    padding-right: 2.5rem;
  }

  .hero-brands-slider-container::before,
  .hero-brands-slider-container::after {
    width: 60px;
  }

  .hero-actions {
    flex-direction: row !important;
    /* Force side-by-side buttons on one line */
    flex-wrap: nowrap;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
  }

  /* Optimize button sizes on mobile so they sit comfortably side-by-side */
  .hero-actions .btn-outline-red {
    padding: 0.8rem 1.4rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .hero-actions .hero-link-cta {
    font-size: 0.95rem;
    white-space: nowrap;
  }
}

/* =========================================
   HERO QUICK STATS BANNER (FULL WIDTH)
   ========================================= */
.hero-stats-section {
  padding: 3.5rem 0;
  background-color: #111318;
  /* Solid deep black background stretching full-width */
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 10;
  overflow: hidden;
  /* Clips elements on mobile to prevent stretching */
}

.stats-container-card {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: none;
}

.stat-column {
  flex: 1;
  text-align: center;
}

.stat-column:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-container-card .counter-value {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--brand-red, #ff4530);
  /* Dynamic brand red or bright coral red */
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stats-container-card .counter-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Responsive adjustments for 2x2 grid on mobile */
@media (max-width: 768px) {
  .hero-bg-pattern {
    background-size: 140% auto !important;
    /* Scale up background pattern on mobile */
  }

  .hero-stats-section {
    padding: 2.5rem 0;
  }

  .stats-container-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 0;
    padding: 0 1rem;
  }

  .stats-container-card .counter-value {
    font-size: 1.75rem !important;
    /* Make counter numbers smaller & minimal */
    margin-bottom: 0.25rem;
  }

  .stats-container-card .counter-label {
    font-size: 0.65rem !important;
    /* Make labels smaller */
    letter-spacing: 0.12em;
  }

  .stat-column:not(:last-child) {
    border-right: none;
  }

  .stat-column:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat-column:nth-child(1),
  .stat-column:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.25rem;
  }

  .stat-column:nth-child(3),
  .stat-column:nth-child(4) {
    padding-top: 0.75rem;
  }
}