/* Service Pages CSS - services.css */

/*--------------------------------------------------------------
# Service Pages Specific Styles
--------------------------------------------------------------*/

/* Page Title Section */
.page-title {
  background: linear-gradient(135deg, #0d83fd 0%, #1e90ff 100%);
  color: white;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  opacity: 0.3;
}

.page-title .container {
  position: relative;
  z-index: 2;
}

.page-title h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-title .breadcrumbs {
  margin-top: 1.5rem;
}

.page-title .breadcrumbs ol {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.page-title .breadcrumbs ol li {
  font-size: 1.1rem;
  opacity: 0.9;
}

.page-title .breadcrumbs ol li a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-title .breadcrumbs ol li a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.page-title .breadcrumbs ol li.current {
  opacity: 0.7;
}

.page-title .breadcrumbs ol li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  opacity: 0.6;
}

/* Service Details Section */
.service-details {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  border: 1px solid #f0f0f0;
}

.service-details .services-img {
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-details .services-img:hover {
  transform: translateY(-5px);
}

.service-details h3 {
  color: #2d465e;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  position: relative;
  padding-bottom: 1rem;
}

.service-details h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #0d83fd, #1e90ff);
  border-radius: 2px;
}

.service-details h4 {
  color: #2d465e;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  position: relative;
  padding-left: 1rem;
}

.service-details h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: #0d83fd;
  border-radius: 2px;
}

.service-details h5 {
  color: #0d83fd;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f0f4ff;
}

.service-details p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 1.5rem;
}

.service-details ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-details ul li {
  padding: 0.8rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  border-bottom: 1px solid #f8f9fa;
  transition: all 0.3s ease;
}

.service-details ul li:hover {
  background: #f8f9ff;
  padding-left: 1rem;
  border-radius: 8px;
  border-bottom: 1px solid transparent;
}

.service-details ul li:last-child {
  border-bottom: none;
}

.service-details ul li i {
  color: #0d83fd;
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.service-details ul li strong {
  color: #2d465e;
}

/* Service Box Styles */
.service-box {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #0d83fd, #1e90ff);
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.service-box h4 {
  color: #2d465e;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f4ff;
}

.service-box p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.service-box p strong {
  color: #0d83fd;
  font-weight: 600;
}

/* Services List */
.services-list {
  background: #f8f9ff;
  border-radius: 10px;
  overflow: hidden;
}

.services-list a {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid #e9ecef;
  position: relative;
}

.services-list a:last-child {
  border-bottom: none;
}

.services-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #0d83fd;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.services-list a:hover,
.services-list a.active {
  background: white;
  color: #0d83fd;
  padding-left: 2rem;
}

.services-list a:hover::before,
.services-list a.active::before {
  transform: scaleY(1);
}

.services-list a i {
  font-size: 1.1rem;
  margin-right: 0.8rem;
  transition: transform 0.3s ease;
}

.services-list a:hover i {
  transform: translateX(5px);
}

/* Help Box */
.help-box {
  background: linear-gradient(135deg, #0d83fd, #1e90ff);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.help-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
}

.help-box .help-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.help-box h4 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.help-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.help-box .btn {
  background: white;
  color: #0d83fd;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.help-box .btn:hover {
  background: #f8f9ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Quick Info Box Special Styling */
.service-box:first-child {
  background: linear-gradient(135deg, #f8f9ff 0%, #e9f2ff 100%);
  border: 2px solid #e1ecf9;
}

.service-box:first-child::before {
  background: linear-gradient(135deg, #0d83fd, #4a90e2);
  height: 5px;
}

/* Enhanced Typography */
.service-details strong {
  color: #2d465e;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-title h1 {
    font-size: 2.2rem;
  }

  .service-details {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }

  .service-details h3 {
    font-size: 1.8rem;
  }

  .service-box {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .page-title {
    padding: 100px 0 60px;
  }

  .page-title h1 {
    font-size: 1.8rem;
  }

  .service-details {
    padding: 1.5rem;
  }

  .service-details h3 {
    font-size: 1.6rem;
  }

  .service-box {
    padding: 1.2rem;
  }

  .help-box {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .page-title h1 {
    font-size: 1.5rem;
  }

  .service-details {
    padding: 1rem;
  }

  .service-details h3 {
    font-size: 1.4rem;
  }

  .service-details h4 {
    font-size: 1.2rem;
  }

  .service-box {
    padding: 1rem;
  }
}

/* Animation Classes */
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover Effects for List Items */
.service-details ul li {
  position: relative;
}

.service-details ul li::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #0d83fd;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-details ul li:hover::before {
  opacity: 1;
}

/* Enhanced Service Box Icons */
.service-box ul {
  list-style: none;
  padding: 0;
}

.service-box ul li {
  padding: 0.6rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
}

.service-box ul li:hover {
  color: #0d83fd;
  padding-left: 0.5rem;
}

.service-box ul li i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Call to Action Section Enhancements */
.call-to-action-2 {
  position: relative;
  overflow: hidden;
}

.call-to-action-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-27.614 22.386-50 50-50s50 22.386 50 50-22.386 50-50 50-50-22.386-50-50'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
}

/* Print Styles */
@media print {
  .page-title,
  .help-box,
  .call-to-action-2 {
    background: white !important;
    color: black !important;
  }

  .service-box {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}
