.service-request-floating-btn {
  position: fixed !important;
  bottom: 32px !important;
  right: 32px !important;
  left: auto !important;
  z-index: 9999;
  
  display: flex;
  align-items: center;
  gap: 12px;
  
  padding: 16px 24px;
  background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
  color: white;
  border: none;
  border-radius: 50px;
  
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5), 
              0 0 0 0 rgba(139, 92, 246, 0.4);
  
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  overflow: visible;
}

.service-request-floating-btn::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
  animation: rotate-gradient 3s linear infinite;
}

.service-request-floating-btn:hover::before {
  opacity: 0.6;
}

.service-request-floating-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(139, 92, 246, 0.6),
              0 0 0 8px rgba(139, 92, 246, 0.1);
  animation: none;
}

.service-request-floating-btn:active {
  transform: scale(1.0);
}

.service-request-btn-icon {
  font-size: 20px;
  line-height: 1;
  animation: icon-bounce 2s ease-in-out infinite;
}

.service-request-btn-text {
  line-height: 1;
  position: relative;
}

.service-request-btn-text::after {
  content: '\2192';
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.3s;
}

.service-request-floating-btn:hover .service-request-btn-text::after {
  transform: translateX(4px);
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5), 
                0 0 0 0 rgba(139, 92, 246, 0.4);
  }
  50% {
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5), 
                0 0 0 8px rgba(139, 92, 246, 0);
  }
  100% {
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5), 
                0 0 0 0 rgba(139, 92, 246, 0);
  }
}

@keyframes icon-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes rotate-gradient {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

@media (max-width: 768px) {
  .service-request-floating-btn {
    bottom: 20px;
    right: 20px;
    padding: 14px 20px;
    font-size: 14px;
  }
  
  .service-request-btn-text {
    display: none;
  }
  
  .service-request-btn-icon {
    font-size: 24px;
  }
}

.service-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.service-modal[hidden] {
  display: none;
}

.service-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.service-modal__container {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  
  background: rgba(23, 25, 40, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  
  animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  
  width: 36px;
  height: 36px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 50%;
  
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  
  transition: all 0.2s;
}

.service-modal__close:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
  color: #ffffff;
}

.service-modal__content {
  padding: 40px;
}

.service-modal__header {
  margin-bottom: 32px;
}

.service-modal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  
  padding: 8px 12px;
  margin-bottom: 16px;
  
  background: transparent;
  border: none;
  border-radius: 8px;
  
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #8b5cf6;
  
  cursor: pointer;
  transition: all 0.2s;
}

.service-modal__back:hover {
  background: rgba(139, 92, 246, 0.1);
}

.service-modal__title {
  margin: 0 0 8px 0;
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.service-modal__subtitle {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.service-types-grid {
  display: grid;
  gap: 16px;
}

.service-type-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  
  padding: 20px;
  background: rgba(139, 92, 246, 0.05);
  border: 2px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  
  text-align: left;
  cursor: pointer;
  
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-type-card:hover {
  border-color: #8b5cf6;
  background: rgba(139, 92, 246, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.service-type-card__icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(139, 92, 246, 0.3));
}

.service-type-card__content {
  flex: 1;
}

.service-type-card__title {
  margin: 0 0 4px 0;
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.service-type-card__description {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.service-request-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.form-input,
.form-select,
.form-textarea {
  padding: 12px 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  color: #ffffff;
  
  background: rgba(139, 92, 246, 0.05);
  border: 2px solid rgba(139, 92, 246, 0.2);
  border-radius: 8px;
  
  transition: all 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #8b5cf6;
  background: rgba(139, 92, 246, 0.08);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}

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

.form-select option {
  background: #171928;
  color: #ffffff;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 12px;
}

.btn {
  padding: 12px 24px;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  
  border: none;
  border-radius: 8px;
  cursor: pointer;
  
  transition: all 0.2s;
}

.btn--primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn--primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn--secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(139, 92, 246, 0.3);
}

.btn--secondary:hover {
  background: rgba(139, 92, 246, 0.1);
  color: #ffffff;
  border-color: rgba(139, 92, 246, 0.5);
}

.btn--large {
  padding: 16px 32px;
  font-size: 16px;
}

.service-modal__success,
.service-modal__error {
  text-align: center;
  padding: 20px 0;
}

.service-success-icon,
.service-error-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.service-success-title,
.service-error-title {
  margin: 0 0 12px 0;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.service-success-message,
.service-error-message {
  margin: 0 0 32px 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.service-success-tips {
  padding: 24px;
  margin-bottom: 32px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  text-align: left;
}

.service-success-tips-title {
  margin: 0 0 12px 0;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #8b5cf6;
}

.service-success-tips-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-success-tips-list li {
  padding: 6px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .service-modal__content {
    padding: 24px;
  }
  
  .service-modal__title {
    font-size: 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}
