/*
 * BWP Service Pages - Deliverables & Benefits Patterns
 * Pattern A: Tactical Services (Icon left, bullets right)
 * Pattern B: Strategic Services (Icon centered, paragraphs)
 * Updated: 2025-10-18
 */

/* ============================================
   PATTERN A: DELIVERABLES (TACTICAL SERVICES)
   Large icon left, bullet list right
   ============================================ */

.deliverables-section {
  background-color: #2C2C2C; /* Dark charcoal */
  padding: 96px 60px;
}

.deliverables-container {
  max-width: 1200px;
  margin: 0 auto;
}

.deliverables-section .section-header {
  font-family: var(--heading-font, 'Merriweather', Georgia, serif);
  font-size: 2.5rem; /* 40px */
  font-weight: 700;
  color: var(--bwp-white, #FFFFFF);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.deliverables-intro {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: left;
}

.deliverables-intro p {
  font-family: var(--body-font, 'Open Sans', Arial, sans-serif);
  font-size: 1.125rem; /* 18px */
  color: var(--bwp-white, #FFFFFF);
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
}

.deliverables-intro-label {
  font-family: var(--heading-font, 'Merriweather', Georgia, serif);
  font-size: 1.25rem; /* 20px */
  font-weight: 700;
  color: var(--bwp-white, #FFFFFF);
  margin-top: 2rem !important;
  margin-bottom: 0 !important;
}

.deliverables-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.deliverable-category {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

/* Icon - LEFT SIDE (200-300px) */
.deliverable-icon {
  flex: 0 0 250px;
  width: 250px;
  min-width: 250px;
}

.deliverable-icon img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
}

/* Font Awesome icons */
.deliverable-icon i.fa-solid {
  font-size: 180px;
  color: #6B2D8F; /* BWP Purple */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 250px;
}

.deliverable-icon .icon-placeholder {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--bwp-white, #FFFFFF);
}

/* Content - RIGHT SIDE */
.deliverable-content {
  flex: 1;
  padding-top: 20px;
}

.category-name {
  font-family: var(--heading-font, 'Merriweather', Georgia, serif);
  font-size: 2rem; /* 32px */
  font-weight: 700;
  color: var(--bwp-white, #FFFFFF);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.category-description {
  font-family: var(--body-font, 'Open Sans', Arial, sans-serif);
  font-size: 1.125rem; /* 18px */
  color: var(--bwp-white, #FFFFFF);
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.deliverable-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.deliverable-list li {
  font-family: var(--body-font, 'Open Sans', Arial, sans-serif);
  font-size: 1.125rem; /* 18px */
  color: var(--bwp-white, #FFFFFF);
  line-height: 1.8;
  padding: 0.75rem 0 0.75rem 1.5rem;
  position: relative;
}

.deliverable-list li::before {
  content: "•";
  color: var(--bwp-white, #FFFFFF);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.8rem;
}

/* ============================================
   PATTERN B: BENEFITS (STRATEGIC SERVICES)
   Icon centered, paragraph description
   ============================================ */

.benefits-section {
  background-color: #4A4A4A; /* Dark charcoal */
  padding: 96px 60px;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-section .section-header {
  font-family: var(--heading-font, 'Merriweather', Georgia, serif);
  font-size: 2.5rem; /* 40px */
  font-weight: 700;
  color: var(--bwp-white, #FFFFFF);
  text-align: center;
  margin-bottom: 4rem;
  line-height: 1.2;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px 40px;
  margin-top: 3rem;
}

.benefit-item {
  text-align: center;
  padding: 20px;
}

/* Icon - CENTERED (80-120px) */
.benefit-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-icon .icon-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--bwp-white, #FFFFFF);
}

/* Benefit heading - CENTERED */
.benefit-heading {
  font-family: var(--heading-font, 'Merriweather', Georgia, serif);
  font-size: 1.5rem; /* 24px */
  font-weight: 600;
  color: var(--bwp-white, #FFFFFF);
  margin-bottom: 1rem;
  line-height: 1.3;
}

/* Description paragraph - CENTERED */
.benefit-description {
  font-family: var(--body-font, 'Open Sans', Arial, sans-serif);
  font-size: 1rem; /* 16px */
  color: var(--bwp-white, #FFFFFF);
  opacity: 0.9;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   EMPTY STATE (BOTH PATTERNS)
   ============================================ */

.empty-state {
  text-align: center;
  padding: 60px 40px;
  max-width: 600px;
  margin: 0 auto;
}

.empty-state p {
  font-family: var(--body-font, 'Open Sans', Arial, sans-serif);
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

.empty-state .contact-link {
  color: var(--bwp-purple, #6B2D8F);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.empty-state .contact-link:hover {
  color: var(--bwp-purple-light, #8B3AA7);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (768px-1199px) */
@media (max-width: 1199px) {
  .deliverables-section,
  .benefits-section {
    padding: 80px 40px;
  }

  .deliverable-icon {
    flex: 0 0 200px;
    width: 200px;
    min-width: 200px;
  }

  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px 30px;
  }
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
  .deliverables-section,
  .benefits-section {
    padding: 60px 20px;
  }

  .deliverables-section .section-header,
  .benefits-section .section-header {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .deliverables-list {
    gap: 60px;
  }

  /* Pattern A: Stack vertically on mobile */
  .deliverable-category {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .deliverable-icon {
    flex: 0 0 150px;
    width: 150px;
    min-width: 150px;
  }

  .deliverable-icon .icon-placeholder {
    height: 150px;
  }

  .deliverable-content {
    padding-top: 0;
  }

  .category-name {
    font-size: 1.75rem;
  }

  .category-description {
    font-size: 1rem;
  }

  .deliverable-list {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
  }

  .deliverable-list li {
    font-size: 1rem;
  }

  /* Pattern B: Adjust for mobile */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .benefit-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }

  .benefit-heading {
    font-size: 1.25rem;
  }

  .benefit-description {
    font-size: 0.9375rem;
  }
}

/* Small mobile (320px-480px) */
@media (max-width: 480px) {
  .deliverables-section,
  .benefits-section {
    padding: 50px 20px;
  }

  .deliverable-icon {
    flex: 0 0 120px;
    width: 120px;
    min-width: 120px;
  }

  .deliverable-icon .icon-placeholder {
    height: 120px;
  }

  .category-name {
    font-size: 1.5rem;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .deliverables-section,
  .benefits-section {
    background-color: transparent;
    border: 1px solid var(--gray-300, #E0E0E0);
    page-break-inside: avoid;
  }

  .deliverables-section .section-header,
  .benefits-section .section-header,
  .category-name,
  .benefit-heading {
    color: var(--bwp-charcoal, #2C2C2C);
  }

  .category-description,
  .deliverable-list li,
  .benefit-description {
    color: var(--gray-700, #616161);
  }

  .empty-state .contact-link {
    color: var(--bwp-charcoal, #2C2C2C);
    text-decoration: underline;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.empty-state .contact-link:focus-visible {
  outline: 2px solid var(--bwp-purple, #6B2D8F);
  outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .empty-state .contact-link {
    transition: none;
  }
}
