/* ================================
   ABOUT SECTION V2 - REDESIGNED
   ================================ */

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

/* Title Section */
.ncac-about-title-section {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 60px 40px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}

.about-main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.about-main-title.about-quote-cn {
  letter-spacing: 2px;
}

.about-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  font-weight: 600;
}

/* Centered Content Layout */
.ncac-about-content-centered {
  max-width: 900px;
  margin: 0 auto;
}

.about-tabs-container {
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

/* Tab Navigation */
.about-tabs-nav {
  display: flex;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.about-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 20px 30px;
  font-size: 1rem;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  position: relative;
}

.about-tab-btn:hover {
  color: #ff1a23;
  background: rgba(255, 26, 35, 0.03);
}

.about-tab-btn.active {
  color: #ff1a23;
  background: white;
  border-bottom-color: #ff1a23;
}

.tab-text {
  display: block;
}

/* Tab Content Area */
.about-tabs-content {
  position: relative;
  min-height: 600px;
}

.about-tab-panel {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.about-tab-panel.active {
  display: block;
}

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

.tab-content-inner {
  padding: 50px 40px;
  color: #334155;
  font-size: 1rem;
  line-height: 1.9;
}

.tab-content-inner p {
  margin-bottom: 24px;
}

.highlight-text {
  font-weight: 700;
  color: #0f172a;
  font-size: 1.125rem;
  margin-top: 32px !important;
  margin-bottom: 16px !important;
}

/* Purpose List */
.purpose-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.purpose-list li {
  padding: 16px 0 16px 40px;
  position: relative;
  border-left: 3px solid rgba(255, 26, 35, 0.2);
  margin-bottom: 12px;
  background: linear-gradient(90deg, rgba(255, 26, 35, 0.03), transparent);
  border-radius: 0 8px 8px 0;
}

.purpose-list li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff1a23;
  font-weight: 900;
  font-size: 1.125rem;
}

/* Scripture Box */
.scripture-box {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-left: 4px solid #ff1a23;
  padding: 24px 30px;
  border-radius: 0 12px 12px 0;
  margin: 32px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.scripture-box p {
  margin: 0 !important;
  font-style: italic;
  color: #475569;
  font-size: 0.95rem;
}

/* Date Text */
.date-text {
  text-align: right;
  color: #94a3b8 !important;
  font-size: 0.875rem !important;
  font-style: italic;
  margin-top: 32px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ncac-about-v2 {
    padding: 80px 0;
  }

  .ncac-about-title-section {
    margin-bottom: 60px;
  }

  .about-tabs-nav {
    flex-direction: row;
  }

  .about-tab-btn {
    padding: 16px 20px;
    font-size: 0.875rem;
  }

  .tab-content-inner {
    padding: 32px 24px;
  }

  .purpose-list li {
    padding: 12px 0 12px 32px;
  }
}
