/* Women's Empowerment — Image Stack + Content Layout */

:root {
  --primary-color: #f26522;
  --secondary-color: #0d0e14;
  --text-light: #ffffff;
  --text-muted: #666666;
  --background-light: #f8f9fa;
  --shadow-soft: rgba(0, 0, 0, 0.08);
  --shadow-medium: rgba(0, 0, 0, 0.12);
  --gradient-primary: linear-gradient(135deg, #f26522 0%, #ff8c42 100%);
}

/* ===== Hero Section ===== */
.we-hero {
  padding: 70px 0 60px;
  background: linear-gradient(160deg, #fff7f2 0%, #fff 40%, #f3f0ff 100%);
  overflow: hidden;
}

.we-hero-row {
  min-height: 80vh;
}

/* --- Image Stack (Left) --- */
.we-image-stack {
  position: relative;
  padding: 30px;
  min-height: 520px;
}

.we-img-main {
  position: relative;
  width: 75%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.we-img-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.we-img-main:hover img {
  transform: scale(1.04);
}

.we-img-secondary {
  position: absolute;
  right: 0;
  top: 60px;
  width: 45%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  z-index: 3;
  border: 4px solid #fff;
}

.we-img-secondary img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.we-img-secondary:hover img {
  transform: scale(1.04);
}

.we-img-accent {
  position: absolute;
  left: 10px;
  bottom: 0;
  width: 35%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  z-index: 3;
  border: 4px solid #fff;
}

.we-img-accent img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.we-img-accent:hover img {
  transform: scale(1.04);
}

/* Floating Stats on Image */
.we-float-stat {
  position: absolute;
  z-index: 5;
  background: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(242, 101, 34, 0.1);
  animation: weStatBounce 3s ease-in-out infinite;
}

.we-float-stat-1 {
  bottom: 40px;
  right: 20px;
  animation-delay: 0s;
}

.we-float-stat-2 {
  top: 10px;
  right: 50px;
  animation-delay: 1.5s;
}

@keyframes weStatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.we-fs-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.we-fs-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* --- Content (Right) --- */
.we-hero-content {
  padding-left: 20px;
}

.we-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(242, 101, 34, 0.3);
}

.we-hero-badge i {
  font-size: 1.1rem;
}

.we-hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.we-highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.we-hero-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 25px;
}

/* Theme Quote */
.we-theme-quote {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, rgba(242, 101, 34, 0.06), rgba(242, 101, 34, 0.02));
  border-left: 4px solid var(--primary-color);
  border-radius: 0 14px 14px 0;
  padding: 18px 22px;
  margin-bottom: 25px;
}

.we-theme-quote > i {
  color: var(--primary-color);
  font-size: 1.3rem;
  opacity: 0.3;
  margin-top: 2px;
}

.we-theme-quote h4 {
  color: var(--secondary-color);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 3px;
}

.we-theme-quote p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

/* Mini Stats Row */
.we-mini-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.we-ms-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 4px 16px var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.we-ms-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.we-ms-item i {
  width: 38px;
  height: 38px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(242, 101, 34, 0.25);
}

.we-ms-item strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.we-ms-item span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Tags */
.we-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.we-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(242, 101, 34, 0.08);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(242, 101, 34, 0.12);
  transition: all 0.3s ease;
}

.we-tag:hover {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 5px 15px rgba(242, 101, 34, 0.25);
}

.we-tag i {
  font-size: 0.72rem;
}

/* ===== Gallery Section ===== */
.we-gallery-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--background-light) 0%, rgba(242, 101, 34, 0.02) 100%);
}

.we-section-header {
  margin-bottom: 50px;
}

.we-section-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.we-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1.2;
}

.we-section-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .we-image-stack {
    min-height: 400px;
    margin-bottom: 30px;
  }

  .we-img-main {
    width: 70%;
  }

  .we-img-main img {
    height: 300px;
  }

  .we-img-secondary img {
    height: 180px;
  }

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

  .we-gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .we-hero {
    padding: 50px 0 40px;
  }

  .we-hero-row {
    min-height: auto;
  }

  .we-image-stack {
    min-height: 320px;
    padding: 15px;
  }

  .we-img-main {
    width: 65%;
  }

  .we-img-main img {
    height: 240px;
  }

  .we-img-secondary {
    width: 50%;
    top: 40px;
  }

  .we-img-secondary img {
    height: 160px;
  }

  .we-img-accent {
    display: none;
  }

  .we-float-stat-2 {
    display: none;
  }

  .we-hero-title {
    font-size: 1.8rem;
  }

  .we-mini-stats {
    gap: 10px;
  }

  .we-ms-item {
    padding: 10px 14px;
  }

  .we-gallery-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 576px) {
  .we-hero-title {
    font-size: 1.6rem;
  }

  .we-float-stat {
    padding: 10px 14px;
  }

  .we-fs-number {
    font-size: 1.3rem;
  }

  .we-section-header {
    margin-bottom: 35px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
