/* ============================================
   SERVICES PAGES - STYLES SCOPÉS PREMIUM
   Préfixe: .services-*
   Design raffiné et haut de gamme
   ============================================ */

/* Variables CSS Premium */
:root {
  --services-premium-shadow-sm: 0 2px 8px rgba(30, 64, 175, 0.06);
  --services-premium-shadow-md: 0 8px 24px rgba(30, 64, 175, 0.1);
  --services-premium-shadow-lg: 0 16px 48px rgba(30, 64, 175, 0.15);
  --services-premium-shadow-xl: 0 24px 64px rgba(30, 64, 175, 0.2);
  --services-premium-glow: 0 0 40px rgba(79, 70, 229, 0.15);
}

.services-page-wrapper {
  min-height: 100vh;
  background: linear-gradient(
    180deg,
    #F5F3FF 0%,
    #EDE9FE 20%,
    #E5E1FE 40%,
    #DDD6FE 60%,
    #D5CEFE 80%,
    #CDC6FE 100%
  );
  padding-top: 2rem;
  position: relative;
  overflow: hidden;
}

/* Effet de lumière subtil en arrière-plan - violet clair raffiné */
.services-page-wrapper::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(196, 181, 253, 0.15) 0%,
    rgba(167, 139, 250, 0.1) 30%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.services-page-wrapper::after {
  content: '';
  position: fixed;
  bottom: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 80% 80%,
    rgba(196, 181, 253, 0.12) 0%,
    rgba(167, 139, 250, 0.08) 30%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.services-page-wrapper > * {
  position: relative;
  z-index: 1;
}

/* Texture subtile pour effet premium - violet clair */
.services-page-wrapper {
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(139, 92, 246, 0.03) 1px, transparent 0);
  background-size: 60px 60px;
}

/* Hero Component */
.services-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 3rem;
  background: linear-gradient(
    135deg,
    #C4B5FD 0%,
    #A78BFA 20%,
    #8B5CF6 40%,
    #7C3AED 60%,
    #6D28D9 80%,
    #5B21B6 100%
  );
  border-radius: 0 0 48px 48px;
  box-shadow: 
    0 20px 60px rgba(139, 92, 246, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

/* Effet de brillance animé sur le hero */
.services-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 70%
  );
  animation: shine 10s infinite;
  pointer-events: none;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.services-hero__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.services-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-hero__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    #C4B5FD 0%,
    #A78BFA 20%,
    #8B5CF6 40%,
    #7C3AED 60%,
    #6D28D9 80%,
    #5B21B6 100%
  );
  position: relative;
}

.services-hero__placeholder::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%,
    rgba(139, 92, 246, 0.1) 100%
  );
  pointer-events: none;
}

.services-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.services-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 
    0 2px 20px rgba(0, 0, 0, 0.3),
    0 4px 40px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.services-hero__subtitle {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 
    0 1px 15px rgba(0, 0, 0, 0.2),
    0 2px 30px rgba(0, 0, 0, 0.15);
}

.services-hero__micro {
  font-size: clamp(1rem, 1.5vw, 1.375rem);
  margin-bottom: 3rem;
  color: #ffffff;
  line-height: 1.75;
  letter-spacing: 0.01em;
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

.services-hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.services-hero__btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.services-hero__btn--primary {
  background: rgba(255, 255, 255, 0.95);
  color: #1e40af;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  font-weight: 700;
}

.services-hero__btn--primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 1);
}

.services-hero__btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  font-weight: 600;
}

.services-hero__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.services-hero__search {
  margin-top: 2rem;
}

.services-hero__search-form {
  display: flex;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.services-hero__search-form:focus-within {
  transform: scale(1.02);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.25),
    0 0 0 2px rgba(255, 255, 255, 0.5);
}

.services-hero__search-input {
  flex: 1;
  padding: 1.25rem 2rem;
  border: none;
  outline: none;
  font-size: 1.0625rem;
  color: #0F172A;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: transparent;
}

.services-hero__search-input::placeholder {
  color: #64748B;
  opacity: 0.8;
  font-weight: 400;
}

.services-hero__search-btn {
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #2563eb 0%, #6366f1 50%, #8b5cf6 100%);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.125rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.services-hero__search-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.services-hero__search-btn:active {
  transform: scale(0.98);
}

/* Category Slider */
.services-page-categories {
  padding: 2rem 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(248, 250, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.8) 100%
  );
  backdrop-filter: blur(20px);
  margin-bottom: 3rem;
  border-radius: 24px;
  margin-left: 1rem;
  margin-right: 1rem;
  box-shadow: 
    0 4px 20px rgba(30, 64, 175, 0.08),
    0 0 0 1px rgba(79, 70, 229, 0.05);
}

.services-category-slider {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #CBD5E1 transparent;
}

.services-category-slider::-webkit-scrollbar {
  height: 6px;
}

.services-category-slider::-webkit-scrollbar-track {
  background: transparent;
}

.services-category-slider::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 3px;
}

.services-category-slider__container {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 0;
  min-width: max-content;
}

.services-category-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-right: 1rem;
  border-right: 1px solid #E5E7EB;
}

.services-category-group:last-child {
  border-right: none;
}

.services-category-group__label {
  font-weight: 600;
  color: #64748B;
  font-size: 0.875rem;
  white-space: nowrap;
}

.services-category-chip {
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 255, 0.98) 100%);
  border: 1.5px solid rgba(79, 70, 229, 0.15);
  border-radius: 28px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.06);
  backdrop-filter: blur(10px);
  text-decoration: none;
  display: inline-block;
}

.services-category-chip:hover,
.services-category-chip.active {
  background: linear-gradient(135deg, #2563eb 0%, #6366f1 50%, #8b5cf6 100%);
  color: white;
  border-color: transparent;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* Result Grid */
.services-page-results {
  padding: 3rem 0;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  margin: 0 1rem 3rem;
  padding: 3rem 2rem;
  box-shadow: 0 8px 32px rgba(30, 64, 175, 0.08);
}

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

/* Service Card */
.services-service-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(248, 250, 255, 0.98) 100%
  );
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(79, 70, 229, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(79, 70, 229, 0.1);
  backdrop-filter: blur(20px);
  position: relative;
}

.services-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1e40af 0%, #4c1d95 50%, #7c3aed 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.services-service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 12px 40px rgba(30, 64, 175, 0.2),
    0 0 0 1px rgba(79, 70, 229, 0.15);
  border-color: rgba(79, 70, 229, 0.2);
}

.services-service-card:hover::before {
  opacity: 1;
}

.services-service-card__image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e40af 0%, #4c1d95 50%, #7c3aed 100%);
}

.services-service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-service-card__content {
  padding: 2rem;
}

.services-service-card__title {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #0F172A;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.services-service-card__description {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.services-service-card__badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.services-service-card__badge {
  padding: 0.375rem 0.75rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.15) 0%, rgba(124, 58, 237, 0.12) 100%);
  color: #4F46E5;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(79, 70, 229, 0.2);
  box-shadow: 0 2px 4px rgba(79, 70, 229, 0.1);
  transition: all 0.3s ease;
}

.services-service-card__badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(79, 70, 229, 0.15);
}

.services-service-card__price {
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.services-service-card__cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #2563eb 0%, #6366f1 50%, #8b5cf6 100%);
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.services-service-card__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.services-service-card__cta:hover::before {
  left: 100%;
}

.services-service-card__cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Pricing Card */
.services-pricing-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 250, 255, 1) 100%
  );
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 
    0 8px 32px rgba(30, 64, 175, 0.12),
    0 0 0 1px rgba(79, 70, 229, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  text-align: center;
  border: 1px solid rgba(79, 70, 229, 0.1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.services-pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e40af 0%, #4c1d95 50%, #7c3aed 100%);
}

.services-pricing-card__title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.services-pricing-card__subtext {
  font-size: 1.0625rem;
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.services-pricing-card__cta {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #2563eb 0%, #6366f1 50%, #8b5cf6 100%);
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}

.services-pricing-card__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.services-pricing-card__cta:hover::before {
  left: 100%;
}

.services-pricing-card__cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45);
}

/* Notes & SAP */
.services-page-note,
.services-page-sap {
  padding: 1.5rem 2rem;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(248, 250, 255, 0.9) 100%
  );
  backdrop-filter: blur(20px);
  margin: 0 1rem 2rem;
  border-radius: 16px;
  box-shadow: 
    0 4px 16px rgba(30, 64, 175, 0.06),
    0 0 0 1px rgba(79, 70, 229, 0.05);
}

.services-page-note__text,
.services-page-sap__text {
  text-align: center;
  color: #64748B;
  font-size: 0.875rem;
  line-height: 1.6;
}

.services-page-sap__text strong {
  color: #1E293B;
}

/* Segmented Control */
.services-page-segmented {
  padding: 1.5rem 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(248, 250, 255, 0.8) 100%
  );
  backdrop-filter: blur(20px);
  margin: 0 1rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(30, 64, 175, 0.06);
}

.services-segmented-control {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  background: white;
  padding: 0.25rem;
  border-radius: 12px;
  max-width: 300px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.services-segmented-control__btn {
  flex: 1;
  padding: 0.75rem 1.5rem;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-weight: 600;
  color: #64748B;
  cursor: pointer;
  transition: all 0.3s ease;
}

.services-segmented-control__btn--active {
  background: linear-gradient(135deg, #1e40af 0%, #4c1d95 50%, #7c3aed 100%);
  color: white;
}

/* Publish Form */
.services-page-publish {
  padding: 4rem 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(248, 250, 255, 0.8) 100%
  );
  backdrop-filter: blur(20px);
  border-radius: 32px;
  margin: 0 1rem;
  box-shadow: 0 8px 32px rgba(30, 64, 175, 0.08);
}

.services-publish-form {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 250, 255, 1) 100%
  );
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 
    0 8px 32px rgba(30, 64, 175, 0.12),
    0 0 0 1px rgba(79, 70, 229, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(79, 70, 229, 0.1);
}

.services-publish-form__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  letter-spacing: -0.02em;
}

.services-publish-form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.services-publish-form__field {
  margin-bottom: 1.5rem;
}

.services-publish-form__label {
  display: block;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
}

.services-publish-form__input,
.services-publish-form__select,
.services-publish-form__textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1.5px solid rgba(79, 70, 229, 0.15);
  border-radius: 16px;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  color: #0F172A;
  font-weight: 500;
}

.services-publish-form__input:focus,
.services-publish-form__select:focus,
.services-publish-form__textarea:focus {
  outline: none;
  border-color: #4F46E5;
  box-shadow: 
    0 0 0 4px rgba(79, 70, 229, 0.1),
    0 4px 12px rgba(79, 70, 229, 0.08);
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

.services-publish-form__textarea {
  resize: vertical;
}

.services-publish-form__photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.services-publish-form__photo-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.services-publish-form__photo-item label {
  font-size: 0.875rem;
  color: #64748B;
}

.services-publish-form__photo-item input[type="file"] {
  padding: 0.5rem;
  border: 2px dashed #CBD5E1;
  border-radius: 8px;
  cursor: pointer;
}

.services-publish-form__checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.services-publish-form__checkboxes label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748B;
  cursor: pointer;
}

.services-publish-form__checkboxes input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.services-publish-form__section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #E5E7EB;
}

.services-publish-form__section-title {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}

.services-publish-form__actions {
  margin-top: 2rem;
  text-align: center;
}

.services-publish-form__submit {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #2563eb 0%, #6366f1 50%, #8b5cf6 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}

.services-publish-form__submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.services-publish-form__submit:hover::before {
  left: 100%;
}

.services-publish-form__submit:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45);
}

/* Breadcrumb Navigation */
.services-category-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem 2rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
  background: linear-gradient(
    180deg,
    rgba(196, 181, 253, 0.3) 0%,
    rgba(196, 181, 253, 0.1) 50%,
    transparent 100%
  );
  margin-top: -2rem;
  padding-top: 3rem;
  backdrop-filter: blur(10px);
}

.services-breadcrumb-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.services-breadcrumb-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.services-breadcrumb-separator {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0.25rem;
}

.services-breadcrumb-current {
  color: #ffffff;
  font-weight: 600;
}

/* Results Title */
.services-results-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  letter-spacing: -0.02em;
}

.services-results-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #64748B;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .services-hero__title {
    font-size: 2rem;
  }
  
  .services-hero__subtitle {
    font-size: 1.5rem;
  }
  
  .services-hero__micro {
    font-size: 1rem;
  }
  
  .services-result-grid {
    grid-template-columns: 1fr;
  }
  
  .services-publish-form__row {
    grid-template-columns: 1fr;
  }
  
  .services-publish-form__photos {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .services-result-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

