/*--------------------------------------------------------------
# Strategy Consulting Page Styles
# Following CODING_STANDARDS.md - No inline styles
--------------------------------------------------------------*/

/* Use existing CSS variables from main.css */
/* Colors are inherited from main.css, only define if not available */
:root {
  --primary-navy: #0A1628;
  --secondary-blue: #1E3A5F;
  --accent-gold: #D4AF37;
  --light-gray: #F5F5F5;
  --medium-gray: #6B7280;
  --white: #FFFFFF;
  --success-green: #10B981;
}

/* Typography - Ensure consistent fonts */
body.strategy-consulting-page {
  font-family: var(--default-font);
  color: var(--default-color, #1a1f24);
  line-height: 1.6;
}

body.strategy-consulting-page h1,
body.strategy-consulting-page h2,
body.strategy-consulting-page h3 {
  font-family: var(--heading-font);
  color: var(--heading-color, #485664);
  line-height: 1.2;
}

/* Hero Section */
.service-hero {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-blue) 100%);
  color: var(--white);
  padding: 10rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -30%;
  width: 60%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23D4AF37' stroke-width='0.5' opacity='0.1'%3E%3Ccircle cx='50' cy='50' r='40'/%3E%3Ccircle cx='50' cy='50' r='30'/%3E%3Ccircle cx='50' cy='50' r='20'/%3E%3C/g%3E%3C/svg%3E") no-repeat center;
  background-size: cover;
  opacity: 0.2;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.hero-text .subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  color: var(--white);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--white);
}

.hero-feature-icon {
  color: var(--accent-gold);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-graphic {
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-graphic .hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  object-fit: contain;
}

/* Trust Bar */
.trust-bar {
  background: var(--light-gray);
  padding: 2rem;
  border-bottom: 1px solid #E5E7EB;
}

.trust-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.trust-content {
  flex: 1;
}

.trust-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--heading-color);
}

.trust-label {
  font-size: 0.875rem;
  color: var(--medium-gray);
}

/* Service Components Section */
.service-components {
  padding: 5rem 2rem;
  background: var(--white);
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--medium-gray);
  max-width: 700px;
  margin: 0 auto;
}

.components-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.component-card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.component-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-color);
  transform: scaleY(0);
  transition: transform 0.3s;
}

.component-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.component-card:hover::before {
  transform: scaleY(1);
}

.component-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.component-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.component-description {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.component-features {
  list-style: none;
}

.component-feature {
  padding: 0.5rem 0;
  color: var(--default-color);
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
}

.component-feature::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Process Section */
.process-section {
  background: var(--light-gray);
  padding: 5rem 2rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  z-index: 0;
}

.process-step {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.step-description {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

/* Deliverables Section */
.deliverables-section {
  padding: 5rem 2rem;
  background: var(--white);
}

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

.deliverable-card {
  background: linear-gradient(135deg, var(--light-gray), var(--white));
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  transition: all 0.3s;
}

.deliverable-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.deliverable-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.deliverable-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.deliverable-description {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.deliverable-details {
  list-style: none;
  font-size: 0.875rem;
}

.deliverable-detail {
  padding: 0.25rem 0;
  color: var(--default-color);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.deliverable-detail-icon {
  color: var(--success-green);
  margin-top: 2px;
}

/* Team Section */
.team-section {
  background: var(--primary-navy);
  color: var(--white);
  padding: 5rem 2rem;
}

.team-section .section-title {
  color: var(--white);
}

.team-section .section-subtitle {
  color: rgba(255,255,255,0.9);
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-stat {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
  color: var(--white);
}

/* Certifications */
.certifications {
  padding: 3rem 2rem;
  background: var(--light-gray);
}

.cert-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.cert-logo {
  width: 120px;
  height: 60px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--medium-gray);
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  padding: 5rem 2rem;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.cta-content p {
  font-size: 1.25rem;
  color: var(--default-color);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary {
  background: var(--accent-color);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: transform 0.3s, box-shadow 0.3s;
  font-family: var(--default-font);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
  color: var(--white);
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
}

.cta-secondary {
  background: transparent;
  color: var(--heading-color);
  padding: 1rem 2rem;
  border: 2px solid var(--heading-color);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s;
  font-family: var(--default-font);
}

.cta-secondary:hover {
  background: var(--heading-color);
  color: var(--white);
}

/* CTA Button Styles */
.cta-button {
  background: var(--accent-color);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  font-family: var(--default-font);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
  color: var(--white);
}

.cta-button-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.cta-button-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .components-grid {
    grid-template-columns: 1fr;
  }

  .process-steps::before {
    display: none;
  }
}

