/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 3: WHO WE HELP — Shree Studio (Redesigned)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.wehelp-section {
  position: relative;
  width: 100%;
  padding: 120px 0 140px;
  overflow: hidden;
  background: #060606;
}

.wehelp-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse 60% 40% at 20% 50%,
      rgba(201, 168, 76, 0.04) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 80% 30%,
      rgba(220, 38, 38, 0.04) 0%,
      transparent 70%
    );
  pointer-events: none;
  z-index: 0;
}

/* Container */
.wehelp-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── Header ─── */
.wehelp-header {
  text-align: center;
  margin-bottom: 56px;
}

.wehelp-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50px;
  color: #c9a84c;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wehelp-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}

.wehelp-subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  color: rgba(255, 255, 255, 0.45);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── Tabs ─── */
.wehelp-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.wehelp-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.wehelp-tab i {
  font-size: 12px;
}

.wehelp-tab:hover {
  border-color: rgba(201, 168, 76, 0.3);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(201, 168, 76, 0.05);
}

.wehelp-tab.active {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.5);
  color: #c9a84c;
}

.wehelp-tab.active i {
  color: #c9a84c;
}

/* ─── Panels ─── */
.wehelp-panels {
  position: relative;
}

.wehelp-panel {
  display: none;
  animation: panelFadeIn 0.45s ease forwards;
}

.wehelp-panel.active {
  display: block;
}

@keyframes panelFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Panel Header */
.wehelp-panel-header {
  text-align: center;
  margin-bottom: 32px;
}

.wehelp-panel-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.wehelp-panel-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
}

/* ─── Needs Grid (3 in a row) ─── */
.wehelp-needs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Need Block */
.wehelp-need-block {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition:
    border-color 0.35s ease,
    transform 0.35s ease;
  cursor: default;
  background: #0d0d0d;
  aspect-ratio: 16/9;
}

.wehelp-need-block:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
}

/* Image / Placeholder */
.wehelp-need-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.wehelp-need-block:hover .wehelp-need-img {
  transform: scale(1.06);
}

/* Gradient placeholder if no image */
.wehelp-need-placeholder {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.wehelp-need-block:hover .wehelp-need-placeholder {
  transform: scale(1.06);
}

/* Overlays */
.wehelp-need-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
  transition: background 0.35s ease;
}

.wehelp-need-block:hover .wehelp-need-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.45) 60%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

/* Gold shimmer on hover */
.wehelp-need-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
  border-radius: 16px;
}

.wehelp-need-block:hover::after {
  opacity: 1;
}

/* Text */
.wehelp-need-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
  z-index: 3;
}

.wehelp-need-number {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #c9a84c;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}

.wehelp-need-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

/* Gradient placeholders per segment */
.placeholder-founders-1 {
  background: linear-gradient(135deg, #1a0a00 0%, #3d1a05 50%, #1a0a00 100%);
}
.placeholder-founders-2 {
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3d 50%, #0a0a1a 100%);
}
.placeholder-founders-3 {
  background: linear-gradient(135deg, #0a1a0a 0%, #1a3d1a 50%, #0a1a0a 100%);
}
.placeholder-founders-4 {
  background: linear-gradient(135deg, #1a0a1a 0%, #3d1a3d 50%, #1a0a1a 100%);
}

.placeholder-corporate-1 {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2a 50%, #0a0a0a 100%);
}
.placeholder-corporate-2 {
  background: linear-gradient(135deg, #0a1a1a 0%, #1a3030 50%, #0a1a1a 100%);
}
.placeholder-corporate-3 {
  background: linear-gradient(135deg, #1a1a0a 0%, #30301a 50%, #1a1a0a 100%);
}
.placeholder-corporate-4 {
  background: linear-gradient(135deg, #0a0a1a 0%, #1a2030 50%, #0a0a1a 100%);
}

.placeholder-realestate-1 {
  background: linear-gradient(135deg, #0d1a0a 0%, #1a3d1a 50%, #0d1a0a 100%);
}
.placeholder-realestate-2 {
  background: linear-gradient(135deg, #1a0d00 0%, #3d2010 50%, #1a0d00 100%);
}
.placeholder-realestate-3 {
  background: linear-gradient(135deg, #0a0d1a 0%, #1a2040 50%, #0a0d1a 100%);
}
.placeholder-realestate-4 {
  background: linear-gradient(135deg, #1a0a0a 0%, #3d1a1a 50%, #1a0a0a 100%);
}

.placeholder-coaches-1 {
  background: linear-gradient(135deg, #1a100a 0%, #3d2a10 50%, #1a100a 100%);
}
.placeholder-coaches-2 {
  background: linear-gradient(135deg, #0a1a10 0%, #1a3020 50%, #0a1a10 100%);
}
.placeholder-coaches-3 {
  background: linear-gradient(135deg, #100a1a 0%, #201030 50%, #100a1a 100%);
}
.placeholder-coaches-4 {
  background: linear-gradient(135deg, #1a1a0a 0%, #302a10 50%, #1a1a0a 100%);
}

.placeholder-creators-1 {
  background: linear-gradient(135deg, #0a001a 0%, #1a0040 50%, #0a001a 100%);
}
.placeholder-creators-2 {
  background: linear-gradient(135deg, #1a000a 0%, #400020 50%, #1a000a 100%);
}
.placeholder-creators-3 {
  background: linear-gradient(135deg, #001a0a 0%, #003a1a 50%, #001a0a 100%);
}
.placeholder-creators-4 {
  background: linear-gradient(135deg, #0a0a00 0%, #252510 50%, #0a0a00 100%);
}

.placeholder-student-1 {
  background: linear-gradient(135deg, #001a1a 0%, #003535 50%, #001a1a 100%);
}
.placeholder-student-2 {
  background: linear-gradient(135deg, #0d001a 0%, #200040 50%, #0d001a 100%);
}
.placeholder-student-3 {
  background: linear-gradient(135deg, #1a0d00 0%, #402800 50%, #1a0d00 100%);
}
.placeholder-student-4 {
  background: linear-gradient(135deg, #001a0d 0%, #003520 50%, #001a0d 100%);
}

/* Scroll Reveal */
.wehelp-section [data-animate] {
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.wehelp-section [data-animate].is-visible {
  opacity: 1;
  transform: none !important;
}
.wehelp-section [data-animate="fade-up"] {
  transform: translateY(40px);
}
.wehelp-section [data-delay="200"] {
  transition-delay: 0.2s;
}
.wehelp-section [data-delay="300"] {
  transition-delay: 0.3s;
}

/* ─── Responsive: Tablet ─── */
@media (max-width: 768px) {
  .wehelp-section {
    padding: 80px 0 100px;
  }
  .wehelp-container {
    padding: 0 20px;
  }
  .wehelp-tabs {
    gap: 6px;
  }
  .wehelp-tab {
    padding: 8px 14px;
    font-size: 12px;
  }
  .wehelp-needs-grid {
    gap: 12px;
  }
}

/* ─── Responsive: Mobile ─── */
@media (max-width: 520px) {
  .wehelp-tabs {
    gap: 6px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    flex-wrap: nowrap;
  }
  .wehelp-tabs::-webkit-scrollbar {
    height: 2px;
  }
  .wehelp-tabs::-webkit-scrollbar-thumb {
    background: rgba(201, 168, 76, 0.3);
    border-radius: 2px;
  }
  .wehelp-needs-grid {
    grid-template-columns: 1fr;
  }
  .wehelp-need-block {
    aspect-ratio: 16/9;
  }
}

/* ══════════ CUSTOM HIGH-CONVERSION STUDENT HIGHLIGHT CARD ══════════ */

/* Responsive grid for Student panel */
@media (min-width: 992px) {
  .wehelp-panel[data-panel="students"] .wehelp-needs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 991px) and (min-width: 521px) {
  .wehelp-panel[data-panel="students"] .wehelp-needs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Glassmorphic Glowing Card */
.student-text-highlight-card {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.04) 0%, rgba(229, 9, 20, 0.04) 100%) !important;
  border: 1px solid rgba(201, 168, 76, 0.2) !important;
  display: flex !important;
  flex-direction: column;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
}

.student-text-highlight-card .wehelp-need-content {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  height: 100%;
  padding: 16px 20px !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  z-index: 3;
}

.student-text-highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.student-text-highlight-card:hover {
  border-color: rgba(201, 168, 76, 0.6) !important;
  box-shadow: 0 15px 40px rgba(201, 168, 76, 0.12);
  transform: translateY(-4px);
}

.student-text-highlight-card:hover::before {
  opacity: 1;
}

/* Highlight Badge */
.wehelp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 4px;
  color: #c9a84c;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  width: max-content;
}

/* Typography */
.student-highlight-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 6px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.student-highlight-text {
  font-family: "Inter", sans-serif;
  font-size: clamp(10.5px, 0.85vw, 12px);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
  margin: 0 0 12px 0;
}

/* CTA Action Trigger */
.student-card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c9a84c;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.student-card-action i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.student-text-highlight-card:hover .student-card-action {
  color: #fff;
}

.student-text-highlight-card:hover .student-card-action i {
  transform: translateX(4px);
}

/* ══════════ SOLUTION DETAIL MODAL ══════════ */
.solution-modal-card {
  border-color: rgba(201, 168, 76, 0.3) !important;
  box-shadow: 0 25px 80px rgba(201, 168, 76, 0.15) !important;
  max-width: 700px !important;
  min-height: 500px !important;
  text-align: left !important;
  background: #0a0a0a !important;
  padding: 44px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.solution-modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
}

.solution-modal-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  font-size: 20px;
  flex-shrink: 0;
}

.solution-modal-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.solution-modal-intro {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 20px;
}

.solution-packages-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
}

.solution-packages-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #c9a84c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0;
  margin-bottom: 16px;
}

.solution-packages-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solution-packages-list li {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 12px;
}

.solution-packages-list li i {
  color: #c9a84c;
  font-size: 14px;
  flex-shrink: 0;
}

