/* Hero Section */
.elite-hero-section {
  position: relative;
  min-height: 100vh; /* Full screen - navbar overlays it */
  overflow: hidden;
  background-color: var(--color-bg-primary); /* #090909 */
  display: flex;
  padding-top: 5rem; /* Extra padding for fixed navbar (100px height + 2rem margin) */
}

/* Left Effect Image - Full Height */
.hero-effect {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  background-image: url("/static/img/hero-section-effect.png");
  background-size: auto 100%;
  background-position: left center;
  background-repeat: no-repeat;
}

/* Right Background Image - Full Height */
.hero-background {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  background-image: url("/static/img/hero-section-bg.png");
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 4rem 0;
}

.hero-client-count {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.client-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary); /* #DE001B */
  line-height: 1;
}

.client-label {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  color: var(--color-white);
  font-weight: 400;
}

.hero-headline {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--color-white);
  line-height: 110%;
  letter-spacing: -0.025em;
}

.text-highlight {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--color-primary); /* #DE001B */
}

.hero-description {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  color: var(--color-text-light); /* #E6E6E6 */
  line-height: 110%;
  letter-spacing: 0.02em;
  max-width: 600px;
}

.btn-elite-cta {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: 0.015em;
  background-color: var(--color-white);
  color: var(--color-bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.875rem 2rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-elite-cta:hover {
  background-color: var(--color-white);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateX(4px);
}

.btn-elite-cta i {
  transition: transform 0.3s ease;
}

.btn-elite-cta:hover i {
  transform: translateX(4px);
}

/* RTL Support for Button Animations */
[dir="rtl"] .btn-elite-cta:hover {
  transform: translateX(-4px);
}

[dir="rtl"] .btn-elite-cta:hover i {
  transform: translateX(-4px);
}

/* RTL Hero Section - Flip layout and use RTL images */
[dir="rtl"] .elite-hero-section {
  direction: rtl;
}

[dir="rtl"] .hero-effect {
  left: auto;
  right: 0;
  background-image: url("/static/img/rtl-hero-section-effect.png");
  background-position: right center;
}

[dir="rtl"] .hero-background {
  right: auto;
  left: 0;
  background-image: url("/static/img/rtl-hero-section-bg.png");
  background-position: left center;
}

[dir="rtl"] .hero-content {
  direction: rtl;
  text-align: right !important;
}

[dir="rtl"] .hero-headline {
  text-align: right !important;
}

[dir="rtl"] .hero-description {
  text-align: right !important;
}

[dir="rtl"] .hero-client-count {
  justify-content: flex-start;
  text-align: right;
}

/* Prevent row reversal in hero section for RTL */
[dir="rtl"] .elite-hero-section .row {
  flex-direction: row !important;
}

[dir="rtl"] .elite-hero-section .col-lg-6 {
  text-align: right !important;
}

/* Mobile adjustments for fixed navbar */
@media (max-width: 992px) {
  .elite-hero-section {
    padding-top: 3rem; /* Less padding on mobile (smaller navbar) */
  }
}

/* Mobile/Phone adjustments */
@media (max-width: 768px) {
  /* Hide right background image on mobile */
  .hero-background {
    display: none;
  }

  /* Add left and right padding to hero section on mobile */
  .elite-hero-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero-content {
    padding-left: 0;
    padding-right: 0;
  }
}
