/* ================================
   PILLARS SECTION V2 - REDESIGNED
   ================================ */

/* Section Header Styling */
.ncac-section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.ncac-section-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 26, 35, 0.1), rgba(217, 0, 10, 0.1));
  color: #ff1a23;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 26, 35, 0.2);
}

.ncac-section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.ncac-section-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Pillars Section Container */
.ncac-pillars-v2 {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.ncac-pillars-v2::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 26, 35, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* Pillars Grid - Enhanced 3-Column Layout */
.ncac-pillars-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

/* Individual Pillar Card - Modern Premium Design */
.ncac-pillar-card-v2 {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: white;
  border: 1px solid #e2e8f0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.ncac-pillar-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #cbd5e1, #cbd5e1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Color Themes for Each Pillar */
.ncac-pillar-card-v2[data-type="faith"]::before {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

.ncac-pillar-card-v2[data-type="unity"]::before {
  background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.ncac-pillar-card-v2[data-type="empower"]::before {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

/* Hover State - Dramatic Lift & Shadow */
.ncac-pillar-card-v2:hover {
  transform: translateY(-16px) scale(1.03);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15),
              0 0 0 1px rgba(255, 26, 35, 0.1);
  border-color: rgba(255, 26, 35, 0.2);
}

.ncac-pillar-card-v2:hover::before {
  height: 8px;
  box-shadow: 0 0 20px rgba(255, 26, 35, 0.4);
}

/* Card Inner Container */
.ncac-pillar-card-inner {
  padding: 50px 35px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Icon Wrapper with Number Badge */
.ncac-pillar-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

/* Icon Container with Gradient Background */
.ncac-pillar-icon-v2 {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.ncac-pillar-icon-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

/* Icon Colors Based on Type */
.ncac-pillar-card-v2[data-type="faith"] .ncac-pillar-icon-v2 {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #dc2626;
}

.ncac-pillar-card-v2[data-type="unity"] .ncac-pillar-icon-v2 {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #2563eb;
}

.ncac-pillar-card-v2[data-type="empower"] .ncac-pillar-icon-v2 {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #d97706;
}

/* Hover Effect on Icon */
.ncac-pillar-card-v2:hover .ncac-pillar-icon-v2 {
  transform: scale(1.1) rotate(-8deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ncac-pillar-card-v2:hover .ncac-pillar-icon-v2::before {
  opacity: 1;
}

/* Icon SVG Styling */
.ncac-pillar-icon-v2 svg {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Number Badge */
.ncac-pillar-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #e2e8f0;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.ncac-pillar-card-v2:hover .ncac-pillar-number {
  color: #ff1a23;
  transform: scale(1.1);
}

/* Content Area */
.ncac-pillar-content {
  text-align: left;
}

/* Title Styling */
.ncac-pillar-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px 0;
  line-height: 1.3;
  transition: color 0.3s;
}

.ncac-pillar-card-v2:hover .ncac-pillar-title {
  color: #ff1a23;
}

/* Description Styling */
.ncac-pillar-desc {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .ncac-pillars-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .ncac-pillar-card-v2:last-child {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .ncac-pillars-v2 {
    padding: 80px 0;
  }
  
  .ncac-pillars-grid-v2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .ncac-pillar-card-v2:last-child {
    grid-column: auto;
    max-width: 100%;
  }
  
  .ncac-pillar-card-inner {
    padding: 40px 28px;
  }
  
  .ncac-pillar-icon-v2 {
    width: 75px;
    height: 75px;
  }
  
  .ncac-pillar-number {
    font-size: 2rem;
  }

  .ncac-section-header-center {
    margin-bottom: 40px;
  }
}
