/*
 * BWP Branding Steps Section
 * Custom layout for Branding service - Large graphic left, numbered steps right
 * Similar to Integrated Advertising layout
 * Updated: 2025-11-23
 */

/* ============================================
   BRANDING STEPS SECTION
   ============================================ */

.branding-steps-section {
  background-color: #2C2C2C; /* Dark charcoal */
  padding: 96px 60px;
  color: var(--bwp-white, #FFFFFF);
}

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

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

.branding-steps-intro {
  font-family: var(--body-font, 'Open Sans', Arial, sans-serif);
  font-size: 1.125rem; /* 18px */
  color: var(--bwp-white, #FFFFFF);
  text-align: left;
  max-width: 900px;
  margin: 0 0 4rem 0;
  line-height: 1.8;
}

/* Main Content Layout - Graphic left, steps right */
.branding-steps-content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-top: 3rem;
}

/* ============================================
   GRAPHIC - LEFT SIDE (1/3 width on desktop)
   ============================================ */

.branding-graphic {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}

.branding-graphic svg {
  width: 100%;
  height: auto;
}

/* ============================================
   STEPS LIST - RIGHT SIDE (2/3 width on desktop)
   ============================================ */

.branding-steps-list {
  flex: 0 0 66.667%;
  max-width: 66.667%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.branding-step {
  margin-bottom: 1rem;
}

.branding-step-heading {
  font-family: var(--heading-font, 'Merriweather', Georgia, serif);
  font-size: 1.5rem; /* 24px */
  font-weight: 700;
  color: var(--bwp-white, #FFFFFF);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.branding-step-text {
  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: 0;
}

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

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

  .branding-steps-content {
    gap: 40px;
  }
}

/* Mobile (320px-767px) - Full width SVG, vertical stack */
@media (max-width: 767px) {
  .branding-steps-section {
    padding: 60px 20px;
  }

  .branding-steps-header {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .branding-steps-intro {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  /* Stack vertically on mobile */
  .branding-steps-content {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  /* SVG takes full width on mobile */
  .branding-graphic {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }

  /* Steps list takes full width on mobile */
  .branding-steps-list {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }

  .branding-step-heading {
    font-size: 1.25rem;
  }

  .branding-step-text {
    font-size: 1rem;
  }
}

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

  .branding-steps-header {
    font-size: 1.75rem;
  }
}

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

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

  .branding-steps-header,
  .branding-step-heading {
    color: var(--bwp-charcoal, #2C2C2C);
  }

  .branding-steps-intro,
  .branding-step-text {
    color: var(--gray-700, #616161);
  }
}

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

/* Ensure sufficient contrast */
.branding-step-heading:focus-visible {
  outline: 2px solid var(--bwp-red, #D32F2F);
  outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
