/* Service Detail Page Styles */
.breadcrumb {
  background: #f9fafb;
  padding: 20px 0;
  margin-top: 80px;
  border-bottom: 1px solid #e5e7eb;
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.breadcrumb a:hover {
  color: #0b5aaa;
}

.breadcrumb span {
  color: #9ca3af;
}

/* Service Hero Section */
.service-hero {
  background: linear-gradient(135deg, #0b5aaa, #06b6d4);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.service-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  backdrop-filter: blur(10px);
}

.hero-icon i {
  font-size: 3rem;
  color: white;
}

.service-hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-tags {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

/* Service Overview Section */
.service-overview {
  padding: 80px 0;
  background-color: #ffffff;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.overview-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 20px;
}

.overview-content p {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 40px;
  line-height: 1.7;
}

.overview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.overview-stats .stat {
  text-align: center;
  padding: 20px;
  background: #f9fafb;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.overview-stats .stat:hover {
  border-color: #0b5aaa;
}

.overview-stats .stat h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #0b5aaa;
  margin-bottom: 8px;
}

.overview-stats .stat p {
  color: #6b7280;
  font-weight: 500;
  margin: 0;
}

.overview-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  border: 2px dashed #d1d5db;
}

.image-placeholder i {
  font-size: 4rem;
  margin-bottom: 15px;
  color: #9ca3af;
}

.image-placeholder p {
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
}

/* Platforms Section */
.platforms-section {
  padding: 80px 0;
  background-color: #f9fafb;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.platform-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #0b5aaa;
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.platform-card.salesforce {
  border-top-color: #00a1e0;
}

.platform-card.siebel {
  border-top-color: #f80000;
}

.platform-card.sap {
  border-top-color: #0f7db8;
}

.platform-card.onyx {
  border-top-color: #6b46c1;
}

.platform-card.ios {
  border-top-color: #007aff;
}

.platform-card.android {
  border-top-color: #3ddc84;
}

.platform-card.cross-platform {
  border-top-color: #61dafb;
}

.platform-card.enterprise {
  border-top-color: #f59e0b;
}

.platform-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.platform-logo {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0b5aaa, #06b6d4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
}

.platform-card.salesforce .platform-logo {
  background: #00a1e0;
}

.platform-card.siebel .platform-logo {
  background: #f80000;
}

.platform-card.sap .platform-logo {
  background: #0f7db8;
}

.platform-card.onyx .platform-logo {
  background: #6b46c1;
}

.platform-card.ios .platform-logo {
  background: #007aff;
}

.platform-card.android .platform-logo {
  background: #3ddc84;
}

.platform-card.cross-platform .platform-logo {
  background: #61dafb;
}

.platform-card.enterprise .platform-logo {
  background: #f59e0b;
}

.platform-header h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin: 0;
}

.platform-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.platform-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: #6b7280;
  font-weight: 500;
}

.platform-features li i {
  color: #10b981;
  font-size: 0.875rem;
}

/* Offerings Section */
.offerings-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.offering-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.offering-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  border-color: #0b5aaa;
}

.offering-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0b5aaa, #06b6d4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.offering-icon i {
  font-size: 1.75rem;
  color: white;
}

.offering-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 15px;
}

.offering-card p {
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.6;
}

.offering-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offering-card ul li {
  color: #6b7280;
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
}

.offering-card ul li::before {
  content: "•";
  color: #0b5aaa;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background-color: #f9fafb;
}

.process-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0b5aaa, #06b6d4);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.step-content h4 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 8px;
}

.step-content p {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

.process-arrow {
  color: #0b5aaa;
  font-size: 1.5rem;
  margin: 0 10px;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  text-align: center;
  padding: 30px 20px;
  background: #f9fafb;
  border-radius: 16px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  background-color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0b5aaa, #06b6d4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon i {
  font-size: 1.75rem;
  color: white;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 15px;
}

.benefit-card p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Contact CTA Section */
.contact-cta {
  background: linear-gradient(135deg, #1f2937, #374151);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.contact-cta .cta-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-cta .cta-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .overview-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .platforms-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .offerings-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .service-hero h1 {
    font-size: 2.5rem;
  }

  .hero-tags {
    justify-content: center;
  }

  .overview-content h2 {
    font-size: 2rem;
  }

  .overview-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-timeline {
    flex-direction: column;
    gap: 30px;
  }

  .process-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }

  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .contact-cta .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .service-hero h1 {
    font-size: 2rem;
  }

  .service-hero p {
    font-size: 1.125rem;
  }

  .hero-icon {
    width: 80px;
    height: 80px;
  }

  .hero-icon i {
    font-size: 2.5rem;
  }

  .overview-content h2 {
    font-size: 1.75rem;
  }

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

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

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