/* Service Pages Specific Styles */

/* Service Hero Section */
.service-hero {
  background: linear-gradient(135deg, #0a1a2a 0%, #1a3a4a 50%, #0a1a2a 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.service-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.service-hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #00d4ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-hero p {
  font-size: 1.2rem;
  color: #b0c4de;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  color: #b0c4de;
}

.service-breadcrumb a {
  color: #00d4ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-breadcrumb a:hover {
  color: #ffffff;
}

/* Service Content Section */
.service-content {
  padding: 80px 0;
}

.service-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.service-main-content {
  width: 100%;
  max-width: 100%;
}

.service-main-content h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.service-main-content h3 {
  font-size: 1.6rem;
  color: #00d4ff;
  margin: 2rem 0 1rem;
}

.service-main-content p {
  color: #b0c4de;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-main-content ul {
  color: #b0c4de;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.service-main-content ul li {
  margin-bottom: 0.5rem;
  position: relative;
}

.service-main-content ul li::before {
  content: "→";
  color: #00d4ff;
  font-weight: bold;
  position: absolute;
  left: -1.2rem;
}

/* Service Sidebar */
.service-sidebar {
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.1),
    rgba(26, 58, 74, 0.2)
  );
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 120px;
}

.service-sidebar h3 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.service-sidebar ul {
  list-style: none;
  padding: 0;
}

.service-sidebar ul li {
  margin-bottom: 0.8rem;
}

.service-sidebar ul li a {
  color: #b0c4de;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: block;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-sidebar ul li a:hover,
.service-sidebar ul li a.active {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  color: #00d4ff;
  transform: translateX(5px);
}

/* Service Features */
.service-features {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.2);
}

.service-features h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.1),
    rgba(26, 58, 74, 0.2)
  );
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

.feature-icon {
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.feature-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.feature-card h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.feature-card p {
  color: #b0c4de;
  line-height: 1.6;
}

/* Service CTA Section */
.service-cta {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.1),
    rgba(0, 153, 204, 0.1)
  );
}

.service-cta h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.service-cta p {
  font-size: 1.1rem;
  color: #b0c4de;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  padding: 15px 35px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-primary {
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.cta-secondary {
  background: transparent;
  color: #00d4ff;
  border: 2px solid #00d4ff;
}

.cta-secondary:hover {
  background: #00d4ff;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  padding: 1rem 0;
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: #b0c4de;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  border-left-color: #00d4ff;
  padding-left: 2rem;
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
  .service-hero h1 {
    font-size: 2.5rem;
  }

  .service-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-sidebar {
    position: static;
    order: -1;
  }

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    width: 100%;
    margin-top: 1rem;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

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

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

  .service-content,
  .service-features,
  .service-cta {
    padding: 60px 0;
  }
}
