/* BPO Page Specific Styles — Dark Corporate Theme */

/* Hero */
.bpo-hero {
  background: linear-gradient(
      135deg,
      rgba(26, 26, 46, 0.95),
      rgba(34, 34, 58, 0.95)
    ),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80");
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.bpo-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

.bpo-hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.5rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.bpo-hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* BPO Services Grid */
.bpo-services {
  padding: 5rem 0;
  background: var(--bg);
  position: relative;
}

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

.bpo-card {
  background: var(--bg-elevated);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.bpo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary);
}

.bpo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--secondary);
}

.bpo-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.bpo-card h3 i {
  margin-right: 1rem;
  font-size: 1.8rem;
  color: var(--secondary);
}

.bpo-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.bpo-features {
  margin-top: 2rem;
}

.bpo-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.bpo-feature i {
  color: var(--secondary);
  margin-right: 1rem;
  margin-top: 0.2rem;
}

/* BPO Process Section */
.bpo-process {
  padding: 5rem 0;
  background: var(--bg-light);
  position: relative;
}

.process-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background: var(--bg-elevated);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  position: relative;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--secondary);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  font-family: "Barlow Condensed", sans-serif;
}

.process-step h3 {
  color: var(--text);
  margin-bottom: 1rem;
  font-family: "Barlow Condensed", sans-serif;
}

.process-step p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* BPO CTA Section */
.bpo-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-light));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bpo-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(245, 130, 32, 0.08) 0%,
    transparent 70%
  );
}

.bpo-cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.bpo-cta h2 {
  color: var(--text);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-family: "Barlow Condensed", sans-serif;
}

.bpo-cta p {
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: #e07418;
}

@media (max-width: 768px) {
  .bpo-hero h1 { font-size: 2.5rem; }
  .bpo-grid { grid-template-columns: 1fr; }
  .process-step { min-width: 100%; }
}
