/* IT Consultants Page Specific Styles */

/* Hero Section */
.it-hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f5ff 0%, #e6f0ff 100%);
}

.it-hero-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.it-hero-text {
  flex: 1;
}

.it-hero-image {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.it-hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Services Section */
.it-services-section {
  padding: 80px 0;
  background-color: #fff;
}

.services-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.service-tab {
  padding: 12px 25px;
  border-radius: 30px;
  background: #f5f7ff;
  border: 1px solid #e0e6ff;
  color: #4e66f8;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-tab i {
  font-size: 1.2rem;
}

.service-tab:hover {
  background: #e0e6ff;
}

.service-tab.active {
  background: #4e66f8;
  color: #fff;
}

.services-content {
  display: none;
}

.services-content.active {
  display: block;
}

.service-details {
  display: flex;
  gap: 50px;
  align-items: center;
}

.service-info {
  flex: 1;
}

.service-image {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-features {
  margin: 25px 0;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.feature i {
  color: #4e66f8;
  margin-top: 3px;
}

.service-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.service-price {
  color: #4e66f8;
  font-weight: 500;
}

/* Consultant Finder Section */
.consultant-finder-section {
  padding: 80px 0;
  background-color: #f8faff;
}

.finder-container {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  max-width: 900px;
  margin: 0 auto;
}

.finder-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.finder-progress::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e0e6ff;
  z-index: 1;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.progress-step span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e0e6ff;
  color: #7a8ef8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 10px;
  border: 2px solid #e0e6ff;
}

.progress-step p {
  font-size: 0.9rem;
  color: #7a8ef8;
  text-align: center;
}

.progress-step.active span {
  background: #4e66f8;
  color: #fff;
  border-color: #4e66f8;
}

.progress-step.active p {
  color: #4e66f8;
  font-weight: 500;
}

.finder-step {
  display: none;
}

.finder-step.active {
  display: block;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.option-card {
  border: 1px solid #e0e6ff;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.option-card input {
  position: absolute;
  opacity: 0;
}

.option-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.option-card i {
  font-size: 2rem;
  color: #4e66f8;
  margin-bottom: 15px;
}

.option-card h4 {
  margin-bottom: 5px;
  color: #2c3e50;
}

.option-card p {
  color: #666;
  font-size: 0.9rem;
}

.option-card:hover {
  border-color: #4e66f8;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(78, 102, 248, 0.1);
}

.option-card input:checked + .option-content {
  background: #f5f7ff;
  border-radius: 8px;
}

.step-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.btn-prev, .btn-next, .btn-submit {
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-prev {
  background: #f5f7ff;
  color: #4e66f8;
  border: 1px solid #e0e6ff;
}

.btn-prev:hover {
  background: #e0e6ff;
}

.btn-next, .btn-submit {
  background: #4e66f8;
  color: #fff;
}

.btn-next:hover, .btn-submit:hover {
  background: #3a4fd4;
}

.finder-success {
  text-align: center;
  padding: 40px 0;
}

.success-icon {
  font-size: 4rem;
  color: #4e66f8;
  margin-bottom: 20px;
}

.finder-success h3 {
  margin-bottom: 15px;
  color: #2c3e50;
}

.finder-success p {
  color: #666;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background-color: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background: #f8faff;
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.benefit-icon {
  font-size: 2.5rem;
  color: #4e66f8;
  margin-bottom: 20px;
}

.benefit-card h3 {
  margin-bottom: 15px;
  color: #2c3e50;
}

.benefit-card p {
  color: #666;
}

/* Categories Section */
.categories-section {
  padding: 80px 0;
  background-color: #f8faff;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.category-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: center;
  color: inherit;
  text-decoration: none;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  color: inherit;
}

.category-icon {
  font-size: 2.5rem;
  color: #4e66f8;
  margin-bottom: 20px;
}

.category-card h3 {
  margin-bottom: 10px;
  color: #2c3e50;
}

.category-card p {
  color: #666;
  margin-bottom: 15px;
}

.consultant-count {
  display: inline-block;
  background: #f5f7ff;
  color: #4e66f8;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* CTA Section */
.it-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0c84c0 0%, #0c5e7a 100%);
  color: #fff;
  text-align: center;
}

.it-cta-section h2 {
  color: #fff;
  margin-bottom: 20px;
}

.it-cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .it-hero-content,
  .service-details {
    flex-direction: column;
  }
  
  .it-hero-text,
  .it-hero-image,
  .service-info,
  .service-image {
    flex: none;
    width: 100%;
  }
  
  .it-hero-image,
  .service-image {
    order: -1;
  }
  
  .finder-progress {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .progress-step {
    flex: 0 0 calc(50% - 20px);
  }
  
  .progress-step::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .option-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .step-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-prev, .btn-next, .btn-submit {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .option-grid {
    grid-template-columns: 1fr;
  }
  
  .finder-container {
    padding: 25px;
  }
  
  .benefits-grid,
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}