/* ===== Growth & Marketing Solutions Page Styles ===== */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

<<<<<<< HEAD
/* ===== Back Button ===== */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 20px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 30px;
  color: #667eea;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  width: fit-content;
}

.back-btn:hover {
  background: rgba(102, 126, 234, 0.2);
  transform: translateX(-5px);
}

.dark-theme .back-btn {
  background: rgba(159, 122, 234, 0.1);
  color: #9f7aea;
}

.dark-theme .back-btn:hover {
  background: rgba(159, 122, 234, 0.2);
}
=======
/* .back-btn is now in design-system.css (global canonical style) */
>>>>>>> 10d0b57195332f4c62c27bdb368deefbeb732280

/* ===== Service Header ===== */
.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.service-icon i {
  color: white;
}

/* (removed global h1 override — it leaked the off-palette #667eea gradient
   onto every page's headings. Service-page headings now come from the
   design-system + services.css, scoped to .svc-hero.) */

/* ===== Services Grid ===== */
.services-grid.enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

/* Service Card */
.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem;
}

.dark-theme .service-card {
  background: #1a1a2e;
  border-color: rgba(255, 255, 255, 0.05);
}

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

.service-card .service-icon {
  width: 60px;
  height: 60px;
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.dark-theme .service-card h3 {
  color: #fff;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  min-height: 60px;
}

.dark-theme .service-card p {
  color: #ccc;
}

/* Service Features */
/* .service-features {
  margin: 1.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
} */

/* .dark-theme .service-features {
  border-color: rgba(255, 255, 255, 0.1);
} */

.feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: #555;
}

.dark-theme .feature {
  color: #ddd;
}

.feature i {
  color: #667eea;
  font-size: 1.1rem;
}

.dark-theme .feature i {
  color: #9f7aea;
}

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

/* Service Metrics */
.service-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.metric {
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border-radius: 10px;
  transition: all 0.3s ease;
}

.metric:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
}

.metric-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 0.3rem;
}

.dark-theme .metric-value {
  color: #9f7aea;
}

.metric-label {
  font-size: 0.9rem;
  color: #666;
}

.dark-theme .metric-label {
  color: #ccc;
}

/* ===== Workflow Section ===== */
.workflow-section {
  margin: 4rem 0;
  padding: 3rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  border-radius: 20px;
}

.dark-theme .workflow-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.workflow-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
}

.dark-theme .workflow-section h2 {
  color: #fff;
}

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

.workflow-step {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.dark-theme .workflow-step {
  background: #1a1a2e;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.workflow-step h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

.dark-theme .workflow-step h4 {
  color: #fff;
}

.workflow-step p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.dark-theme .workflow-step p {
  color: #ccc;
}

/* ===== Impact Metrics Section with Glassmorphism ===== */
.growth-impact-metrics {
  margin-top: 5rem;
  padding: 4rem 2rem;
  background: transparent !important;
  border-radius: 20px;
  position: relative;
  width: 100%;
  margin-left: 0;
  transition: all 0.3s ease;
}

/* Glassmorphism Background - Light Theme */
.growth-impact-metrics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  z-index: 0;
}

/* Light Theme - All Text Black */
.growth-impact-metrics .impact-header {
  position: relative;
  z-index: 1;
}

.growth-impact-metrics .impact-header h2 {
  font-size: 2.5rem;
  color: #000000 !important;
  margin-bottom: 0.5rem;
}

.growth-impact-metrics .impact-header p {
  font-size: 1.1rem;
  color: #000000 !important;
  max-width: 600px;
  margin-bottom: 2rem;
}

.growth-impact-metrics .metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.growth-impact-metrics .metric-number {
  font-size: 3rem;
  font-weight: 700;
  color: #000000 !important;
  margin-bottom: 0.5rem;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #000000 !important;
  background-clip: unset !important;
}

.growth-impact-metrics .metric-card p {
  color: #000000 !important;
  font-size: 1rem;
  margin: 0;
}

/* Light Theme Metric Cards - Glassmorphism */
.growth-impact-metrics .metric-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  cursor: pointer;
}

.growth-impact-metrics .metric-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Light Theme Icons */
.growth-impact-metrics .metric-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.growth-impact-metrics .metric-card:hover .metric-icon {
  background: rgba(0, 0, 0, 0.06);
  transform: scale(1.05);
}

.growth-impact-metrics .metric-icon i {
  color: #667eea;
}

/* ===== Dark Theme - Glassmorphism ===== */
.dark-theme .growth-impact-metrics::before {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.dark-theme .growth-impact-metrics .impact-header h2 {
  color: #ffffff !important;
}

.dark-theme .growth-impact-metrics .impact-header p {
  color: #ffffff !important;
}

.dark-theme .growth-impact-metrics .metric-number {
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #ffffff !important;
  background-clip: unset !important;
}

.dark-theme .growth-impact-metrics .metric-card p {
  color: #ffffff !important;
}

.dark-theme .growth-impact-metrics .metric-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.dark-theme .growth-impact-metrics .metric-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.dark-theme .growth-impact-metrics .metric-icon {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.dark-theme .growth-impact-metrics .metric-card:hover .metric-icon {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
}

.dark-theme .growth-impact-metrics .metric-icon i {
  color: #9f7aea;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .growth-impact-metrics .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .growth-impact-metrics .metric-card {
    padding: 1.5rem;
  }
  
  .growth-impact-metrics .metric-number {
    font-size: 2.5rem;
  }
  
  .growth-impact-metrics {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  .growth-impact-metrics .metrics-grid {
    grid-template-columns: 1fr;
  }
  
  .growth-impact-metrics .impact-header h2 {
    font-size: 2rem;
  }
  
  .growth-impact-metrics .metric-number {
    font-size: 2rem;
  }
  
  .growth-impact-metrics .metric-card {
    padding: 1.5rem;
  }
}

/* ===== Accessibility ===== */
.growth-impact-metrics .metric-card:focus-visible {
  outline: 3px solid #667eea;
  outline-offset: 2px;
}

.dark-theme .growth-impact-metrics .metric-card:focus-visible {
  outline: 3px solid #9f7aea;
}

/* ===== Print Styles ===== */
@media print {
  .growth-impact-metrics {
    display: none;
  }
}

/* ===== CTA Button ===== */
.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover i {
  transform: translateX(5px);
}

/* ===== Section Headers ===== */
h2 {
  font-size: 2.2rem;
  margin: 3rem 0 2rem;
  color: #333;
}

.dark-theme h2 {
  color: #fff;
}

h2:first-of-type {
  margin-top: 0;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .services-grid.enhanced {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .workflow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .detail-page {
    padding: 1rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .services-grid.enhanced {
    grid-template-columns: 1fr;
  }
  
  .workflow-steps {
    grid-template-columns: 1fr;
  }
  
  .workflow-section {
    padding: 2rem 1rem;
  }
  
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .metric-card {
    padding: 1.5rem;
  }
  
  .metric-number {
    font-size: 2.5rem;
  }
  
  .impact-metrics {
    padding: 3rem 1rem;
  }
  
  .service-card p {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .service-card .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .metric-value {
    font-size: 1.5rem;
  }
  
}

/* Accessibility */
.service-card:focus-visible,
.metric-card:focus-visible,
.workflow-step:focus-visible,
.btn-primary:focus-visible {
  outline: 3px solid #667eea;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .back-btn {
    display: none;
  }
  
  .service-card,
  .workflow-step {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}