.service-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.service-modal-overlay.active {
    display: flex;
}

.service-modal {
    background: var(--color-bg-secondary);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    width: 90%;
    max-width: 600px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.service-modal.active {
    transform: translateY(0);
    opacity: 1;
}

.service-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.service-modal-close:hover {
    color: var(--color-text);
    transform: rotate(90deg);
}

.service-modal-title {
    font-size: 1.75rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

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

.service-modal-form .form-group {
    margin-bottom: 0;
}

.service-modal-form .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.service-modal-success {
    text-align: center;
    display: none;
}

.service-modal-success.active {
    display: block;
}

.service-modal-success svg {
    width: 64px;
    height: 64px;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.service-modal-success h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.service-modal-success p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}
