/* ================================
   AMBITION SECTION V2 - REDESIGNED (LIGHT MODE)
   ================================ */

/* Section Container with Background */
.ncac-ambition-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0;
  overflow: hidden;
  background: #f8fafc;
}

/* Background Image */
.ncac-ambition-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
  opacity: 0.15;
}

/* Light Gradient Overlay */
.ncac-ambition-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(248, 250, 252, 0.95) 0%,
    rgba(241, 245, 249, 0.92) 50%,
    rgba(248, 250, 252, 0.95) 100%
  );
  z-index: 2;
}

/* Container Positioning */
.ncac-ambition-v2 .ncac-container {
  position: relative;
  z-index: 3;
}

/* Layout Grid */
.ncac-ambition-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: start;
}

/* ===== LEFT SIDE: QUOTE CARD ===== */
.ncac-ambition-quote-card {
  position: sticky;
  top: 120px;
}

.quote-card-inner {
  background: white;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.quote-card-inner:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 26, 35, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Quote Icon */
.quote-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 26, 35, 0.1), rgba(217, 0, 10, 0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff1a23;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 26, 35, 0.2);
}

/* Quote Text */
.quote-text-block {
  text-align: center;
}

.quote-cn {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px 0;
  line-height: 1.4;
  letter-spacing: 1px;
}

.quote-en {
  font-size: 1.125rem;
  font-weight: 500;
  color: #64748b;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.quote-reference {
  font-size: 0.875rem;
  color: #94a3b8;
  font-style: italic;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

/* ===== RIGHT SIDE: MAIN CONTENT ===== */
.ncac-ambition-main-content {
  width: 100%;
  max-width: 800px;
}

/* Glass Card for Content */
.content-glass-card {
  background: white;
  border-radius: 28px;
  padding: 50px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Header Section */
.ambition-header {
  margin-bottom: 40px;
}

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

.ambition-title-cn {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.ambition-title-en {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Scripture Tab Container */
.scripture-tab-container {
  margin-top: 32px;
}

/* Tab Navigation */
.scripture-tab-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  background: #f1f5f9;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}

.scripture-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  border-radius: 10px;
  padding: 14px 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  color: #64748b;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.scripture-tab-btn:hover {
  background: white;
  color: #0f172a;
}

.scripture-tab-btn.active {
  background: #ff1a23;
  color: white;
  box-shadow: 0 4px 12px rgba(255, 26, 35, 0.3);
}

.tab-label {
  font-size: 1rem;
  font-weight: 700;
}

.tab-sublabel {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: 400;
}

/* Scripture Content Area */
.scripture-content-area {
  position: relative;
  min-height: 200px;
}

.scripture-panel {
  display: none;
  animation: fadeInUp 0.5s ease-in-out;
}

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

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

/* Quote Icon in Content */
.scripture-quote-icon {
  font-size: 4rem;
  color: rgba(255, 26, 35, 0.2);
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}

/* Scripture Text */
.scripture-text {
  font-size: 1.125rem;
  line-height: 1.9;
  color: #334155;
  padding-left: 20px;
  border-left: 3px solid rgba(255, 26, 35, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .ncac-ambition-layout {
    grid-template-columns: 350px 1fr;
    gap: 40px;
  }

  .content-glass-card {
    padding: 40px;
  }
}

@media (max-width: 992px) {
  .ncac-ambition-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ncac-ambition-quote-card {
    position: relative;
    top: 0;
  }

  .quote-card-inner {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .ncac-ambition-v2 {
    padding: 100px 0;
    min-height: auto;
  }

  .content-glass-card {
    padding: 32px 24px;
  }

  .scripture-tab-btn {
    padding: 12px 16px;
  }

  .tab-label {
    font-size: 0.9rem;
  }

  .scripture-text {
    font-size: 1rem;
  }

  .quote-cn {
    font-size: 1.5rem;
  }
}
