/* Service Details Styles */
.service-header {
  margin-bottom: 50px;
}

.service-title {
  margin-bottom: 30px;
  text-align: center;
}

.service-title h1 {
  color: var(--text-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-category {
  display: inline-flex;
  align-items: center;
  background: rgba(209, 154, 0, 0.1);
  padding: 8px 20px;
  border-radius: 25px;
  color: #d19a00;
}

.service-category i {
  margin-left: 10px;
  font-size: 1.2rem;
}

.service-main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
}

/* Main Content Styles */
.main-content {
  padding-right: 30px;
}

.main-content h2 {
  color: var(--text-color);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.main-content h3 {
  color: var(--text-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 30px 0 20px;
}

.main-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Service Features List */
.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--text-color);
}

.service-features li i {
  color: #d19a00;
  margin-left: 15px;
  font-size: 1.2rem;
}

/* Work Steps Styles */
.work-steps {
  margin: 40px 0;
  background-color: var(--bg-secondary);
  padding: 30px;
  border-radius: 15px;
}

.work-steps h3 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-color);
  font-weight: 600;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  text-align: center;
  position: relative;
  padding: 20px;
  background-color: var(--bg-color);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

/* خط متصل بين الخطوات */
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 50px;
  height: 2px;
  background: linear-gradient(to left, #d19a00, transparent);
  transform: translateY(-50%);
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: #d19a00;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 auto 15px;
}

.step h4 {
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.step p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* Sidebar Styles */
.service-sidebar {
  position: sticky;
  top: 20px;
}

.info-card,
.contact-card {
  background: var(--bg-secondary);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 20px;
}

.info-card h3,
.contact-card h3 {
  color: var(--text-color);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

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

.info-card ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--text-color);
}

.info-card ul li i {
  color: #d19a00;
  margin-left: 15px;
  font-size: 1.1rem;
}

.contact-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.main-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 25px;
  background: #d19a00;
  color: #fff;
  text-align: center;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.main-btn:hover {
  background: #002332;
  color: #fff;
  transform: translateY(-3px);
}

.main-btn i {
  margin-left: 8px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .main-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .service-sidebar {
    position: static;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step:not(:last-child)::after {
    display: none;
  }
}

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

  .service-main-image {
    height: 300px;
  }

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

@media (max-width: 576px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .work-steps {
    padding: 20px;
  }

  .step {
    padding: 15px;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .step h4 {
    font-size: 1rem;
  }

  .step p {
    font-size: 0.85rem;
  }
}

/* Pharmacy Slider Styles */
.pharmacy-slider {
  background: var(--bg-secondary);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pharmacy-slider h3 {
  color: var(--text-color);
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}

.carousel {
  border-radius: 10px;
  overflow: hidden;
}

.carousel-item {
  height: 400px;
}

.carousel-item img {
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  padding: 20px;
}

.carousel-caption h5 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.carousel-indicators {
  bottom: 20px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .carousel-item {
    height: 300px;
  }

  .carousel-caption h5 {
    font-size: 1.2rem;
  }

  .carousel-caption p {
    font-size: 0.9rem;
  }
}

.no-images {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  color: var(--text-color);
  font-size: 1.2rem;
}

/* Building Slider Styles */
.building-slider {
  background: var(--bg-secondary);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.building-slider .section-title {
  color: var(--text-color);
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.building-slider .carousel {
  border-radius: 10px;
  overflow: hidden;
}

.building-slider .carousel-item {
  height: 450px;
}

.building-slider .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.building-slider .carousel-caption {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 20px;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.building-slider .carousel-caption h5 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.building-slider .carousel-caption p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0;
}

.building-slider .carousel-control-prev,
.building-slider .carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
}

.building-slider .carousel-indicators {
  margin-bottom: 0;
}

.building-slider .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
}

.building-slider .carousel-indicators button.active {
  background-color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .building-slider .carousel-item {
    height: 300px;
  }

  .building-slider .carousel-caption h5 {
    font-size: 1.2rem;
  }

  .building-slider .carousel-caption p {
    font-size: 0.9rem;
  }

  .building-slider .carousel-control-prev,
  .building-slider .carousel-control-next {
    width: 40px;
    height: 40px;
    margin: 0 10px;
  }
}

/* Interior Design Slider Styles */
.interior-slider {
  background: var(--bg-secondary);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.interior-slider .section-title {
  color: var(--text-color);
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.interior-slider .carousel {
  border-radius: 10px;
  overflow: hidden;
}

.interior-slider .carousel-item {
  height: 450px;
}

.interior-slider .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.interior-slider .carousel-caption {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 20px;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.interior-slider .carousel-caption h5 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.interior-slider .carousel-caption p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .interior-slider .carousel-item {
    height: 300px;
  }

  .interior-slider .carousel-caption h5 {
    font-size: 1.2rem;
  }

  .interior-slider .carousel-caption p {
    font-size: 0.9rem;
  }
}
