/* Service Detail Page Styles */
:root {
  --glass: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
  --gradient: linear-gradient(to right, #7c3aed, #ec4899);
}

/* Django Messages */
.messages-container {
  margin-bottom: 2rem;
}

.alert {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  color: white;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
}

.alert-success {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
}

.alert-error {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.1);
}

.btn-close {
  filter: invert(1);
  opacity: 0.7;
}

.btn-close:hover {
  opacity: 1;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.breadcrumb-nav a {
  color: #d8b4fe;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: white;
}

.breadcrumb-nav .lucide {
  width: 16px;
  height: 16px;
  color: #c4b5fd;
}

.breadcrumb-nav span {
  color: white;
  font-weight: 500;
}

/* Service Header */
.service-header {
  margin-bottom: 3rem;
}

.service-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
}

.service-info {
  flex: 1;
}

.service-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-subtitle {
  font-size: 1.1rem;
  color: #d8b4fe;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.price-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--gradient);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.price-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #c4b5fd;
  font-size: 0.9rem;
}

.service-date .lucide {
  width: 16px;
  height: 16px;
}

.service-icon-large {
  width: 120px;
  height: 120px;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.service-icon-large .lucide {
  width: 48px;
  height: 48px;
  color: white;
}

/* Service Content */
.service-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
}

.content-section {
  margin-bottom: 2rem;
}

.content-section:last-child {
  margin-bottom: 0;
}

.content-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.content-section p {
  color: #d8b4fe;
  line-height: 1.6;
  font-size: 1rem;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item .lucide {
  width: 20px;
  height: 20px;
  color: #22c55e;
  flex-shrink: 0;
}

.feature-item span {
  color: white;
  font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.why-choose-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.why-choose-icon {
  width: 50px;
  height: 50px;
  border-radius: 1rem;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.why-choose-icon .lucide {
  width: 24px;
  height: 24px;
  color: white;
}

.why-choose-content {
  flex: 1;
}

.why-choose-content h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-choose-content p {
  color: #d8b4fe;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Contact Form Sidebar */
.contact-form-sidebar {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  position: sticky;
  top: 120px;
}

.contact-form-sidebar h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.contact-form-sidebar > p {
  color: #d8b4fe;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  color: white;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
  background: rgba(255, 255, 255, 0.15);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #1f2937;
  color: white;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gradient);
  border: none;
  border-radius: 0.75rem;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.submit-btn .lucide {
  width: 18px;
  height: 18px;
}

/* Related Services */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  text-align: center;
}

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

.related-service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.related-service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.related-service-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-service-icon .lucide {
  width: 20px;
  height: 20px;
  color: white;
}

.related-service-price {
  background: var(--gradient);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
}

.related-service-body h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.related-service-body p {
  color: #d8b4fe;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
  .service-hero {
    flex-direction: column;
    text-align: center;
  }
  
  .service-meta {
    justify-content: center;
  }
  
  .contact-form-sidebar {
    position: static;
    margin-top: 2rem;
  }
  
  .why-choose-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .service-title {
    font-size: 2rem;
  }
  
  .service-subtitle {
    font-size: 1rem;
  }
  
  .service-meta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .service-icon-large {
    width: 100px;
    height: 100px;
  }
  
  .service-icon-large .lucide {
    width: 40px;
    height: 40px;
  }
  
  .service-content {
    padding: 1.5rem;
  }
  
  .contact-form-sidebar {
    padding: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  
  .why-choose-item {
    padding: 1rem;
  }
  
  .why-choose-icon {
    width: 40px;
    height: 40px;
  }
  
  .why-choose-icon .lucide {
    width: 20px;
    height: 20px;
  }
  
  .related-services {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .service-title {
    font-size: 1.75rem;
  }
  
  .service-hero {
    padding: 1.5rem;
  }
  
  .service-content {
    padding: 1rem;
  }
  
  .contact-form-sidebar {
    padding: 1rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .submit-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .why-choose-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .why-choose-icon {
    align-self: center;
  }
} 