/* What We Do Pages Consolidated CSS */
/* Used by: what-we-do/*.html */

:root {
  --primary-color: #1e40af;
  --primary-dark: #1e3a8a;
  --secondary-color: #f97316;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --bg-light: #f9fafb;
  --border-color: #e5e7eb;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana,
    sans-serif;
  color: var(--text-dark);
  background: white;
  line-height: 1.7;
}

.problem-box {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 2rem;
  margin-bottom: 3rem;
}

.problem-box h4 {
  color: #78350f;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.problem-box ul {
  margin: 0;
  padding-left: 1.5rem;
  color: #92400e;
}

.process-section {
  margin-bottom: 4rem;
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.063rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.process-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
}

.page-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1.125rem;
  opacity: 0.95;
}

/* Content Section */
.content-section {
  padding: 4rem 0;
}

/* Hero Image */
.hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

/* Intro Box */
.intro-box {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 3rem;
}

.intro-box p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.intro-box p:last-child {
  margin-bottom: 0;
}

/* Options Section */
.options-section {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 4rem;
}

.options-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.option-item {
  padding: 1.25rem;
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 3px solid var(--secondary-color);
}

.option-item:last-child {
  margin-bottom: 0;
}

.option-item strong {
  color: var(--text-dark);
  font-weight: 700;
}

.option-item p {
  margin: 0.5rem 0 0 0;
  color: var(--text-muted);
}

/* Planning Section */
.planning-section {
  margin-bottom: 4rem;
}

.planning-section h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2.5rem;
  text-align: center;
}

.planning-item {
  margin-bottom: 3rem;
}

.planning-item:last-child {
  margin-bottom: 0;
}

.planning-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.planning-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.planning-item p {
  font-size: 1.063rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin: 0;
}

.divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border-color) 50%,
    transparent 100%
  );
  margin: 2.5rem 0;
}

/* Highlight Box */
.highlight-box {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.highlight-box p {
  margin: 0;
  color: #78350f;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 4rem;
}

.cta-section h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.063rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.cta-option-3 {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 12px;
  border-left: 5px solid var(--secondary-color);
  margin-bottom: 3rem;
}

.btn-primary-custom {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    #ea580c 100%
  );
  border: none;
  color: white;
  padding: 1rem 2.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.4);
  color: white;
}

.btn-secondary-custom {
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-left: 1rem;
}

.btn-secondary-custom:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(30, 64, 175, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .content-section {
    padding: 2.5rem 0;
  }

  .intro-box,
  .options-section {
    padding: 1.5rem;
  }

  .cta-section {
    padding: 2rem;
  }

  .btn-secondary-custom {
    margin-left: 0;
    margin-top: 1rem;
  }

  .cta-section .btn-primary-custom,
  .cta-section .btn-secondary-custom {
    width: 100%;
    justify-content: center;
  }
}
