#hero {
  min-height: calc(100vh - var(--header-height));
  background:
    linear-gradient(135deg, var(--color-primary), var(--color-secondary)),
    url("../images/background/sports-stadium.jpg") center/cover fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      45deg,
      transparent 30%,
      rgba(255, 107, 53, 0.1) 30%,
      rgba(255, 107, 53, 0.1) 70%,
      transparent 70%
    ),
    linear-gradient(
      -45deg,
      transparent 30%,
      rgba(0, 78, 137, 0.1) 30%,
      rgba(0, 78, 137, 0.1) 70%,
      transparent 70%
    );
  background-size: 60px 60px;
  animation: pattern-move 20s linear infinite;
}

@keyframes pattern-move {
  0% {
    background-position:
      0 0,
      0 0;
  }
  100% {
    background-position:
      60px 60px,
      -60px 60px;
  }
}

#hero .container {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  position: relative;
  z-index: 2;
}

#hero h1 {
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  margin-bottom: 20px;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 40px;
}

#hero .btn-get-started {
  padding: 18px 48px;
  border-radius: var(--radius-full);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 3px solid var(--color-white);
  font-weight: 700;
  text-transform: uppercase;
  transition: var(--transition);
}

#hero .btn-get-started:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.welcome-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 0;
}

.welcome-content h3 {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.welcome-content p {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.mission-card {
  background: var(--color-white);
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border-top: 5px solid var(--color-primary);
}

.structures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--gap-md);
  margin-top: 30px;
}

.structure-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.structure-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.structure-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.structure-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.structure-card:hover .structure-image img {
  transform: scale(1.1);
}

.structure-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 1;
}

[dir="rtl"] .structure-category {
  left: auto;
  right: 15px;
}

.structure-info {
  padding: 25px;
}

.structure-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(0px);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  color: white;
  padding: 0;
  border: none;
  background: transparent;
}

.hero-title {
  color: white;
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: var(--gap-md);
  padding-right: var(--gap-md);
  padding-left: var(--gap-md);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
}

.structure-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-sm);
  padding-top: 15px;
  border-top: 1px solid var(--color-border);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: var(--gap-xs);
  font-size: 14px;
}

.meta-item i {
  color: var(--color-primary);
}

#stats {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-secondary-dark)
  );
  color: var(--color-white);
}

#stats .section-title h2 {
  color: var(--color-white);
}

.section-subtitle {
  text-align: center;
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 2.5rem;
  }
  #hero h2 {
    font-size: 1.25rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }

  .structures-grid {
    grid-template-columns: 1fr;
  }
}

.presentation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
}

.presentation-text .section-desc {
  margin-bottom: 2rem;
}

.presentation-text .section-desc.lead {
  margin-bottom: 2rem;
}

.presentation-text {
  text-align: left;
}

[dir="rtl"] .presentation-text {
  text-align: right;
}

.section-badge {
  display: inline-block;
}

.view-all-wrapper {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 991px) {
  .presentation-grid {
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
    text-align: center;
  }

  .presentation-text {
    text-align: center;
    order: 2;
  }

  [dir="rtl"] .presentation-text {
    text-align: center;
  }

  .presentation-image-col {
    order: 1;
    max-width: 600px;
    margin: 0 auto;
  }

  .section-title {
    text-align: center;
  }
}
