/*
 * Transcription Service - Bootstrap Custom Styles
 * Page-specific styles only (common styles in common-bootstrap.css)
 */

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section-transcription {
  background: linear-gradient(135deg, var(--accent-900) 0%, var(--accent-700) 100%);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section-transcription::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.hero-section-transcription .container {
  position: relative;
  z-index: 1;
}

.hero-section-transcription h1,
.hero-section-transcription h4,
.hero-section-transcription p {
  color: white !important;
}

/* ========================================
   CORE GUARANTEES SECTION
   ======================================== */

.bg-dark.dark-section {
  position: relative;
  overflow: hidden;
}

.bg-dark.dark-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/Sec-01-Hero-Home_1.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
}

.bg-dark.dark-section .container {
  position: relative;
  z-index: 1;
}

.guarantee-item {
  padding: 1.5rem;
}

.guarantee-icon {
  color: var(--accent-400);
}

.guarantee-icon svg {
  stroke-width: 1.5;
}

/* ========================================
   TRANSCRIPT SAMPLE
   ======================================== */

.transcript-container {
  position: relative;
}

.transcript-sample {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 2rem;
  max-height: 500px;
  overflow-y: auto;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  line-height: 1.8;
  transition: max-height 0.3s ease;
}

.transcript-line {
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.5rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.transcript-line.transcript-fade {
  opacity: 0.6;
}

.transcript-timestamp {
  color: var(--accent-600);
  font-weight: 600;
  flex-shrink: 0;
  min-width: 45px;
}

.transcript-speaker {
  color: var(--primary-dark);
  font-weight: 600;
  flex-shrink: 0;
}

.transcript-text {
  color: #495057;
  flex-grow: 1;
}


/* ========================================
   PRICING CARDS
   ======================================== */

.pricing-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(45, 63, 127, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(45, 63, 127, 0.2);
}

.pricing-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--accent-100);
}

.plan-name {
  color: var(--primary-dark);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.plan-subtitle {
  color: var(--medium-grey);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.pricing-body {
  padding: 2rem;
}

.pricing-footer {
  padding: 1.5rem 2rem 2rem;
  text-align: center;
}

.price-display {
  padding: 1.5rem 0;
}

.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.price-amount .currency {
  font-size: 1.5rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.price-amount .amount {
  font-size: 3rem;
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1;
}

.price-amount .unit {
  font-size: 1rem;
  color: var(--medium-grey);
  font-weight: 500;
}

.price-equivalent {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.feature-section {
  margin-bottom: 2rem;
}

.feature-section:last-child {
  margin-bottom: 0;
}

.feature-section-title {
  color: var(--primary-dark);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-100);
}

/* ========================================
   COMPLIANCE LIST
   ======================================== */

.compliance-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.compliance-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.compliance-item svg {
  flex-shrink: 0;
  color: var(--primary-hover);
}

.compliance-item span {
  color: var(--primary-dark);
  font-size: 1rem;
}

/* ========================================
   STEP NUMBERS (HOW IT WORKS)
   ======================================== */

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--accent-600) 100%);
  color: #FFFFFF;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto;
}

/* ========================================
   WHO IT'S FOR SECTION
   ======================================== */

.who-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.who-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.who-item svg {
  flex-shrink: 0;
  color: var(--primary-hover);
}

.who-item span {
  color: var(--primary-dark);
  font-size: 0.95rem;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 768px) {
  .hero-section-transcription {
    padding: 3rem 0;
  }

  .transcript-sample {
    font-size: 0.8rem;
    padding: 1rem;
    max-height: 400px;
  }

  .transcript-line {
    flex-direction: column;
    gap: 0.25rem;
  }

  .performance-bar .bar-container::before {
    display: none;
  }

  .scale-break {
    margin-left: 0;
  }

  .plan-name {
    font-size: 1.25rem;
  }

  .price-amount .amount {
    font-size: 2.5rem;
  }

  .pricing-header,
  .pricing-body,
  .pricing-footer {
    padding: 1.5rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}
