/* Services Page Styles */
.service-hero {
  background: linear-gradient(135deg, var(--dark-bg-3), var(--dark-bg-5));
  padding: 120px 0 80px 0;
  margin-top: 80px;
}
.service-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
}
.service-features {
  padding: 80px 0;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 40px 30px;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(27, 177, 220, 0.2);
  border-color: rgba(27, 177, 220, 0.3);
}
.feature-card i {
  font-size: 50px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-light);
}
.feature-card p {
  color: var(--text-muted);
  margin: 0;
}
.service-pricing {
  background: linear-gradient(135deg, var(--dark-bg-2), var(--dark-bg-3));
  padding: 80px 0;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
}
.pricing-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(27, 177, 220, 0.2);
}
.pricing-card.featured {
  border-color: var(--accent-blue);
  position: relative;
}
.pricing-card.featured::before {
  content: 'პოპულარული';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 14px;
}
.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.pricing-card .price {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 20px 0;
}
.pricing-card .price span {
  font-size: 1rem;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}
.pricing-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-dark);
  color: var(--text-muted);
}
.pricing-card ul li i {
  color: var(--accent-blue);
  margin-right: 10px;
}
.btn-service {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-service:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(27, 177, 220, 0.4);
  color: white;
}
.cta-section {
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Light Theme Overrides for Services Page */
body.light-theme .service-hero {
  background: linear-gradient(135deg, #eef2f7, #d9e2ec) !important;
}

body.light-theme .service-features {
  background: #ffffff;
}

body.light-theme .feature-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
}

body.light-theme .feature-card:hover {
  border-color: rgba(13, 110, 253, 0.2);
  box-shadow: 0 20px 50px rgba(13, 110, 253, 0.12);
}

body.light-theme .feature-card h3 {
  color: #1a1a2e;
}

body.light-theme .feature-card p {
  color: #4a5568;
}

body.light-theme .service-pricing {
  background: linear-gradient(135deg, #f8f9fc, #eef2f7) !important;
}

body.light-theme .pricing-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
}

body.light-theme .pricing-card:hover {
  box-shadow: 0 20px 50px rgba(13, 110, 253, 0.12);
}

body.light-theme .pricing-card.featured {
  border-color: var(--accent-blue);
}

body.light-theme .pricing-card h3 {
  color: #1a1a2e;
}

body.light-theme .pricing-card ul li {
  color: #4a5568;
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

/* Light Theme Button Styles */
body.light-theme .btn-service {
  background: linear-gradient(135deg, #0d6efd, #6f42c1);
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

body.light-theme .btn-service:hover {
  background: linear-gradient(135deg, #0b5ed7, #5a32a3);
  color: #ffffff !important;
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.4);
  transform: translateY(-3px);
}

body.light-theme .cta-section {
  background: #ffffff;
}

body.light-theme .cta-section h2 {
  color: #1a1a2e;
}

body.light-theme .cta-section p {
  color: #4a5568 !important;
}
